diff options
167 files changed, 7898 insertions, 3692 deletions
diff --git a/Documentation/lguest/lguest.c b/Documentation/lguest/lguest.c index 655414821edc..7228369d1014 100644 --- a/Documentation/lguest/lguest.c +++ b/Documentation/lguest/lguest.c | |||
| @@ -895,6 +895,9 @@ static void handle_console_output(int fd, struct virtqueue *vq, bool timeout) | |||
| 895 | } | 895 | } |
| 896 | } | 896 | } |
| 897 | 897 | ||
| 898 | /* This is called when we no longer want to hear about Guest changes to a | ||
| 899 | * virtqueue. This is more efficient in high-traffic cases, but it means we | ||
| 900 | * have to set a timer to check if any more changes have occurred. */ | ||
| 898 | static void block_vq(struct virtqueue *vq) | 901 | static void block_vq(struct virtqueue *vq) |
| 899 | { | 902 | { |
| 900 | struct itimerval itm; | 903 | struct itimerval itm; |
| @@ -939,6 +942,11 @@ static void handle_net_output(int fd, struct virtqueue *vq, bool timeout) | |||
| 939 | if (!timeout && num) | 942 | if (!timeout && num) |
| 940 | block_vq(vq); | 943 | block_vq(vq); |
| 941 | 944 | ||
| 945 | /* We never quite know how long should we wait before we check the | ||
| 946 | * queue again for more packets. We start at 500 microseconds, and if | ||
| 947 | * we get fewer packets than last time, we assume we made the timeout | ||
| 948 | * too small and increase it by 10 microseconds. Otherwise, we drop it | ||
| 949 | * by one microsecond every time. It seems to work well enough. */ | ||
| 942 | if (timeout) { | 950 | if (timeout) { |
| 943 | if (num < last_timeout_num) | 951 | if (num < last_timeout_num) |
| 944 | timeout_usec += 10; | 952 | timeout_usec += 10; |
diff --git a/arch/ia64/include/asm/io.h b/arch/ia64/include/asm/io.h index 260a85ac9d6a..7f257507cd86 100644 --- a/arch/ia64/include/asm/io.h +++ b/arch/ia64/include/asm/io.h | |||
| @@ -19,6 +19,8 @@ | |||
| 19 | * Copyright (C) 1999 Don Dugger <don.dugger@intel.com> | 19 | * Copyright (C) 1999 Don Dugger <don.dugger@intel.com> |
| 20 | */ | 20 | */ |
| 21 | 21 | ||
| 22 | #include <asm/unaligned.h> | ||
| 23 | |||
| 22 | /* We don't use IO slowdowns on the ia64, but.. */ | 24 | /* We don't use IO slowdowns on the ia64, but.. */ |
| 23 | #define __SLOW_DOWN_IO do { } while (0) | 25 | #define __SLOW_DOWN_IO do { } while (0) |
| 24 | #define SLOW_DOWN_IO do { } while (0) | 26 | #define SLOW_DOWN_IO do { } while (0) |
| @@ -241,7 +243,7 @@ __insw (unsigned long port, void *dst, unsigned long count) | |||
| 241 | unsigned short *dp = dst; | 243 | unsigned short *dp = dst; |
| 242 | 244 | ||
| 243 | while (count--) | 245 | while (count--) |
| 244 | *dp++ = platform_inw(port); | 246 | put_unaligned(platform_inw(port), dp++); |
| 245 | } | 247 | } |
| 246 | 248 | ||
| 247 | static inline void | 249 | static inline void |
| @@ -250,7 +252,7 @@ __insl (unsigned long port, void *dst, unsigned long count) | |||
| 250 | unsigned int *dp = dst; | 252 | unsigned int *dp = dst; |
| 251 | 253 | ||
| 252 | while (count--) | 254 | while (count--) |
| 253 | *dp++ = platform_inl(port); | 255 | put_unaligned(platform_inl(port), dp++); |
| 254 | } | 256 | } |
| 255 | 257 | ||
| 256 | static inline void | 258 | static inline void |
| @@ -268,7 +270,7 @@ __outsw (unsigned long port, const void *src, unsigned long count) | |||
| 268 | const unsigned short *sp = src; | 270 | const unsigned short *sp = src; |
| 269 | 271 | ||
| 270 | while (count--) | 272 | while (count--) |
| 271 | platform_outw(*sp++, port); | 273 | platform_outw(get_unaligned(sp++), port); |
| 272 | } | 274 | } |
| 273 | 275 | ||
| 274 | static inline void | 276 | static inline void |
| @@ -277,7 +279,7 @@ __outsl (unsigned long port, const void *src, unsigned long count) | |||
| 277 | const unsigned int *sp = src; | 279 | const unsigned int *sp = src; |
| 278 | 280 | ||
| 279 | while (count--) | 281 | while (count--) |
| 280 | platform_outl(*sp++, port); | 282 | platform_outl(get_unaligned(sp++), port); |
| 281 | } | 283 | } |
| 282 | 284 | ||
| 283 | /* | 285 | /* |
diff --git a/arch/ia64/kernel/smpboot.c b/arch/ia64/kernel/smpboot.c index b39853a292d5..bcea81e432fd 100644 --- a/arch/ia64/kernel/smpboot.c +++ b/arch/ia64/kernel/smpboot.c | |||
| @@ -138,6 +138,7 @@ cpumask_t cpu_possible_map = CPU_MASK_NONE; | |||
| 138 | EXPORT_SYMBOL(cpu_possible_map); | 138 | EXPORT_SYMBOL(cpu_possible_map); |
| 139 | 139 | ||
| 140 | cpumask_t cpu_core_map[NR_CPUS] __cacheline_aligned; | 140 | cpumask_t cpu_core_map[NR_CPUS] __cacheline_aligned; |
| 141 | EXPORT_SYMBOL(cpu_core_map); | ||
| 141 | DEFINE_PER_CPU_SHARED_ALIGNED(cpumask_t, cpu_sibling_map); | 142 | DEFINE_PER_CPU_SHARED_ALIGNED(cpumask_t, cpu_sibling_map); |
| 142 | EXPORT_PER_CPU_SYMBOL(cpu_sibling_map); | 143 | EXPORT_PER_CPU_SYMBOL(cpu_sibling_map); |
| 143 | 144 | ||
diff --git a/arch/mips/emma2rh/markeins/setup.c b/arch/mips/emma2rh/markeins/setup.c index 822a20e21fa4..b6a23ad539f8 100644 --- a/arch/mips/emma2rh/markeins/setup.c +++ b/arch/mips/emma2rh/markeins/setup.c | |||
| @@ -25,23 +25,9 @@ | |||
| 25 | #include <linux/init.h> | 25 | #include <linux/init.h> |
| 26 | #include <linux/kernel.h> | 26 | #include <linux/kernel.h> |
| 27 | #include <linux/types.h> | 27 | #include <linux/types.h> |
| 28 | #include <linux/initrd.h> | 28 | |
| 29 | #include <linux/irq.h> | ||
| 30 | #include <linux/ioport.h> | ||
| 31 | #include <linux/param.h> /* for HZ */ | ||
| 32 | #include <linux/root_dev.h> | ||
| 33 | #include <linux/serial.h> | ||
| 34 | #include <linux/serial_core.h> | ||
| 35 | |||
| 36 | #include <asm/cpu.h> | ||
| 37 | #include <asm/bootinfo.h> | ||
| 38 | #include <asm/addrspace.h> | ||
| 39 | #include <asm/time.h> | 29 | #include <asm/time.h> |
| 40 | #include <asm/bcache.h> | ||
| 41 | #include <asm/irq.h> | ||
| 42 | #include <asm/reboot.h> | 30 | #include <asm/reboot.h> |
| 43 | #include <asm/traps.h> | ||
| 44 | #include <asm/debug.h> | ||
| 45 | 31 | ||
| 46 | #include <asm/emma2rh/emma2rh.h> | 32 | #include <asm/emma2rh/emma2rh.h> |
| 47 | 33 | ||
diff --git a/arch/mips/jazz/setup.c b/arch/mips/jazz/setup.c index b59ba6b93cdd..7043f6b9ff3c 100644 --- a/arch/mips/jazz/setup.c +++ b/arch/mips/jazz/setup.c | |||
| @@ -5,33 +5,22 @@ | |||
| 5 | * License. See the file "COPYING" in the main directory of this archive | 5 | * License. See the file "COPYING" in the main directory of this archive |
| 6 | * for more details. | 6 | * for more details. |
| 7 | * | 7 | * |
| 8 | * Copyright (C) 1996, 1997, 1998, 2001, 07 by Ralf Baechle | 8 | * Copyright (C) 1996, 1997, 1998, 2001, 07, 08 by Ralf Baechle |
| 9 | * Copyright (C) 2001 MIPS Technologies, Inc. | 9 | * Copyright (C) 2001 MIPS Technologies, Inc. |
| 10 | * Copyright (C) 2007 by Thomas Bogendoerfer | 10 | * Copyright (C) 2007 by Thomas Bogendoerfer |
| 11 | */ | 11 | */ |
| 12 | #include <linux/eisa.h> | 12 | #include <linux/eisa.h> |
| 13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
| 14 | #include <linux/ioport.h> | 14 | #include <linux/ioport.h> |
| 15 | #include <linux/sched.h> | ||
| 16 | #include <linux/interrupt.h> | ||
| 17 | #include <linux/mm.h> | ||
| 18 | #include <linux/console.h> | 15 | #include <linux/console.h> |
| 19 | #include <linux/fb.h> | ||
| 20 | #include <linux/pm.h> | ||
| 21 | #include <linux/screen_info.h> | 16 | #include <linux/screen_info.h> |
| 22 | #include <linux/platform_device.h> | 17 | #include <linux/platform_device.h> |
| 23 | #include <linux/serial_8250.h> | 18 | #include <linux/serial_8250.h> |
| 24 | 19 | ||
| 25 | #include <asm/bootinfo.h> | ||
| 26 | #include <asm/irq.h> | ||
| 27 | #include <asm/jazz.h> | 20 | #include <asm/jazz.h> |
| 28 | #include <asm/jazzdma.h> | 21 | #include <asm/jazzdma.h> |
| 29 | #include <asm/reboot.h> | 22 | #include <asm/reboot.h> |
| 30 | #include <asm/io.h> | ||
| 31 | #include <asm/pgtable.h> | 23 | #include <asm/pgtable.h> |
| 32 | #include <asm/time.h> | ||
| 33 | #include <asm/traps.h> | ||
| 34 | #include <asm/mc146818-time.h> | ||
| 35 | 24 | ||
| 36 | extern asmlinkage void jazz_handle_int(void); | 25 | extern asmlinkage void jazz_handle_int(void); |
| 37 | 26 | ||
diff --git a/arch/mips/kernel/.gitignore b/arch/mips/kernel/.gitignore new file mode 100644 index 000000000000..c5f676c3c224 --- /dev/null +++ b/arch/mips/kernel/.gitignore | |||
| @@ -0,0 +1 @@ | |||
| vmlinux.lds | |||
diff --git a/arch/mips/kernel/kgdb.c b/arch/mips/kernel/kgdb.c index c5a8b2d21ca4..8f6d58ede33c 100644 --- a/arch/mips/kernel/kgdb.c +++ b/arch/mips/kernel/kgdb.c | |||
| @@ -62,13 +62,13 @@ void arch_kgdb_breakpoint(void) | |||
| 62 | 62 | ||
| 63 | static void kgdb_call_nmi_hook(void *ignored) | 63 | static void kgdb_call_nmi_hook(void *ignored) |
| 64 | { | 64 | { |
| 65 | kgdb_nmicallback(raw_smp_processor_id(), (void *)0); | 65 | kgdb_nmicallback(raw_smp_processor_id(), NULL); |
| 66 | } | 66 | } |
| 67 | 67 | ||
| 68 | void kgdb_roundup_cpus(unsigned long flags) | 68 | void kgdb_roundup_cpus(unsigned long flags) |
| 69 | { | 69 | { |
| 70 | local_irq_enable(); | 70 | local_irq_enable(); |
| 71 | smp_call_function(kgdb_call_nmi_hook, NULL, NULL); | 71 | smp_call_function(kgdb_call_nmi_hook, NULL, 0); |
| 72 | local_irq_disable(); | 72 | local_irq_disable(); |
| 73 | } | 73 | } |
| 74 | 74 | ||
| @@ -190,9 +190,6 @@ static int kgdb_mips_notify(struct notifier_block *self, unsigned long cmd, | |||
| 190 | struct pt_regs *regs = args->regs; | 190 | struct pt_regs *regs = args->regs; |
| 191 | int trap = (regs->cp0_cause & 0x7c) >> 2; | 191 | int trap = (regs->cp0_cause & 0x7c) >> 2; |
| 192 | 192 | ||
| 193 | if (fixup_exception(regs)) | ||
| 194 | return NOTIFY_DONE; | ||
| 195 | |||
| 196 | /* Userpace events, ignore. */ | 193 | /* Userpace events, ignore. */ |
| 197 | if (user_mode(regs)) | 194 | if (user_mode(regs)) |
| 198 | return NOTIFY_DONE; | 195 | return NOTIFY_DONE; |
diff --git a/arch/mips/kernel/scall32-o32.S b/arch/mips/kernel/scall32-o32.S index fc4fd4d705e2..5e75a316f6b1 100644 --- a/arch/mips/kernel/scall32-o32.S +++ b/arch/mips/kernel/scall32-o32.S | |||
| @@ -647,6 +647,12 @@ einval: li v0, -EINVAL | |||
| 647 | sys sys_timerfd_create 2 | 647 | sys sys_timerfd_create 2 |
| 648 | sys sys_timerfd_gettime 2 | 648 | sys sys_timerfd_gettime 2 |
| 649 | sys sys_timerfd_settime 4 | 649 | sys sys_timerfd_settime 4 |
| 650 | sys sys_signalfd4 4 | ||
| 651 | sys sys_eventfd2 2 /* 4325 */ | ||
| 652 | sys sys_epoll_create1 1 | ||
| 653 | sys sys_dup3 3 | ||
| 654 | sys sys_pipe2 2 | ||
| 655 | sys sys_inotify_init1 1 | ||
| 650 | .endm | 656 | .endm |
| 651 | 657 | ||
| 652 | /* We pre-compute the number of _instruction_ bytes needed to | 658 | /* We pre-compute the number of _instruction_ bytes needed to |
diff --git a/arch/mips/kernel/scall64-64.S b/arch/mips/kernel/scall64-64.S index 2b73fd1e4528..3d58204c9d44 100644 --- a/arch/mips/kernel/scall64-64.S +++ b/arch/mips/kernel/scall64-64.S | |||
| @@ -481,4 +481,10 @@ sys_call_table: | |||
| 481 | PTR sys_timerfd_create /* 5280 */ | 481 | PTR sys_timerfd_create /* 5280 */ |
| 482 | PTR sys_timerfd_gettime | 482 | PTR sys_timerfd_gettime |
| 483 | PTR sys_timerfd_settime | 483 | PTR sys_timerfd_settime |
| 484 | PTR sys_signalfd4 | ||
| 485 | PTR sys_eventfd2 | ||
| 486 | PTR sys_epoll_create1 /* 5285 */ | ||
| 487 | PTR sys_dup3 | ||
| 488 | PTR sys_pipe2 | ||
| 489 | PTR sys_inotify_init1 | ||
| 484 | .size sys_call_table,.-sys_call_table | 490 | .size sys_call_table,.-sys_call_table |
diff --git a/arch/mips/kernel/scall64-n32.S b/arch/mips/kernel/scall64-n32.S index 2654e75d2fef..da7f1b6ea0fb 100644 --- a/arch/mips/kernel/scall64-n32.S +++ b/arch/mips/kernel/scall64-n32.S | |||
| @@ -407,4 +407,10 @@ EXPORT(sysn32_call_table) | |||
| 407 | PTR sys_timerfd_create | 407 | PTR sys_timerfd_create |
| 408 | PTR sys_timerfd_gettime /* 5285 */ | 408 | PTR sys_timerfd_gettime /* 5285 */ |
| 409 | PTR sys_timerfd_settime | 409 | PTR sys_timerfd_settime |
| 410 | PTR sys_signalfd4 | ||
| 411 | PTR sys_eventfd2 | ||
| 412 | PTR sys_epoll_create1 | ||
| 413 | PTR sys_dup3 /* 5290 */ | ||
| 414 | PTR sys_pipe2 | ||
| 415 | PTR sys_inotify_init1 | ||
| 410 | .size sysn32_call_table,.-sysn32_call_table | 416 | .size sysn32_call_table,.-sysn32_call_table |
diff --git a/arch/mips/kernel/scall64-o32.S b/arch/mips/kernel/scall64-o32.S index 76167bea5a70..d7cd1aac9ada 100644 --- a/arch/mips/kernel/scall64-o32.S +++ b/arch/mips/kernel/scall64-o32.S | |||
| @@ -529,4 +529,10 @@ sys_call_table: | |||
| 529 | PTR sys_timerfd_create | 529 | PTR sys_timerfd_create |
| 530 | PTR sys_timerfd_gettime | 530 | PTR sys_timerfd_gettime |
| 531 | PTR sys_timerfd_settime | 531 | PTR sys_timerfd_settime |
| 532 | PTR compat_sys_signalfd4 | ||
| 533 | PTR sys_eventfd2 /* 4325 */ | ||
| 534 | PTR sys_epoll_create1 | ||
| 535 | PTR sys_dup3 | ||
| 536 | PTR sys_pipe2 | ||
| 537 | PTR sys_inotify_init1 | ||
| 532 | .size sys_call_table,.-sys_call_table | 538 | .size sys_call_table,.-sys_call_table |
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index 8af84867e74d..2aae76bce293 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c | |||
| @@ -78,7 +78,7 @@ void __init add_memory_region(phys_t start, phys_t size, long type) | |||
| 78 | 78 | ||
| 79 | /* Sanity check */ | 79 | /* Sanity check */ |
| 80 | if (start + size < start) { | 80 | if (start + size < start) { |
| 81 | printk("Trying to add an invalid memory region, skipped\n"); | 81 | pr_warning("Trying to add an invalid memory region, skipped\n"); |
| 82 | return; | 82 | return; |
| 83 | } | 83 | } |
| 84 | 84 | ||
| @@ -92,7 +92,7 @@ void __init add_memory_region(phys_t start, phys_t size, long type) | |||
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | if (x == BOOT_MEM_MAP_MAX) { | 94 | if (x == BOOT_MEM_MAP_MAX) { |
| 95 | printk("Ooops! Too many entries in the memory map!\n"); | 95 | pr_err("Ooops! Too many entries in the memory map!\n"); |
| 96 | return; | 96 | return; |
| 97 | } | 97 | } |
| 98 | 98 | ||
| @@ -108,22 +108,22 @@ static void __init print_memory_map(void) | |||
| 108 | const int field = 2 * sizeof(unsigned long); | 108 | const int field = 2 * sizeof(unsigned long); |
| 109 | 109 | ||
| 110 | for (i = 0; i < boot_mem_map.nr_map; i++) { | 110 | for (i = 0; i < boot_mem_map.nr_map; i++) { |
| 111 | printk(" memory: %0*Lx @ %0*Lx ", | 111 | printk(KERN_INFO " memory: %0*Lx @ %0*Lx ", |
| 112 | field, (unsigned long long) boot_mem_map.map[i].size, | 112 | field, (unsigned long long) boot_mem_map.map[i].size, |
| 113 | field, (unsigned long long) boot_mem_map.map[i].addr); | 113 | field, (unsigned long long) boot_mem_map.map[i].addr); |
| 114 | 114 | ||
| 115 | switch (boot_mem_map.map[i].type) { | 115 | switch (boot_mem_map.map[i].type) { |
| 116 | case BOOT_MEM_RAM: | 116 | case BOOT_MEM_RAM: |
| 117 | printk("(usable)\n"); | 117 | printk(KERN_CONT "(usable)\n"); |
| 118 | break; | 118 | break; |
| 119 | case BOOT_MEM_ROM_DATA: | 119 | case BOOT_MEM_ROM_DATA: |
| 120 | printk("(ROM data)\n"); | 120 | printk(KERN_CONT "(ROM data)\n"); |
| 121 | break; | 121 | break; |
| 122 | case BOOT_MEM_RESERVED: | 122 | case BOOT_MEM_RESERVED: |
| 123 | printk("(reserved)\n"); | 123 | printk(KERN_CONT "(reserved)\n"); |
| 124 | break; | 124 | break; |
| 125 | default: | 125 | default: |
| 126 | printk("type %lu\n", boot_mem_map.map[i].type); | 126 | printk(KERN_CONT "type %lu\n", boot_mem_map.map[i].type); |
| 127 | break; | 127 | break; |
| 128 | } | 128 | } |
| 129 | } | 129 | } |
| @@ -185,11 +185,11 @@ static unsigned long __init init_initrd(void) | |||
| 185 | 185 | ||
| 186 | sanitize: | 186 | sanitize: |
| 187 | if (initrd_start & ~PAGE_MASK) { | 187 | if (initrd_start & ~PAGE_MASK) { |
| 188 | printk(KERN_ERR "initrd start must be page aligned\n"); | 188 | pr_err("initrd start must be page aligned\n"); |
| 189 | goto disable; | 189 | goto disable; |
| 190 | } | 190 | } |
| 191 | if (initrd_start < PAGE_OFFSET) { | 191 | if (initrd_start < PAGE_OFFSET) { |
| 192 | printk(KERN_ERR "initrd start < PAGE_OFFSET\n"); | 192 | pr_err("initrd start < PAGE_OFFSET\n"); |
| 193 | goto disable; | 193 | goto disable; |
| 194 | } | 194 | } |
| 195 | 195 | ||
| @@ -221,18 +221,18 @@ static void __init finalize_initrd(void) | |||
| 221 | goto disable; | 221 | goto disable; |
| 222 | } | 222 | } |
| 223 | if (__pa(initrd_end) > PFN_PHYS(max_low_pfn)) { | 223 | if (__pa(initrd_end) > PFN_PHYS(max_low_pfn)) { |
| 224 | printk("Initrd extends beyond end of memory"); | 224 | printk(KERN_ERR "Initrd extends beyond end of memory"); |
| 225 | goto disable; | 225 | goto disable; |
| 226 | } | 226 | } |
| 227 | 227 | ||
| 228 | reserve_bootmem(__pa(initrd_start), size, BOOTMEM_DEFAULT); | 228 | reserve_bootmem(__pa(initrd_start), size, BOOTMEM_DEFAULT); |
| 229 | initrd_below_start_ok = 1; | 229 | initrd_below_start_ok = 1; |
| 230 | 230 | ||
| 231 | printk(KERN_INFO "Initial ramdisk at: 0x%lx (%lu bytes)\n", | 231 | pr_info("Initial ramdisk at: 0x%lx (%lu bytes)\n", |
| 232 | initrd_start, size); | 232 | initrd_start, size); |
| 233 | return; | 233 | return; |
| 234 | disable: | 234 | disable: |
| 235 | printk(" - disabling initrd\n"); | 235 | printk(KERN_CONT " - disabling initrd\n"); |
| 236 | initrd_start = 0; | 236 | initrd_start = 0; |
| 237 | initrd_end = 0; | 237 | initrd_end = 0; |
| 238 | } | 238 | } |
| @@ -310,14 +310,12 @@ static void __init bootmem_init(void) | |||
| 310 | if (min_low_pfn >= max_low_pfn) | 310 | if (min_low_pfn >= max_low_pfn) |
| 311 | panic("Incorrect memory mapping !!!"); | 311 | panic("Incorrect memory mapping !!!"); |
| 312 | if (min_low_pfn > ARCH_PFN_OFFSET) { | 312 | if (min_low_pfn > ARCH_PFN_OFFSET) { |
| 313 | printk(KERN_INFO | 313 | pr_info("Wasting %lu bytes for tracking %lu unused pages\n", |
| 314 | "Wasting %lu bytes for tracking %lu unused pages\n", | 314 | (min_low_pfn - ARCH_PFN_OFFSET) * sizeof(struct page), |
| 315 | (min_low_pfn - ARCH_PFN_OFFSET) * sizeof(struct page), | 315 | min_low_pfn - ARCH_PFN_OFFSET); |
| 316 | min_low_pfn - ARCH_PFN_OFFSET); | ||
| 317 | } else if (min_low_pfn < ARCH_PFN_OFFSET) { | 316 | } else if (min_low_pfn < ARCH_PFN_OFFSET) { |
| 318 | printk(KERN_INFO | 317 | pr_info("%lu free pages won't be used\n", |
| 319 | "%lu free pages won't be used\n", | 318 | ARCH_PFN_OFFSET - min_low_pfn); |
| 320 | ARCH_PFN_OFFSET - min_low_pfn); | ||
| 321 | } | 319 | } |
| 322 | min_low_pfn = ARCH_PFN_OFFSET; | 320 | min_low_pfn = ARCH_PFN_OFFSET; |
| 323 | 321 | ||
| @@ -471,7 +469,7 @@ static void __init arch_mem_init(char **cmdline_p) | |||
| 471 | /* call board setup routine */ | 469 | /* call board setup routine */ |
| 472 | plat_mem_setup(); | 470 | plat_mem_setup(); |
| 473 | 471 | ||
| 474 | printk("Determined physical RAM map:\n"); | 472 | pr_info("Determined physical RAM map:\n"); |
| 475 | print_memory_map(); | 473 | print_memory_map(); |
| 476 | 474 | ||
| 477 | strlcpy(command_line, arcs_cmdline, sizeof(command_line)); | 475 | strlcpy(command_line, arcs_cmdline, sizeof(command_line)); |
| @@ -482,7 +480,7 @@ static void __init arch_mem_init(char **cmdline_p) | |||
| 482 | parse_early_param(); | 480 | parse_early_param(); |
| 483 | 481 | ||
| 484 | if (usermem) { | 482 | if (usermem) { |
| 485 | printk("User-defined physical RAM map:\n"); | 483 | pr_info("User-defined physical RAM map:\n"); |
| 486 | print_memory_map(); | 484 | print_memory_map(); |
| 487 | } | 485 | } |
| 488 | 486 | ||
diff --git a/arch/mips/pci/pci-ip27.c b/arch/mips/pci/pci-ip27.c index ce92f82b16d2..bd78368c82bf 100644 --- a/arch/mips/pci/pci-ip27.c +++ b/arch/mips/pci/pci-ip27.c | |||
| @@ -205,6 +205,7 @@ int pcibus_to_node(struct pci_bus *bus) | |||
| 205 | 205 | ||
| 206 | return bc->nasid; | 206 | return bc->nasid; |
| 207 | } | 207 | } |
| 208 | EXPORT_SYMBOL(pcibus_to_node); | ||
| 208 | 209 | ||
| 209 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SGI, PCI_DEVICE_ID_SGI_IOC3, | 210 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SGI, PCI_DEVICE_ID_SGI_IOC3, |
| 210 | pci_fixup_ioc3); | 211 | pci_fixup_ioc3); |
diff --git a/arch/mips/rb532/devices.c b/arch/mips/rb532/devices.c index 44fb0a62877f..82ab395efa33 100644 --- a/arch/mips/rb532/devices.c +++ b/arch/mips/rb532/devices.c | |||
| @@ -49,8 +49,6 @@ | |||
| 49 | #define GPIO_ALE (1 << 0x0a) | 49 | #define GPIO_ALE (1 << 0x0a) |
| 50 | #define GPIO_CLE (1 << 0x0b) | 50 | #define GPIO_CLE (1 << 0x0b) |
| 51 | 51 | ||
| 52 | extern char *board_type; | ||
| 53 | |||
| 54 | static struct resource korina_dev0_res[] = { | 52 | static struct resource korina_dev0_res[] = { |
| 55 | { | 53 | { |
| 56 | .name = "korina_regs", | 54 | .name = "korina_regs", |
| @@ -265,14 +263,6 @@ static void __init parse_mac_addr(char *macstr) | |||
| 265 | } | 263 | } |
| 266 | 264 | ||
| 267 | 265 | ||
| 268 | /* DEVICE CONTROLLER 1 */ | ||
| 269 | #define CFG_DC_DEV1 ((void *)0xb8010010) | ||
| 270 | #define CFG_DC_DEV2 ((void *)0xb8010020) | ||
| 271 | #define CFG_DC_DEVBASE 0x0 | ||
| 272 | #define CFG_DC_DEVMASK 0x4 | ||
| 273 | #define CFG_DC_DEVC 0x8 | ||
| 274 | #define CFG_DC_DEVTC 0xC | ||
| 275 | |||
| 276 | /* NAND definitions */ | 266 | /* NAND definitions */ |
| 277 | #define NAND_CHIP_DELAY 25 | 267 | #define NAND_CHIP_DELAY 25 |
| 278 | 268 | ||
| @@ -301,16 +291,16 @@ static void __init rb532_nand_setup(void) | |||
| 301 | static int __init plat_setup_devices(void) | 291 | static int __init plat_setup_devices(void) |
| 302 | { | 292 | { |
| 303 | /* Look for the CF card reader */ | 293 | /* Look for the CF card reader */ |
| 304 | if (!readl(CFG_DC_DEV1 + CFG_DC_DEVMASK)) | 294 | if (!readl(IDT434_REG_BASE + DEV1MASK)) |
| 305 | rb532_devs[1] = NULL; | 295 | rb532_devs[1] = NULL; |
| 306 | else { | 296 | else { |
| 307 | cf_slot0_res[0].start = | 297 | cf_slot0_res[0].start = |
| 308 | readl(CFG_DC_DEV1 + CFG_DC_DEVBASE); | 298 | readl(IDT434_REG_BASE + DEV1BASE); |
| 309 | cf_slot0_res[0].end = cf_slot0_res[0].start + 0x1000; | 299 | cf_slot0_res[0].end = cf_slot0_res[0].start + 0x1000; |
| 310 | } | 300 | } |
| 311 | 301 | ||
| 312 | /* Read the NAND resources from the device controller */ | 302 | /* Read the NAND resources from the device controller */ |
| 313 | nand_slot0_res[0].start = readl(CFG_DC_DEV2 + CFG_DC_DEVBASE); | 303 | nand_slot0_res[0].start = readl(IDT434_REG_BASE + DEV2BASE); |
| 314 | nand_slot0_res[0].end = nand_slot0_res[0].start + 0x1000; | 304 | nand_slot0_res[0].end = nand_slot0_res[0].start + 0x1000; |
| 315 | 305 | ||
| 316 | /* Initialise the NAND device */ | 306 | /* Initialise the NAND device */ |
diff --git a/arch/mips/txx9/generic/setup.c b/arch/mips/txx9/generic/setup.c index 1bc57d0f4c5c..0afe94c48fb6 100644 --- a/arch/mips/txx9/generic/setup.c +++ b/arch/mips/txx9/generic/setup.c | |||
| @@ -328,6 +328,9 @@ void __init arch_init_irq(void) | |||
| 328 | 328 | ||
| 329 | void __init plat_time_init(void) | 329 | void __init plat_time_init(void) |
| 330 | { | 330 | { |
| 331 | #ifdef CONFIG_CPU_TX49XX | ||
| 332 | mips_hpt_frequency = txx9_cpu_clock / 2; | ||
| 333 | #endif | ||
| 331 | txx9_board_vec->time_init(); | 334 | txx9_board_vec->time_init(); |
| 332 | } | 335 | } |
| 333 | 336 | ||
diff --git a/arch/powerpc/boot/dts/mpc8641_hpcn.dts b/arch/powerpc/boot/dts/mpc8641_hpcn.dts index ae08761ffff1..d665e767822a 100644 --- a/arch/powerpc/boot/dts/mpc8641_hpcn.dts +++ b/arch/powerpc/boot/dts/mpc8641_hpcn.dts | |||
| @@ -411,7 +411,7 @@ | |||
| 411 | 0xe000 0 0 1 &i8259 12 2 | 411 | 0xe000 0 0 1 &i8259 12 2 |
| 412 | 0xe100 0 0 2 &i8259 9 2 | 412 | 0xe100 0 0 2 &i8259 9 2 |
| 413 | 0xe200 0 0 3 &i8259 10 2 | 413 | 0xe200 0 0 3 &i8259 10 2 |
| 414 | 0xe300 0 0 4 &i8259 112 | 414 | 0xe300 0 0 4 &i8259 11 2 |
| 415 | 415 | ||
| 416 | // IDSEL 0x1d Audio | 416 | // IDSEL 0x1d Audio |
| 417 | 0xe800 0 0 1 &i8259 6 2 | 417 | 0xe800 0 0 1 &i8259 6 2 |
diff --git a/arch/powerpc/boot/dts/tqm8548-bigflash.dts b/arch/powerpc/boot/dts/tqm8548-bigflash.dts index 64d2d5bbcdf1..4199e89b4e50 100644 --- a/arch/powerpc/boot/dts/tqm8548-bigflash.dts +++ b/arch/powerpc/boot/dts/tqm8548-bigflash.dts | |||
| @@ -50,13 +50,14 @@ | |||
| 50 | reg = <0x00000000 0x00000000>; // Filled in by U-Boot | 50 | reg = <0x00000000 0x00000000>; // Filled in by U-Boot |
| 51 | }; | 51 | }; |
| 52 | 52 | ||
| 53 | soc8548@a0000000 { | 53 | soc@a0000000 { |
| 54 | #address-cells = <1>; | 54 | #address-cells = <1>; |
| 55 | #size-cells = <1>; | 55 | #size-cells = <1>; |
| 56 | device_type = "soc"; | 56 | device_type = "soc"; |
| 57 | ranges = <0x0 0xa0000000 0x100000>; | 57 | ranges = <0x0 0xa0000000 0x100000>; |
| 58 | reg = <0xa0000000 0x1000>; // CCSRBAR | 58 | reg = <0xa0000000 0x1000>; // CCSRBAR |
| 59 | bus-frequency = <0>; | 59 | bus-frequency = <0>; |
| 60 | compatible = "fsl,mpc8548-immr", "simple-bus"; | ||
| 60 | 61 | ||
| 61 | memory-controller@2000 { | 62 | memory-controller@2000 { |
| 62 | compatible = "fsl,mpc8548-memory-controller"; | 63 | compatible = "fsl,mpc8548-memory-controller"; |
| @@ -83,6 +84,11 @@ | |||
| 83 | interrupts = <43 2>; | 84 | interrupts = <43 2>; |
| 84 | interrupt-parent = <&mpic>; | 85 | interrupt-parent = <&mpic>; |
| 85 | dfsrr; | 86 | dfsrr; |
| 87 | |||
| 88 | rtc@68 { | ||
| 89 | compatible = "dallas,ds1337"; | ||
| 90 | reg = <0x68>; | ||
| 91 | }; | ||
| 86 | }; | 92 | }; |
| 87 | 93 | ||
| 88 | i2c@3100 { | 94 | i2c@3100 { |
diff --git a/arch/powerpc/boot/dts/tqm8548.dts b/arch/powerpc/boot/dts/tqm8548.dts index 2563112cabd3..58ee4185454b 100644 --- a/arch/powerpc/boot/dts/tqm8548.dts +++ b/arch/powerpc/boot/dts/tqm8548.dts | |||
| @@ -50,13 +50,14 @@ | |||
| 50 | reg = <0x00000000 0x00000000>; // Filled in by U-Boot | 50 | reg = <0x00000000 0x00000000>; // Filled in by U-Boot |
| 51 | }; | 51 | }; |
| 52 | 52 | ||
| 53 | soc8548@e0000000 { | 53 | soc@e0000000 { |
| 54 | #address-cells = <1>; | 54 | #address-cells = <1>; |
| 55 | #size-cells = <1>; | 55 | #size-cells = <1>; |
| 56 | device_type = "soc"; | 56 | device_type = "soc"; |
| 57 | ranges = <0x0 0xe0000000 0x100000>; | 57 | ranges = <0x0 0xe0000000 0x100000>; |
| 58 | reg = <0xe0000000 0x1000>; // CCSRBAR | 58 | reg = <0xe0000000 0x1000>; // CCSRBAR |
| 59 | bus-frequency = <0>; | 59 | bus-frequency = <0>; |
| 60 | compatible = "fsl,mpc8548-immr", "simple-bus"; | ||
| 60 | 61 | ||
| 61 | memory-controller@2000 { | 62 | memory-controller@2000 { |
| 62 | compatible = "fsl,mpc8548-memory-controller"; | 63 | compatible = "fsl,mpc8548-memory-controller"; |
diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper index 644bf9d4ea00..965c237c122d 100755 --- a/arch/powerpc/boot/wrapper +++ b/arch/powerpc/boot/wrapper | |||
| @@ -165,7 +165,7 @@ cuboot*) | |||
| 165 | binary=y | 165 | binary=y |
| 166 | gzip= | 166 | gzip= |
| 167 | case "$platform" in | 167 | case "$platform" in |
| 168 | *-mpc885ads|*-adder875*|*-ep88xc) | 168 | *-mpc866ads|*-mpc885ads|*-adder875*|*-ep88xc) |
| 169 | platformo=$object/cuboot-8xx.o | 169 | platformo=$object/cuboot-8xx.o |
| 170 | ;; | 170 | ;; |
| 171 | *5200*|*-motionpro) | 171 | *5200*|*-motionpro) |
diff --git a/arch/powerpc/configs/asp8347_defconfig b/arch/powerpc/configs/83xx/asp8347_defconfig index 60bb4d106c87..5e6780a088ce 100644 --- a/arch/powerpc/configs/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.25-rc6 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Tue May 6 02:21:00 2008 | 4 | # Thu Aug 21 00:52:01 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | CONFIG_FSL_EMB_PERFMON=y | 18 | CONFIG_FSL_EMB_PERFMON=y |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -31,6 +32,9 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 37 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 40 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -50,6 +54,9 @@ CONFIG_AUDIT_ARCH=y | |||
| 50 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 51 | # CONFIG_DEFAULT_UIMAGE is not set | 55 | # CONFIG_DEFAULT_UIMAGE is not set |
| 52 | CONFIG_REDBOOT=y | 56 | CONFIG_REDBOOT=y |
| 57 | CONFIG_HIBERNATE_32=y | ||
| 58 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 59 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 53 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 54 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 55 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -92,6 +99,7 @@ CONFIG_HOTPLUG=y | |||
| 92 | CONFIG_PRINTK=y | 99 | CONFIG_PRINTK=y |
| 93 | CONFIG_BUG=y | 100 | CONFIG_BUG=y |
| 94 | CONFIG_ELF_CORE=y | 101 | CONFIG_ELF_CORE=y |
| 102 | CONFIG_PCSPKR_PLATFORM=y | ||
| 95 | CONFIG_COMPAT_BRK=y | 103 | CONFIG_COMPAT_BRK=y |
| 96 | CONFIG_BASE_FULL=y | 104 | CONFIG_BASE_FULL=y |
| 97 | CONFIG_FUTEX=y | 105 | CONFIG_FUTEX=y |
| @@ -109,24 +117,33 @@ CONFIG_SLUB=y | |||
| 109 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
| 110 | # CONFIG_MARKERS is not set | 118 | # CONFIG_MARKERS is not set |
| 111 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 121 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 112 | CONFIG_HAVE_KPROBES=y | 122 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 123 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 125 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 126 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 127 | # CONFIG_HAVE_CLK is not set | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 128 | CONFIG_PROC_PAGE_MONITOR=y |
| 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 115 | CONFIG_SLABINFO=y | 130 | CONFIG_SLABINFO=y |
| 116 | CONFIG_RT_MUTEXES=y | 131 | CONFIG_RT_MUTEXES=y |
| 117 | # CONFIG_TINY_SHMEM is not set | 132 | # CONFIG_TINY_SHMEM is not set |
| 118 | CONFIG_BASE_SMALL=0 | 133 | CONFIG_BASE_SMALL=0 |
| 119 | CONFIG_MODULES=y | 134 | CONFIG_MODULES=y |
| 135 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 120 | CONFIG_MODULE_UNLOAD=y | 136 | CONFIG_MODULE_UNLOAD=y |
| 121 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 137 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 122 | # CONFIG_MODVERSIONS is not set | 138 | # CONFIG_MODVERSIONS is not set |
| 123 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 139 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 124 | # CONFIG_KMOD is not set | 140 | CONFIG_KMOD=y |
| 125 | CONFIG_BLOCK=y | 141 | CONFIG_BLOCK=y |
| 126 | # CONFIG_LBD is not set | 142 | # CONFIG_LBD is not set |
| 127 | # CONFIG_BLK_DEV_IO_TRACE is not set | 143 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 128 | # CONFIG_LSF is not set | 144 | # CONFIG_LSF is not set |
| 129 | # CONFIG_BLK_DEV_BSG is not set | 145 | # CONFIG_BLK_DEV_BSG is not set |
| 146 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 130 | 147 | ||
| 131 | # | 148 | # |
| 132 | # IO Schedulers | 149 | # IO Schedulers |
| @@ -145,38 +162,49 @@ CONFIG_CLASSIC_RCU=y | |||
| 145 | # | 162 | # |
| 146 | # Platform support | 163 | # Platform support |
| 147 | # | 164 | # |
| 148 | # CONFIG_PPC_MULTIPLATFORM is not set | 165 | CONFIG_PPC_MULTIPLATFORM=y |
| 149 | # CONFIG_PPC_82xx is not set | 166 | CONFIG_CLASSIC32=y |
| 150 | CONFIG_PPC_83xx=y | 167 | CONFIG_PPC_CHRP=y |
| 151 | # CONFIG_PPC_86xx is not set | 168 | # CONFIG_MPC5121_ADS is not set |
| 152 | # CONFIG_PPC_MPC512x is not set | 169 | # CONFIG_MPC5121_GENERIC is not set |
| 153 | # CONFIG_PPC_MPC5121 is not set | 170 | # CONFIG_PPC_MPC52xx is not set |
| 171 | CONFIG_PPC_PMAC=y | ||
| 154 | # CONFIG_PPC_CELL is not set | 172 | # CONFIG_PPC_CELL is not set |
| 155 | # CONFIG_PPC_CELL_NATIVE is not set | 173 | # CONFIG_PPC_CELL_NATIVE is not set |
| 174 | # CONFIG_PPC_82xx is not set | ||
| 156 | # CONFIG_PQ2ADS is not set | 175 | # CONFIG_PQ2ADS is not set |
| 157 | CONFIG_MPC83xx=y | 176 | CONFIG_PPC_83xx=y |
| 158 | # CONFIG_MPC831x_RDB is not set | 177 | # CONFIG_MPC831x_RDB is not set |
| 159 | # CONFIG_MPC832x_MDS is not set | 178 | # CONFIG_MPC832x_MDS is not set |
| 160 | # CONFIG_MPC832x_RDB is not set | 179 | # CONFIG_MPC832x_RDB is not set |
| 161 | # CONFIG_MPC834x_MDS is not set | 180 | # CONFIG_MPC834x_MDS is not set |
| 162 | # CONFIG_MPC834x_ITX is not set | 181 | # CONFIG_MPC834x_ITX is not set |
| 163 | # CONFIG_MPC836x_MDS is not set | 182 | # CONFIG_MPC836x_MDS is not set |
| 183 | # CONFIG_MPC836x_RDK is not set | ||
| 164 | # CONFIG_MPC837x_MDS is not set | 184 | # CONFIG_MPC837x_MDS is not set |
| 165 | # CONFIG_MPC837x_RDB is not set | 185 | # CONFIG_MPC837x_RDB is not set |
| 166 | # CONFIG_SBC834x is not set | 186 | # CONFIG_SBC834x is not set |
| 167 | CONFIG_ASP834x=y | 187 | CONFIG_ASP834x=y |
| 168 | CONFIG_PPC_MPC834x=y | 188 | CONFIG_PPC_MPC834x=y |
| 189 | # CONFIG_PPC_86xx is not set | ||
| 190 | # CONFIG_EMBEDDED6xx is not set | ||
| 191 | CONFIG_PPC_NATIVE=y | ||
| 192 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 169 | CONFIG_IPIC=y | 193 | CONFIG_IPIC=y |
| 170 | # CONFIG_MPIC is not set | 194 | CONFIG_MPIC=y |
| 171 | # CONFIG_MPIC_WEIRD is not set | 195 | # CONFIG_MPIC_WEIRD is not set |
| 172 | # CONFIG_PPC_I8259 is not set | 196 | CONFIG_PPC_I8259=y |
| 173 | # CONFIG_PPC_RTAS is not set | 197 | CONFIG_PPC_RTAS=y |
| 198 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 199 | CONFIG_RTAS_PROC=y | ||
| 174 | # CONFIG_MMIO_NVRAM is not set | 200 | # CONFIG_MMIO_NVRAM is not set |
| 175 | # CONFIG_PPC_MPC106 is not set | 201 | CONFIG_PPC_MPC106=y |
| 176 | # CONFIG_PPC_970_NAP is not set | 202 | # CONFIG_PPC_970_NAP is not set |
| 177 | # CONFIG_PPC_INDIRECT_IO is not set | 203 | # CONFIG_PPC_INDIRECT_IO is not set |
| 178 | # CONFIG_GENERIC_IOMAP is not set | 204 | # CONFIG_GENERIC_IOMAP is not set |
| 179 | # CONFIG_CPU_FREQ is not set | 205 | # CONFIG_CPU_FREQ is not set |
| 206 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 207 | # CONFIG_TAU is not set | ||
| 180 | # CONFIG_FSL_ULI1575 is not set | 208 | # CONFIG_FSL_ULI1575 is not set |
| 181 | 209 | ||
| 182 | # | 210 | # |
| @@ -192,7 +220,7 @@ CONFIG_HZ_250=y | |||
| 192 | # CONFIG_HZ_300 is not set | 220 | # CONFIG_HZ_300 is not set |
| 193 | # CONFIG_HZ_1000 is not set | 221 | # CONFIG_HZ_1000 is not set |
| 194 | CONFIG_HZ=250 | 222 | CONFIG_HZ=250 |
| 195 | # CONFIG_SCHED_HRTICK is not set | 223 | CONFIG_SCHED_HRTICK=y |
| 196 | CONFIG_PREEMPT_NONE=y | 224 | CONFIG_PREEMPT_NONE=y |
| 197 | # CONFIG_PREEMPT_VOLUNTARY is not set | 225 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 198 | # CONFIG_PREEMPT is not set | 226 | # CONFIG_PREEMPT is not set |
| @@ -202,6 +230,7 @@ CONFIG_BINFMT_ELF=y | |||
| 202 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 230 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 203 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 231 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 204 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 232 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 233 | # CONFIG_KEXEC is not set | ||
| 205 | CONFIG_ARCH_FLATMEM_ENABLE=y | 234 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 206 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 235 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 207 | CONFIG_SELECT_MEMORY_MODEL=y | 236 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -212,13 +241,17 @@ CONFIG_FLATMEM=y | |||
| 212 | CONFIG_FLAT_NODE_MEM_MAP=y | 241 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 213 | # CONFIG_SPARSEMEM_STATIC is not set | 242 | # CONFIG_SPARSEMEM_STATIC is not set |
| 214 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 243 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 244 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 215 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 245 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 246 | CONFIG_MIGRATION=y | ||
| 216 | # CONFIG_RESOURCES_64BIT is not set | 247 | # CONFIG_RESOURCES_64BIT is not set |
| 217 | CONFIG_ZONE_DMA_FLAG=1 | 248 | CONFIG_ZONE_DMA_FLAG=1 |
| 218 | CONFIG_BOUNCE=y | 249 | CONFIG_BOUNCE=y |
| 219 | CONFIG_VIRT_TO_BUS=y | 250 | CONFIG_VIRT_TO_BUS=y |
| 251 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 220 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
| 221 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
| 254 | CONFIG_EXTRA_TARGETS="" | ||
| 222 | # CONFIG_PM is not set | 255 | # CONFIG_PM is not set |
| 223 | CONFIG_SECCOMP=y | 256 | CONFIG_SECCOMP=y |
| 224 | CONFIG_ISA_DMA_API=y | 257 | CONFIG_ISA_DMA_API=y |
| @@ -226,10 +259,13 @@ CONFIG_ISA_DMA_API=y | |||
| 226 | # | 259 | # |
| 227 | # Bus options | 260 | # Bus options |
| 228 | # | 261 | # |
| 262 | # CONFIG_ISA is not set | ||
| 229 | CONFIG_ZONE_DMA=y | 263 | CONFIG_ZONE_DMA=y |
| 230 | CONFIG_GENERIC_ISA_DMA=y | 264 | CONFIG_GENERIC_ISA_DMA=y |
| 231 | CONFIG_PPC_INDIRECT_PCI=y | 265 | CONFIG_PPC_INDIRECT_PCI=y |
| 232 | CONFIG_FSL_SOC=y | 266 | CONFIG_FSL_SOC=y |
| 267 | CONFIG_FSL_PCI=y | ||
| 268 | CONFIG_PPC_PCI_CHOICE=y | ||
| 233 | CONFIG_PCI=y | 269 | CONFIG_PCI=y |
| 234 | CONFIG_PCI_DOMAINS=y | 270 | CONFIG_PCI_DOMAINS=y |
| 235 | CONFIG_PCI_SYSCALL=y | 271 | CONFIG_PCI_SYSCALL=y |
| @@ -239,6 +275,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 239 | CONFIG_PCI_LEGACY=y | 275 | CONFIG_PCI_LEGACY=y |
| 240 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
| 241 | # CONFIG_HOTPLUG_PCI is not set | 277 | # CONFIG_HOTPLUG_PCI is not set |
| 278 | # CONFIG_HAS_RAPIDIO is not set | ||
| 242 | 279 | ||
| 243 | # | 280 | # |
| 244 | # Advanced setup | 281 | # Advanced setup |
| @@ -248,15 +285,11 @@ CONFIG_PCI_LEGACY=y | |||
| 248 | # | 285 | # |
| 249 | # Default settings for advanced configuration options are used | 286 | # Default settings for advanced configuration options are used |
| 250 | # | 287 | # |
| 251 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 252 | CONFIG_LOWMEM_SIZE=0x30000000 | 288 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 289 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 253 | CONFIG_KERNEL_START=0xc0000000 | 290 | CONFIG_KERNEL_START=0xc0000000 |
| 291 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 254 | CONFIG_TASK_SIZE=0xc0000000 | 292 | CONFIG_TASK_SIZE=0xc0000000 |
| 255 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 256 | |||
| 257 | # | ||
| 258 | # Networking | ||
| 259 | # | ||
| 260 | CONFIG_NET=y | 293 | CONFIG_NET=y |
| 261 | 294 | ||
| 262 | # | 295 | # |
| @@ -300,8 +333,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 300 | CONFIG_DEFAULT_TCP_CONG="cubic" | 333 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 301 | # CONFIG_TCP_MD5SIG is not set | 334 | # CONFIG_TCP_MD5SIG is not set |
| 302 | # CONFIG_IPV6 is not set | 335 | # CONFIG_IPV6 is not set |
| 303 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 304 | # CONFIG_INET6_TUNNEL is not set | ||
| 305 | # CONFIG_NETWORK_SECMARK is not set | 336 | # CONFIG_NETWORK_SECMARK is not set |
| 306 | # CONFIG_NETFILTER is not set | 337 | # CONFIG_NETFILTER is not set |
| 307 | # CONFIG_IP_DCCP is not set | 338 | # CONFIG_IP_DCCP is not set |
| @@ -363,6 +394,7 @@ CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED=y | |||
| 363 | # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set | 394 | # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set |
| 364 | # CONFIG_MTD_CMDLINE_PARTS is not set | 395 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 365 | CONFIG_MTD_OF_PARTS=y | 396 | CONFIG_MTD_OF_PARTS=y |
| 397 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 366 | 398 | ||
| 367 | # | 399 | # |
| 368 | # User Modules And Translation Layers | 400 | # User Modules And Translation Layers |
| @@ -434,9 +466,11 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 434 | # | 466 | # |
| 435 | # CONFIG_MTD_UBI is not set | 467 | # CONFIG_MTD_UBI is not set |
| 436 | CONFIG_OF_DEVICE=y | 468 | CONFIG_OF_DEVICE=y |
| 469 | CONFIG_OF_I2C=y | ||
| 437 | # CONFIG_PARPORT is not set | 470 | # CONFIG_PARPORT is not set |
| 438 | CONFIG_BLK_DEV=y | 471 | CONFIG_BLK_DEV=y |
| 439 | # CONFIG_BLK_DEV_FD is not set | 472 | # CONFIG_BLK_DEV_FD is not set |
| 473 | # CONFIG_MAC_FLOPPY is not set | ||
| 440 | # CONFIG_BLK_CPQ_DA is not set | 474 | # CONFIG_BLK_CPQ_DA is not set |
| 441 | # CONFIG_BLK_CPQ_CISS_DA is not set | 475 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 442 | # CONFIG_BLK_DEV_DAC960 is not set | 476 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -453,12 +487,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 453 | # CONFIG_BLK_DEV_XIP is not set | 487 | # CONFIG_BLK_DEV_XIP is not set |
| 454 | # CONFIG_CDROM_PKTCDVD is not set | 488 | # CONFIG_CDROM_PKTCDVD is not set |
| 455 | # CONFIG_ATA_OVER_ETH is not set | 489 | # CONFIG_ATA_OVER_ETH is not set |
| 490 | # CONFIG_BLK_DEV_HD is not set | ||
| 456 | CONFIG_MISC_DEVICES=y | 491 | CONFIG_MISC_DEVICES=y |
| 457 | # CONFIG_PHANTOM is not set | 492 | # CONFIG_PHANTOM is not set |
| 458 | # CONFIG_EEPROM_93CX6 is not set | 493 | # CONFIG_EEPROM_93CX6 is not set |
| 459 | # CONFIG_SGI_IOC4 is not set | 494 | # CONFIG_SGI_IOC4 is not set |
| 460 | # CONFIG_TIFM_CORE is not set | 495 | # CONFIG_TIFM_CORE is not set |
| 461 | # CONFIG_ENCLOSURE_SERVICES is not set | 496 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 497 | # CONFIG_HP_ILO is not set | ||
| 462 | CONFIG_HAVE_IDE=y | 498 | CONFIG_HAVE_IDE=y |
| 463 | # CONFIG_IDE is not set | 499 | # CONFIG_IDE is not set |
| 464 | 500 | ||
| @@ -476,12 +512,15 @@ CONFIG_HAVE_IDE=y | |||
| 476 | # | 512 | # |
| 477 | # IEEE 1394 (FireWire) support | 513 | # IEEE 1394 (FireWire) support |
| 478 | # | 514 | # |
| 515 | |||
| 516 | # | ||
| 517 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 518 | # | ||
| 479 | # CONFIG_FIREWIRE is not set | 519 | # CONFIG_FIREWIRE is not set |
| 480 | # CONFIG_IEEE1394 is not set | 520 | # CONFIG_IEEE1394 is not set |
| 481 | # CONFIG_I2O is not set | 521 | # CONFIG_I2O is not set |
| 482 | # CONFIG_MACINTOSH_DRIVERS is not set | 522 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 483 | CONFIG_NETDEVICES=y | 523 | CONFIG_NETDEVICES=y |
| 484 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 485 | # CONFIG_DUMMY is not set | 524 | # CONFIG_DUMMY is not set |
| 486 | # CONFIG_BONDING is not set | 525 | # CONFIG_BONDING is not set |
| 487 | # CONFIG_MACVLAN is not set | 526 | # CONFIG_MACVLAN is not set |
| @@ -508,6 +547,8 @@ CONFIG_PHYLIB=y | |||
| 508 | # CONFIG_MDIO_BITBANG is not set | 547 | # CONFIG_MDIO_BITBANG is not set |
| 509 | CONFIG_NET_ETHERNET=y | 548 | CONFIG_NET_ETHERNET=y |
| 510 | CONFIG_MII=y | 549 | CONFIG_MII=y |
| 550 | # CONFIG_MACE is not set | ||
| 551 | # CONFIG_BMAC is not set | ||
| 511 | # CONFIG_HAPPYMEAL is not set | 552 | # CONFIG_HAPPYMEAL is not set |
| 512 | # CONFIG_SUNGEM is not set | 553 | # CONFIG_SUNGEM is not set |
| 513 | # CONFIG_CASSINI is not set | 554 | # CONFIG_CASSINI is not set |
| @@ -525,7 +566,6 @@ CONFIG_NETDEV_1000=y | |||
| 525 | # CONFIG_DL2K is not set | 566 | # CONFIG_DL2K is not set |
| 526 | # CONFIG_E1000 is not set | 567 | # CONFIG_E1000 is not set |
| 527 | # CONFIG_E1000E is not set | 568 | # CONFIG_E1000E is not set |
| 528 | # CONFIG_E1000E_ENABLED is not set | ||
| 529 | # CONFIG_IP1000 is not set | 569 | # CONFIG_IP1000 is not set |
| 530 | # CONFIG_IGB is not set | 570 | # CONFIG_IGB is not set |
| 531 | # CONFIG_NS83820 is not set | 571 | # CONFIG_NS83820 is not set |
| @@ -535,14 +575,14 @@ CONFIG_NETDEV_1000=y | |||
| 535 | # CONFIG_SIS190 is not set | 575 | # CONFIG_SIS190 is not set |
| 536 | # CONFIG_SKGE is not set | 576 | # CONFIG_SKGE is not set |
| 537 | # CONFIG_SKY2 is not set | 577 | # CONFIG_SKY2 is not set |
| 538 | # CONFIG_SK98LIN is not set | ||
| 539 | # CONFIG_VIA_VELOCITY is not set | 578 | # CONFIG_VIA_VELOCITY is not set |
| 540 | # CONFIG_TIGON3 is not set | 579 | # CONFIG_TIGON3 is not set |
| 541 | # CONFIG_BNX2 is not set | 580 | # CONFIG_BNX2 is not set |
| 542 | CONFIG_GIANFAR=y | 581 | CONFIG_GIANFAR=y |
| 543 | # CONFIG_GFAR_NAPI is not set | 582 | # CONFIG_MV643XX_ETH is not set |
| 544 | # CONFIG_QLA3XXX is not set | 583 | # CONFIG_QLA3XXX is not set |
| 545 | # CONFIG_ATL1 is not set | 584 | # CONFIG_ATL1 is not set |
| 585 | # CONFIG_ATL1E is not set | ||
| 546 | # CONFIG_NETDEV_10000 is not set | 586 | # CONFIG_NETDEV_10000 is not set |
| 547 | # CONFIG_TR is not set | 587 | # CONFIG_TR is not set |
| 548 | 588 | ||
| @@ -551,6 +591,7 @@ CONFIG_GIANFAR=y | |||
| 551 | # | 591 | # |
| 552 | # CONFIG_WLAN_PRE80211 is not set | 592 | # CONFIG_WLAN_PRE80211 is not set |
| 553 | # CONFIG_WLAN_80211 is not set | 593 | # CONFIG_WLAN_80211 is not set |
| 594 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 554 | 595 | ||
| 555 | # | 596 | # |
| 556 | # USB Network Adapters | 597 | # USB Network Adapters |
| @@ -606,6 +647,7 @@ CONFIG_INPUT=y | |||
| 606 | # Character devices | 647 | # Character devices |
| 607 | # | 648 | # |
| 608 | # CONFIG_VT is not set | 649 | # CONFIG_VT is not set |
| 650 | CONFIG_DEVKMEM=y | ||
| 609 | # CONFIG_SERIAL_NONSTANDARD is not set | 651 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 610 | # CONFIG_NOZOMI is not set | 652 | # CONFIG_NOZOMI is not set |
| 611 | 653 | ||
| @@ -625,16 +667,17 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 625 | # CONFIG_SERIAL_UARTLITE is not set | 667 | # CONFIG_SERIAL_UARTLITE is not set |
| 626 | CONFIG_SERIAL_CORE=y | 668 | CONFIG_SERIAL_CORE=y |
| 627 | CONFIG_SERIAL_CORE_CONSOLE=y | 669 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 670 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 628 | # CONFIG_SERIAL_JSM is not set | 671 | # CONFIG_SERIAL_JSM is not set |
| 629 | # CONFIG_SERIAL_OF_PLATFORM is not set | 672 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 630 | CONFIG_UNIX98_PTYS=y | 673 | CONFIG_UNIX98_PTYS=y |
| 631 | CONFIG_LEGACY_PTYS=y | 674 | CONFIG_LEGACY_PTYS=y |
| 632 | CONFIG_LEGACY_PTY_COUNT=256 | 675 | CONFIG_LEGACY_PTY_COUNT=256 |
| 676 | # CONFIG_BRIQ_PANEL is not set | ||
| 677 | # CONFIG_HVC_RTAS is not set | ||
| 633 | # CONFIG_IPMI_HANDLER is not set | 678 | # CONFIG_IPMI_HANDLER is not set |
| 634 | # CONFIG_HW_RANDOM is not set | 679 | # CONFIG_HW_RANDOM is not set |
| 635 | # CONFIG_NVRAM is not set | 680 | # CONFIG_NVRAM is not set |
| 636 | CONFIG_GEN_RTC=y | ||
| 637 | # CONFIG_GEN_RTC_X is not set | ||
| 638 | # CONFIG_R3964 is not set | 681 | # CONFIG_R3964 is not set |
| 639 | # CONFIG_APPLICOM is not set | 682 | # CONFIG_APPLICOM is not set |
| 640 | # CONFIG_RAW_DRIVER is not set | 683 | # CONFIG_RAW_DRIVER is not set |
| @@ -643,16 +686,14 @@ CONFIG_DEVPORT=y | |||
| 643 | CONFIG_I2C=y | 686 | CONFIG_I2C=y |
| 644 | CONFIG_I2C_BOARDINFO=y | 687 | CONFIG_I2C_BOARDINFO=y |
| 645 | CONFIG_I2C_CHARDEV=y | 688 | CONFIG_I2C_CHARDEV=y |
| 689 | CONFIG_I2C_HELPER_AUTO=y | ||
| 646 | 690 | ||
| 647 | # | 691 | # |
| 648 | # I2C Algorithms | 692 | # I2C Hardware Bus support |
| 649 | # | 693 | # |
| 650 | # CONFIG_I2C_ALGOBIT is not set | ||
| 651 | # CONFIG_I2C_ALGOPCF is not set | ||
| 652 | # CONFIG_I2C_ALGOPCA is not set | ||
| 653 | 694 | ||
| 654 | # | 695 | # |
| 655 | # I2C Hardware Bus support | 696 | # PC SMBus host controller drivers |
| 656 | # | 697 | # |
| 657 | # CONFIG_I2C_ALI1535 is not set | 698 | # CONFIG_I2C_ALI1535 is not set |
| 658 | # CONFIG_I2C_ALI1563 is not set | 699 | # CONFIG_I2C_ALI1563 is not set |
| @@ -660,50 +701,70 @@ CONFIG_I2C_CHARDEV=y | |||
| 660 | # CONFIG_I2C_AMD756 is not set | 701 | # CONFIG_I2C_AMD756 is not set |
| 661 | # CONFIG_I2C_AMD8111 is not set | 702 | # CONFIG_I2C_AMD8111 is not set |
| 662 | # CONFIG_I2C_I801 is not set | 703 | # CONFIG_I2C_I801 is not set |
| 663 | # CONFIG_I2C_I810 is not set | 704 | # CONFIG_I2C_ISCH is not set |
| 664 | # CONFIG_I2C_PIIX4 is not set | 705 | # CONFIG_I2C_PIIX4 is not set |
| 665 | CONFIG_I2C_MPC=y | ||
| 666 | # CONFIG_I2C_NFORCE2 is not set | 706 | # CONFIG_I2C_NFORCE2 is not set |
| 667 | # CONFIG_I2C_OCORES is not set | ||
| 668 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 669 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 670 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 671 | # CONFIG_I2C_SIMTEC is not set | ||
| 672 | # CONFIG_I2C_SIS5595 is not set | 707 | # CONFIG_I2C_SIS5595 is not set |
| 673 | # CONFIG_I2C_SIS630 is not set | 708 | # CONFIG_I2C_SIS630 is not set |
| 674 | # CONFIG_I2C_SIS96X is not set | 709 | # CONFIG_I2C_SIS96X is not set |
| 675 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 676 | # CONFIG_I2C_STUB is not set | ||
| 677 | # CONFIG_I2C_TINY_USB is not set | ||
| 678 | # CONFIG_I2C_VIA is not set | 710 | # CONFIG_I2C_VIA is not set |
| 679 | # CONFIG_I2C_VIAPRO is not set | 711 | # CONFIG_I2C_VIAPRO is not set |
| 712 | |||
| 713 | # | ||
| 714 | # Mac SMBus host controller drivers | ||
| 715 | # | ||
| 716 | # CONFIG_I2C_HYDRA is not set | ||
| 717 | CONFIG_I2C_POWERMAC=y | ||
| 718 | |||
| 719 | # | ||
| 720 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 721 | # | ||
| 722 | CONFIG_I2C_MPC=y | ||
| 723 | # CONFIG_I2C_OCORES is not set | ||
| 724 | # CONFIG_I2C_SIMTEC is not set | ||
| 725 | |||
| 726 | # | ||
| 727 | # External I2C/SMBus adapter drivers | ||
| 728 | # | ||
| 729 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 730 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 731 | # CONFIG_I2C_TINY_USB is not set | ||
| 732 | |||
| 733 | # | ||
| 734 | # Graphics adapter I2C/DDC channel drivers | ||
| 735 | # | ||
| 680 | # CONFIG_I2C_VOODOO3 is not set | 736 | # CONFIG_I2C_VOODOO3 is not set |
| 681 | 737 | ||
| 682 | # | 738 | # |
| 739 | # Other I2C/SMBus bus drivers | ||
| 740 | # | ||
| 741 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 742 | # CONFIG_I2C_STUB is not set | ||
| 743 | |||
| 744 | # | ||
| 683 | # Miscellaneous I2C Chip support | 745 | # Miscellaneous I2C Chip support |
| 684 | # | 746 | # |
| 685 | # CONFIG_DS1682 is not set | 747 | # CONFIG_DS1682 is not set |
| 748 | # CONFIG_AT24 is not set | ||
| 686 | # CONFIG_SENSORS_EEPROM is not set | 749 | # CONFIG_SENSORS_EEPROM is not set |
| 687 | # CONFIG_SENSORS_PCF8574 is not set | 750 | # CONFIG_SENSORS_PCF8574 is not set |
| 688 | # CONFIG_PCF8575 is not set | 751 | # CONFIG_PCF8575 is not set |
| 752 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 689 | # CONFIG_SENSORS_PCF8591 is not set | 753 | # CONFIG_SENSORS_PCF8591 is not set |
| 690 | # CONFIG_TPS65010 is not set | ||
| 691 | # CONFIG_SENSORS_MAX6875 is not set | 754 | # CONFIG_SENSORS_MAX6875 is not set |
| 692 | # CONFIG_SENSORS_TSL2550 is not set | 755 | # CONFIG_SENSORS_TSL2550 is not set |
| 693 | # CONFIG_I2C_DEBUG_CORE is not set | 756 | # CONFIG_I2C_DEBUG_CORE is not set |
| 694 | # CONFIG_I2C_DEBUG_ALGO is not set | 757 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 695 | # CONFIG_I2C_DEBUG_BUS is not set | 758 | # CONFIG_I2C_DEBUG_BUS is not set |
| 696 | # CONFIG_I2C_DEBUG_CHIP is not set | 759 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 697 | |||
| 698 | # | ||
| 699 | # SPI support | ||
| 700 | # | ||
| 701 | # CONFIG_SPI is not set | 760 | # CONFIG_SPI is not set |
| 702 | # CONFIG_SPI_MASTER is not set | 761 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
| 762 | # CONFIG_GPIOLIB is not set | ||
| 703 | # CONFIG_W1 is not set | 763 | # CONFIG_W1 is not set |
| 704 | # CONFIG_POWER_SUPPLY is not set | 764 | # CONFIG_POWER_SUPPLY is not set |
| 705 | CONFIG_HWMON=y | 765 | CONFIG_HWMON=y |
| 706 | # CONFIG_HWMON_VID is not set | 766 | # CONFIG_HWMON_VID is not set |
| 767 | # CONFIG_SENSORS_AD7414 is not set | ||
| 707 | # CONFIG_SENSORS_AD7418 is not set | 768 | # CONFIG_SENSORS_AD7418 is not set |
| 708 | # CONFIG_SENSORS_ADM1021 is not set | 769 | # CONFIG_SENSORS_ADM1021 is not set |
| 709 | # CONFIG_SENSORS_ADM1025 is not set | 770 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -713,6 +774,7 @@ CONFIG_HWMON=y | |||
| 713 | # CONFIG_SENSORS_ADM9240 is not set | 774 | # CONFIG_SENSORS_ADM9240 is not set |
| 714 | # CONFIG_SENSORS_ADT7470 is not set | 775 | # CONFIG_SENSORS_ADT7470 is not set |
| 715 | # CONFIG_SENSORS_ADT7473 is not set | 776 | # CONFIG_SENSORS_ADT7473 is not set |
| 777 | # CONFIG_SENSORS_AMS is not set | ||
| 716 | # CONFIG_SENSORS_ATXP1 is not set | 778 | # CONFIG_SENSORS_ATXP1 is not set |
| 717 | # CONFIG_SENSORS_DS1621 is not set | 779 | # CONFIG_SENSORS_DS1621 is not set |
| 718 | # CONFIG_SENSORS_I5K_AMB is not set | 780 | # CONFIG_SENSORS_I5K_AMB is not set |
| @@ -757,6 +819,7 @@ CONFIG_HWMON=y | |||
| 757 | # CONFIG_SENSORS_W83627EHF is not set | 819 | # CONFIG_SENSORS_W83627EHF is not set |
| 758 | # CONFIG_HWMON_DEBUG_CHIP is not set | 820 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 759 | CONFIG_THERMAL=y | 821 | CONFIG_THERMAL=y |
| 822 | # CONFIG_THERMAL_HWMON is not set | ||
| 760 | CONFIG_WATCHDOG=y | 823 | CONFIG_WATCHDOG=y |
| 761 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 824 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 762 | 825 | ||
| @@ -764,7 +827,9 @@ CONFIG_WATCHDOG=y | |||
| 764 | # Watchdog Device Drivers | 827 | # Watchdog Device Drivers |
| 765 | # | 828 | # |
| 766 | # CONFIG_SOFT_WATCHDOG is not set | 829 | # CONFIG_SOFT_WATCHDOG is not set |
| 767 | CONFIG_83xx_WDT=y | 830 | # CONFIG_ALIM7101_WDT is not set |
| 831 | # CONFIG_8xxx_WDT is not set | ||
| 832 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 768 | 833 | ||
| 769 | # | 834 | # |
| 770 | # PCI-based Watchdog Cards | 835 | # PCI-based Watchdog Cards |
| @@ -786,13 +851,25 @@ CONFIG_SSB_POSSIBLE=y | |||
| 786 | # | 851 | # |
| 787 | # Multifunction device drivers | 852 | # Multifunction device drivers |
| 788 | # | 853 | # |
| 854 | # CONFIG_MFD_CORE is not set | ||
| 789 | # CONFIG_MFD_SM501 is not set | 855 | # CONFIG_MFD_SM501 is not set |
| 856 | # CONFIG_HTC_PASIC3 is not set | ||
| 857 | # CONFIG_MFD_TMIO is not set | ||
| 790 | 858 | ||
| 791 | # | 859 | # |
| 792 | # Multimedia devices | 860 | # Multimedia devices |
| 793 | # | 861 | # |
| 862 | |||
| 863 | # | ||
| 864 | # Multimedia core support | ||
| 865 | # | ||
| 794 | # CONFIG_VIDEO_DEV is not set | 866 | # CONFIG_VIDEO_DEV is not set |
| 795 | # CONFIG_DVB_CORE is not set | 867 | # CONFIG_DVB_CORE is not set |
| 868 | # CONFIG_VIDEO_MEDIA is not set | ||
| 869 | |||
| 870 | # | ||
| 871 | # Multimedia drivers | ||
| 872 | # | ||
| 796 | CONFIG_DAB=y | 873 | CONFIG_DAB=y |
| 797 | # CONFIG_USB_DABUSB is not set | 874 | # CONFIG_USB_DABUSB is not set |
| 798 | 875 | ||
| @@ -810,10 +887,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 810 | # Display device support | 887 | # Display device support |
| 811 | # | 888 | # |
| 812 | # CONFIG_DISPLAY_SUPPORT is not set | 889 | # CONFIG_DISPLAY_SUPPORT is not set |
| 813 | |||
| 814 | # | ||
| 815 | # Sound | ||
| 816 | # | ||
| 817 | # CONFIG_SOUND is not set | 890 | # CONFIG_SOUND is not set |
| 818 | # CONFIG_HID_SUPPORT is not set | 891 | # CONFIG_HID_SUPPORT is not set |
| 819 | CONFIG_USB_SUPPORT=y | 892 | CONFIG_USB_SUPPORT=y |
| @@ -831,16 +904,21 @@ CONFIG_USB=y | |||
| 831 | CONFIG_USB_DEVICE_CLASS=y | 904 | CONFIG_USB_DEVICE_CLASS=y |
| 832 | # CONFIG_USB_DYNAMIC_MINORS is not set | 905 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 833 | # CONFIG_USB_OTG is not set | 906 | # CONFIG_USB_OTG is not set |
| 907 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 908 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 909 | CONFIG_USB_MON=y | ||
| 834 | 910 | ||
| 835 | # | 911 | # |
| 836 | # USB Host Controller Drivers | 912 | # USB Host Controller Drivers |
| 837 | # | 913 | # |
| 914 | # CONFIG_USB_C67X00_HCD is not set | ||
| 838 | CONFIG_USB_EHCI_HCD=y | 915 | CONFIG_USB_EHCI_HCD=y |
| 839 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 916 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 840 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 917 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 841 | CONFIG_USB_EHCI_FSL=y | 918 | CONFIG_USB_EHCI_FSL=y |
| 842 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 919 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 843 | # CONFIG_USB_ISP116X_HCD is not set | 920 | # CONFIG_USB_ISP116X_HCD is not set |
| 921 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 844 | # CONFIG_USB_OHCI_HCD is not set | 922 | # CONFIG_USB_OHCI_HCD is not set |
| 845 | # CONFIG_USB_UHCI_HCD is not set | 923 | # CONFIG_USB_UHCI_HCD is not set |
| 846 | # CONFIG_USB_SL811_HCD is not set | 924 | # CONFIG_USB_SL811_HCD is not set |
| @@ -851,6 +929,7 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 851 | # | 929 | # |
| 852 | # CONFIG_USB_ACM is not set | 930 | # CONFIG_USB_ACM is not set |
| 853 | # CONFIG_USB_PRINTER is not set | 931 | # CONFIG_USB_PRINTER is not set |
| 932 | # CONFIG_USB_WDM is not set | ||
| 854 | 933 | ||
| 855 | # | 934 | # |
| 856 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 935 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -865,7 +944,6 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 865 | # USB Imaging devices | 944 | # USB Imaging devices |
| 866 | # | 945 | # |
| 867 | # CONFIG_USB_MDC800 is not set | 946 | # CONFIG_USB_MDC800 is not set |
| 868 | CONFIG_USB_MON=y | ||
| 869 | 947 | ||
| 870 | # | 948 | # |
| 871 | # USB port drivers | 949 | # USB port drivers |
| @@ -878,7 +956,6 @@ CONFIG_USB_MON=y | |||
| 878 | # CONFIG_USB_EMI62 is not set | 956 | # CONFIG_USB_EMI62 is not set |
| 879 | # CONFIG_USB_EMI26 is not set | 957 | # CONFIG_USB_EMI26 is not set |
| 880 | # CONFIG_USB_ADUTUX is not set | 958 | # CONFIG_USB_ADUTUX is not set |
| 881 | # CONFIG_USB_AUERSWALD is not set | ||
| 882 | # CONFIG_USB_RIO500 is not set | 959 | # CONFIG_USB_RIO500 is not set |
| 883 | # CONFIG_USB_LEGOTOWER is not set | 960 | # CONFIG_USB_LEGOTOWER is not set |
| 884 | # CONFIG_USB_LCD is not set | 961 | # CONFIG_USB_LCD is not set |
| @@ -894,18 +971,16 @@ CONFIG_USB_MON=y | |||
| 894 | # CONFIG_USB_LD is not set | 971 | # CONFIG_USB_LD is not set |
| 895 | # CONFIG_USB_TRANCEVIBRATOR is not set | 972 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 896 | # CONFIG_USB_IOWARRIOR is not set | 973 | # CONFIG_USB_IOWARRIOR is not set |
| 974 | # CONFIG_USB_ISIGHTFW is not set | ||
| 897 | # CONFIG_USB_GADGET is not set | 975 | # CONFIG_USB_GADGET is not set |
| 898 | # CONFIG_MMC is not set | 976 | # CONFIG_MMC is not set |
| 899 | # CONFIG_MEMSTICK is not set | 977 | # CONFIG_MEMSTICK is not set |
| 900 | # CONFIG_NEW_LEDS is not set | 978 | # CONFIG_NEW_LEDS is not set |
| 979 | # CONFIG_ACCESSIBILITY is not set | ||
| 901 | # CONFIG_INFINIBAND is not set | 980 | # CONFIG_INFINIBAND is not set |
| 902 | # CONFIG_EDAC is not set | 981 | # CONFIG_EDAC is not set |
| 903 | CONFIG_RTC_LIB=y | 982 | CONFIG_RTC_LIB=y |
| 904 | CONFIG_RTC_CLASS=y | 983 | CONFIG_RTC_CLASS=y |
| 905 | |||
| 906 | # | ||
| 907 | # Conflicting RTC option has been selected, check GEN_RTC and RTC | ||
| 908 | # | ||
| 909 | CONFIG_RTC_HCTOSYS=y | 984 | CONFIG_RTC_HCTOSYS=y |
| 910 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | 985 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" |
| 911 | # CONFIG_RTC_DEBUG is not set | 986 | # CONFIG_RTC_DEBUG is not set |
| @@ -933,6 +1008,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 933 | # CONFIG_RTC_DRV_PCF8583 is not set | 1008 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 934 | # CONFIG_RTC_DRV_M41T80 is not set | 1009 | # CONFIG_RTC_DRV_M41T80 is not set |
| 935 | # CONFIG_RTC_DRV_S35390A is not set | 1010 | # CONFIG_RTC_DRV_S35390A is not set |
| 1011 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 936 | 1012 | ||
| 937 | # | 1013 | # |
| 938 | # SPI RTC drivers | 1014 | # SPI RTC drivers |
| @@ -953,11 +1029,8 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 953 | # | 1029 | # |
| 954 | # on-CPU RTC drivers | 1030 | # on-CPU RTC drivers |
| 955 | # | 1031 | # |
| 1032 | # CONFIG_RTC_DRV_PPC is not set | ||
| 956 | # CONFIG_DMADEVICES is not set | 1033 | # CONFIG_DMADEVICES is not set |
| 957 | |||
| 958 | # | ||
| 959 | # Userspace I/O | ||
| 960 | # | ||
| 961 | # CONFIG_UIO is not set | 1034 | # CONFIG_UIO is not set |
| 962 | 1035 | ||
| 963 | # | 1036 | # |
| @@ -977,7 +1050,6 @@ CONFIG_FS_MBCACHE=y | |||
| 977 | # CONFIG_JFS_FS is not set | 1050 | # CONFIG_JFS_FS is not set |
| 978 | # CONFIG_FS_POSIX_ACL is not set | 1051 | # CONFIG_FS_POSIX_ACL is not set |
| 979 | # CONFIG_XFS_FS is not set | 1052 | # CONFIG_XFS_FS is not set |
| 980 | # CONFIG_GFS2_FS is not set | ||
| 981 | # CONFIG_OCFS2_FS is not set | 1053 | # CONFIG_OCFS2_FS is not set |
| 982 | CONFIG_DNOTIFY=y | 1054 | CONFIG_DNOTIFY=y |
| 983 | CONFIG_INOTIFY=y | 1055 | CONFIG_INOTIFY=y |
| @@ -1036,6 +1108,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1036 | # CONFIG_CRAMFS is not set | 1108 | # CONFIG_CRAMFS is not set |
| 1037 | # CONFIG_VXFS_FS is not set | 1109 | # CONFIG_VXFS_FS is not set |
| 1038 | # CONFIG_MINIX_FS is not set | 1110 | # CONFIG_MINIX_FS is not set |
| 1111 | # CONFIG_OMFS_FS is not set | ||
| 1039 | # CONFIG_HPFS_FS is not set | 1112 | # CONFIG_HPFS_FS is not set |
| 1040 | # CONFIG_QNX4FS_FS is not set | 1113 | # CONFIG_QNX4FS_FS is not set |
| 1041 | # CONFIG_ROMFS_FS is not set | 1114 | # CONFIG_ROMFS_FS is not set |
| @@ -1046,15 +1119,13 @@ CONFIG_NFS_FS=y | |||
| 1046 | CONFIG_NFS_V3=y | 1119 | CONFIG_NFS_V3=y |
| 1047 | # CONFIG_NFS_V3_ACL is not set | 1120 | # CONFIG_NFS_V3_ACL is not set |
| 1048 | CONFIG_NFS_V4=y | 1121 | CONFIG_NFS_V4=y |
| 1049 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1050 | # CONFIG_NFSD is not set | ||
| 1051 | CONFIG_ROOT_NFS=y | 1122 | CONFIG_ROOT_NFS=y |
| 1123 | # CONFIG_NFSD is not set | ||
| 1052 | CONFIG_LOCKD=y | 1124 | CONFIG_LOCKD=y |
| 1053 | CONFIG_LOCKD_V4=y | 1125 | CONFIG_LOCKD_V4=y |
| 1054 | CONFIG_NFS_COMMON=y | 1126 | CONFIG_NFS_COMMON=y |
| 1055 | CONFIG_SUNRPC=y | 1127 | CONFIG_SUNRPC=y |
| 1056 | CONFIG_SUNRPC_GSS=y | 1128 | CONFIG_SUNRPC_GSS=y |
| 1057 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1058 | CONFIG_RPCSEC_GSS_KRB5=y | 1129 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1059 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1130 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1060 | # CONFIG_SMB_FS is not set | 1131 | # CONFIG_SMB_FS is not set |
| @@ -1126,8 +1197,10 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1126 | # Library routines | 1197 | # Library routines |
| 1127 | # | 1198 | # |
| 1128 | CONFIG_BITREVERSE=y | 1199 | CONFIG_BITREVERSE=y |
| 1200 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1129 | # CONFIG_CRC_CCITT is not set | 1201 | # CONFIG_CRC_CCITT is not set |
| 1130 | # CONFIG_CRC16 is not set | 1202 | # CONFIG_CRC16 is not set |
| 1203 | # CONFIG_CRC_T10DIF is not set | ||
| 1131 | # CONFIG_CRC_ITU_T is not set | 1204 | # CONFIG_CRC_ITU_T is not set |
| 1132 | CONFIG_CRC32=y | 1205 | CONFIG_CRC32=y |
| 1133 | # CONFIG_CRC7 is not set | 1206 | # CONFIG_CRC7 is not set |
| @@ -1146,6 +1219,7 @@ CONFIG_HAVE_LMB=y | |||
| 1146 | # CONFIG_PRINTK_TIME is not set | 1219 | # CONFIG_PRINTK_TIME is not set |
| 1147 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1220 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1148 | CONFIG_ENABLE_MUST_CHECK=y | 1221 | CONFIG_ENABLE_MUST_CHECK=y |
| 1222 | CONFIG_FRAME_WARN=1024 | ||
| 1149 | # CONFIG_MAGIC_SYSRQ is not set | 1223 | # CONFIG_MAGIC_SYSRQ is not set |
| 1150 | # CONFIG_UNUSED_SYMBOLS is not set | 1224 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1151 | # CONFIG_DEBUG_FS is not set | 1225 | # CONFIG_DEBUG_FS is not set |
| @@ -1154,7 +1228,18 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1154 | # CONFIG_SLUB_DEBUG_ON is not set | 1228 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1155 | # CONFIG_SLUB_STATS is not set | 1229 | # CONFIG_SLUB_STATS is not set |
| 1156 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1230 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1231 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1232 | # CONFIG_LATENCYTOP is not set | ||
| 1233 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
| 1234 | CONFIG_HAVE_FTRACE=y | ||
| 1235 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1236 | # CONFIG_FTRACE is not set | ||
| 1237 | # CONFIG_SCHED_TRACER is not set | ||
| 1238 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1157 | # CONFIG_SAMPLES is not set | 1239 | # CONFIG_SAMPLES is not set |
| 1240 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1241 | # CONFIG_IRQSTACKS is not set | ||
| 1242 | # CONFIG_BOOTX_TEXT is not set | ||
| 1158 | # CONFIG_PPC_EARLY_DEBUG is not set | 1243 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1159 | 1244 | ||
| 1160 | # | 1245 | # |
| @@ -1164,51 +1249,86 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1164 | # CONFIG_SECURITY is not set | 1249 | # CONFIG_SECURITY is not set |
| 1165 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1250 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1166 | CONFIG_CRYPTO=y | 1251 | CONFIG_CRYPTO=y |
| 1252 | |||
| 1253 | # | ||
| 1254 | # Crypto core or helper | ||
| 1255 | # | ||
| 1167 | CONFIG_CRYPTO_ALGAPI=y | 1256 | CONFIG_CRYPTO_ALGAPI=y |
| 1168 | CONFIG_CRYPTO_BLKCIPHER=y | 1257 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1169 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1170 | CONFIG_CRYPTO_MANAGER=y | 1258 | CONFIG_CRYPTO_MANAGER=y |
| 1259 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1260 | # CONFIG_CRYPTO_NULL is not set | ||
| 1261 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1262 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1263 | # CONFIG_CRYPTO_TEST is not set | ||
| 1264 | |||
| 1265 | # | ||
| 1266 | # Authenticated Encryption with Associated Data | ||
| 1267 | # | ||
| 1268 | # CONFIG_CRYPTO_CCM is not set | ||
| 1269 | # CONFIG_CRYPTO_GCM is not set | ||
| 1270 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1271 | |||
| 1272 | # | ||
| 1273 | # Block modes | ||
| 1274 | # | ||
| 1275 | CONFIG_CRYPTO_CBC=y | ||
| 1276 | # CONFIG_CRYPTO_CTR is not set | ||
| 1277 | # CONFIG_CRYPTO_CTS is not set | ||
| 1278 | CONFIG_CRYPTO_ECB=m | ||
| 1279 | # CONFIG_CRYPTO_LRW is not set | ||
| 1280 | CONFIG_CRYPTO_PCBC=m | ||
| 1281 | # CONFIG_CRYPTO_XTS is not set | ||
| 1282 | |||
| 1283 | # | ||
| 1284 | # Hash modes | ||
| 1285 | # | ||
| 1171 | # CONFIG_CRYPTO_HMAC is not set | 1286 | # CONFIG_CRYPTO_HMAC is not set |
| 1172 | # CONFIG_CRYPTO_XCBC is not set | 1287 | # CONFIG_CRYPTO_XCBC is not set |
| 1173 | # CONFIG_CRYPTO_NULL is not set | 1288 | |
| 1289 | # | ||
| 1290 | # Digest | ||
| 1291 | # | ||
| 1292 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1174 | # CONFIG_CRYPTO_MD4 is not set | 1293 | # CONFIG_CRYPTO_MD4 is not set |
| 1175 | CONFIG_CRYPTO_MD5=y | 1294 | CONFIG_CRYPTO_MD5=y |
| 1295 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1296 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1297 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1298 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1299 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1176 | # CONFIG_CRYPTO_SHA1 is not set | 1300 | # CONFIG_CRYPTO_SHA1 is not set |
| 1177 | # CONFIG_CRYPTO_SHA256 is not set | 1301 | # CONFIG_CRYPTO_SHA256 is not set |
| 1178 | # CONFIG_CRYPTO_SHA512 is not set | 1302 | # CONFIG_CRYPTO_SHA512 is not set |
| 1179 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1180 | # CONFIG_CRYPTO_TGR192 is not set | 1303 | # CONFIG_CRYPTO_TGR192 is not set |
| 1181 | # CONFIG_CRYPTO_GF128MUL is not set | 1304 | # CONFIG_CRYPTO_WP512 is not set |
| 1182 | CONFIG_CRYPTO_ECB=m | 1305 | |
| 1183 | CONFIG_CRYPTO_CBC=y | 1306 | # |
| 1184 | CONFIG_CRYPTO_PCBC=m | 1307 | # Ciphers |
| 1185 | # CONFIG_CRYPTO_LRW is not set | 1308 | # |
| 1186 | # CONFIG_CRYPTO_XTS is not set | ||
| 1187 | # CONFIG_CRYPTO_CTR is not set | ||
| 1188 | # CONFIG_CRYPTO_GCM is not set | ||
| 1189 | # CONFIG_CRYPTO_CCM is not set | ||
| 1190 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1191 | CONFIG_CRYPTO_DES=y | ||
| 1192 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1193 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1194 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1195 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1196 | # CONFIG_CRYPTO_AES is not set | 1309 | # CONFIG_CRYPTO_AES is not set |
| 1310 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1311 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1312 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1313 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1197 | # CONFIG_CRYPTO_CAST5 is not set | 1314 | # CONFIG_CRYPTO_CAST5 is not set |
| 1198 | # CONFIG_CRYPTO_CAST6 is not set | 1315 | # CONFIG_CRYPTO_CAST6 is not set |
| 1199 | # CONFIG_CRYPTO_TEA is not set | 1316 | CONFIG_CRYPTO_DES=y |
| 1200 | # CONFIG_CRYPTO_ARC4 is not set | 1317 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1201 | # CONFIG_CRYPTO_KHAZAD is not set | 1318 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1202 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1203 | # CONFIG_CRYPTO_SEED is not set | ||
| 1204 | # CONFIG_CRYPTO_SALSA20 is not set | 1319 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1320 | # CONFIG_CRYPTO_SEED is not set | ||
| 1321 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1322 | # CONFIG_CRYPTO_TEA is not set | ||
| 1323 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1324 | |||
| 1325 | # | ||
| 1326 | # Compression | ||
| 1327 | # | ||
| 1205 | # CONFIG_CRYPTO_DEFLATE is not set | 1328 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1206 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1207 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1208 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1209 | # CONFIG_CRYPTO_TEST is not set | ||
| 1210 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1211 | # CONFIG_CRYPTO_LZO is not set | 1329 | # CONFIG_CRYPTO_LZO is not set |
| 1212 | CONFIG_CRYPTO_HW=y | 1330 | CONFIG_CRYPTO_HW=y |
| 1213 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1331 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1332 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1214 | # CONFIG_PPC_CLOCK is not set | 1333 | # CONFIG_PPC_CLOCK is not set |
| 1334 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig b/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig index 5428f9f5ed85..2028337868b4 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:21 2008 | 4 | # Thu Aug 21 00:52:17 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -51,6 +53,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,12 +93,12 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | # CONFIG_KALLSYMS is not set | 96 | # CONFIG_KALLSYMS is not set |
| 93 | CONFIG_HOTPLUG=y | 97 | CONFIG_HOTPLUG=y |
| 94 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
| 95 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
| 96 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
| 101 | CONFIG_PCSPKR_PLATFORM=y | ||
| 97 | CONFIG_COMPAT_BRK=y | 102 | CONFIG_COMPAT_BRK=y |
| 98 | CONFIG_BASE_FULL=y | 103 | CONFIG_BASE_FULL=y |
| 99 | CONFIG_FUTEX=y | 104 | CONFIG_FUTEX=y |
| @@ -111,10 +116,16 @@ CONFIG_SLUB=y | |||
| 111 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
| 112 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 113 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 114 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 115 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | 124 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 125 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 126 | # CONFIG_HAVE_CLK is not set | ||
| 117 | CONFIG_PROC_PAGE_MONITOR=y | 127 | CONFIG_PROC_PAGE_MONITOR=y |
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 118 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
| 119 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
| 120 | # CONFIG_TINY_SHMEM is not set | 131 | # CONFIG_TINY_SHMEM is not set |
| @@ -125,12 +136,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 136 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 126 | # CONFIG_MODVERSIONS is not set | 137 | # CONFIG_MODVERSIONS is not set |
| 127 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 138 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 128 | # CONFIG_KMOD is not set | 139 | CONFIG_KMOD=y |
| 129 | CONFIG_BLOCK=y | 140 | CONFIG_BLOCK=y |
| 130 | # CONFIG_LBD is not set | 141 | # CONFIG_LBD is not set |
| 131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 132 | # CONFIG_LSF is not set | 143 | # CONFIG_LSF is not set |
| 133 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
| 145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 134 | 146 | ||
| 135 | # | 147 | # |
| 136 | # IO Schedulers | 148 | # IO Schedulers |
| @@ -149,37 +161,49 @@ CONFIG_CLASSIC_RCU=y | |||
| 149 | # | 161 | # |
| 150 | # Platform support | 162 | # Platform support |
| 151 | # | 163 | # |
| 152 | # CONFIG_PPC_MULTIPLATFORM is not set | 164 | CONFIG_PPC_MULTIPLATFORM=y |
| 153 | # CONFIG_PPC_82xx is not set | 165 | CONFIG_CLASSIC32=y |
| 154 | CONFIG_PPC_83xx=y | 166 | CONFIG_PPC_CHRP=y |
| 155 | # CONFIG_PPC_86xx is not set | 167 | # CONFIG_MPC5121_ADS is not set |
| 156 | # CONFIG_PPC_MPC512x is not set | 168 | # CONFIG_MPC5121_GENERIC is not set |
| 157 | # CONFIG_PPC_MPC5121 is not set | 169 | # CONFIG_PPC_MPC52xx is not set |
| 170 | CONFIG_PPC_PMAC=y | ||
| 158 | # CONFIG_PPC_CELL is not set | 171 | # CONFIG_PPC_CELL is not set |
| 159 | # CONFIG_PPC_CELL_NATIVE is not set | 172 | # CONFIG_PPC_CELL_NATIVE is not set |
| 173 | # CONFIG_PPC_82xx is not set | ||
| 160 | # CONFIG_PQ2ADS is not set | 174 | # CONFIG_PQ2ADS is not set |
| 161 | CONFIG_MPC83xx=y | 175 | CONFIG_PPC_83xx=y |
| 162 | CONFIG_MPC831x_RDB=y | 176 | CONFIG_MPC831x_RDB=y |
| 163 | # CONFIG_MPC832x_MDS is not set | 177 | # CONFIG_MPC832x_MDS is not set |
| 164 | # CONFIG_MPC832x_RDB is not set | 178 | # CONFIG_MPC832x_RDB is not set |
| 165 | # CONFIG_MPC834x_MDS is not set | 179 | # CONFIG_MPC834x_MDS is not set |
| 166 | # CONFIG_MPC834x_ITX is not set | 180 | # CONFIG_MPC834x_ITX is not set |
| 167 | # CONFIG_MPC836x_MDS is not set | 181 | # CONFIG_MPC836x_MDS is not set |
| 182 | # CONFIG_MPC836x_RDK is not set | ||
| 168 | # CONFIG_MPC837x_MDS is not set | 183 | # CONFIG_MPC837x_MDS is not set |
| 169 | # CONFIG_MPC837x_RDB is not set | 184 | # CONFIG_MPC837x_RDB is not set |
| 170 | # CONFIG_SBC834x is not set | 185 | # CONFIG_SBC834x is not set |
| 186 | # CONFIG_ASP834x is not set | ||
| 171 | CONFIG_PPC_MPC831x=y | 187 | CONFIG_PPC_MPC831x=y |
| 188 | # CONFIG_PPC_86xx is not set | ||
| 189 | # CONFIG_EMBEDDED6xx is not set | ||
| 190 | CONFIG_PPC_NATIVE=y | ||
| 191 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 172 | CONFIG_IPIC=y | 192 | CONFIG_IPIC=y |
| 173 | # CONFIG_MPIC is not set | 193 | CONFIG_MPIC=y |
| 174 | # CONFIG_MPIC_WEIRD is not set | 194 | # CONFIG_MPIC_WEIRD is not set |
| 175 | # CONFIG_PPC_I8259 is not set | 195 | CONFIG_PPC_I8259=y |
| 176 | # CONFIG_PPC_RTAS is not set | 196 | CONFIG_PPC_RTAS=y |
| 197 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 198 | CONFIG_RTAS_PROC=y | ||
| 177 | # CONFIG_MMIO_NVRAM is not set | 199 | # CONFIG_MMIO_NVRAM is not set |
| 178 | # CONFIG_PPC_MPC106 is not set | 200 | CONFIG_PPC_MPC106=y |
| 179 | # CONFIG_PPC_970_NAP is not set | 201 | # CONFIG_PPC_970_NAP is not set |
| 180 | # CONFIG_PPC_INDIRECT_IO is not set | 202 | # CONFIG_PPC_INDIRECT_IO is not set |
| 181 | # CONFIG_GENERIC_IOMAP is not set | 203 | # CONFIG_GENERIC_IOMAP is not set |
| 182 | # CONFIG_CPU_FREQ is not set | 204 | # CONFIG_CPU_FREQ is not set |
| 205 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 206 | # CONFIG_TAU is not set | ||
| 183 | # CONFIG_FSL_ULI1575 is not set | 207 | # CONFIG_FSL_ULI1575 is not set |
| 184 | 208 | ||
| 185 | # | 209 | # |
| @@ -195,7 +219,7 @@ CONFIG_HZ_250=y | |||
| 195 | # CONFIG_HZ_300 is not set | 219 | # CONFIG_HZ_300 is not set |
| 196 | # CONFIG_HZ_1000 is not set | 220 | # CONFIG_HZ_1000 is not set |
| 197 | CONFIG_HZ=250 | 221 | CONFIG_HZ=250 |
| 198 | # CONFIG_SCHED_HRTICK is not set | 222 | CONFIG_SCHED_HRTICK=y |
| 199 | CONFIG_PREEMPT_NONE=y | 223 | CONFIG_PREEMPT_NONE=y |
| 200 | # CONFIG_PREEMPT_VOLUNTARY is not set | 224 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 201 | # CONFIG_PREEMPT is not set | 225 | # CONFIG_PREEMPT is not set |
| @@ -205,6 +229,7 @@ CONFIG_BINFMT_ELF=y | |||
| 205 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 206 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 230 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 231 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 232 | # CONFIG_KEXEC is not set | ||
| 208 | CONFIG_ARCH_FLATMEM_ENABLE=y | 233 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 209 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 234 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 210 | CONFIG_SELECT_MEMORY_MODEL=y | 235 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -217,6 +242,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 242 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | 243 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 244 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 245 | CONFIG_MIGRATION=y | ||
| 220 | # CONFIG_RESOURCES_64BIT is not set | 246 | # CONFIG_RESOURCES_64BIT is not set |
| 221 | CONFIG_ZONE_DMA_FLAG=1 | 247 | CONFIG_ZONE_DMA_FLAG=1 |
| 222 | CONFIG_BOUNCE=y | 248 | CONFIG_BOUNCE=y |
| @@ -224,6 +250,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 225 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
| 226 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
| 253 | CONFIG_EXTRA_TARGETS="" | ||
| 227 | # CONFIG_PM is not set | 254 | # CONFIG_PM is not set |
| 228 | CONFIG_SECCOMP=y | 255 | CONFIG_SECCOMP=y |
| 229 | CONFIG_ISA_DMA_API=y | 256 | CONFIG_ISA_DMA_API=y |
| @@ -231,10 +258,13 @@ CONFIG_ISA_DMA_API=y | |||
| 231 | # | 258 | # |
| 232 | # Bus options | 259 | # Bus options |
| 233 | # | 260 | # |
| 261 | # CONFIG_ISA is not set | ||
| 234 | CONFIG_ZONE_DMA=y | 262 | CONFIG_ZONE_DMA=y |
| 235 | CONFIG_GENERIC_ISA_DMA=y | 263 | CONFIG_GENERIC_ISA_DMA=y |
| 236 | CONFIG_PPC_INDIRECT_PCI=y | 264 | CONFIG_PPC_INDIRECT_PCI=y |
| 237 | CONFIG_FSL_SOC=y | 265 | CONFIG_FSL_SOC=y |
| 266 | CONFIG_FSL_PCI=y | ||
| 267 | CONFIG_PPC_PCI_CHOICE=y | ||
| 238 | CONFIG_PCI=y | 268 | CONFIG_PCI=y |
| 239 | CONFIG_PCI_DOMAINS=y | 269 | CONFIG_PCI_DOMAINS=y |
| 240 | CONFIG_PCI_SYSCALL=y | 270 | CONFIG_PCI_SYSCALL=y |
| @@ -260,10 +290,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 260 | CONFIG_KERNEL_START=0xc0000000 | 290 | CONFIG_KERNEL_START=0xc0000000 |
| 261 | CONFIG_PHYSICAL_START=0x00000000 | 291 | CONFIG_PHYSICAL_START=0x00000000 |
| 262 | CONFIG_TASK_SIZE=0xc0000000 | 292 | CONFIG_TASK_SIZE=0xc0000000 |
| 263 | |||
| 264 | # | ||
| 265 | # Networking | ||
| 266 | # | ||
| 267 | CONFIG_NET=y | 293 | CONFIG_NET=y |
| 268 | 294 | ||
| 269 | # | 295 | # |
| @@ -452,9 +478,11 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
| 452 | # CONFIG_MTD_UBI is not set | 478 | # CONFIG_MTD_UBI is not set |
| 453 | CONFIG_OF_DEVICE=y | 479 | CONFIG_OF_DEVICE=y |
| 454 | CONFIG_OF_I2C=y | 480 | CONFIG_OF_I2C=y |
| 481 | CONFIG_OF_SPI=y | ||
| 455 | # CONFIG_PARPORT is not set | 482 | # CONFIG_PARPORT is not set |
| 456 | CONFIG_BLK_DEV=y | 483 | CONFIG_BLK_DEV=y |
| 457 | # CONFIG_BLK_DEV_FD is not set | 484 | # CONFIG_BLK_DEV_FD is not set |
| 485 | # CONFIG_MAC_FLOPPY is not set | ||
| 458 | # CONFIG_BLK_CPQ_DA is not set | 486 | # CONFIG_BLK_CPQ_DA is not set |
| 459 | # CONFIG_BLK_CPQ_CISS_DA is not set | 487 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 460 | # CONFIG_BLK_DEV_DAC960 is not set | 488 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -471,12 +499,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 471 | # CONFIG_BLK_DEV_XIP is not set | 499 | # CONFIG_BLK_DEV_XIP is not set |
| 472 | # CONFIG_CDROM_PKTCDVD is not set | 500 | # CONFIG_CDROM_PKTCDVD is not set |
| 473 | # CONFIG_ATA_OVER_ETH is not set | 501 | # CONFIG_ATA_OVER_ETH is not set |
| 502 | # CONFIG_BLK_DEV_HD is not set | ||
| 474 | CONFIG_MISC_DEVICES=y | 503 | CONFIG_MISC_DEVICES=y |
| 475 | # CONFIG_PHANTOM is not set | 504 | # CONFIG_PHANTOM is not set |
| 476 | # CONFIG_EEPROM_93CX6 is not set | 505 | # CONFIG_EEPROM_93CX6 is not set |
| 477 | # CONFIG_SGI_IOC4 is not set | 506 | # CONFIG_SGI_IOC4 is not set |
| 478 | # CONFIG_TIFM_CORE is not set | 507 | # CONFIG_TIFM_CORE is not set |
| 479 | # CONFIG_ENCLOSURE_SERVICES is not set | 508 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 509 | # CONFIG_HP_ILO is not set | ||
| 480 | CONFIG_HAVE_IDE=y | 510 | CONFIG_HAVE_IDE=y |
| 481 | # CONFIG_IDE is not set | 511 | # CONFIG_IDE is not set |
| 482 | 512 | ||
| @@ -553,7 +583,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 553 | # CONFIG_SCSI_DC390T is not set | 583 | # CONFIG_SCSI_DC390T is not set |
| 554 | # CONFIG_SCSI_NSP32 is not set | 584 | # CONFIG_SCSI_NSP32 is not set |
| 555 | # CONFIG_SCSI_DEBUG is not set | 585 | # CONFIG_SCSI_DEBUG is not set |
| 586 | # CONFIG_SCSI_MESH is not set | ||
| 587 | # CONFIG_SCSI_MAC53C94 is not set | ||
| 556 | # CONFIG_SCSI_SRP is not set | 588 | # CONFIG_SCSI_SRP is not set |
| 589 | # CONFIG_SCSI_DH is not set | ||
| 557 | # CONFIG_ATA is not set | 590 | # CONFIG_ATA is not set |
| 558 | CONFIG_MD=y | 591 | CONFIG_MD=y |
| 559 | CONFIG_BLK_DEV_MD=y | 592 | CONFIG_BLK_DEV_MD=y |
| @@ -570,12 +603,15 @@ CONFIG_MD_RAID1=y | |||
| 570 | # | 603 | # |
| 571 | # IEEE 1394 (FireWire) support | 604 | # IEEE 1394 (FireWire) support |
| 572 | # | 605 | # |
| 606 | |||
| 607 | # | ||
| 608 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 609 | # | ||
| 573 | # CONFIG_FIREWIRE is not set | 610 | # CONFIG_FIREWIRE is not set |
| 574 | # CONFIG_IEEE1394 is not set | 611 | # CONFIG_IEEE1394 is not set |
| 575 | # CONFIG_I2O is not set | 612 | # CONFIG_I2O is not set |
| 576 | # CONFIG_MACINTOSH_DRIVERS is not set | 613 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 577 | CONFIG_NETDEVICES=y | 614 | CONFIG_NETDEVICES=y |
| 578 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 579 | # CONFIG_DUMMY is not set | 615 | # CONFIG_DUMMY is not set |
| 580 | # CONFIG_BONDING is not set | 616 | # CONFIG_BONDING is not set |
| 581 | # CONFIG_MACVLAN is not set | 617 | # CONFIG_MACVLAN is not set |
| @@ -602,6 +638,8 @@ CONFIG_CICADA_PHY=y | |||
| 602 | # CONFIG_MDIO_BITBANG is not set | 638 | # CONFIG_MDIO_BITBANG is not set |
| 603 | CONFIG_NET_ETHERNET=y | 639 | CONFIG_NET_ETHERNET=y |
| 604 | CONFIG_MII=y | 640 | CONFIG_MII=y |
| 641 | # CONFIG_MACE is not set | ||
| 642 | # CONFIG_BMAC is not set | ||
| 605 | # CONFIG_HAPPYMEAL is not set | 643 | # CONFIG_HAPPYMEAL is not set |
| 606 | # CONFIG_SUNGEM is not set | 644 | # CONFIG_SUNGEM is not set |
| 607 | # CONFIG_CASSINI is not set | 645 | # CONFIG_CASSINI is not set |
| @@ -638,7 +676,6 @@ CONFIG_NETDEV_1000=y | |||
| 638 | # CONFIG_DL2K is not set | 676 | # CONFIG_DL2K is not set |
| 639 | # CONFIG_E1000 is not set | 677 | # CONFIG_E1000 is not set |
| 640 | # CONFIG_E1000E is not set | 678 | # CONFIG_E1000E is not set |
| 641 | # CONFIG_E1000E_ENABLED is not set | ||
| 642 | # CONFIG_IP1000 is not set | 679 | # CONFIG_IP1000 is not set |
| 643 | # CONFIG_IGB is not set | 680 | # CONFIG_IGB is not set |
| 644 | # CONFIG_NS83820 is not set | 681 | # CONFIG_NS83820 is not set |
| @@ -652,9 +689,10 @@ CONFIG_NETDEV_1000=y | |||
| 652 | # CONFIG_TIGON3 is not set | 689 | # CONFIG_TIGON3 is not set |
| 653 | # CONFIG_BNX2 is not set | 690 | # CONFIG_BNX2 is not set |
| 654 | CONFIG_GIANFAR=y | 691 | CONFIG_GIANFAR=y |
| 655 | CONFIG_GFAR_NAPI=y | 692 | # CONFIG_MV643XX_ETH is not set |
| 656 | # CONFIG_QLA3XXX is not set | 693 | # CONFIG_QLA3XXX is not set |
| 657 | # CONFIG_ATL1 is not set | 694 | # CONFIG_ATL1 is not set |
| 695 | # CONFIG_ATL1E is not set | ||
| 658 | CONFIG_NETDEV_10000=y | 696 | CONFIG_NETDEV_10000=y |
| 659 | # CONFIG_CHELSIO_T1 is not set | 697 | # CONFIG_CHELSIO_T1 is not set |
| 660 | # CONFIG_CHELSIO_T3 is not set | 698 | # CONFIG_CHELSIO_T3 is not set |
| @@ -752,11 +790,14 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 752 | # CONFIG_SERIAL_UARTLITE is not set | 790 | # CONFIG_SERIAL_UARTLITE is not set |
| 753 | CONFIG_SERIAL_CORE=y | 791 | CONFIG_SERIAL_CORE=y |
| 754 | CONFIG_SERIAL_CORE_CONSOLE=y | 792 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 793 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 755 | # CONFIG_SERIAL_JSM is not set | 794 | # CONFIG_SERIAL_JSM is not set |
| 756 | # CONFIG_SERIAL_OF_PLATFORM is not set | 795 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 757 | CONFIG_UNIX98_PTYS=y | 796 | CONFIG_UNIX98_PTYS=y |
| 758 | CONFIG_LEGACY_PTYS=y | 797 | CONFIG_LEGACY_PTYS=y |
| 759 | CONFIG_LEGACY_PTY_COUNT=256 | 798 | CONFIG_LEGACY_PTY_COUNT=256 |
| 799 | # CONFIG_BRIQ_PANEL is not set | ||
| 800 | # CONFIG_HVC_RTAS is not set | ||
| 760 | # CONFIG_IPMI_HANDLER is not set | 801 | # CONFIG_IPMI_HANDLER is not set |
| 761 | CONFIG_HW_RANDOM=y | 802 | CONFIG_HW_RANDOM=y |
| 762 | # CONFIG_NVRAM is not set | 803 | # CONFIG_NVRAM is not set |
| @@ -768,43 +809,70 @@ CONFIG_DEVPORT=y | |||
| 768 | CONFIG_I2C=y | 809 | CONFIG_I2C=y |
| 769 | CONFIG_I2C_BOARDINFO=y | 810 | CONFIG_I2C_BOARDINFO=y |
| 770 | CONFIG_I2C_CHARDEV=y | 811 | CONFIG_I2C_CHARDEV=y |
| 812 | CONFIG_I2C_HELPER_AUTO=y | ||
| 771 | 813 | ||
| 772 | # | 814 | # |
| 773 | # I2C Hardware Bus support | 815 | # I2C Hardware Bus support |
| 774 | # | 816 | # |
| 817 | |||
| 818 | # | ||
| 819 | # PC SMBus host controller drivers | ||
| 820 | # | ||
| 775 | # CONFIG_I2C_ALI1535 is not set | 821 | # CONFIG_I2C_ALI1535 is not set |
| 776 | # CONFIG_I2C_ALI1563 is not set | 822 | # CONFIG_I2C_ALI1563 is not set |
| 777 | # CONFIG_I2C_ALI15X3 is not set | 823 | # CONFIG_I2C_ALI15X3 is not set |
| 778 | # CONFIG_I2C_AMD756 is not set | 824 | # CONFIG_I2C_AMD756 is not set |
| 779 | # CONFIG_I2C_AMD8111 is not set | 825 | # CONFIG_I2C_AMD8111 is not set |
| 780 | # CONFIG_I2C_I801 is not set | 826 | # CONFIG_I2C_I801 is not set |
| 781 | # CONFIG_I2C_I810 is not set | 827 | # CONFIG_I2C_ISCH is not set |
| 782 | # CONFIG_I2C_PIIX4 is not set | 828 | # CONFIG_I2C_PIIX4 is not set |
| 783 | CONFIG_I2C_MPC=y | ||
| 784 | # CONFIG_I2C_NFORCE2 is not set | 829 | # CONFIG_I2C_NFORCE2 is not set |
| 785 | # CONFIG_I2C_OCORES is not set | ||
| 786 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 787 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 788 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 789 | # CONFIG_I2C_SIMTEC is not set | ||
| 790 | # CONFIG_I2C_SIS5595 is not set | 830 | # CONFIG_I2C_SIS5595 is not set |
| 791 | # CONFIG_I2C_SIS630 is not set | 831 | # CONFIG_I2C_SIS630 is not set |
| 792 | # CONFIG_I2C_SIS96X is not set | 832 | # CONFIG_I2C_SIS96X is not set |
| 793 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 794 | # CONFIG_I2C_STUB is not set | ||
| 795 | # CONFIG_I2C_TINY_USB is not set | ||
| 796 | # CONFIG_I2C_VIA is not set | 833 | # CONFIG_I2C_VIA is not set |
| 797 | # CONFIG_I2C_VIAPRO is not set | 834 | # CONFIG_I2C_VIAPRO is not set |
| 835 | |||
| 836 | # | ||
| 837 | # Mac SMBus host controller drivers | ||
| 838 | # | ||
| 839 | # CONFIG_I2C_HYDRA is not set | ||
| 840 | CONFIG_I2C_POWERMAC=y | ||
| 841 | |||
| 842 | # | ||
| 843 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 844 | # | ||
| 845 | CONFIG_I2C_MPC=y | ||
| 846 | # CONFIG_I2C_OCORES is not set | ||
| 847 | # CONFIG_I2C_SIMTEC is not set | ||
| 848 | |||
| 849 | # | ||
| 850 | # External I2C/SMBus adapter drivers | ||
| 851 | # | ||
| 852 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 853 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 854 | # CONFIG_I2C_TINY_USB is not set | ||
| 855 | |||
| 856 | # | ||
| 857 | # Graphics adapter I2C/DDC channel drivers | ||
| 858 | # | ||
| 798 | # CONFIG_I2C_VOODOO3 is not set | 859 | # CONFIG_I2C_VOODOO3 is not set |
| 860 | |||
| 861 | # | ||
| 862 | # Other I2C/SMBus bus drivers | ||
| 863 | # | ||
| 799 | # CONFIG_I2C_PCA_PLATFORM is not set | 864 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 865 | # CONFIG_I2C_STUB is not set | ||
| 800 | 866 | ||
| 801 | # | 867 | # |
| 802 | # Miscellaneous I2C Chip support | 868 | # Miscellaneous I2C Chip support |
| 803 | # | 869 | # |
| 804 | # CONFIG_DS1682 is not set | 870 | # CONFIG_DS1682 is not set |
| 871 | # CONFIG_AT24 is not set | ||
| 805 | # CONFIG_SENSORS_EEPROM is not set | 872 | # CONFIG_SENSORS_EEPROM is not set |
| 806 | # CONFIG_SENSORS_PCF8574 is not set | 873 | # CONFIG_SENSORS_PCF8574 is not set |
| 807 | # CONFIG_PCF8575 is not set | 874 | # CONFIG_PCF8575 is not set |
| 875 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 808 | # CONFIG_SENSORS_PCF8591 is not set | 876 | # CONFIG_SENSORS_PCF8591 is not set |
| 809 | # CONFIG_SENSORS_MAX6875 is not set | 877 | # CONFIG_SENSORS_MAX6875 is not set |
| 810 | # CONFIG_SENSORS_TSL2550 is not set | 878 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -828,11 +896,15 @@ CONFIG_SPI_MPC83xx=y | |||
| 828 | # CONFIG_SPI_AT25 is not set | 896 | # CONFIG_SPI_AT25 is not set |
| 829 | # CONFIG_SPI_SPIDEV is not set | 897 | # CONFIG_SPI_SPIDEV is not set |
| 830 | # CONFIG_SPI_TLE62X0 is not set | 898 | # CONFIG_SPI_TLE62X0 is not set |
| 899 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 900 | # CONFIG_GPIOLIB is not set | ||
| 831 | # CONFIG_W1 is not set | 901 | # CONFIG_W1 is not set |
| 832 | # CONFIG_POWER_SUPPLY is not set | 902 | # CONFIG_POWER_SUPPLY is not set |
| 833 | CONFIG_HWMON=y | 903 | CONFIG_HWMON=y |
| 834 | # CONFIG_HWMON_VID is not set | 904 | # CONFIG_HWMON_VID is not set |
| 905 | # CONFIG_SENSORS_AD7414 is not set | ||
| 835 | # CONFIG_SENSORS_AD7418 is not set | 906 | # CONFIG_SENSORS_AD7418 is not set |
| 907 | # CONFIG_SENSORS_ADCXX is not set | ||
| 836 | # CONFIG_SENSORS_ADM1021 is not set | 908 | # CONFIG_SENSORS_ADM1021 is not set |
| 837 | # CONFIG_SENSORS_ADM1025 is not set | 909 | # CONFIG_SENSORS_ADM1025 is not set |
| 838 | # CONFIG_SENSORS_ADM1026 is not set | 910 | # CONFIG_SENSORS_ADM1026 is not set |
| @@ -841,6 +913,7 @@ CONFIG_HWMON=y | |||
| 841 | # CONFIG_SENSORS_ADM9240 is not set | 913 | # CONFIG_SENSORS_ADM9240 is not set |
| 842 | # CONFIG_SENSORS_ADT7470 is not set | 914 | # CONFIG_SENSORS_ADT7470 is not set |
| 843 | # CONFIG_SENSORS_ADT7473 is not set | 915 | # CONFIG_SENSORS_ADT7473 is not set |
| 916 | # CONFIG_SENSORS_AMS is not set | ||
| 844 | # CONFIG_SENSORS_ATXP1 is not set | 917 | # CONFIG_SENSORS_ATXP1 is not set |
| 845 | # CONFIG_SENSORS_DS1621 is not set | 918 | # CONFIG_SENSORS_DS1621 is not set |
| 846 | # CONFIG_SENSORS_I5K_AMB is not set | 919 | # CONFIG_SENSORS_I5K_AMB is not set |
| @@ -886,6 +959,7 @@ CONFIG_HWMON=y | |||
| 886 | # CONFIG_SENSORS_W83627EHF is not set | 959 | # CONFIG_SENSORS_W83627EHF is not set |
| 887 | # CONFIG_HWMON_DEBUG_CHIP is not set | 960 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 888 | # CONFIG_THERMAL is not set | 961 | # CONFIG_THERMAL is not set |
| 962 | # CONFIG_THERMAL_HWMON is not set | ||
| 889 | CONFIG_WATCHDOG=y | 963 | CONFIG_WATCHDOG=y |
| 890 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 964 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 891 | 965 | ||
| @@ -893,7 +967,9 @@ CONFIG_WATCHDOG=y | |||
| 893 | # Watchdog Device Drivers | 967 | # Watchdog Device Drivers |
| 894 | # | 968 | # |
| 895 | # CONFIG_SOFT_WATCHDOG is not set | 969 | # CONFIG_SOFT_WATCHDOG is not set |
| 896 | CONFIG_83xx_WDT=y | 970 | # CONFIG_ALIM7101_WDT is not set |
| 971 | # CONFIG_8xxx_WDT is not set | ||
| 972 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 897 | 973 | ||
| 898 | # | 974 | # |
| 899 | # PCI-based Watchdog Cards | 975 | # PCI-based Watchdog Cards |
| @@ -915,8 +991,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 915 | # | 991 | # |
| 916 | # Multifunction device drivers | 992 | # Multifunction device drivers |
| 917 | # | 993 | # |
| 994 | # CONFIG_MFD_CORE is not set | ||
| 918 | # CONFIG_MFD_SM501 is not set | 995 | # CONFIG_MFD_SM501 is not set |
| 919 | # CONFIG_HTC_PASIC3 is not set | 996 | # CONFIG_HTC_PASIC3 is not set |
| 997 | # CONFIG_MFD_TMIO is not set | ||
| 920 | 998 | ||
| 921 | # | 999 | # |
| 922 | # Multimedia devices | 1000 | # Multimedia devices |
| @@ -949,10 +1027,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 949 | # Display device support | 1027 | # Display device support |
| 950 | # | 1028 | # |
| 951 | # CONFIG_DISPLAY_SUPPORT is not set | 1029 | # CONFIG_DISPLAY_SUPPORT is not set |
| 952 | |||
| 953 | # | ||
| 954 | # Sound | ||
| 955 | # | ||
| 956 | # CONFIG_SOUND is not set | 1030 | # CONFIG_SOUND is not set |
| 957 | CONFIG_HID_SUPPORT=y | 1031 | CONFIG_HID_SUPPORT=y |
| 958 | CONFIG_HID=y | 1032 | CONFIG_HID=y |
| @@ -986,6 +1060,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 986 | # CONFIG_USB_OTG is not set | 1060 | # CONFIG_USB_OTG is not set |
| 987 | # CONFIG_USB_OTG_WHITELIST is not set | 1061 | # CONFIG_USB_OTG_WHITELIST is not set |
| 988 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1062 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1063 | CONFIG_USB_MON=y | ||
| 989 | 1064 | ||
| 990 | # | 1065 | # |
| 991 | # USB Host Controller Drivers | 1066 | # USB Host Controller Drivers |
| @@ -1009,6 +1084,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1009 | CONFIG_USB_UHCI_HCD=y | 1084 | CONFIG_USB_UHCI_HCD=y |
| 1010 | # CONFIG_USB_SL811_HCD is not set | 1085 | # CONFIG_USB_SL811_HCD is not set |
| 1011 | # CONFIG_USB_R8A66597_HCD is not set | 1086 | # CONFIG_USB_R8A66597_HCD is not set |
| 1087 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | ||
| 1012 | 1088 | ||
| 1013 | # | 1089 | # |
| 1014 | # USB Device Class drivers | 1090 | # USB Device Class drivers |
| @@ -1037,6 +1113,7 @@ CONFIG_USB_STORAGE=y | |||
| 1037 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1113 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1038 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1114 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1039 | # CONFIG_USB_STORAGE_KARMA is not set | 1115 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1116 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1040 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1117 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1041 | # CONFIG_USB_LIBUSUAL is not set | 1118 | # CONFIG_USB_LIBUSUAL is not set |
| 1042 | 1119 | ||
| @@ -1045,7 +1122,6 @@ CONFIG_USB_STORAGE=y | |||
| 1045 | # | 1122 | # |
| 1046 | # CONFIG_USB_MDC800 is not set | 1123 | # CONFIG_USB_MDC800 is not set |
| 1047 | # CONFIG_USB_MICROTEK is not set | 1124 | # CONFIG_USB_MICROTEK is not set |
| 1048 | CONFIG_USB_MON=y | ||
| 1049 | 1125 | ||
| 1050 | # | 1126 | # |
| 1051 | # USB port drivers | 1127 | # USB port drivers |
| @@ -1058,7 +1134,6 @@ CONFIG_USB_MON=y | |||
| 1058 | # CONFIG_USB_EMI62 is not set | 1134 | # CONFIG_USB_EMI62 is not set |
| 1059 | # CONFIG_USB_EMI26 is not set | 1135 | # CONFIG_USB_EMI26 is not set |
| 1060 | # CONFIG_USB_ADUTUX is not set | 1136 | # CONFIG_USB_ADUTUX is not set |
| 1061 | # CONFIG_USB_AUERSWALD is not set | ||
| 1062 | # CONFIG_USB_RIO500 is not set | 1137 | # CONFIG_USB_RIO500 is not set |
| 1063 | # CONFIG_USB_LEGOTOWER is not set | 1138 | # CONFIG_USB_LEGOTOWER is not set |
| 1064 | # CONFIG_USB_LCD is not set | 1139 | # CONFIG_USB_LCD is not set |
| @@ -1085,7 +1160,7 @@ CONFIG_USB_GADGET_SELECTED=y | |||
| 1085 | # CONFIG_USB_GADGET_FSL_USB2 is not set | 1160 | # CONFIG_USB_GADGET_FSL_USB2 is not set |
| 1086 | CONFIG_USB_GADGET_NET2280=y | 1161 | CONFIG_USB_GADGET_NET2280=y |
| 1087 | CONFIG_USB_NET2280=y | 1162 | CONFIG_USB_NET2280=y |
| 1088 | # CONFIG_USB_GADGET_PXA2XX is not set | 1163 | # CONFIG_USB_GADGET_PXA25X is not set |
| 1089 | # CONFIG_USB_GADGET_M66592 is not set | 1164 | # CONFIG_USB_GADGET_M66592 is not set |
| 1090 | # CONFIG_USB_GADGET_PXA27X is not set | 1165 | # CONFIG_USB_GADGET_PXA27X is not set |
| 1091 | # CONFIG_USB_GADGET_GOKU is not set | 1166 | # CONFIG_USB_GADGET_GOKU is not set |
| @@ -1103,6 +1178,7 @@ CONFIG_USB_ETH_RNDIS=y | |||
| 1103 | # CONFIG_USB_G_SERIAL is not set | 1178 | # CONFIG_USB_G_SERIAL is not set |
| 1104 | # CONFIG_USB_MIDI_GADGET is not set | 1179 | # CONFIG_USB_MIDI_GADGET is not set |
| 1105 | # CONFIG_USB_G_PRINTER is not set | 1180 | # CONFIG_USB_G_PRINTER is not set |
| 1181 | # CONFIG_USB_CDC_COMPOSITE is not set | ||
| 1106 | # CONFIG_MMC is not set | 1182 | # CONFIG_MMC is not set |
| 1107 | # CONFIG_MEMSTICK is not set | 1183 | # CONFIG_MEMSTICK is not set |
| 1108 | # CONFIG_NEW_LEDS is not set | 1184 | # CONFIG_NEW_LEDS is not set |
| @@ -1138,10 +1214,13 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1138 | # CONFIG_RTC_DRV_PCF8583 is not set | 1214 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 1139 | # CONFIG_RTC_DRV_M41T80 is not set | 1215 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1140 | # CONFIG_RTC_DRV_S35390A is not set | 1216 | # CONFIG_RTC_DRV_S35390A is not set |
| 1217 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1141 | 1218 | ||
| 1142 | # | 1219 | # |
| 1143 | # SPI RTC drivers | 1220 | # SPI RTC drivers |
| 1144 | # | 1221 | # |
| 1222 | # CONFIG_RTC_DRV_M41T94 is not set | ||
| 1223 | # CONFIG_RTC_DRV_DS1305 is not set | ||
| 1145 | # CONFIG_RTC_DRV_MAX6902 is not set | 1224 | # CONFIG_RTC_DRV_MAX6902 is not set |
| 1146 | # CONFIG_RTC_DRV_R9701 is not set | 1225 | # CONFIG_RTC_DRV_R9701 is not set |
| 1147 | # CONFIG_RTC_DRV_RS5C348 is not set | 1226 | # CONFIG_RTC_DRV_RS5C348 is not set |
| @@ -1240,6 +1319,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1240 | # CONFIG_CRAMFS is not set | 1319 | # CONFIG_CRAMFS is not set |
| 1241 | # CONFIG_VXFS_FS is not set | 1320 | # CONFIG_VXFS_FS is not set |
| 1242 | # CONFIG_MINIX_FS is not set | 1321 | # CONFIG_MINIX_FS is not set |
| 1322 | # CONFIG_OMFS_FS is not set | ||
| 1243 | # CONFIG_HPFS_FS is not set | 1323 | # CONFIG_HPFS_FS is not set |
| 1244 | # CONFIG_QNX4FS_FS is not set | 1324 | # CONFIG_QNX4FS_FS is not set |
| 1245 | # CONFIG_ROMFS_FS is not set | 1325 | # CONFIG_ROMFS_FS is not set |
| @@ -1250,14 +1330,13 @@ CONFIG_NFS_FS=y | |||
| 1250 | CONFIG_NFS_V3=y | 1330 | CONFIG_NFS_V3=y |
| 1251 | # CONFIG_NFS_V3_ACL is not set | 1331 | # CONFIG_NFS_V3_ACL is not set |
| 1252 | CONFIG_NFS_V4=y | 1332 | CONFIG_NFS_V4=y |
| 1253 | # CONFIG_NFSD is not set | ||
| 1254 | CONFIG_ROOT_NFS=y | 1333 | CONFIG_ROOT_NFS=y |
| 1334 | # CONFIG_NFSD is not set | ||
| 1255 | CONFIG_LOCKD=y | 1335 | CONFIG_LOCKD=y |
| 1256 | CONFIG_LOCKD_V4=y | 1336 | CONFIG_LOCKD_V4=y |
| 1257 | CONFIG_NFS_COMMON=y | 1337 | CONFIG_NFS_COMMON=y |
| 1258 | CONFIG_SUNRPC=y | 1338 | CONFIG_SUNRPC=y |
| 1259 | CONFIG_SUNRPC_GSS=y | 1339 | CONFIG_SUNRPC_GSS=y |
| 1260 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1261 | CONFIG_RPCSEC_GSS_KRB5=y | 1340 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1262 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1341 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1263 | # CONFIG_SMB_FS is not set | 1342 | # CONFIG_SMB_FS is not set |
| @@ -1297,6 +1376,7 @@ CONFIG_BITREVERSE=y | |||
| 1297 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1376 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1298 | # CONFIG_CRC_CCITT is not set | 1377 | # CONFIG_CRC_CCITT is not set |
| 1299 | # CONFIG_CRC16 is not set | 1378 | # CONFIG_CRC16 is not set |
| 1379 | # CONFIG_CRC_T10DIF is not set | ||
| 1300 | # CONFIG_CRC_ITU_T is not set | 1380 | # CONFIG_CRC_ITU_T is not set |
| 1301 | CONFIG_CRC32=y | 1381 | CONFIG_CRC32=y |
| 1302 | # CONFIG_CRC7 is not set | 1382 | # CONFIG_CRC7 is not set |
| @@ -1323,6 +1403,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 1323 | CONFIG_DEBUG_KERNEL=y | 1403 | CONFIG_DEBUG_KERNEL=y |
| 1324 | # CONFIG_DEBUG_SHIRQ is not set | 1404 | # CONFIG_DEBUG_SHIRQ is not set |
| 1325 | CONFIG_DETECT_SOFTLOCKUP=y | 1405 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1406 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1407 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1326 | CONFIG_SCHED_DEBUG=y | 1408 | CONFIG_SCHED_DEBUG=y |
| 1327 | # CONFIG_SCHEDSTATS is not set | 1409 | # CONFIG_SCHEDSTATS is not set |
| 1328 | # CONFIG_TIMER_STATS is not set | 1410 | # CONFIG_TIMER_STATS is not set |
| @@ -1340,19 +1422,32 @@ CONFIG_SCHED_DEBUG=y | |||
| 1340 | # CONFIG_DEBUG_INFO is not set | 1422 | # CONFIG_DEBUG_INFO is not set |
| 1341 | # CONFIG_DEBUG_VM is not set | 1423 | # CONFIG_DEBUG_VM is not set |
| 1342 | # CONFIG_DEBUG_WRITECOUNT is not set | 1424 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1425 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1343 | # CONFIG_DEBUG_LIST is not set | 1426 | # CONFIG_DEBUG_LIST is not set |
| 1344 | # CONFIG_DEBUG_SG is not set | 1427 | # CONFIG_DEBUG_SG is not set |
| 1345 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1428 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1346 | # CONFIG_RCU_TORTURE_TEST is not set | 1429 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1347 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1430 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1348 | # CONFIG_FAULT_INJECTION is not set | 1431 | # CONFIG_FAULT_INJECTION is not set |
| 1432 | # CONFIG_LATENCYTOP is not set | ||
| 1433 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1434 | CONFIG_HAVE_FTRACE=y | ||
| 1435 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1436 | # CONFIG_FTRACE is not set | ||
| 1437 | # CONFIG_SCHED_TRACER is not set | ||
| 1438 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1349 | # CONFIG_SAMPLES is not set | 1439 | # CONFIG_SAMPLES is not set |
| 1440 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1441 | # CONFIG_KGDB is not set | ||
| 1350 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1442 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1351 | # CONFIG_DEBUG_STACK_USAGE is not set | 1443 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1352 | # CONFIG_DEBUG_PAGEALLOC is not set | 1444 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1353 | # CONFIG_DEBUGGER is not set | 1445 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1446 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1447 | # CONFIG_XMON is not set | ||
| 1354 | # CONFIG_IRQSTACKS is not set | 1448 | # CONFIG_IRQSTACKS is not set |
| 1355 | # CONFIG_BDI_SWITCH is not set | 1449 | # CONFIG_BDI_SWITCH is not set |
| 1450 | # CONFIG_BOOTX_TEXT is not set | ||
| 1356 | # CONFIG_PPC_EARLY_DEBUG is not set | 1451 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1357 | 1452 | ||
| 1358 | # | 1453 | # |
| @@ -1406,6 +1501,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1406 | # CONFIG_CRYPTO_MD4 is not set | 1501 | # CONFIG_CRYPTO_MD4 is not set |
| 1407 | CONFIG_CRYPTO_MD5=y | 1502 | CONFIG_CRYPTO_MD5=y |
| 1408 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1503 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1504 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1505 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1506 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1507 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1409 | # CONFIG_CRYPTO_SHA1 is not set | 1508 | # CONFIG_CRYPTO_SHA1 is not set |
| 1410 | # CONFIG_CRYPTO_SHA256 is not set | 1509 | # CONFIG_CRYPTO_SHA256 is not set |
| 1411 | # CONFIG_CRYPTO_SHA512 is not set | 1510 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1438,5 +1537,6 @@ CONFIG_CRYPTO_DES=y | |||
| 1438 | # CONFIG_CRYPTO_LZO is not set | 1537 | # CONFIG_CRYPTO_LZO is not set |
| 1439 | CONFIG_CRYPTO_HW=y | 1538 | CONFIG_CRYPTO_HW=y |
| 1440 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1539 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1540 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1441 | # CONFIG_PPC_CLOCK is not set | 1541 | # CONFIG_PPC_CLOCK is not set |
| 1442 | # CONFIG_VIRTUALIZATION is not set | 1542 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig b/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig index 9bc3a03ae264..dd80eb0a87a1 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:21 2008 | 4 | # Thu Aug 21 00:52:18 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -51,6 +53,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,12 +93,12 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | # CONFIG_KALLSYMS is not set | 96 | # CONFIG_KALLSYMS is not set |
| 93 | CONFIG_HOTPLUG=y | 97 | CONFIG_HOTPLUG=y |
| 94 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
| 95 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
| 96 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
| 101 | CONFIG_PCSPKR_PLATFORM=y | ||
| 97 | CONFIG_COMPAT_BRK=y | 102 | CONFIG_COMPAT_BRK=y |
| 98 | CONFIG_BASE_FULL=y | 103 | CONFIG_BASE_FULL=y |
| 99 | CONFIG_FUTEX=y | 104 | CONFIG_FUTEX=y |
| @@ -111,10 +116,16 @@ CONFIG_SLUB=y | |||
| 111 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
| 112 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 113 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 114 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 115 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | 124 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 125 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 126 | # CONFIG_HAVE_CLK is not set | ||
| 117 | CONFIG_PROC_PAGE_MONITOR=y | 127 | CONFIG_PROC_PAGE_MONITOR=y |
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 118 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
| 119 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
| 120 | # CONFIG_TINY_SHMEM is not set | 131 | # CONFIG_TINY_SHMEM is not set |
| @@ -125,12 +136,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 136 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 126 | # CONFIG_MODVERSIONS is not set | 137 | # CONFIG_MODVERSIONS is not set |
| 127 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 138 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 128 | # CONFIG_KMOD is not set | 139 | CONFIG_KMOD=y |
| 129 | CONFIG_BLOCK=y | 140 | CONFIG_BLOCK=y |
| 130 | # CONFIG_LBD is not set | 141 | # CONFIG_LBD is not set |
| 131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 132 | # CONFIG_LSF is not set | 143 | # CONFIG_LSF is not set |
| 133 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
| 145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 134 | 146 | ||
| 135 | # | 147 | # |
| 136 | # IO Schedulers | 148 | # IO Schedulers |
| @@ -149,37 +161,49 @@ CONFIG_CLASSIC_RCU=y | |||
| 149 | # | 161 | # |
| 150 | # Platform support | 162 | # Platform support |
| 151 | # | 163 | # |
| 152 | # CONFIG_PPC_MULTIPLATFORM is not set | 164 | CONFIG_PPC_MULTIPLATFORM=y |
| 153 | # CONFIG_PPC_82xx is not set | 165 | CONFIG_CLASSIC32=y |
| 154 | CONFIG_PPC_83xx=y | 166 | CONFIG_PPC_CHRP=y |
| 155 | # CONFIG_PPC_86xx is not set | 167 | # CONFIG_MPC5121_ADS is not set |
| 156 | # CONFIG_PPC_MPC512x is not set | 168 | # CONFIG_MPC5121_GENERIC is not set |
| 157 | # CONFIG_PPC_MPC5121 is not set | 169 | # CONFIG_PPC_MPC52xx is not set |
| 170 | CONFIG_PPC_PMAC=y | ||
| 158 | # CONFIG_PPC_CELL is not set | 171 | # CONFIG_PPC_CELL is not set |
| 159 | # CONFIG_PPC_CELL_NATIVE is not set | 172 | # CONFIG_PPC_CELL_NATIVE is not set |
| 173 | # CONFIG_PPC_82xx is not set | ||
| 160 | # CONFIG_PQ2ADS is not set | 174 | # CONFIG_PQ2ADS is not set |
| 161 | CONFIG_MPC83xx=y | 175 | CONFIG_PPC_83xx=y |
| 162 | CONFIG_MPC831x_RDB=y | 176 | CONFIG_MPC831x_RDB=y |
| 163 | # CONFIG_MPC832x_MDS is not set | 177 | # CONFIG_MPC832x_MDS is not set |
| 164 | # CONFIG_MPC832x_RDB is not set | 178 | # CONFIG_MPC832x_RDB is not set |
| 165 | # CONFIG_MPC834x_MDS is not set | 179 | # CONFIG_MPC834x_MDS is not set |
| 166 | # CONFIG_MPC834x_ITX is not set | 180 | # CONFIG_MPC834x_ITX is not set |
| 167 | # CONFIG_MPC836x_MDS is not set | 181 | # CONFIG_MPC836x_MDS is not set |
| 182 | # CONFIG_MPC836x_RDK is not set | ||
| 168 | # CONFIG_MPC837x_MDS is not set | 183 | # CONFIG_MPC837x_MDS is not set |
| 169 | # CONFIG_MPC837x_RDB is not set | 184 | # CONFIG_MPC837x_RDB is not set |
| 170 | # CONFIG_SBC834x is not set | 185 | # CONFIG_SBC834x is not set |
| 186 | # CONFIG_ASP834x is not set | ||
| 171 | CONFIG_PPC_MPC831x=y | 187 | CONFIG_PPC_MPC831x=y |
| 188 | # CONFIG_PPC_86xx is not set | ||
| 189 | # CONFIG_EMBEDDED6xx is not set | ||
| 190 | CONFIG_PPC_NATIVE=y | ||
| 191 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 172 | CONFIG_IPIC=y | 192 | CONFIG_IPIC=y |
| 173 | # CONFIG_MPIC is not set | 193 | CONFIG_MPIC=y |
| 174 | # CONFIG_MPIC_WEIRD is not set | 194 | # CONFIG_MPIC_WEIRD is not set |
| 175 | # CONFIG_PPC_I8259 is not set | 195 | CONFIG_PPC_I8259=y |
| 176 | # CONFIG_PPC_RTAS is not set | 196 | CONFIG_PPC_RTAS=y |
| 197 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 198 | CONFIG_RTAS_PROC=y | ||
| 177 | # CONFIG_MMIO_NVRAM is not set | 199 | # CONFIG_MMIO_NVRAM is not set |
| 178 | # CONFIG_PPC_MPC106 is not set | 200 | CONFIG_PPC_MPC106=y |
| 179 | # CONFIG_PPC_970_NAP is not set | 201 | # CONFIG_PPC_970_NAP is not set |
| 180 | # CONFIG_PPC_INDIRECT_IO is not set | 202 | # CONFIG_PPC_INDIRECT_IO is not set |
| 181 | # CONFIG_GENERIC_IOMAP is not set | 203 | # CONFIG_GENERIC_IOMAP is not set |
| 182 | # CONFIG_CPU_FREQ is not set | 204 | # CONFIG_CPU_FREQ is not set |
| 205 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 206 | # CONFIG_TAU is not set | ||
| 183 | # CONFIG_FSL_ULI1575 is not set | 207 | # CONFIG_FSL_ULI1575 is not set |
| 184 | 208 | ||
| 185 | # | 209 | # |
| @@ -195,7 +219,7 @@ CONFIG_HZ_250=y | |||
| 195 | # CONFIG_HZ_300 is not set | 219 | # CONFIG_HZ_300 is not set |
| 196 | # CONFIG_HZ_1000 is not set | 220 | # CONFIG_HZ_1000 is not set |
| 197 | CONFIG_HZ=250 | 221 | CONFIG_HZ=250 |
| 198 | # CONFIG_SCHED_HRTICK is not set | 222 | CONFIG_SCHED_HRTICK=y |
| 199 | CONFIG_PREEMPT_NONE=y | 223 | CONFIG_PREEMPT_NONE=y |
| 200 | # CONFIG_PREEMPT_VOLUNTARY is not set | 224 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 201 | # CONFIG_PREEMPT is not set | 225 | # CONFIG_PREEMPT is not set |
| @@ -205,6 +229,7 @@ CONFIG_BINFMT_ELF=y | |||
| 205 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 206 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 230 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 231 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 232 | # CONFIG_KEXEC is not set | ||
| 208 | CONFIG_ARCH_FLATMEM_ENABLE=y | 233 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 209 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 234 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 210 | CONFIG_SELECT_MEMORY_MODEL=y | 235 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -217,6 +242,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 242 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | 243 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 244 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 245 | CONFIG_MIGRATION=y | ||
| 220 | # CONFIG_RESOURCES_64BIT is not set | 246 | # CONFIG_RESOURCES_64BIT is not set |
| 221 | CONFIG_ZONE_DMA_FLAG=1 | 247 | CONFIG_ZONE_DMA_FLAG=1 |
| 222 | CONFIG_BOUNCE=y | 248 | CONFIG_BOUNCE=y |
| @@ -224,6 +250,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 225 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
| 226 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
| 253 | CONFIG_EXTRA_TARGETS="" | ||
| 227 | # CONFIG_PM is not set | 254 | # CONFIG_PM is not set |
| 228 | CONFIG_SECCOMP=y | 255 | CONFIG_SECCOMP=y |
| 229 | CONFIG_ISA_DMA_API=y | 256 | CONFIG_ISA_DMA_API=y |
| @@ -231,10 +258,13 @@ CONFIG_ISA_DMA_API=y | |||
| 231 | # | 258 | # |
| 232 | # Bus options | 259 | # Bus options |
| 233 | # | 260 | # |
| 261 | # CONFIG_ISA is not set | ||
| 234 | CONFIG_ZONE_DMA=y | 262 | CONFIG_ZONE_DMA=y |
| 235 | CONFIG_GENERIC_ISA_DMA=y | 263 | CONFIG_GENERIC_ISA_DMA=y |
| 236 | CONFIG_PPC_INDIRECT_PCI=y | 264 | CONFIG_PPC_INDIRECT_PCI=y |
| 237 | CONFIG_FSL_SOC=y | 265 | CONFIG_FSL_SOC=y |
| 266 | CONFIG_FSL_PCI=y | ||
| 267 | CONFIG_PPC_PCI_CHOICE=y | ||
| 238 | CONFIG_PCI=y | 268 | CONFIG_PCI=y |
| 239 | CONFIG_PCI_DOMAINS=y | 269 | CONFIG_PCI_DOMAINS=y |
| 240 | CONFIG_PCI_SYSCALL=y | 270 | CONFIG_PCI_SYSCALL=y |
| @@ -260,10 +290,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 260 | CONFIG_KERNEL_START=0xc0000000 | 290 | CONFIG_KERNEL_START=0xc0000000 |
| 261 | CONFIG_PHYSICAL_START=0x00000000 | 291 | CONFIG_PHYSICAL_START=0x00000000 |
| 262 | CONFIG_TASK_SIZE=0xc0000000 | 292 | CONFIG_TASK_SIZE=0xc0000000 |
| 263 | |||
| 264 | # | ||
| 265 | # Networking | ||
| 266 | # | ||
| 267 | CONFIG_NET=y | 293 | CONFIG_NET=y |
| 268 | 294 | ||
| 269 | # | 295 | # |
| @@ -452,9 +478,11 @@ CONFIG_MTD_NAND_IDS=y | |||
| 452 | # CONFIG_MTD_UBI is not set | 478 | # CONFIG_MTD_UBI is not set |
| 453 | CONFIG_OF_DEVICE=y | 479 | CONFIG_OF_DEVICE=y |
| 454 | CONFIG_OF_I2C=y | 480 | CONFIG_OF_I2C=y |
| 481 | CONFIG_OF_SPI=y | ||
| 455 | # CONFIG_PARPORT is not set | 482 | # CONFIG_PARPORT is not set |
| 456 | CONFIG_BLK_DEV=y | 483 | CONFIG_BLK_DEV=y |
| 457 | # CONFIG_BLK_DEV_FD is not set | 484 | # CONFIG_BLK_DEV_FD is not set |
| 485 | # CONFIG_MAC_FLOPPY is not set | ||
| 458 | # CONFIG_BLK_CPQ_DA is not set | 486 | # CONFIG_BLK_CPQ_DA is not set |
| 459 | # CONFIG_BLK_CPQ_CISS_DA is not set | 487 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 460 | # CONFIG_BLK_DEV_DAC960 is not set | 488 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -471,12 +499,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 471 | # CONFIG_BLK_DEV_XIP is not set | 499 | # CONFIG_BLK_DEV_XIP is not set |
| 472 | # CONFIG_CDROM_PKTCDVD is not set | 500 | # CONFIG_CDROM_PKTCDVD is not set |
| 473 | # CONFIG_ATA_OVER_ETH is not set | 501 | # CONFIG_ATA_OVER_ETH is not set |
| 502 | # CONFIG_BLK_DEV_HD is not set | ||
| 474 | CONFIG_MISC_DEVICES=y | 503 | CONFIG_MISC_DEVICES=y |
| 475 | # CONFIG_PHANTOM is not set | 504 | # CONFIG_PHANTOM is not set |
| 476 | # CONFIG_EEPROM_93CX6 is not set | 505 | # CONFIG_EEPROM_93CX6 is not set |
| 477 | # CONFIG_SGI_IOC4 is not set | 506 | # CONFIG_SGI_IOC4 is not set |
| 478 | # CONFIG_TIFM_CORE is not set | 507 | # CONFIG_TIFM_CORE is not set |
| 479 | # CONFIG_ENCLOSURE_SERVICES is not set | 508 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 509 | # CONFIG_HP_ILO is not set | ||
| 480 | CONFIG_HAVE_IDE=y | 510 | CONFIG_HAVE_IDE=y |
| 481 | # CONFIG_IDE is not set | 511 | # CONFIG_IDE is not set |
| 482 | 512 | ||
| @@ -554,7 +584,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 554 | # CONFIG_SCSI_DC390T is not set | 584 | # CONFIG_SCSI_DC390T is not set |
| 555 | # CONFIG_SCSI_NSP32 is not set | 585 | # CONFIG_SCSI_NSP32 is not set |
| 556 | # CONFIG_SCSI_DEBUG is not set | 586 | # CONFIG_SCSI_DEBUG is not set |
| 587 | # CONFIG_SCSI_MESH is not set | ||
| 588 | # CONFIG_SCSI_MAC53C94 is not set | ||
| 557 | # CONFIG_SCSI_SRP is not set | 589 | # CONFIG_SCSI_SRP is not set |
| 590 | # CONFIG_SCSI_DH is not set | ||
| 558 | CONFIG_ATA=y | 591 | CONFIG_ATA=y |
| 559 | # CONFIG_ATA_NONSTANDARD is not set | 592 | # CONFIG_ATA_NONSTANDARD is not set |
| 560 | CONFIG_SATA_PMP=y | 593 | CONFIG_SATA_PMP=y |
| @@ -631,12 +664,15 @@ CONFIG_MD_RAID1=y | |||
| 631 | # | 664 | # |
| 632 | # IEEE 1394 (FireWire) support | 665 | # IEEE 1394 (FireWire) support |
| 633 | # | 666 | # |
| 667 | |||
| 668 | # | ||
| 669 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 670 | # | ||
| 634 | # CONFIG_FIREWIRE is not set | 671 | # CONFIG_FIREWIRE is not set |
| 635 | # CONFIG_IEEE1394 is not set | 672 | # CONFIG_IEEE1394 is not set |
| 636 | # CONFIG_I2O is not set | 673 | # CONFIG_I2O is not set |
| 637 | # CONFIG_MACINTOSH_DRIVERS is not set | 674 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 638 | CONFIG_NETDEVICES=y | 675 | CONFIG_NETDEVICES=y |
| 639 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 640 | # CONFIG_DUMMY is not set | 676 | # CONFIG_DUMMY is not set |
| 641 | # CONFIG_BONDING is not set | 677 | # CONFIG_BONDING is not set |
| 642 | # CONFIG_MACVLAN is not set | 678 | # CONFIG_MACVLAN is not set |
| @@ -663,6 +699,8 @@ CONFIG_PHYLIB=y | |||
| 663 | # CONFIG_MDIO_BITBANG is not set | 699 | # CONFIG_MDIO_BITBANG is not set |
| 664 | CONFIG_NET_ETHERNET=y | 700 | CONFIG_NET_ETHERNET=y |
| 665 | CONFIG_MII=y | 701 | CONFIG_MII=y |
| 702 | # CONFIG_MACE is not set | ||
| 703 | # CONFIG_BMAC is not set | ||
| 666 | # CONFIG_HAPPYMEAL is not set | 704 | # CONFIG_HAPPYMEAL is not set |
| 667 | # CONFIG_SUNGEM is not set | 705 | # CONFIG_SUNGEM is not set |
| 668 | # CONFIG_CASSINI is not set | 706 | # CONFIG_CASSINI is not set |
| @@ -699,7 +737,6 @@ CONFIG_NETDEV_1000=y | |||
| 699 | # CONFIG_DL2K is not set | 737 | # CONFIG_DL2K is not set |
| 700 | # CONFIG_E1000 is not set | 738 | # CONFIG_E1000 is not set |
| 701 | # CONFIG_E1000E is not set | 739 | # CONFIG_E1000E is not set |
| 702 | # CONFIG_E1000E_ENABLED is not set | ||
| 703 | # CONFIG_IP1000 is not set | 740 | # CONFIG_IP1000 is not set |
| 704 | # CONFIG_IGB is not set | 741 | # CONFIG_IGB is not set |
| 705 | # CONFIG_NS83820 is not set | 742 | # CONFIG_NS83820 is not set |
| @@ -713,9 +750,10 @@ CONFIG_NETDEV_1000=y | |||
| 713 | # CONFIG_TIGON3 is not set | 750 | # CONFIG_TIGON3 is not set |
| 714 | # CONFIG_BNX2 is not set | 751 | # CONFIG_BNX2 is not set |
| 715 | CONFIG_GIANFAR=y | 752 | CONFIG_GIANFAR=y |
| 716 | CONFIG_GFAR_NAPI=y | 753 | # CONFIG_MV643XX_ETH is not set |
| 717 | # CONFIG_QLA3XXX is not set | 754 | # CONFIG_QLA3XXX is not set |
| 718 | # CONFIG_ATL1 is not set | 755 | # CONFIG_ATL1 is not set |
| 756 | # CONFIG_ATL1E is not set | ||
| 719 | CONFIG_NETDEV_10000=y | 757 | CONFIG_NETDEV_10000=y |
| 720 | # CONFIG_CHELSIO_T1 is not set | 758 | # CONFIG_CHELSIO_T1 is not set |
| 721 | # CONFIG_CHELSIO_T3 is not set | 759 | # CONFIG_CHELSIO_T3 is not set |
| @@ -813,11 +851,14 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 813 | # CONFIG_SERIAL_UARTLITE is not set | 851 | # CONFIG_SERIAL_UARTLITE is not set |
| 814 | CONFIG_SERIAL_CORE=y | 852 | CONFIG_SERIAL_CORE=y |
| 815 | CONFIG_SERIAL_CORE_CONSOLE=y | 853 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 854 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 816 | # CONFIG_SERIAL_JSM is not set | 855 | # CONFIG_SERIAL_JSM is not set |
| 817 | # CONFIG_SERIAL_OF_PLATFORM is not set | 856 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 818 | CONFIG_UNIX98_PTYS=y | 857 | CONFIG_UNIX98_PTYS=y |
| 819 | CONFIG_LEGACY_PTYS=y | 858 | CONFIG_LEGACY_PTYS=y |
| 820 | CONFIG_LEGACY_PTY_COUNT=256 | 859 | CONFIG_LEGACY_PTY_COUNT=256 |
| 860 | # CONFIG_BRIQ_PANEL is not set | ||
| 861 | # CONFIG_HVC_RTAS is not set | ||
| 821 | # CONFIG_IPMI_HANDLER is not set | 862 | # CONFIG_IPMI_HANDLER is not set |
| 822 | CONFIG_HW_RANDOM=y | 863 | CONFIG_HW_RANDOM=y |
| 823 | # CONFIG_NVRAM is not set | 864 | # CONFIG_NVRAM is not set |
| @@ -829,43 +870,70 @@ CONFIG_DEVPORT=y | |||
| 829 | CONFIG_I2C=y | 870 | CONFIG_I2C=y |
| 830 | CONFIG_I2C_BOARDINFO=y | 871 | CONFIG_I2C_BOARDINFO=y |
| 831 | CONFIG_I2C_CHARDEV=y | 872 | CONFIG_I2C_CHARDEV=y |
| 873 | CONFIG_I2C_HELPER_AUTO=y | ||
| 832 | 874 | ||
| 833 | # | 875 | # |
| 834 | # I2C Hardware Bus support | 876 | # I2C Hardware Bus support |
| 835 | # | 877 | # |
| 878 | |||
| 879 | # | ||
| 880 | # PC SMBus host controller drivers | ||
| 881 | # | ||
| 836 | # CONFIG_I2C_ALI1535 is not set | 882 | # CONFIG_I2C_ALI1535 is not set |
| 837 | # CONFIG_I2C_ALI1563 is not set | 883 | # CONFIG_I2C_ALI1563 is not set |
| 838 | # CONFIG_I2C_ALI15X3 is not set | 884 | # CONFIG_I2C_ALI15X3 is not set |
| 839 | # CONFIG_I2C_AMD756 is not set | 885 | # CONFIG_I2C_AMD756 is not set |
| 840 | # CONFIG_I2C_AMD8111 is not set | 886 | # CONFIG_I2C_AMD8111 is not set |
| 841 | # CONFIG_I2C_I801 is not set | 887 | # CONFIG_I2C_I801 is not set |
| 842 | # CONFIG_I2C_I810 is not set | 888 | # CONFIG_I2C_ISCH is not set |
| 843 | # CONFIG_I2C_PIIX4 is not set | 889 | # CONFIG_I2C_PIIX4 is not set |
| 844 | CONFIG_I2C_MPC=y | ||
| 845 | # CONFIG_I2C_NFORCE2 is not set | 890 | # CONFIG_I2C_NFORCE2 is not set |
| 846 | # CONFIG_I2C_OCORES is not set | ||
| 847 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 848 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 849 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 850 | # CONFIG_I2C_SIMTEC is not set | ||
| 851 | # CONFIG_I2C_SIS5595 is not set | 891 | # CONFIG_I2C_SIS5595 is not set |
| 852 | # CONFIG_I2C_SIS630 is not set | 892 | # CONFIG_I2C_SIS630 is not set |
| 853 | # CONFIG_I2C_SIS96X is not set | 893 | # CONFIG_I2C_SIS96X is not set |
| 854 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 855 | # CONFIG_I2C_STUB is not set | ||
| 856 | # CONFIG_I2C_TINY_USB is not set | ||
| 857 | # CONFIG_I2C_VIA is not set | 894 | # CONFIG_I2C_VIA is not set |
| 858 | # CONFIG_I2C_VIAPRO is not set | 895 | # CONFIG_I2C_VIAPRO is not set |
| 896 | |||
| 897 | # | ||
| 898 | # Mac SMBus host controller drivers | ||
| 899 | # | ||
| 900 | # CONFIG_I2C_HYDRA is not set | ||
| 901 | CONFIG_I2C_POWERMAC=y | ||
| 902 | |||
| 903 | # | ||
| 904 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 905 | # | ||
| 906 | CONFIG_I2C_MPC=y | ||
| 907 | # CONFIG_I2C_OCORES is not set | ||
| 908 | # CONFIG_I2C_SIMTEC is not set | ||
| 909 | |||
| 910 | # | ||
| 911 | # External I2C/SMBus adapter drivers | ||
| 912 | # | ||
| 913 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 914 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 915 | # CONFIG_I2C_TINY_USB is not set | ||
| 916 | |||
| 917 | # | ||
| 918 | # Graphics adapter I2C/DDC channel drivers | ||
| 919 | # | ||
| 859 | # CONFIG_I2C_VOODOO3 is not set | 920 | # CONFIG_I2C_VOODOO3 is not set |
| 921 | |||
| 922 | # | ||
| 923 | # Other I2C/SMBus bus drivers | ||
| 924 | # | ||
| 860 | # CONFIG_I2C_PCA_PLATFORM is not set | 925 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 926 | # CONFIG_I2C_STUB is not set | ||
| 861 | 927 | ||
| 862 | # | 928 | # |
| 863 | # Miscellaneous I2C Chip support | 929 | # Miscellaneous I2C Chip support |
| 864 | # | 930 | # |
| 865 | # CONFIG_DS1682 is not set | 931 | # CONFIG_DS1682 is not set |
| 932 | # CONFIG_AT24 is not set | ||
| 866 | # CONFIG_SENSORS_EEPROM is not set | 933 | # CONFIG_SENSORS_EEPROM is not set |
| 867 | # CONFIG_SENSORS_PCF8574 is not set | 934 | # CONFIG_SENSORS_PCF8574 is not set |
| 868 | # CONFIG_PCF8575 is not set | 935 | # CONFIG_PCF8575 is not set |
| 936 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 869 | # CONFIG_SENSORS_PCF8591 is not set | 937 | # CONFIG_SENSORS_PCF8591 is not set |
| 870 | # CONFIG_SENSORS_MAX6875 is not set | 938 | # CONFIG_SENSORS_MAX6875 is not set |
| 871 | # CONFIG_SENSORS_TSL2550 is not set | 939 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -889,11 +957,15 @@ CONFIG_SPI_MPC83xx=y | |||
| 889 | # CONFIG_SPI_AT25 is not set | 957 | # CONFIG_SPI_AT25 is not set |
| 890 | # CONFIG_SPI_SPIDEV is not set | 958 | # CONFIG_SPI_SPIDEV is not set |
| 891 | # CONFIG_SPI_TLE62X0 is not set | 959 | # CONFIG_SPI_TLE62X0 is not set |
| 960 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 961 | # CONFIG_GPIOLIB is not set | ||
| 892 | # CONFIG_W1 is not set | 962 | # CONFIG_W1 is not set |
| 893 | # CONFIG_POWER_SUPPLY is not set | 963 | # CONFIG_POWER_SUPPLY is not set |
| 894 | CONFIG_HWMON=y | 964 | CONFIG_HWMON=y |
| 895 | # CONFIG_HWMON_VID is not set | 965 | # CONFIG_HWMON_VID is not set |
| 966 | # CONFIG_SENSORS_AD7414 is not set | ||
| 896 | # CONFIG_SENSORS_AD7418 is not set | 967 | # CONFIG_SENSORS_AD7418 is not set |
| 968 | # CONFIG_SENSORS_ADCXX is not set | ||
| 897 | # CONFIG_SENSORS_ADM1021 is not set | 969 | # CONFIG_SENSORS_ADM1021 is not set |
| 898 | # CONFIG_SENSORS_ADM1025 is not set | 970 | # CONFIG_SENSORS_ADM1025 is not set |
| 899 | # CONFIG_SENSORS_ADM1026 is not set | 971 | # CONFIG_SENSORS_ADM1026 is not set |
| @@ -902,6 +974,7 @@ CONFIG_HWMON=y | |||
| 902 | # CONFIG_SENSORS_ADM9240 is not set | 974 | # CONFIG_SENSORS_ADM9240 is not set |
| 903 | # CONFIG_SENSORS_ADT7470 is not set | 975 | # CONFIG_SENSORS_ADT7470 is not set |
| 904 | # CONFIG_SENSORS_ADT7473 is not set | 976 | # CONFIG_SENSORS_ADT7473 is not set |
| 977 | # CONFIG_SENSORS_AMS is not set | ||
| 905 | # CONFIG_SENSORS_ATXP1 is not set | 978 | # CONFIG_SENSORS_ATXP1 is not set |
| 906 | # CONFIG_SENSORS_DS1621 is not set | 979 | # CONFIG_SENSORS_DS1621 is not set |
| 907 | # CONFIG_SENSORS_I5K_AMB is not set | 980 | # CONFIG_SENSORS_I5K_AMB is not set |
| @@ -947,6 +1020,7 @@ CONFIG_HWMON=y | |||
| 947 | # CONFIG_SENSORS_W83627EHF is not set | 1020 | # CONFIG_SENSORS_W83627EHF is not set |
| 948 | # CONFIG_HWMON_DEBUG_CHIP is not set | 1021 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 949 | # CONFIG_THERMAL is not set | 1022 | # CONFIG_THERMAL is not set |
| 1023 | # CONFIG_THERMAL_HWMON is not set | ||
| 950 | CONFIG_WATCHDOG=y | 1024 | CONFIG_WATCHDOG=y |
| 951 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 1025 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 952 | 1026 | ||
| @@ -954,7 +1028,9 @@ CONFIG_WATCHDOG=y | |||
| 954 | # Watchdog Device Drivers | 1028 | # Watchdog Device Drivers |
| 955 | # | 1029 | # |
| 956 | # CONFIG_SOFT_WATCHDOG is not set | 1030 | # CONFIG_SOFT_WATCHDOG is not set |
| 957 | CONFIG_83xx_WDT=y | 1031 | # CONFIG_ALIM7101_WDT is not set |
| 1032 | # CONFIG_8xxx_WDT is not set | ||
| 1033 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 958 | 1034 | ||
| 959 | # | 1035 | # |
| 960 | # PCI-based Watchdog Cards | 1036 | # PCI-based Watchdog Cards |
| @@ -976,8 +1052,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 976 | # | 1052 | # |
| 977 | # Multifunction device drivers | 1053 | # Multifunction device drivers |
| 978 | # | 1054 | # |
| 1055 | # CONFIG_MFD_CORE is not set | ||
| 979 | # CONFIG_MFD_SM501 is not set | 1056 | # CONFIG_MFD_SM501 is not set |
| 980 | # CONFIG_HTC_PASIC3 is not set | 1057 | # CONFIG_HTC_PASIC3 is not set |
| 1058 | # CONFIG_MFD_TMIO is not set | ||
| 981 | 1059 | ||
| 982 | # | 1060 | # |
| 983 | # Multimedia devices | 1061 | # Multimedia devices |
| @@ -1010,10 +1088,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 1010 | # Display device support | 1088 | # Display device support |
| 1011 | # | 1089 | # |
| 1012 | # CONFIG_DISPLAY_SUPPORT is not set | 1090 | # CONFIG_DISPLAY_SUPPORT is not set |
| 1013 | |||
| 1014 | # | ||
| 1015 | # Sound | ||
| 1016 | # | ||
| 1017 | # CONFIG_SOUND is not set | 1091 | # CONFIG_SOUND is not set |
| 1018 | CONFIG_HID_SUPPORT=y | 1092 | CONFIG_HID_SUPPORT=y |
| 1019 | CONFIG_HID=y | 1093 | CONFIG_HID=y |
| @@ -1047,6 +1121,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 1047 | # CONFIG_USB_OTG is not set | 1121 | # CONFIG_USB_OTG is not set |
| 1048 | # CONFIG_USB_OTG_WHITELIST is not set | 1122 | # CONFIG_USB_OTG_WHITELIST is not set |
| 1049 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1123 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1124 | CONFIG_USB_MON=y | ||
| 1050 | 1125 | ||
| 1051 | # | 1126 | # |
| 1052 | # USB Host Controller Drivers | 1127 | # USB Host Controller Drivers |
| @@ -1070,6 +1145,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1070 | CONFIG_USB_UHCI_HCD=y | 1145 | CONFIG_USB_UHCI_HCD=y |
| 1071 | # CONFIG_USB_SL811_HCD is not set | 1146 | # CONFIG_USB_SL811_HCD is not set |
| 1072 | # CONFIG_USB_R8A66597_HCD is not set | 1147 | # CONFIG_USB_R8A66597_HCD is not set |
| 1148 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | ||
| 1073 | 1149 | ||
| 1074 | # | 1150 | # |
| 1075 | # USB Device Class drivers | 1151 | # USB Device Class drivers |
| @@ -1098,6 +1174,7 @@ CONFIG_USB_STORAGE=y | |||
| 1098 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1174 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1099 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1175 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1100 | # CONFIG_USB_STORAGE_KARMA is not set | 1176 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1177 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1101 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1178 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1102 | # CONFIG_USB_LIBUSUAL is not set | 1179 | # CONFIG_USB_LIBUSUAL is not set |
| 1103 | 1180 | ||
| @@ -1106,7 +1183,6 @@ CONFIG_USB_STORAGE=y | |||
| 1106 | # | 1183 | # |
| 1107 | # CONFIG_USB_MDC800 is not set | 1184 | # CONFIG_USB_MDC800 is not set |
| 1108 | # CONFIG_USB_MICROTEK is not set | 1185 | # CONFIG_USB_MICROTEK is not set |
| 1109 | CONFIG_USB_MON=y | ||
| 1110 | 1186 | ||
| 1111 | # | 1187 | # |
| 1112 | # USB port drivers | 1188 | # USB port drivers |
| @@ -1119,7 +1195,6 @@ CONFIG_USB_MON=y | |||
| 1119 | # CONFIG_USB_EMI62 is not set | 1195 | # CONFIG_USB_EMI62 is not set |
| 1120 | # CONFIG_USB_EMI26 is not set | 1196 | # CONFIG_USB_EMI26 is not set |
| 1121 | # CONFIG_USB_ADUTUX is not set | 1197 | # CONFIG_USB_ADUTUX is not set |
| 1122 | # CONFIG_USB_AUERSWALD is not set | ||
| 1123 | # CONFIG_USB_RIO500 is not set | 1198 | # CONFIG_USB_RIO500 is not set |
| 1124 | # CONFIG_USB_LEGOTOWER is not set | 1199 | # CONFIG_USB_LEGOTOWER is not set |
| 1125 | # CONFIG_USB_LCD is not set | 1200 | # CONFIG_USB_LCD is not set |
| @@ -1146,7 +1221,7 @@ CONFIG_USB_GADGET_SELECTED=y | |||
| 1146 | # CONFIG_USB_GADGET_FSL_USB2 is not set | 1221 | # CONFIG_USB_GADGET_FSL_USB2 is not set |
| 1147 | CONFIG_USB_GADGET_NET2280=y | 1222 | CONFIG_USB_GADGET_NET2280=y |
| 1148 | CONFIG_USB_NET2280=y | 1223 | CONFIG_USB_NET2280=y |
| 1149 | # CONFIG_USB_GADGET_PXA2XX is not set | 1224 | # CONFIG_USB_GADGET_PXA25X is not set |
| 1150 | # CONFIG_USB_GADGET_M66592 is not set | 1225 | # CONFIG_USB_GADGET_M66592 is not set |
| 1151 | # CONFIG_USB_GADGET_PXA27X is not set | 1226 | # CONFIG_USB_GADGET_PXA27X is not set |
| 1152 | # CONFIG_USB_GADGET_GOKU is not set | 1227 | # CONFIG_USB_GADGET_GOKU is not set |
| @@ -1164,6 +1239,7 @@ CONFIG_USB_ETH_RNDIS=y | |||
| 1164 | # CONFIG_USB_G_SERIAL is not set | 1239 | # CONFIG_USB_G_SERIAL is not set |
| 1165 | # CONFIG_USB_MIDI_GADGET is not set | 1240 | # CONFIG_USB_MIDI_GADGET is not set |
| 1166 | # CONFIG_USB_G_PRINTER is not set | 1241 | # CONFIG_USB_G_PRINTER is not set |
| 1242 | # CONFIG_USB_CDC_COMPOSITE is not set | ||
| 1167 | # CONFIG_MMC is not set | 1243 | # CONFIG_MMC is not set |
| 1168 | # CONFIG_MEMSTICK is not set | 1244 | # CONFIG_MEMSTICK is not set |
| 1169 | # CONFIG_NEW_LEDS is not set | 1245 | # CONFIG_NEW_LEDS is not set |
| @@ -1199,10 +1275,13 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1199 | # CONFIG_RTC_DRV_PCF8583 is not set | 1275 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 1200 | # CONFIG_RTC_DRV_M41T80 is not set | 1276 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1201 | # CONFIG_RTC_DRV_S35390A is not set | 1277 | # CONFIG_RTC_DRV_S35390A is not set |
| 1278 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1202 | 1279 | ||
| 1203 | # | 1280 | # |
| 1204 | # SPI RTC drivers | 1281 | # SPI RTC drivers |
| 1205 | # | 1282 | # |
| 1283 | # CONFIG_RTC_DRV_M41T94 is not set | ||
| 1284 | # CONFIG_RTC_DRV_DS1305 is not set | ||
| 1206 | # CONFIG_RTC_DRV_MAX6902 is not set | 1285 | # CONFIG_RTC_DRV_MAX6902 is not set |
| 1207 | # CONFIG_RTC_DRV_R9701 is not set | 1286 | # CONFIG_RTC_DRV_R9701 is not set |
| 1208 | # CONFIG_RTC_DRV_RS5C348 is not set | 1287 | # CONFIG_RTC_DRV_RS5C348 is not set |
| @@ -1301,6 +1380,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1301 | # CONFIG_CRAMFS is not set | 1380 | # CONFIG_CRAMFS is not set |
| 1302 | # CONFIG_VXFS_FS is not set | 1381 | # CONFIG_VXFS_FS is not set |
| 1303 | # CONFIG_MINIX_FS is not set | 1382 | # CONFIG_MINIX_FS is not set |
| 1383 | # CONFIG_OMFS_FS is not set | ||
| 1304 | # CONFIG_HPFS_FS is not set | 1384 | # CONFIG_HPFS_FS is not set |
| 1305 | # CONFIG_QNX4FS_FS is not set | 1385 | # CONFIG_QNX4FS_FS is not set |
| 1306 | # CONFIG_ROMFS_FS is not set | 1386 | # CONFIG_ROMFS_FS is not set |
| @@ -1311,14 +1391,13 @@ CONFIG_NFS_FS=y | |||
| 1311 | CONFIG_NFS_V3=y | 1391 | CONFIG_NFS_V3=y |
| 1312 | # CONFIG_NFS_V3_ACL is not set | 1392 | # CONFIG_NFS_V3_ACL is not set |
| 1313 | CONFIG_NFS_V4=y | 1393 | CONFIG_NFS_V4=y |
| 1314 | # CONFIG_NFSD is not set | ||
| 1315 | CONFIG_ROOT_NFS=y | 1394 | CONFIG_ROOT_NFS=y |
| 1395 | # CONFIG_NFSD is not set | ||
| 1316 | CONFIG_LOCKD=y | 1396 | CONFIG_LOCKD=y |
| 1317 | CONFIG_LOCKD_V4=y | 1397 | CONFIG_LOCKD_V4=y |
| 1318 | CONFIG_NFS_COMMON=y | 1398 | CONFIG_NFS_COMMON=y |
| 1319 | CONFIG_SUNRPC=y | 1399 | CONFIG_SUNRPC=y |
| 1320 | CONFIG_SUNRPC_GSS=y | 1400 | CONFIG_SUNRPC_GSS=y |
| 1321 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1322 | CONFIG_RPCSEC_GSS_KRB5=y | 1401 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1323 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1402 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1324 | # CONFIG_SMB_FS is not set | 1403 | # CONFIG_SMB_FS is not set |
| @@ -1358,6 +1437,7 @@ CONFIG_BITREVERSE=y | |||
| 1358 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1437 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1359 | # CONFIG_CRC_CCITT is not set | 1438 | # CONFIG_CRC_CCITT is not set |
| 1360 | # CONFIG_CRC16 is not set | 1439 | # CONFIG_CRC16 is not set |
| 1440 | # CONFIG_CRC_T10DIF is not set | ||
| 1361 | # CONFIG_CRC_ITU_T is not set | 1441 | # CONFIG_CRC_ITU_T is not set |
| 1362 | CONFIG_CRC32=y | 1442 | CONFIG_CRC32=y |
| 1363 | # CONFIG_CRC7 is not set | 1443 | # CONFIG_CRC7 is not set |
| @@ -1384,6 +1464,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 1384 | CONFIG_DEBUG_KERNEL=y | 1464 | CONFIG_DEBUG_KERNEL=y |
| 1385 | # CONFIG_DEBUG_SHIRQ is not set | 1465 | # CONFIG_DEBUG_SHIRQ is not set |
| 1386 | CONFIG_DETECT_SOFTLOCKUP=y | 1466 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1467 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1468 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1387 | CONFIG_SCHED_DEBUG=y | 1469 | CONFIG_SCHED_DEBUG=y |
| 1388 | # CONFIG_SCHEDSTATS is not set | 1470 | # CONFIG_SCHEDSTATS is not set |
| 1389 | # CONFIG_TIMER_STATS is not set | 1471 | # CONFIG_TIMER_STATS is not set |
| @@ -1401,19 +1483,32 @@ CONFIG_SCHED_DEBUG=y | |||
| 1401 | # CONFIG_DEBUG_INFO is not set | 1483 | # CONFIG_DEBUG_INFO is not set |
| 1402 | # CONFIG_DEBUG_VM is not set | 1484 | # CONFIG_DEBUG_VM is not set |
| 1403 | # CONFIG_DEBUG_WRITECOUNT is not set | 1485 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1486 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1404 | # CONFIG_DEBUG_LIST is not set | 1487 | # CONFIG_DEBUG_LIST is not set |
| 1405 | # CONFIG_DEBUG_SG is not set | 1488 | # CONFIG_DEBUG_SG is not set |
| 1406 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1489 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1407 | # CONFIG_RCU_TORTURE_TEST is not set | 1490 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1408 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1491 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1409 | # CONFIG_FAULT_INJECTION is not set | 1492 | # CONFIG_FAULT_INJECTION is not set |
| 1493 | # CONFIG_LATENCYTOP is not set | ||
| 1494 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1495 | CONFIG_HAVE_FTRACE=y | ||
| 1496 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1497 | # CONFIG_FTRACE is not set | ||
| 1498 | # CONFIG_SCHED_TRACER is not set | ||
| 1499 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1410 | # CONFIG_SAMPLES is not set | 1500 | # CONFIG_SAMPLES is not set |
| 1501 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1502 | # CONFIG_KGDB is not set | ||
| 1411 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1503 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1412 | # CONFIG_DEBUG_STACK_USAGE is not set | 1504 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1413 | # CONFIG_DEBUG_PAGEALLOC is not set | 1505 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1414 | # CONFIG_DEBUGGER is not set | 1506 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1507 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1508 | # CONFIG_XMON is not set | ||
| 1415 | # CONFIG_IRQSTACKS is not set | 1509 | # CONFIG_IRQSTACKS is not set |
| 1416 | # CONFIG_BDI_SWITCH is not set | 1510 | # CONFIG_BDI_SWITCH is not set |
| 1511 | # CONFIG_BOOTX_TEXT is not set | ||
| 1417 | # CONFIG_PPC_EARLY_DEBUG is not set | 1512 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1418 | 1513 | ||
| 1419 | # | 1514 | # |
| @@ -1467,6 +1562,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1467 | # CONFIG_CRYPTO_MD4 is not set | 1562 | # CONFIG_CRYPTO_MD4 is not set |
| 1468 | CONFIG_CRYPTO_MD5=y | 1563 | CONFIG_CRYPTO_MD5=y |
| 1469 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1564 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1565 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1566 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1567 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1568 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1470 | # CONFIG_CRYPTO_SHA1 is not set | 1569 | # CONFIG_CRYPTO_SHA1 is not set |
| 1471 | # CONFIG_CRYPTO_SHA256 is not set | 1570 | # CONFIG_CRYPTO_SHA256 is not set |
| 1472 | # CONFIG_CRYPTO_SHA512 is not set | 1571 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1499,5 +1598,6 @@ CONFIG_CRYPTO_DES=y | |||
| 1499 | # CONFIG_CRYPTO_LZO is not set | 1598 | # CONFIG_CRYPTO_LZO is not set |
| 1500 | CONFIG_CRYPTO_HW=y | 1599 | CONFIG_CRYPTO_HW=y |
| 1501 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1600 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1601 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1502 | # CONFIG_PPC_CLOCK is not set | 1602 | # CONFIG_PPC_CLOCK is not set |
| 1503 | # CONFIG_VIRTUALIZATION is not set | 1603 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/83xx/mpc832x_mds_defconfig b/arch/powerpc/configs/83xx/mpc832x_mds_defconfig index 1eca26f3659a..bdf50c8a17e6 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:22 2008 | 4 | # Thu Aug 21 00:52:18 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -51,6 +53,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,12 +93,12 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | # CONFIG_KALLSYMS is not set | 96 | # CONFIG_KALLSYMS is not set |
| 93 | CONFIG_HOTPLUG=y | 97 | CONFIG_HOTPLUG=y |
| 94 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
| 95 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
| 96 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
| 101 | CONFIG_PCSPKR_PLATFORM=y | ||
| 97 | CONFIG_COMPAT_BRK=y | 102 | CONFIG_COMPAT_BRK=y |
| 98 | CONFIG_BASE_FULL=y | 103 | CONFIG_BASE_FULL=y |
| 99 | CONFIG_FUTEX=y | 104 | CONFIG_FUTEX=y |
| @@ -111,10 +116,16 @@ CONFIG_SLUB=y | |||
| 111 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
| 112 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 113 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 114 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 115 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | 124 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 125 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 126 | # CONFIG_HAVE_CLK is not set | ||
| 117 | CONFIG_PROC_PAGE_MONITOR=y | 127 | CONFIG_PROC_PAGE_MONITOR=y |
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 118 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
| 119 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
| 120 | # CONFIG_TINY_SHMEM is not set | 131 | # CONFIG_TINY_SHMEM is not set |
| @@ -125,12 +136,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 136 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 126 | # CONFIG_MODVERSIONS is not set | 137 | # CONFIG_MODVERSIONS is not set |
| 127 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 138 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 128 | # CONFIG_KMOD is not set | 139 | CONFIG_KMOD=y |
| 129 | CONFIG_BLOCK=y | 140 | CONFIG_BLOCK=y |
| 130 | # CONFIG_LBD is not set | 141 | # CONFIG_LBD is not set |
| 131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 132 | # CONFIG_LSF is not set | 143 | # CONFIG_LSF is not set |
| 133 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
| 145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 134 | 146 | ||
| 135 | # | 147 | # |
| 136 | # IO Schedulers | 148 | # IO Schedulers |
| @@ -149,37 +161,49 @@ CONFIG_CLASSIC_RCU=y | |||
| 149 | # | 161 | # |
| 150 | # Platform support | 162 | # Platform support |
| 151 | # | 163 | # |
| 152 | # CONFIG_PPC_MULTIPLATFORM is not set | 164 | CONFIG_PPC_MULTIPLATFORM=y |
| 153 | # CONFIG_PPC_82xx is not set | 165 | CONFIG_CLASSIC32=y |
| 154 | CONFIG_PPC_83xx=y | 166 | CONFIG_PPC_CHRP=y |
| 155 | # CONFIG_PPC_86xx is not set | 167 | # CONFIG_MPC5121_ADS is not set |
| 156 | # CONFIG_PPC_MPC512x is not set | 168 | # CONFIG_MPC5121_GENERIC is not set |
| 157 | # CONFIG_PPC_MPC5121 is not set | 169 | # CONFIG_PPC_MPC52xx is not set |
| 170 | CONFIG_PPC_PMAC=y | ||
| 158 | # CONFIG_PPC_CELL is not set | 171 | # CONFIG_PPC_CELL is not set |
| 159 | # CONFIG_PPC_CELL_NATIVE is not set | 172 | # CONFIG_PPC_CELL_NATIVE is not set |
| 173 | # CONFIG_PPC_82xx is not set | ||
| 160 | # CONFIG_PQ2ADS is not set | 174 | # CONFIG_PQ2ADS is not set |
| 161 | CONFIG_MPC83xx=y | 175 | CONFIG_PPC_83xx=y |
| 162 | # CONFIG_MPC831x_RDB is not set | 176 | # CONFIG_MPC831x_RDB is not set |
| 163 | CONFIG_MPC832x_MDS=y | 177 | CONFIG_MPC832x_MDS=y |
| 164 | # CONFIG_MPC832x_RDB is not set | 178 | # CONFIG_MPC832x_RDB is not set |
| 165 | # CONFIG_MPC834x_MDS is not set | 179 | # CONFIG_MPC834x_MDS is not set |
| 166 | # CONFIG_MPC834x_ITX is not set | 180 | # CONFIG_MPC834x_ITX is not set |
| 167 | # CONFIG_MPC836x_MDS is not set | 181 | # CONFIG_MPC836x_MDS is not set |
| 182 | # CONFIG_MPC836x_RDK is not set | ||
| 168 | # CONFIG_MPC837x_MDS is not set | 183 | # CONFIG_MPC837x_MDS is not set |
| 169 | # CONFIG_MPC837x_RDB is not set | 184 | # CONFIG_MPC837x_RDB is not set |
| 170 | # CONFIG_SBC834x is not set | 185 | # CONFIG_SBC834x is not set |
| 186 | # CONFIG_ASP834x is not set | ||
| 171 | CONFIG_PPC_MPC832x=y | 187 | CONFIG_PPC_MPC832x=y |
| 188 | # CONFIG_PPC_86xx is not set | ||
| 189 | # CONFIG_EMBEDDED6xx is not set | ||
| 190 | CONFIG_PPC_NATIVE=y | ||
| 191 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 172 | CONFIG_IPIC=y | 192 | CONFIG_IPIC=y |
| 173 | # CONFIG_MPIC is not set | 193 | CONFIG_MPIC=y |
| 174 | # CONFIG_MPIC_WEIRD is not set | 194 | # CONFIG_MPIC_WEIRD is not set |
| 175 | # CONFIG_PPC_I8259 is not set | 195 | CONFIG_PPC_I8259=y |
| 176 | # CONFIG_PPC_RTAS is not set | 196 | CONFIG_PPC_RTAS=y |
| 197 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 198 | CONFIG_RTAS_PROC=y | ||
| 177 | # CONFIG_MMIO_NVRAM is not set | 199 | # CONFIG_MMIO_NVRAM is not set |
| 178 | # CONFIG_PPC_MPC106 is not set | 200 | CONFIG_PPC_MPC106=y |
| 179 | # CONFIG_PPC_970_NAP is not set | 201 | # CONFIG_PPC_970_NAP is not set |
| 180 | # CONFIG_PPC_INDIRECT_IO is not set | 202 | # CONFIG_PPC_INDIRECT_IO is not set |
| 181 | # CONFIG_GENERIC_IOMAP is not set | 203 | # CONFIG_GENERIC_IOMAP is not set |
| 182 | # CONFIG_CPU_FREQ is not set | 204 | # CONFIG_CPU_FREQ is not set |
| 205 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 206 | # CONFIG_TAU is not set | ||
| 183 | CONFIG_QUICC_ENGINE=y | 207 | CONFIG_QUICC_ENGINE=y |
| 184 | # CONFIG_FSL_ULI1575 is not set | 208 | # CONFIG_FSL_ULI1575 is not set |
| 185 | 209 | ||
| @@ -196,7 +220,7 @@ CONFIG_HZ_250=y | |||
| 196 | # CONFIG_HZ_300 is not set | 220 | # CONFIG_HZ_300 is not set |
| 197 | # CONFIG_HZ_1000 is not set | 221 | # CONFIG_HZ_1000 is not set |
| 198 | CONFIG_HZ=250 | 222 | CONFIG_HZ=250 |
| 199 | # CONFIG_SCHED_HRTICK is not set | 223 | CONFIG_SCHED_HRTICK=y |
| 200 | CONFIG_PREEMPT_NONE=y | 224 | CONFIG_PREEMPT_NONE=y |
| 201 | # CONFIG_PREEMPT_VOLUNTARY is not set | 225 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 202 | # CONFIG_PREEMPT is not set | 226 | # CONFIG_PREEMPT is not set |
| @@ -207,6 +231,7 @@ CONFIG_MATH_EMULATION=y | |||
| 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 231 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 208 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 232 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 209 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 233 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 234 | # CONFIG_KEXEC is not set | ||
| 210 | CONFIG_ARCH_FLATMEM_ENABLE=y | 235 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 211 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 236 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 212 | CONFIG_SELECT_MEMORY_MODEL=y | 237 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -219,6 +244,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 244 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 220 | CONFIG_PAGEFLAGS_EXTENDED=y | 245 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 246 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 247 | CONFIG_MIGRATION=y | ||
| 222 | # CONFIG_RESOURCES_64BIT is not set | 248 | # CONFIG_RESOURCES_64BIT is not set |
| 223 | CONFIG_ZONE_DMA_FLAG=1 | 249 | CONFIG_ZONE_DMA_FLAG=1 |
| 224 | CONFIG_BOUNCE=y | 250 | CONFIG_BOUNCE=y |
| @@ -226,6 +252,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 226 | CONFIG_FORCE_MAX_ZONEORDER=11 | 252 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 227 | CONFIG_PROC_DEVICETREE=y | 253 | CONFIG_PROC_DEVICETREE=y |
| 228 | # CONFIG_CMDLINE_BOOL is not set | 254 | # CONFIG_CMDLINE_BOOL is not set |
| 255 | CONFIG_EXTRA_TARGETS="" | ||
| 229 | # CONFIG_PM is not set | 256 | # CONFIG_PM is not set |
| 230 | CONFIG_SECCOMP=y | 257 | CONFIG_SECCOMP=y |
| 231 | CONFIG_ISA_DMA_API=y | 258 | CONFIG_ISA_DMA_API=y |
| @@ -233,10 +260,13 @@ CONFIG_ISA_DMA_API=y | |||
| 233 | # | 260 | # |
| 234 | # Bus options | 261 | # Bus options |
| 235 | # | 262 | # |
| 263 | # CONFIG_ISA is not set | ||
| 236 | CONFIG_ZONE_DMA=y | 264 | CONFIG_ZONE_DMA=y |
| 237 | CONFIG_GENERIC_ISA_DMA=y | 265 | CONFIG_GENERIC_ISA_DMA=y |
| 238 | CONFIG_PPC_INDIRECT_PCI=y | 266 | CONFIG_PPC_INDIRECT_PCI=y |
| 239 | CONFIG_FSL_SOC=y | 267 | CONFIG_FSL_SOC=y |
| 268 | CONFIG_FSL_PCI=y | ||
| 269 | CONFIG_PPC_PCI_CHOICE=y | ||
| 240 | CONFIG_PCI=y | 270 | CONFIG_PCI=y |
| 241 | CONFIG_PCI_DOMAINS=y | 271 | CONFIG_PCI_DOMAINS=y |
| 242 | CONFIG_PCI_SYSCALL=y | 272 | CONFIG_PCI_SYSCALL=y |
| @@ -261,10 +291,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 261 | CONFIG_KERNEL_START=0xc0000000 | 291 | CONFIG_KERNEL_START=0xc0000000 |
| 262 | CONFIG_PHYSICAL_START=0x00000000 | 292 | CONFIG_PHYSICAL_START=0x00000000 |
| 263 | CONFIG_TASK_SIZE=0xc0000000 | 293 | CONFIG_TASK_SIZE=0xc0000000 |
| 264 | |||
| 265 | # | ||
| 266 | # Networking | ||
| 267 | # | ||
| 268 | CONFIG_NET=y | 294 | CONFIG_NET=y |
| 269 | 295 | ||
| 270 | # | 296 | # |
| @@ -365,6 +391,7 @@ CONFIG_OF_I2C=y | |||
| 365 | # CONFIG_PARPORT is not set | 391 | # CONFIG_PARPORT is not set |
| 366 | CONFIG_BLK_DEV=y | 392 | CONFIG_BLK_DEV=y |
| 367 | # CONFIG_BLK_DEV_FD is not set | 393 | # CONFIG_BLK_DEV_FD is not set |
| 394 | # CONFIG_MAC_FLOPPY is not set | ||
| 368 | # CONFIG_BLK_CPQ_DA is not set | 395 | # CONFIG_BLK_CPQ_DA is not set |
| 369 | # CONFIG_BLK_CPQ_CISS_DA is not set | 396 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 370 | # CONFIG_BLK_DEV_DAC960 is not set | 397 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -380,12 +407,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 380 | # CONFIG_BLK_DEV_XIP is not set | 407 | # CONFIG_BLK_DEV_XIP is not set |
| 381 | # CONFIG_CDROM_PKTCDVD is not set | 408 | # CONFIG_CDROM_PKTCDVD is not set |
| 382 | # CONFIG_ATA_OVER_ETH is not set | 409 | # CONFIG_ATA_OVER_ETH is not set |
| 410 | # CONFIG_BLK_DEV_HD is not set | ||
| 383 | CONFIG_MISC_DEVICES=y | 411 | CONFIG_MISC_DEVICES=y |
| 384 | # CONFIG_PHANTOM is not set | 412 | # CONFIG_PHANTOM is not set |
| 385 | # CONFIG_EEPROM_93CX6 is not set | 413 | # CONFIG_EEPROM_93CX6 is not set |
| 386 | # CONFIG_SGI_IOC4 is not set | 414 | # CONFIG_SGI_IOC4 is not set |
| 387 | # CONFIG_TIFM_CORE is not set | 415 | # CONFIG_TIFM_CORE is not set |
| 388 | # CONFIG_ENCLOSURE_SERVICES is not set | 416 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 417 | # CONFIG_HP_ILO is not set | ||
| 389 | CONFIG_HAVE_IDE=y | 418 | CONFIG_HAVE_IDE=y |
| 390 | # CONFIG_IDE is not set | 419 | # CONFIG_IDE is not set |
| 391 | 420 | ||
| @@ -462,7 +491,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 462 | # CONFIG_SCSI_DC390T is not set | 491 | # CONFIG_SCSI_DC390T is not set |
| 463 | # CONFIG_SCSI_NSP32 is not set | 492 | # CONFIG_SCSI_NSP32 is not set |
| 464 | # CONFIG_SCSI_DEBUG is not set | 493 | # CONFIG_SCSI_DEBUG is not set |
| 494 | # CONFIG_SCSI_MESH is not set | ||
| 495 | # CONFIG_SCSI_MAC53C94 is not set | ||
| 465 | # CONFIG_SCSI_SRP is not set | 496 | # CONFIG_SCSI_SRP is not set |
| 497 | # CONFIG_SCSI_DH is not set | ||
| 466 | # CONFIG_ATA is not set | 498 | # CONFIG_ATA is not set |
| 467 | # CONFIG_MD is not set | 499 | # CONFIG_MD is not set |
| 468 | # CONFIG_FUSION is not set | 500 | # CONFIG_FUSION is not set |
| @@ -470,12 +502,15 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 470 | # | 502 | # |
| 471 | # IEEE 1394 (FireWire) support | 503 | # IEEE 1394 (FireWire) support |
| 472 | # | 504 | # |
| 505 | |||
| 506 | # | ||
| 507 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 508 | # | ||
| 473 | # CONFIG_FIREWIRE is not set | 509 | # CONFIG_FIREWIRE is not set |
| 474 | # CONFIG_IEEE1394 is not set | 510 | # CONFIG_IEEE1394 is not set |
| 475 | # CONFIG_I2O is not set | 511 | # CONFIG_I2O is not set |
| 476 | # CONFIG_MACINTOSH_DRIVERS is not set | 512 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 477 | CONFIG_NETDEVICES=y | 513 | CONFIG_NETDEVICES=y |
| 478 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 479 | # CONFIG_DUMMY is not set | 514 | # CONFIG_DUMMY is not set |
| 480 | # CONFIG_BONDING is not set | 515 | # CONFIG_BONDING is not set |
| 481 | # CONFIG_MACVLAN is not set | 516 | # CONFIG_MACVLAN is not set |
| @@ -502,6 +537,8 @@ CONFIG_DAVICOM_PHY=y | |||
| 502 | # CONFIG_MDIO_BITBANG is not set | 537 | # CONFIG_MDIO_BITBANG is not set |
| 503 | CONFIG_NET_ETHERNET=y | 538 | CONFIG_NET_ETHERNET=y |
| 504 | CONFIG_MII=y | 539 | CONFIG_MII=y |
| 540 | # CONFIG_MACE is not set | ||
| 541 | # CONFIG_BMAC is not set | ||
| 505 | # CONFIG_HAPPYMEAL is not set | 542 | # CONFIG_HAPPYMEAL is not set |
| 506 | # CONFIG_SUNGEM is not set | 543 | # CONFIG_SUNGEM is not set |
| 507 | # CONFIG_CASSINI is not set | 544 | # CONFIG_CASSINI is not set |
| @@ -519,7 +556,6 @@ CONFIG_NETDEV_1000=y | |||
| 519 | # CONFIG_DL2K is not set | 556 | # CONFIG_DL2K is not set |
| 520 | # CONFIG_E1000 is not set | 557 | # CONFIG_E1000 is not set |
| 521 | # CONFIG_E1000E is not set | 558 | # CONFIG_E1000E is not set |
| 522 | # CONFIG_E1000E_ENABLED is not set | ||
| 523 | # CONFIG_IP1000 is not set | 559 | # CONFIG_IP1000 is not set |
| 524 | # CONFIG_IGB is not set | 560 | # CONFIG_IGB is not set |
| 525 | # CONFIG_NS83820 is not set | 561 | # CONFIG_NS83820 is not set |
| @@ -534,12 +570,13 @@ CONFIG_NETDEV_1000=y | |||
| 534 | # CONFIG_BNX2 is not set | 570 | # CONFIG_BNX2 is not set |
| 535 | # CONFIG_GIANFAR is not set | 571 | # CONFIG_GIANFAR is not set |
| 536 | CONFIG_UCC_GETH=y | 572 | CONFIG_UCC_GETH=y |
| 537 | # CONFIG_UGETH_NAPI is not set | ||
| 538 | # CONFIG_UGETH_MAGIC_PACKET is not set | 573 | # CONFIG_UGETH_MAGIC_PACKET is not set |
| 539 | # CONFIG_UGETH_FILTERING is not set | 574 | # CONFIG_UGETH_FILTERING is not set |
| 540 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 575 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
| 576 | # CONFIG_MV643XX_ETH is not set | ||
| 541 | # CONFIG_QLA3XXX is not set | 577 | # CONFIG_QLA3XXX is not set |
| 542 | # CONFIG_ATL1 is not set | 578 | # CONFIG_ATL1 is not set |
| 579 | # CONFIG_ATL1E is not set | ||
| 543 | CONFIG_NETDEV_10000=y | 580 | CONFIG_NETDEV_10000=y |
| 544 | # CONFIG_CHELSIO_T1 is not set | 581 | # CONFIG_CHELSIO_T1 is not set |
| 545 | # CONFIG_CHELSIO_T3 is not set | 582 | # CONFIG_CHELSIO_T3 is not set |
| @@ -628,12 +665,15 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 628 | # CONFIG_SERIAL_UARTLITE is not set | 665 | # CONFIG_SERIAL_UARTLITE is not set |
| 629 | CONFIG_SERIAL_CORE=y | 666 | CONFIG_SERIAL_CORE=y |
| 630 | CONFIG_SERIAL_CORE_CONSOLE=y | 667 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 668 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 631 | # CONFIG_SERIAL_JSM is not set | 669 | # CONFIG_SERIAL_JSM is not set |
| 632 | # CONFIG_SERIAL_OF_PLATFORM is not set | 670 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 633 | # CONFIG_SERIAL_QE is not set | 671 | # CONFIG_SERIAL_QE is not set |
| 634 | CONFIG_UNIX98_PTYS=y | 672 | CONFIG_UNIX98_PTYS=y |
| 635 | CONFIG_LEGACY_PTYS=y | 673 | CONFIG_LEGACY_PTYS=y |
| 636 | CONFIG_LEGACY_PTY_COUNT=256 | 674 | CONFIG_LEGACY_PTY_COUNT=256 |
| 675 | # CONFIG_BRIQ_PANEL is not set | ||
| 676 | # CONFIG_HVC_RTAS is not set | ||
| 637 | # CONFIG_IPMI_HANDLER is not set | 677 | # CONFIG_IPMI_HANDLER is not set |
| 638 | CONFIG_HW_RANDOM=y | 678 | CONFIG_HW_RANDOM=y |
| 639 | # CONFIG_NVRAM is not set | 679 | # CONFIG_NVRAM is not set |
| @@ -645,42 +685,69 @@ CONFIG_DEVPORT=y | |||
| 645 | CONFIG_I2C=y | 685 | CONFIG_I2C=y |
| 646 | CONFIG_I2C_BOARDINFO=y | 686 | CONFIG_I2C_BOARDINFO=y |
| 647 | CONFIG_I2C_CHARDEV=y | 687 | CONFIG_I2C_CHARDEV=y |
| 688 | CONFIG_I2C_HELPER_AUTO=y | ||
| 648 | 689 | ||
| 649 | # | 690 | # |
| 650 | # I2C Hardware Bus support | 691 | # I2C Hardware Bus support |
| 651 | # | 692 | # |
| 693 | |||
| 694 | # | ||
| 695 | # PC SMBus host controller drivers | ||
| 696 | # | ||
| 652 | # CONFIG_I2C_ALI1535 is not set | 697 | # CONFIG_I2C_ALI1535 is not set |
| 653 | # CONFIG_I2C_ALI1563 is not set | 698 | # CONFIG_I2C_ALI1563 is not set |
| 654 | # CONFIG_I2C_ALI15X3 is not set | 699 | # CONFIG_I2C_ALI15X3 is not set |
| 655 | # CONFIG_I2C_AMD756 is not set | 700 | # CONFIG_I2C_AMD756 is not set |
| 656 | # CONFIG_I2C_AMD8111 is not set | 701 | # CONFIG_I2C_AMD8111 is not set |
| 657 | # CONFIG_I2C_I801 is not set | 702 | # CONFIG_I2C_I801 is not set |
| 658 | # CONFIG_I2C_I810 is not set | 703 | # CONFIG_I2C_ISCH is not set |
| 659 | # CONFIG_I2C_PIIX4 is not set | 704 | # CONFIG_I2C_PIIX4 is not set |
| 660 | CONFIG_I2C_MPC=y | ||
| 661 | # CONFIG_I2C_NFORCE2 is not set | 705 | # CONFIG_I2C_NFORCE2 is not set |
| 662 | # CONFIG_I2C_OCORES is not set | ||
| 663 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 664 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 665 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 666 | # CONFIG_I2C_SIMTEC is not set | ||
| 667 | # CONFIG_I2C_SIS5595 is not set | 706 | # CONFIG_I2C_SIS5595 is not set |
| 668 | # CONFIG_I2C_SIS630 is not set | 707 | # CONFIG_I2C_SIS630 is not set |
| 669 | # CONFIG_I2C_SIS96X is not set | 708 | # CONFIG_I2C_SIS96X is not set |
| 670 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 671 | # CONFIG_I2C_STUB is not set | ||
| 672 | # CONFIG_I2C_VIA is not set | 709 | # CONFIG_I2C_VIA is not set |
| 673 | # CONFIG_I2C_VIAPRO is not set | 710 | # CONFIG_I2C_VIAPRO is not set |
| 711 | |||
| 712 | # | ||
| 713 | # Mac SMBus host controller drivers | ||
| 714 | # | ||
| 715 | # CONFIG_I2C_HYDRA is not set | ||
| 716 | CONFIG_I2C_POWERMAC=y | ||
| 717 | |||
| 718 | # | ||
| 719 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 720 | # | ||
| 721 | CONFIG_I2C_MPC=y | ||
| 722 | # CONFIG_I2C_OCORES is not set | ||
| 723 | # CONFIG_I2C_SIMTEC is not set | ||
| 724 | |||
| 725 | # | ||
| 726 | # External I2C/SMBus adapter drivers | ||
| 727 | # | ||
| 728 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 729 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 730 | |||
| 731 | # | ||
| 732 | # Graphics adapter I2C/DDC channel drivers | ||
| 733 | # | ||
| 674 | # CONFIG_I2C_VOODOO3 is not set | 734 | # CONFIG_I2C_VOODOO3 is not set |
| 735 | |||
| 736 | # | ||
| 737 | # Other I2C/SMBus bus drivers | ||
| 738 | # | ||
| 675 | # CONFIG_I2C_PCA_PLATFORM is not set | 739 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 740 | # CONFIG_I2C_STUB is not set | ||
| 676 | 741 | ||
| 677 | # | 742 | # |
| 678 | # Miscellaneous I2C Chip support | 743 | # Miscellaneous I2C Chip support |
| 679 | # | 744 | # |
| 680 | # CONFIG_DS1682 is not set | 745 | # CONFIG_DS1682 is not set |
| 746 | # CONFIG_AT24 is not set | ||
| 681 | # CONFIG_SENSORS_EEPROM is not set | 747 | # CONFIG_SENSORS_EEPROM is not set |
| 682 | # CONFIG_SENSORS_PCF8574 is not set | 748 | # CONFIG_SENSORS_PCF8574 is not set |
| 683 | # CONFIG_PCF8575 is not set | 749 | # CONFIG_PCF8575 is not set |
| 750 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 684 | # CONFIG_SENSORS_PCF8591 is not set | 751 | # CONFIG_SENSORS_PCF8591 is not set |
| 685 | # CONFIG_SENSORS_MAX6875 is not set | 752 | # CONFIG_SENSORS_MAX6875 is not set |
| 686 | # CONFIG_SENSORS_TSL2550 is not set | 753 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -689,10 +756,13 @@ CONFIG_I2C_MPC=y | |||
| 689 | # CONFIG_I2C_DEBUG_BUS is not set | 756 | # CONFIG_I2C_DEBUG_BUS is not set |
| 690 | # CONFIG_I2C_DEBUG_CHIP is not set | 757 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 691 | # CONFIG_SPI is not set | 758 | # CONFIG_SPI is not set |
| 759 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 760 | # CONFIG_GPIOLIB is not set | ||
| 692 | # CONFIG_W1 is not set | 761 | # CONFIG_W1 is not set |
| 693 | # CONFIG_POWER_SUPPLY is not set | 762 | # CONFIG_POWER_SUPPLY is not set |
| 694 | CONFIG_HWMON=y | 763 | CONFIG_HWMON=y |
| 695 | # CONFIG_HWMON_VID is not set | 764 | # CONFIG_HWMON_VID is not set |
| 765 | # CONFIG_SENSORS_AD7414 is not set | ||
| 696 | # CONFIG_SENSORS_AD7418 is not set | 766 | # CONFIG_SENSORS_AD7418 is not set |
| 697 | # CONFIG_SENSORS_ADM1021 is not set | 767 | # CONFIG_SENSORS_ADM1021 is not set |
| 698 | # CONFIG_SENSORS_ADM1025 is not set | 768 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -702,6 +772,7 @@ CONFIG_HWMON=y | |||
| 702 | # CONFIG_SENSORS_ADM9240 is not set | 772 | # CONFIG_SENSORS_ADM9240 is not set |
| 703 | # CONFIG_SENSORS_ADT7470 is not set | 773 | # CONFIG_SENSORS_ADT7470 is not set |
| 704 | # CONFIG_SENSORS_ADT7473 is not set | 774 | # CONFIG_SENSORS_ADT7473 is not set |
| 775 | # CONFIG_SENSORS_AMS is not set | ||
| 705 | # CONFIG_SENSORS_ATXP1 is not set | 776 | # CONFIG_SENSORS_ATXP1 is not set |
| 706 | # CONFIG_SENSORS_DS1621 is not set | 777 | # CONFIG_SENSORS_DS1621 is not set |
| 707 | # CONFIG_SENSORS_I5K_AMB is not set | 778 | # CONFIG_SENSORS_I5K_AMB is not set |
| @@ -746,6 +817,7 @@ CONFIG_HWMON=y | |||
| 746 | # CONFIG_SENSORS_W83627EHF is not set | 817 | # CONFIG_SENSORS_W83627EHF is not set |
| 747 | # CONFIG_HWMON_DEBUG_CHIP is not set | 818 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 748 | # CONFIG_THERMAL is not set | 819 | # CONFIG_THERMAL is not set |
| 820 | # CONFIG_THERMAL_HWMON is not set | ||
| 749 | CONFIG_WATCHDOG=y | 821 | CONFIG_WATCHDOG=y |
| 750 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 822 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 751 | 823 | ||
| @@ -753,7 +825,9 @@ CONFIG_WATCHDOG=y | |||
| 753 | # Watchdog Device Drivers | 825 | # Watchdog Device Drivers |
| 754 | # | 826 | # |
| 755 | # CONFIG_SOFT_WATCHDOG is not set | 827 | # CONFIG_SOFT_WATCHDOG is not set |
| 756 | CONFIG_83xx_WDT=y | 828 | # CONFIG_ALIM7101_WDT is not set |
| 829 | # CONFIG_8xxx_WDT is not set | ||
| 830 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 757 | 831 | ||
| 758 | # | 832 | # |
| 759 | # PCI-based Watchdog Cards | 833 | # PCI-based Watchdog Cards |
| @@ -770,8 +844,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 770 | # | 844 | # |
| 771 | # Multifunction device drivers | 845 | # Multifunction device drivers |
| 772 | # | 846 | # |
| 847 | # CONFIG_MFD_CORE is not set | ||
| 773 | # CONFIG_MFD_SM501 is not set | 848 | # CONFIG_MFD_SM501 is not set |
| 774 | # CONFIG_HTC_PASIC3 is not set | 849 | # CONFIG_HTC_PASIC3 is not set |
| 850 | # CONFIG_MFD_TMIO is not set | ||
| 775 | 851 | ||
| 776 | # | 852 | # |
| 777 | # Multimedia devices | 853 | # Multimedia devices |
| @@ -803,10 +879,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 803 | # Display device support | 879 | # Display device support |
| 804 | # | 880 | # |
| 805 | # CONFIG_DISPLAY_SUPPORT is not set | 881 | # CONFIG_DISPLAY_SUPPORT is not set |
| 806 | |||
| 807 | # | ||
| 808 | # Sound | ||
| 809 | # | ||
| 810 | # CONFIG_SOUND is not set | 882 | # CONFIG_SOUND is not set |
| 811 | CONFIG_HID_SUPPORT=y | 883 | CONFIG_HID_SUPPORT=y |
| 812 | CONFIG_HID=y | 884 | CONFIG_HID=y |
| @@ -821,6 +893,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 821 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 893 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 822 | 894 | ||
| 823 | # | 895 | # |
| 896 | # Enable Host or Gadget support to see Inventra options | ||
| 897 | # | ||
| 898 | |||
| 899 | # | ||
| 824 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 900 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 825 | # | 901 | # |
| 826 | # CONFIG_USB_GADGET is not set | 902 | # CONFIG_USB_GADGET is not set |
| @@ -859,6 +935,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 859 | # CONFIG_RTC_DRV_PCF8583 is not set | 935 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 860 | # CONFIG_RTC_DRV_M41T80 is not set | 936 | # CONFIG_RTC_DRV_M41T80 is not set |
| 861 | # CONFIG_RTC_DRV_S35390A is not set | 937 | # CONFIG_RTC_DRV_S35390A is not set |
| 938 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 862 | 939 | ||
| 863 | # | 940 | # |
| 864 | # SPI RTC drivers | 941 | # SPI RTC drivers |
| @@ -947,6 +1024,7 @@ CONFIG_TMPFS=y | |||
| 947 | # CONFIG_CRAMFS is not set | 1024 | # CONFIG_CRAMFS is not set |
| 948 | # CONFIG_VXFS_FS is not set | 1025 | # CONFIG_VXFS_FS is not set |
| 949 | # CONFIG_MINIX_FS is not set | 1026 | # CONFIG_MINIX_FS is not set |
| 1027 | # CONFIG_OMFS_FS is not set | ||
| 950 | # CONFIG_HPFS_FS is not set | 1028 | # CONFIG_HPFS_FS is not set |
| 951 | # CONFIG_QNX4FS_FS is not set | 1029 | # CONFIG_QNX4FS_FS is not set |
| 952 | # CONFIG_ROMFS_FS is not set | 1030 | # CONFIG_ROMFS_FS is not set |
| @@ -957,14 +1035,13 @@ CONFIG_NFS_FS=y | |||
| 957 | CONFIG_NFS_V3=y | 1035 | CONFIG_NFS_V3=y |
| 958 | # CONFIG_NFS_V3_ACL is not set | 1036 | # CONFIG_NFS_V3_ACL is not set |
| 959 | CONFIG_NFS_V4=y | 1037 | CONFIG_NFS_V4=y |
| 960 | # CONFIG_NFSD is not set | ||
| 961 | CONFIG_ROOT_NFS=y | 1038 | CONFIG_ROOT_NFS=y |
| 1039 | # CONFIG_NFSD is not set | ||
| 962 | CONFIG_LOCKD=y | 1040 | CONFIG_LOCKD=y |
| 963 | CONFIG_LOCKD_V4=y | 1041 | CONFIG_LOCKD_V4=y |
| 964 | CONFIG_NFS_COMMON=y | 1042 | CONFIG_NFS_COMMON=y |
| 965 | CONFIG_SUNRPC=y | 1043 | CONFIG_SUNRPC=y |
| 966 | CONFIG_SUNRPC_GSS=y | 1044 | CONFIG_SUNRPC_GSS=y |
| 967 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 968 | CONFIG_RPCSEC_GSS_KRB5=y | 1045 | CONFIG_RPCSEC_GSS_KRB5=y |
| 969 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1046 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 970 | # CONFIG_SMB_FS is not set | 1047 | # CONFIG_SMB_FS is not set |
| @@ -994,6 +1071,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 994 | # CONFIG_DLM is not set | 1071 | # CONFIG_DLM is not set |
| 995 | CONFIG_UCC_FAST=y | 1072 | CONFIG_UCC_FAST=y |
| 996 | CONFIG_UCC=y | 1073 | CONFIG_UCC=y |
| 1074 | # CONFIG_QE_GPIO is not set | ||
| 997 | 1075 | ||
| 998 | # | 1076 | # |
| 999 | # Library routines | 1077 | # Library routines |
| @@ -1002,6 +1080,7 @@ CONFIG_BITREVERSE=y | |||
| 1002 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1080 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1003 | # CONFIG_CRC_CCITT is not set | 1081 | # CONFIG_CRC_CCITT is not set |
| 1004 | # CONFIG_CRC16 is not set | 1082 | # CONFIG_CRC16 is not set |
| 1083 | # CONFIG_CRC_T10DIF is not set | ||
| 1005 | # CONFIG_CRC_ITU_T is not set | 1084 | # CONFIG_CRC_ITU_T is not set |
| 1006 | CONFIG_CRC32=y | 1085 | CONFIG_CRC32=y |
| 1007 | # CONFIG_CRC7 is not set | 1086 | # CONFIG_CRC7 is not set |
| @@ -1027,8 +1106,18 @@ CONFIG_FRAME_WARN=1024 | |||
| 1027 | # CONFIG_SLUB_DEBUG_ON is not set | 1106 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1028 | # CONFIG_SLUB_STATS is not set | 1107 | # CONFIG_SLUB_STATS is not set |
| 1029 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1108 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1109 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1110 | # CONFIG_LATENCYTOP is not set | ||
| 1111 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1112 | CONFIG_HAVE_FTRACE=y | ||
| 1113 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1114 | # CONFIG_FTRACE is not set | ||
| 1115 | # CONFIG_SCHED_TRACER is not set | ||
| 1116 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1030 | # CONFIG_SAMPLES is not set | 1117 | # CONFIG_SAMPLES is not set |
| 1118 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1031 | # CONFIG_IRQSTACKS is not set | 1119 | # CONFIG_IRQSTACKS is not set |
| 1120 | # CONFIG_BOOTX_TEXT is not set | ||
| 1032 | # CONFIG_PPC_EARLY_DEBUG is not set | 1121 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1033 | 1122 | ||
| 1034 | # | 1123 | # |
| @@ -1082,6 +1171,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1082 | # CONFIG_CRYPTO_MD4 is not set | 1171 | # CONFIG_CRYPTO_MD4 is not set |
| 1083 | CONFIG_CRYPTO_MD5=y | 1172 | CONFIG_CRYPTO_MD5=y |
| 1084 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1173 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1174 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1175 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1176 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1177 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1085 | # CONFIG_CRYPTO_SHA1 is not set | 1178 | # CONFIG_CRYPTO_SHA1 is not set |
| 1086 | # CONFIG_CRYPTO_SHA256 is not set | 1179 | # CONFIG_CRYPTO_SHA256 is not set |
| 1087 | # CONFIG_CRYPTO_SHA512 is not set | 1180 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1114,6 +1207,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1114 | # CONFIG_CRYPTO_LZO is not set | 1207 | # CONFIG_CRYPTO_LZO is not set |
| 1115 | CONFIG_CRYPTO_HW=y | 1208 | CONFIG_CRYPTO_HW=y |
| 1116 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1209 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1210 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1117 | # CONFIG_PPC_CLOCK is not set | 1211 | # CONFIG_PPC_CLOCK is not set |
| 1118 | CONFIG_PPC_LIB_RHEAP=y | 1212 | CONFIG_PPC_LIB_RHEAP=y |
| 1119 | # CONFIG_VIRTUALIZATION is not set | 1213 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig b/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig index de95d327463c..4eef8c95480e 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:24 2008 | 4 | # Thu Aug 21 00:52:19 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -51,6 +53,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,12 +93,12 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | # CONFIG_KALLSYMS is not set | 96 | # CONFIG_KALLSYMS is not set |
| 93 | CONFIG_HOTPLUG=y | 97 | CONFIG_HOTPLUG=y |
| 94 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
| 95 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
| 96 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
| 101 | CONFIG_PCSPKR_PLATFORM=y | ||
| 97 | CONFIG_COMPAT_BRK=y | 102 | CONFIG_COMPAT_BRK=y |
| 98 | CONFIG_BASE_FULL=y | 103 | CONFIG_BASE_FULL=y |
| 99 | CONFIG_FUTEX=y | 104 | CONFIG_FUTEX=y |
| @@ -111,10 +116,16 @@ CONFIG_SLUB=y | |||
| 111 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
| 112 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 113 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 114 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 115 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | 124 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 125 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 126 | # CONFIG_HAVE_CLK is not set | ||
| 117 | CONFIG_PROC_PAGE_MONITOR=y | 127 | CONFIG_PROC_PAGE_MONITOR=y |
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 118 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
| 119 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
| 120 | # CONFIG_TINY_SHMEM is not set | 131 | # CONFIG_TINY_SHMEM is not set |
| @@ -125,12 +136,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 136 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 126 | # CONFIG_MODVERSIONS is not set | 137 | # CONFIG_MODVERSIONS is not set |
| 127 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 138 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 128 | # CONFIG_KMOD is not set | 139 | CONFIG_KMOD=y |
| 129 | CONFIG_BLOCK=y | 140 | CONFIG_BLOCK=y |
| 130 | # CONFIG_LBD is not set | 141 | # CONFIG_LBD is not set |
| 131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 132 | # CONFIG_LSF is not set | 143 | # CONFIG_LSF is not set |
| 133 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
| 145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 134 | 146 | ||
| 135 | # | 147 | # |
| 136 | # IO Schedulers | 148 | # IO Schedulers |
| @@ -149,37 +161,49 @@ CONFIG_CLASSIC_RCU=y | |||
| 149 | # | 161 | # |
| 150 | # Platform support | 162 | # Platform support |
| 151 | # | 163 | # |
| 152 | # CONFIG_PPC_MULTIPLATFORM is not set | 164 | CONFIG_PPC_MULTIPLATFORM=y |
| 153 | # CONFIG_PPC_82xx is not set | 165 | CONFIG_CLASSIC32=y |
| 154 | CONFIG_PPC_83xx=y | 166 | CONFIG_PPC_CHRP=y |
| 155 | # CONFIG_PPC_86xx is not set | 167 | # CONFIG_MPC5121_ADS is not set |
| 156 | # CONFIG_PPC_MPC512x is not set | 168 | # CONFIG_MPC5121_GENERIC is not set |
| 157 | # CONFIG_PPC_MPC5121 is not set | 169 | # CONFIG_PPC_MPC52xx is not set |
| 170 | CONFIG_PPC_PMAC=y | ||
| 158 | # CONFIG_PPC_CELL is not set | 171 | # CONFIG_PPC_CELL is not set |
| 159 | # CONFIG_PPC_CELL_NATIVE is not set | 172 | # CONFIG_PPC_CELL_NATIVE is not set |
| 173 | # CONFIG_PPC_82xx is not set | ||
| 160 | # CONFIG_PQ2ADS is not set | 174 | # CONFIG_PQ2ADS is not set |
| 161 | CONFIG_MPC83xx=y | 175 | CONFIG_PPC_83xx=y |
| 162 | # CONFIG_MPC831x_RDB is not set | 176 | # CONFIG_MPC831x_RDB is not set |
| 163 | # CONFIG_MPC832x_MDS is not set | 177 | # CONFIG_MPC832x_MDS is not set |
| 164 | CONFIG_MPC832x_RDB=y | 178 | CONFIG_MPC832x_RDB=y |
| 165 | # CONFIG_MPC834x_MDS is not set | 179 | # CONFIG_MPC834x_MDS is not set |
| 166 | # CONFIG_MPC834x_ITX is not set | 180 | # CONFIG_MPC834x_ITX is not set |
| 167 | # CONFIG_MPC836x_MDS is not set | 181 | # CONFIG_MPC836x_MDS is not set |
| 182 | # CONFIG_MPC836x_RDK is not set | ||
| 168 | # CONFIG_MPC837x_MDS is not set | 183 | # CONFIG_MPC837x_MDS is not set |
| 169 | # CONFIG_MPC837x_RDB is not set | 184 | # CONFIG_MPC837x_RDB is not set |
| 170 | # CONFIG_SBC834x is not set | 185 | # CONFIG_SBC834x is not set |
| 186 | # CONFIG_ASP834x is not set | ||
| 171 | CONFIG_PPC_MPC832x=y | 187 | CONFIG_PPC_MPC832x=y |
| 188 | # CONFIG_PPC_86xx is not set | ||
| 189 | # CONFIG_EMBEDDED6xx is not set | ||
| 190 | CONFIG_PPC_NATIVE=y | ||
| 191 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 172 | CONFIG_IPIC=y | 192 | CONFIG_IPIC=y |
| 173 | # CONFIG_MPIC is not set | 193 | CONFIG_MPIC=y |
| 174 | # CONFIG_MPIC_WEIRD is not set | 194 | # CONFIG_MPIC_WEIRD is not set |
| 175 | # CONFIG_PPC_I8259 is not set | 195 | CONFIG_PPC_I8259=y |
| 176 | # CONFIG_PPC_RTAS is not set | 196 | CONFIG_PPC_RTAS=y |
| 197 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 198 | CONFIG_RTAS_PROC=y | ||
| 177 | # CONFIG_MMIO_NVRAM is not set | 199 | # CONFIG_MMIO_NVRAM is not set |
| 178 | # CONFIG_PPC_MPC106 is not set | 200 | CONFIG_PPC_MPC106=y |
| 179 | # CONFIG_PPC_970_NAP is not set | 201 | # CONFIG_PPC_970_NAP is not set |
| 180 | # CONFIG_PPC_INDIRECT_IO is not set | 202 | # CONFIG_PPC_INDIRECT_IO is not set |
| 181 | # CONFIG_GENERIC_IOMAP is not set | 203 | # CONFIG_GENERIC_IOMAP is not set |
| 182 | # CONFIG_CPU_FREQ is not set | 204 | # CONFIG_CPU_FREQ is not set |
| 205 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 206 | # CONFIG_TAU is not set | ||
| 183 | CONFIG_QUICC_ENGINE=y | 207 | CONFIG_QUICC_ENGINE=y |
| 184 | # CONFIG_FSL_ULI1575 is not set | 208 | # CONFIG_FSL_ULI1575 is not set |
| 185 | 209 | ||
| @@ -196,7 +220,7 @@ CONFIG_HZ_250=y | |||
| 196 | # CONFIG_HZ_300 is not set | 220 | # CONFIG_HZ_300 is not set |
| 197 | # CONFIG_HZ_1000 is not set | 221 | # CONFIG_HZ_1000 is not set |
| 198 | CONFIG_HZ=250 | 222 | CONFIG_HZ=250 |
| 199 | # CONFIG_SCHED_HRTICK is not set | 223 | CONFIG_SCHED_HRTICK=y |
| 200 | CONFIG_PREEMPT_NONE=y | 224 | CONFIG_PREEMPT_NONE=y |
| 201 | # CONFIG_PREEMPT_VOLUNTARY is not set | 225 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 202 | # CONFIG_PREEMPT is not set | 226 | # CONFIG_PREEMPT is not set |
| @@ -207,6 +231,7 @@ CONFIG_MATH_EMULATION=y | |||
| 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 231 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 208 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 232 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 209 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 233 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 234 | # CONFIG_KEXEC is not set | ||
| 210 | CONFIG_ARCH_FLATMEM_ENABLE=y | 235 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 211 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 236 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 212 | CONFIG_SELECT_MEMORY_MODEL=y | 237 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -219,6 +244,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 244 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 220 | CONFIG_PAGEFLAGS_EXTENDED=y | 245 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 246 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 247 | CONFIG_MIGRATION=y | ||
| 222 | # CONFIG_RESOURCES_64BIT is not set | 248 | # CONFIG_RESOURCES_64BIT is not set |
| 223 | CONFIG_ZONE_DMA_FLAG=1 | 249 | CONFIG_ZONE_DMA_FLAG=1 |
| 224 | CONFIG_BOUNCE=y | 250 | CONFIG_BOUNCE=y |
| @@ -226,6 +252,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 226 | CONFIG_FORCE_MAX_ZONEORDER=11 | 252 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 227 | CONFIG_PROC_DEVICETREE=y | 253 | CONFIG_PROC_DEVICETREE=y |
| 228 | # CONFIG_CMDLINE_BOOL is not set | 254 | # CONFIG_CMDLINE_BOOL is not set |
| 255 | CONFIG_EXTRA_TARGETS="" | ||
| 229 | # CONFIG_PM is not set | 256 | # CONFIG_PM is not set |
| 230 | CONFIG_SECCOMP=y | 257 | CONFIG_SECCOMP=y |
| 231 | CONFIG_ISA_DMA_API=y | 258 | CONFIG_ISA_DMA_API=y |
| @@ -233,10 +260,13 @@ CONFIG_ISA_DMA_API=y | |||
| 233 | # | 260 | # |
| 234 | # Bus options | 261 | # Bus options |
| 235 | # | 262 | # |
| 263 | # CONFIG_ISA is not set | ||
| 236 | CONFIG_ZONE_DMA=y | 264 | CONFIG_ZONE_DMA=y |
| 237 | CONFIG_GENERIC_ISA_DMA=y | 265 | CONFIG_GENERIC_ISA_DMA=y |
| 238 | CONFIG_PPC_INDIRECT_PCI=y | 266 | CONFIG_PPC_INDIRECT_PCI=y |
| 239 | CONFIG_FSL_SOC=y | 267 | CONFIG_FSL_SOC=y |
| 268 | CONFIG_FSL_PCI=y | ||
| 269 | CONFIG_PPC_PCI_CHOICE=y | ||
| 240 | CONFIG_PCI=y | 270 | CONFIG_PCI=y |
| 241 | CONFIG_PCI_DOMAINS=y | 271 | CONFIG_PCI_DOMAINS=y |
| 242 | CONFIG_PCI_SYSCALL=y | 272 | CONFIG_PCI_SYSCALL=y |
| @@ -261,10 +291,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 261 | CONFIG_KERNEL_START=0xc0000000 | 291 | CONFIG_KERNEL_START=0xc0000000 |
| 262 | CONFIG_PHYSICAL_START=0x00000000 | 292 | CONFIG_PHYSICAL_START=0x00000000 |
| 263 | CONFIG_TASK_SIZE=0xc0000000 | 293 | CONFIG_TASK_SIZE=0xc0000000 |
| 264 | |||
| 265 | # | ||
| 266 | # Networking | ||
| 267 | # | ||
| 268 | CONFIG_NET=y | 294 | CONFIG_NET=y |
| 269 | 295 | ||
| 270 | # | 296 | # |
| @@ -362,9 +388,11 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 362 | # CONFIG_MTD is not set | 388 | # CONFIG_MTD is not set |
| 363 | CONFIG_OF_DEVICE=y | 389 | CONFIG_OF_DEVICE=y |
| 364 | CONFIG_OF_I2C=y | 390 | CONFIG_OF_I2C=y |
| 391 | CONFIG_OF_SPI=y | ||
| 365 | # CONFIG_PARPORT is not set | 392 | # CONFIG_PARPORT is not set |
| 366 | CONFIG_BLK_DEV=y | 393 | CONFIG_BLK_DEV=y |
| 367 | # CONFIG_BLK_DEV_FD is not set | 394 | # CONFIG_BLK_DEV_FD is not set |
| 395 | # CONFIG_MAC_FLOPPY is not set | ||
| 368 | # CONFIG_BLK_CPQ_DA is not set | 396 | # CONFIG_BLK_CPQ_DA is not set |
| 369 | # CONFIG_BLK_CPQ_CISS_DA is not set | 397 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 370 | # CONFIG_BLK_DEV_DAC960 is not set | 398 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -381,12 +409,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 381 | # CONFIG_BLK_DEV_XIP is not set | 409 | # CONFIG_BLK_DEV_XIP is not set |
| 382 | # CONFIG_CDROM_PKTCDVD is not set | 410 | # CONFIG_CDROM_PKTCDVD is not set |
| 383 | # CONFIG_ATA_OVER_ETH is not set | 411 | # CONFIG_ATA_OVER_ETH is not set |
| 412 | # CONFIG_BLK_DEV_HD is not set | ||
| 384 | CONFIG_MISC_DEVICES=y | 413 | CONFIG_MISC_DEVICES=y |
| 385 | # CONFIG_PHANTOM is not set | 414 | # CONFIG_PHANTOM is not set |
| 386 | # CONFIG_EEPROM_93CX6 is not set | 415 | # CONFIG_EEPROM_93CX6 is not set |
| 387 | # CONFIG_SGI_IOC4 is not set | 416 | # CONFIG_SGI_IOC4 is not set |
| 388 | # CONFIG_TIFM_CORE is not set | 417 | # CONFIG_TIFM_CORE is not set |
| 389 | # CONFIG_ENCLOSURE_SERVICES is not set | 418 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 419 | # CONFIG_HP_ILO is not set | ||
| 390 | CONFIG_HAVE_IDE=y | 420 | CONFIG_HAVE_IDE=y |
| 391 | # CONFIG_IDE is not set | 421 | # CONFIG_IDE is not set |
| 392 | 422 | ||
| @@ -463,7 +493,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 463 | # CONFIG_SCSI_DC390T is not set | 493 | # CONFIG_SCSI_DC390T is not set |
| 464 | # CONFIG_SCSI_NSP32 is not set | 494 | # CONFIG_SCSI_NSP32 is not set |
| 465 | # CONFIG_SCSI_DEBUG is not set | 495 | # CONFIG_SCSI_DEBUG is not set |
| 496 | # CONFIG_SCSI_MESH is not set | ||
| 497 | # CONFIG_SCSI_MAC53C94 is not set | ||
| 466 | # CONFIG_SCSI_SRP is not set | 498 | # CONFIG_SCSI_SRP is not set |
| 499 | # CONFIG_SCSI_DH is not set | ||
| 467 | # CONFIG_ATA is not set | 500 | # CONFIG_ATA is not set |
| 468 | # CONFIG_MD is not set | 501 | # CONFIG_MD is not set |
| 469 | # CONFIG_FUSION is not set | 502 | # CONFIG_FUSION is not set |
| @@ -471,12 +504,15 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 471 | # | 504 | # |
| 472 | # IEEE 1394 (FireWire) support | 505 | # IEEE 1394 (FireWire) support |
| 473 | # | 506 | # |
| 507 | |||
| 508 | # | ||
| 509 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 510 | # | ||
| 474 | # CONFIG_FIREWIRE is not set | 511 | # CONFIG_FIREWIRE is not set |
| 475 | # CONFIG_IEEE1394 is not set | 512 | # CONFIG_IEEE1394 is not set |
| 476 | # CONFIG_I2O is not set | 513 | # CONFIG_I2O is not set |
| 477 | # CONFIG_MACINTOSH_DRIVERS is not set | 514 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 478 | CONFIG_NETDEVICES=y | 515 | CONFIG_NETDEVICES=y |
| 479 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 480 | # CONFIG_DUMMY is not set | 516 | # CONFIG_DUMMY is not set |
| 481 | # CONFIG_BONDING is not set | 517 | # CONFIG_BONDING is not set |
| 482 | # CONFIG_MACVLAN is not set | 518 | # CONFIG_MACVLAN is not set |
| @@ -503,6 +539,8 @@ CONFIG_ICPLUS_PHY=y | |||
| 503 | # CONFIG_MDIO_BITBANG is not set | 539 | # CONFIG_MDIO_BITBANG is not set |
| 504 | CONFIG_NET_ETHERNET=y | 540 | CONFIG_NET_ETHERNET=y |
| 505 | CONFIG_MII=y | 541 | CONFIG_MII=y |
| 542 | # CONFIG_MACE is not set | ||
| 543 | # CONFIG_BMAC is not set | ||
| 506 | # CONFIG_HAPPYMEAL is not set | 544 | # CONFIG_HAPPYMEAL is not set |
| 507 | # CONFIG_SUNGEM is not set | 545 | # CONFIG_SUNGEM is not set |
| 508 | # CONFIG_CASSINI is not set | 546 | # CONFIG_CASSINI is not set |
| @@ -520,10 +558,8 @@ CONFIG_NETDEV_1000=y | |||
| 520 | # CONFIG_ACENIC is not set | 558 | # CONFIG_ACENIC is not set |
| 521 | # CONFIG_DL2K is not set | 559 | # CONFIG_DL2K is not set |
| 522 | CONFIG_E1000=y | 560 | CONFIG_E1000=y |
| 523 | # CONFIG_E1000_NAPI is not set | ||
| 524 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 561 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
| 525 | # CONFIG_E1000E is not set | 562 | # CONFIG_E1000E is not set |
| 526 | # CONFIG_E1000E_ENABLED is not set | ||
| 527 | # CONFIG_IP1000 is not set | 563 | # CONFIG_IP1000 is not set |
| 528 | # CONFIG_IGB is not set | 564 | # CONFIG_IGB is not set |
| 529 | # CONFIG_NS83820 is not set | 565 | # CONFIG_NS83820 is not set |
| @@ -538,12 +574,13 @@ CONFIG_E1000=y | |||
| 538 | # CONFIG_BNX2 is not set | 574 | # CONFIG_BNX2 is not set |
| 539 | # CONFIG_GIANFAR is not set | 575 | # CONFIG_GIANFAR is not set |
| 540 | CONFIG_UCC_GETH=y | 576 | CONFIG_UCC_GETH=y |
| 541 | CONFIG_UGETH_NAPI=y | ||
| 542 | # CONFIG_UGETH_MAGIC_PACKET is not set | 577 | # CONFIG_UGETH_MAGIC_PACKET is not set |
| 543 | # CONFIG_UGETH_FILTERING is not set | 578 | # CONFIG_UGETH_FILTERING is not set |
| 544 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 579 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
| 580 | # CONFIG_MV643XX_ETH is not set | ||
| 545 | # CONFIG_QLA3XXX is not set | 581 | # CONFIG_QLA3XXX is not set |
| 546 | # CONFIG_ATL1 is not set | 582 | # CONFIG_ATL1 is not set |
| 583 | # CONFIG_ATL1E is not set | ||
| 547 | CONFIG_NETDEV_10000=y | 584 | CONFIG_NETDEV_10000=y |
| 548 | # CONFIG_CHELSIO_T1 is not set | 585 | # CONFIG_CHELSIO_T1 is not set |
| 549 | # CONFIG_CHELSIO_T3 is not set | 586 | # CONFIG_CHELSIO_T3 is not set |
| @@ -641,12 +678,15 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 641 | # CONFIG_SERIAL_UARTLITE is not set | 678 | # CONFIG_SERIAL_UARTLITE is not set |
| 642 | CONFIG_SERIAL_CORE=y | 679 | CONFIG_SERIAL_CORE=y |
| 643 | CONFIG_SERIAL_CORE_CONSOLE=y | 680 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 681 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 644 | # CONFIG_SERIAL_JSM is not set | 682 | # CONFIG_SERIAL_JSM is not set |
| 645 | # CONFIG_SERIAL_OF_PLATFORM is not set | 683 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 646 | # CONFIG_SERIAL_QE is not set | 684 | # CONFIG_SERIAL_QE is not set |
| 647 | CONFIG_UNIX98_PTYS=y | 685 | CONFIG_UNIX98_PTYS=y |
| 648 | CONFIG_LEGACY_PTYS=y | 686 | CONFIG_LEGACY_PTYS=y |
| 649 | CONFIG_LEGACY_PTY_COUNT=256 | 687 | CONFIG_LEGACY_PTY_COUNT=256 |
| 688 | # CONFIG_BRIQ_PANEL is not set | ||
| 689 | # CONFIG_HVC_RTAS is not set | ||
| 650 | # CONFIG_IPMI_HANDLER is not set | 690 | # CONFIG_IPMI_HANDLER is not set |
| 651 | CONFIG_HW_RANDOM=y | 691 | CONFIG_HW_RANDOM=y |
| 652 | # CONFIG_NVRAM is not set | 692 | # CONFIG_NVRAM is not set |
| @@ -660,43 +700,70 @@ CONFIG_DEVPORT=y | |||
| 660 | CONFIG_I2C=y | 700 | CONFIG_I2C=y |
| 661 | CONFIG_I2C_BOARDINFO=y | 701 | CONFIG_I2C_BOARDINFO=y |
| 662 | CONFIG_I2C_CHARDEV=y | 702 | CONFIG_I2C_CHARDEV=y |
| 703 | CONFIG_I2C_HELPER_AUTO=y | ||
| 663 | 704 | ||
| 664 | # | 705 | # |
| 665 | # I2C Hardware Bus support | 706 | # I2C Hardware Bus support |
| 666 | # | 707 | # |
| 708 | |||
| 709 | # | ||
| 710 | # PC SMBus host controller drivers | ||
| 711 | # | ||
| 667 | # CONFIG_I2C_ALI1535 is not set | 712 | # CONFIG_I2C_ALI1535 is not set |
| 668 | # CONFIG_I2C_ALI1563 is not set | 713 | # CONFIG_I2C_ALI1563 is not set |
| 669 | # CONFIG_I2C_ALI15X3 is not set | 714 | # CONFIG_I2C_ALI15X3 is not set |
| 670 | # CONFIG_I2C_AMD756 is not set | 715 | # CONFIG_I2C_AMD756 is not set |
| 671 | # CONFIG_I2C_AMD8111 is not set | 716 | # CONFIG_I2C_AMD8111 is not set |
| 672 | # CONFIG_I2C_I801 is not set | 717 | # CONFIG_I2C_I801 is not set |
| 673 | # CONFIG_I2C_I810 is not set | 718 | # CONFIG_I2C_ISCH is not set |
| 674 | # CONFIG_I2C_PIIX4 is not set | 719 | # CONFIG_I2C_PIIX4 is not set |
| 675 | CONFIG_I2C_MPC=y | ||
| 676 | # CONFIG_I2C_NFORCE2 is not set | 720 | # CONFIG_I2C_NFORCE2 is not set |
| 677 | # CONFIG_I2C_OCORES is not set | ||
| 678 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 679 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 680 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 681 | # CONFIG_I2C_SIMTEC is not set | ||
| 682 | # CONFIG_I2C_SIS5595 is not set | 721 | # CONFIG_I2C_SIS5595 is not set |
| 683 | # CONFIG_I2C_SIS630 is not set | 722 | # CONFIG_I2C_SIS630 is not set |
| 684 | # CONFIG_I2C_SIS96X is not set | 723 | # CONFIG_I2C_SIS96X is not set |
| 685 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 686 | # CONFIG_I2C_STUB is not set | ||
| 687 | # CONFIG_I2C_TINY_USB is not set | ||
| 688 | # CONFIG_I2C_VIA is not set | 724 | # CONFIG_I2C_VIA is not set |
| 689 | # CONFIG_I2C_VIAPRO is not set | 725 | # CONFIG_I2C_VIAPRO is not set |
| 726 | |||
| 727 | # | ||
| 728 | # Mac SMBus host controller drivers | ||
| 729 | # | ||
| 730 | # CONFIG_I2C_HYDRA is not set | ||
| 731 | CONFIG_I2C_POWERMAC=y | ||
| 732 | |||
| 733 | # | ||
| 734 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 735 | # | ||
| 736 | CONFIG_I2C_MPC=y | ||
| 737 | # CONFIG_I2C_OCORES is not set | ||
| 738 | # CONFIG_I2C_SIMTEC is not set | ||
| 739 | |||
| 740 | # | ||
| 741 | # External I2C/SMBus adapter drivers | ||
| 742 | # | ||
| 743 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 744 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 745 | # CONFIG_I2C_TINY_USB is not set | ||
| 746 | |||
| 747 | # | ||
| 748 | # Graphics adapter I2C/DDC channel drivers | ||
| 749 | # | ||
| 690 | # CONFIG_I2C_VOODOO3 is not set | 750 | # CONFIG_I2C_VOODOO3 is not set |
| 751 | |||
| 752 | # | ||
| 753 | # Other I2C/SMBus bus drivers | ||
| 754 | # | ||
| 691 | # CONFIG_I2C_PCA_PLATFORM is not set | 755 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 756 | # CONFIG_I2C_STUB is not set | ||
| 692 | 757 | ||
| 693 | # | 758 | # |
| 694 | # Miscellaneous I2C Chip support | 759 | # Miscellaneous I2C Chip support |
| 695 | # | 760 | # |
| 696 | # CONFIG_DS1682 is not set | 761 | # CONFIG_DS1682 is not set |
| 762 | # CONFIG_AT24 is not set | ||
| 697 | # CONFIG_SENSORS_EEPROM is not set | 763 | # CONFIG_SENSORS_EEPROM is not set |
| 698 | # CONFIG_SENSORS_PCF8574 is not set | 764 | # CONFIG_SENSORS_PCF8574 is not set |
| 699 | # CONFIG_PCF8575 is not set | 765 | # CONFIG_PCF8575 is not set |
| 766 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 700 | # CONFIG_SENSORS_PCF8591 is not set | 767 | # CONFIG_SENSORS_PCF8591 is not set |
| 701 | # CONFIG_SENSORS_MAX6875 is not set | 768 | # CONFIG_SENSORS_MAX6875 is not set |
| 702 | # CONFIG_SENSORS_TSL2550 is not set | 769 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -719,11 +786,15 @@ CONFIG_SPI_MPC83xx=y | |||
| 719 | # CONFIG_SPI_AT25 is not set | 786 | # CONFIG_SPI_AT25 is not set |
| 720 | # CONFIG_SPI_SPIDEV is not set | 787 | # CONFIG_SPI_SPIDEV is not set |
| 721 | # CONFIG_SPI_TLE62X0 is not set | 788 | # CONFIG_SPI_TLE62X0 is not set |
| 789 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 790 | # CONFIG_GPIOLIB is not set | ||
| 722 | # CONFIG_W1 is not set | 791 | # CONFIG_W1 is not set |
| 723 | # CONFIG_POWER_SUPPLY is not set | 792 | # CONFIG_POWER_SUPPLY is not set |
| 724 | CONFIG_HWMON=y | 793 | CONFIG_HWMON=y |
| 725 | # CONFIG_HWMON_VID is not set | 794 | # CONFIG_HWMON_VID is not set |
| 795 | # CONFIG_SENSORS_AD7414 is not set | ||
| 726 | # CONFIG_SENSORS_AD7418 is not set | 796 | # CONFIG_SENSORS_AD7418 is not set |
| 797 | # CONFIG_SENSORS_ADCXX is not set | ||
| 727 | # CONFIG_SENSORS_ADM1021 is not set | 798 | # CONFIG_SENSORS_ADM1021 is not set |
| 728 | # CONFIG_SENSORS_ADM1025 is not set | 799 | # CONFIG_SENSORS_ADM1025 is not set |
| 729 | # CONFIG_SENSORS_ADM1026 is not set | 800 | # CONFIG_SENSORS_ADM1026 is not set |
| @@ -732,6 +803,7 @@ CONFIG_HWMON=y | |||
| 732 | # CONFIG_SENSORS_ADM9240 is not set | 803 | # CONFIG_SENSORS_ADM9240 is not set |
| 733 | # CONFIG_SENSORS_ADT7470 is not set | 804 | # CONFIG_SENSORS_ADT7470 is not set |
| 734 | # CONFIG_SENSORS_ADT7473 is not set | 805 | # CONFIG_SENSORS_ADT7473 is not set |
| 806 | # CONFIG_SENSORS_AMS is not set | ||
| 735 | # CONFIG_SENSORS_ATXP1 is not set | 807 | # CONFIG_SENSORS_ATXP1 is not set |
| 736 | # CONFIG_SENSORS_DS1621 is not set | 808 | # CONFIG_SENSORS_DS1621 is not set |
| 737 | # CONFIG_SENSORS_I5K_AMB is not set | 809 | # CONFIG_SENSORS_I5K_AMB is not set |
| @@ -777,6 +849,7 @@ CONFIG_HWMON=y | |||
| 777 | # CONFIG_SENSORS_W83627EHF is not set | 849 | # CONFIG_SENSORS_W83627EHF is not set |
| 778 | # CONFIG_HWMON_DEBUG_CHIP is not set | 850 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 779 | # CONFIG_THERMAL is not set | 851 | # CONFIG_THERMAL is not set |
| 852 | # CONFIG_THERMAL_HWMON is not set | ||
| 780 | CONFIG_WATCHDOG=y | 853 | CONFIG_WATCHDOG=y |
| 781 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 854 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 782 | 855 | ||
| @@ -784,7 +857,9 @@ CONFIG_WATCHDOG=y | |||
| 784 | # Watchdog Device Drivers | 857 | # Watchdog Device Drivers |
| 785 | # | 858 | # |
| 786 | # CONFIG_SOFT_WATCHDOG is not set | 859 | # CONFIG_SOFT_WATCHDOG is not set |
| 787 | CONFIG_83xx_WDT=y | 860 | # CONFIG_ALIM7101_WDT is not set |
| 861 | # CONFIG_8xxx_WDT is not set | ||
| 862 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 788 | 863 | ||
| 789 | # | 864 | # |
| 790 | # PCI-based Watchdog Cards | 865 | # PCI-based Watchdog Cards |
| @@ -806,8 +881,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 806 | # | 881 | # |
| 807 | # Multifunction device drivers | 882 | # Multifunction device drivers |
| 808 | # | 883 | # |
| 884 | # CONFIG_MFD_CORE is not set | ||
| 809 | # CONFIG_MFD_SM501 is not set | 885 | # CONFIG_MFD_SM501 is not set |
| 810 | # CONFIG_HTC_PASIC3 is not set | 886 | # CONFIG_HTC_PASIC3 is not set |
| 887 | # CONFIG_MFD_TMIO is not set | ||
| 811 | 888 | ||
| 812 | # | 889 | # |
| 813 | # Multimedia devices | 890 | # Multimedia devices |
| @@ -840,10 +917,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 840 | # Display device support | 917 | # Display device support |
| 841 | # | 918 | # |
| 842 | # CONFIG_DISPLAY_SUPPORT is not set | 919 | # CONFIG_DISPLAY_SUPPORT is not set |
| 843 | |||
| 844 | # | ||
| 845 | # Sound | ||
| 846 | # | ||
| 847 | # CONFIG_SOUND is not set | 920 | # CONFIG_SOUND is not set |
| 848 | CONFIG_HID_SUPPORT=y | 921 | CONFIG_HID_SUPPORT=y |
| 849 | CONFIG_HID=y | 922 | CONFIG_HID=y |
| @@ -877,6 +950,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 877 | # CONFIG_USB_OTG is not set | 950 | # CONFIG_USB_OTG is not set |
| 878 | # CONFIG_USB_OTG_WHITELIST is not set | 951 | # CONFIG_USB_OTG_WHITELIST is not set |
| 879 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 952 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 953 | CONFIG_USB_MON=y | ||
| 880 | 954 | ||
| 881 | # | 955 | # |
| 882 | # USB Host Controller Drivers | 956 | # USB Host Controller Drivers |
| @@ -928,6 +1002,7 @@ CONFIG_USB_STORAGE=y | |||
| 928 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1002 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 929 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1003 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 930 | # CONFIG_USB_STORAGE_KARMA is not set | 1004 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1005 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 931 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1006 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 932 | # CONFIG_USB_LIBUSUAL is not set | 1007 | # CONFIG_USB_LIBUSUAL is not set |
| 933 | 1008 | ||
| @@ -936,7 +1011,6 @@ CONFIG_USB_STORAGE=y | |||
| 936 | # | 1011 | # |
| 937 | # CONFIG_USB_MDC800 is not set | 1012 | # CONFIG_USB_MDC800 is not set |
| 938 | # CONFIG_USB_MICROTEK is not set | 1013 | # CONFIG_USB_MICROTEK is not set |
| 939 | CONFIG_USB_MON=y | ||
| 940 | 1014 | ||
| 941 | # | 1015 | # |
| 942 | # USB port drivers | 1016 | # USB port drivers |
| @@ -949,7 +1023,6 @@ CONFIG_USB_MON=y | |||
| 949 | # CONFIG_USB_EMI62 is not set | 1023 | # CONFIG_USB_EMI62 is not set |
| 950 | # CONFIG_USB_EMI26 is not set | 1024 | # CONFIG_USB_EMI26 is not set |
| 951 | # CONFIG_USB_ADUTUX is not set | 1025 | # CONFIG_USB_ADUTUX is not set |
| 952 | # CONFIG_USB_AUERSWALD is not set | ||
| 953 | # CONFIG_USB_RIO500 is not set | 1026 | # CONFIG_USB_RIO500 is not set |
| 954 | # CONFIG_USB_LEGOTOWER is not set | 1027 | # CONFIG_USB_LEGOTOWER is not set |
| 955 | # CONFIG_USB_LCD is not set | 1028 | # CONFIG_USB_LCD is not set |
| @@ -1063,6 +1136,7 @@ CONFIG_TMPFS=y | |||
| 1063 | # CONFIG_CRAMFS is not set | 1136 | # CONFIG_CRAMFS is not set |
| 1064 | # CONFIG_VXFS_FS is not set | 1137 | # CONFIG_VXFS_FS is not set |
| 1065 | # CONFIG_MINIX_FS is not set | 1138 | # CONFIG_MINIX_FS is not set |
| 1139 | # CONFIG_OMFS_FS is not set | ||
| 1066 | # CONFIG_HPFS_FS is not set | 1140 | # CONFIG_HPFS_FS is not set |
| 1067 | # CONFIG_QNX4FS_FS is not set | 1141 | # CONFIG_QNX4FS_FS is not set |
| 1068 | # CONFIG_ROMFS_FS is not set | 1142 | # CONFIG_ROMFS_FS is not set |
| @@ -1073,14 +1147,13 @@ CONFIG_NFS_FS=y | |||
| 1073 | CONFIG_NFS_V3=y | 1147 | CONFIG_NFS_V3=y |
| 1074 | # CONFIG_NFS_V3_ACL is not set | 1148 | # CONFIG_NFS_V3_ACL is not set |
| 1075 | CONFIG_NFS_V4=y | 1149 | CONFIG_NFS_V4=y |
| 1076 | # CONFIG_NFSD is not set | ||
| 1077 | CONFIG_ROOT_NFS=y | 1150 | CONFIG_ROOT_NFS=y |
| 1151 | # CONFIG_NFSD is not set | ||
| 1078 | CONFIG_LOCKD=y | 1152 | CONFIG_LOCKD=y |
| 1079 | CONFIG_LOCKD_V4=y | 1153 | CONFIG_LOCKD_V4=y |
| 1080 | CONFIG_NFS_COMMON=y | 1154 | CONFIG_NFS_COMMON=y |
| 1081 | CONFIG_SUNRPC=y | 1155 | CONFIG_SUNRPC=y |
| 1082 | CONFIG_SUNRPC_GSS=y | 1156 | CONFIG_SUNRPC_GSS=y |
| 1083 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1084 | CONFIG_RPCSEC_GSS_KRB5=y | 1157 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1085 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1158 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1086 | # CONFIG_SMB_FS is not set | 1159 | # CONFIG_SMB_FS is not set |
| @@ -1154,6 +1227,7 @@ CONFIG_NLS_ISO8859_1=y | |||
| 1154 | # CONFIG_DLM is not set | 1227 | # CONFIG_DLM is not set |
| 1155 | CONFIG_UCC_FAST=y | 1228 | CONFIG_UCC_FAST=y |
| 1156 | CONFIG_UCC=y | 1229 | CONFIG_UCC=y |
| 1230 | # CONFIG_QE_GPIO is not set | ||
| 1157 | 1231 | ||
| 1158 | # | 1232 | # |
| 1159 | # Library routines | 1233 | # Library routines |
| @@ -1162,6 +1236,7 @@ CONFIG_BITREVERSE=y | |||
| 1162 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1236 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1163 | # CONFIG_CRC_CCITT is not set | 1237 | # CONFIG_CRC_CCITT is not set |
| 1164 | # CONFIG_CRC16 is not set | 1238 | # CONFIG_CRC16 is not set |
| 1239 | CONFIG_CRC_T10DIF=y | ||
| 1165 | CONFIG_CRC_ITU_T=y | 1240 | CONFIG_CRC_ITU_T=y |
| 1166 | CONFIG_CRC32=y | 1241 | CONFIG_CRC32=y |
| 1167 | CONFIG_CRC7=y | 1242 | CONFIG_CRC7=y |
| @@ -1187,8 +1262,18 @@ CONFIG_FRAME_WARN=1024 | |||
| 1187 | # CONFIG_SLUB_DEBUG_ON is not set | 1262 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1188 | # CONFIG_SLUB_STATS is not set | 1263 | # CONFIG_SLUB_STATS is not set |
| 1189 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1264 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1265 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1266 | # CONFIG_LATENCYTOP is not set | ||
| 1267 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1268 | CONFIG_HAVE_FTRACE=y | ||
| 1269 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1270 | # CONFIG_FTRACE is not set | ||
| 1271 | # CONFIG_SCHED_TRACER is not set | ||
| 1272 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1190 | # CONFIG_SAMPLES is not set | 1273 | # CONFIG_SAMPLES is not set |
| 1274 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1191 | # CONFIG_IRQSTACKS is not set | 1275 | # CONFIG_IRQSTACKS is not set |
| 1276 | # CONFIG_BOOTX_TEXT is not set | ||
| 1192 | # CONFIG_PPC_EARLY_DEBUG is not set | 1277 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1193 | 1278 | ||
| 1194 | # | 1279 | # |
| @@ -1242,6 +1327,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1242 | # CONFIG_CRYPTO_MD4 is not set | 1327 | # CONFIG_CRYPTO_MD4 is not set |
| 1243 | CONFIG_CRYPTO_MD5=y | 1328 | CONFIG_CRYPTO_MD5=y |
| 1244 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1329 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1330 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1331 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1332 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1333 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1245 | # CONFIG_CRYPTO_SHA1 is not set | 1334 | # CONFIG_CRYPTO_SHA1 is not set |
| 1246 | # CONFIG_CRYPTO_SHA256 is not set | 1335 | # CONFIG_CRYPTO_SHA256 is not set |
| 1247 | # CONFIG_CRYPTO_SHA512 is not set | 1336 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1274,6 +1363,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1274 | # CONFIG_CRYPTO_LZO is not set | 1363 | # CONFIG_CRYPTO_LZO is not set |
| 1275 | CONFIG_CRYPTO_HW=y | 1364 | CONFIG_CRYPTO_HW=y |
| 1276 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1365 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1366 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1277 | # CONFIG_PPC_CLOCK is not set | 1367 | # CONFIG_PPC_CLOCK is not set |
| 1278 | CONFIG_PPC_LIB_RHEAP=y | 1368 | CONFIG_PPC_LIB_RHEAP=y |
| 1279 | # CONFIG_VIRTUALIZATION is not set | 1369 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/83xx/mpc834x_itx_defconfig b/arch/powerpc/configs/83xx/mpc834x_itx_defconfig index b47fc9185708..8d6513931850 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:25 2008 | 4 | # Thu Aug 21 00:52:20 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -51,6 +53,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,12 +93,12 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | # CONFIG_KALLSYMS is not set | 96 | # CONFIG_KALLSYMS is not set |
| 93 | CONFIG_HOTPLUG=y | 97 | CONFIG_HOTPLUG=y |
| 94 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
| 95 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
| 96 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
| 101 | CONFIG_PCSPKR_PLATFORM=y | ||
| 97 | CONFIG_COMPAT_BRK=y | 102 | CONFIG_COMPAT_BRK=y |
| 98 | CONFIG_BASE_FULL=y | 103 | CONFIG_BASE_FULL=y |
| 99 | CONFIG_FUTEX=y | 104 | CONFIG_FUTEX=y |
| @@ -111,10 +116,16 @@ CONFIG_SLUB=y | |||
| 111 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
| 112 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 113 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 114 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 115 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | 124 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 125 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 126 | # CONFIG_HAVE_CLK is not set | ||
| 117 | CONFIG_PROC_PAGE_MONITOR=y | 127 | CONFIG_PROC_PAGE_MONITOR=y |
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 118 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
| 119 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
| 120 | # CONFIG_TINY_SHMEM is not set | 131 | # CONFIG_TINY_SHMEM is not set |
| @@ -125,12 +136,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 136 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 126 | # CONFIG_MODVERSIONS is not set | 137 | # CONFIG_MODVERSIONS is not set |
| 127 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 138 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 128 | # CONFIG_KMOD is not set | 139 | CONFIG_KMOD=y |
| 129 | CONFIG_BLOCK=y | 140 | CONFIG_BLOCK=y |
| 130 | # CONFIG_LBD is not set | 141 | # CONFIG_LBD is not set |
| 131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 132 | # CONFIG_LSF is not set | 143 | # CONFIG_LSF is not set |
| 133 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
| 145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 134 | 146 | ||
| 135 | # | 147 | # |
| 136 | # IO Schedulers | 148 | # IO Schedulers |
| @@ -149,37 +161,49 @@ CONFIG_CLASSIC_RCU=y | |||
| 149 | # | 161 | # |
| 150 | # Platform support | 162 | # Platform support |
| 151 | # | 163 | # |
| 152 | # CONFIG_PPC_MULTIPLATFORM is not set | 164 | CONFIG_PPC_MULTIPLATFORM=y |
| 153 | # CONFIG_PPC_82xx is not set | 165 | CONFIG_CLASSIC32=y |
| 154 | CONFIG_PPC_83xx=y | 166 | CONFIG_PPC_CHRP=y |
| 155 | # CONFIG_PPC_86xx is not set | 167 | # CONFIG_MPC5121_ADS is not set |
| 156 | # CONFIG_PPC_MPC512x is not set | 168 | # CONFIG_MPC5121_GENERIC is not set |
| 157 | # CONFIG_PPC_MPC5121 is not set | 169 | # CONFIG_PPC_MPC52xx is not set |
| 170 | CONFIG_PPC_PMAC=y | ||
| 158 | # CONFIG_PPC_CELL is not set | 171 | # CONFIG_PPC_CELL is not set |
| 159 | # CONFIG_PPC_CELL_NATIVE is not set | 172 | # CONFIG_PPC_CELL_NATIVE is not set |
| 173 | # CONFIG_PPC_82xx is not set | ||
| 160 | # CONFIG_PQ2ADS is not set | 174 | # CONFIG_PQ2ADS is not set |
| 161 | CONFIG_MPC83xx=y | 175 | CONFIG_PPC_83xx=y |
| 162 | # CONFIG_MPC831x_RDB is not set | 176 | # CONFIG_MPC831x_RDB is not set |
| 163 | # CONFIG_MPC832x_MDS is not set | 177 | # CONFIG_MPC832x_MDS is not set |
| 164 | # CONFIG_MPC832x_RDB is not set | 178 | # CONFIG_MPC832x_RDB is not set |
| 165 | # CONFIG_MPC834x_MDS is not set | 179 | # CONFIG_MPC834x_MDS is not set |
| 166 | CONFIG_MPC834x_ITX=y | 180 | CONFIG_MPC834x_ITX=y |
| 167 | # CONFIG_MPC836x_MDS is not set | 181 | # CONFIG_MPC836x_MDS is not set |
| 182 | # CONFIG_MPC836x_RDK is not set | ||
| 168 | # CONFIG_MPC837x_MDS is not set | 183 | # CONFIG_MPC837x_MDS is not set |
| 169 | # CONFIG_MPC837x_RDB is not set | 184 | # CONFIG_MPC837x_RDB is not set |
| 170 | # CONFIG_SBC834x is not set | 185 | # CONFIG_SBC834x is not set |
| 186 | # CONFIG_ASP834x is not set | ||
| 171 | CONFIG_PPC_MPC834x=y | 187 | CONFIG_PPC_MPC834x=y |
| 188 | # CONFIG_PPC_86xx is not set | ||
| 189 | # CONFIG_EMBEDDED6xx is not set | ||
| 190 | CONFIG_PPC_NATIVE=y | ||
| 191 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 172 | CONFIG_IPIC=y | 192 | CONFIG_IPIC=y |
| 173 | # CONFIG_MPIC is not set | 193 | CONFIG_MPIC=y |
| 174 | # CONFIG_MPIC_WEIRD is not set | 194 | # CONFIG_MPIC_WEIRD is not set |
| 175 | # CONFIG_PPC_I8259 is not set | 195 | CONFIG_PPC_I8259=y |
| 176 | # CONFIG_PPC_RTAS is not set | 196 | CONFIG_PPC_RTAS=y |
| 197 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 198 | CONFIG_RTAS_PROC=y | ||
| 177 | # CONFIG_MMIO_NVRAM is not set | 199 | # CONFIG_MMIO_NVRAM is not set |
| 178 | # CONFIG_PPC_MPC106 is not set | 200 | CONFIG_PPC_MPC106=y |
| 179 | # CONFIG_PPC_970_NAP is not set | 201 | # CONFIG_PPC_970_NAP is not set |
| 180 | # CONFIG_PPC_INDIRECT_IO is not set | 202 | # CONFIG_PPC_INDIRECT_IO is not set |
| 181 | # CONFIG_GENERIC_IOMAP is not set | 203 | # CONFIG_GENERIC_IOMAP is not set |
| 182 | # CONFIG_CPU_FREQ is not set | 204 | # CONFIG_CPU_FREQ is not set |
| 205 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 206 | # CONFIG_TAU is not set | ||
| 183 | # CONFIG_FSL_ULI1575 is not set | 207 | # CONFIG_FSL_ULI1575 is not set |
| 184 | 208 | ||
| 185 | # | 209 | # |
| @@ -195,7 +219,7 @@ CONFIG_HZ_250=y | |||
| 195 | # CONFIG_HZ_300 is not set | 219 | # CONFIG_HZ_300 is not set |
| 196 | # CONFIG_HZ_1000 is not set | 220 | # CONFIG_HZ_1000 is not set |
| 197 | CONFIG_HZ=250 | 221 | CONFIG_HZ=250 |
| 198 | # CONFIG_SCHED_HRTICK is not set | 222 | CONFIG_SCHED_HRTICK=y |
| 199 | CONFIG_PREEMPT_NONE=y | 223 | CONFIG_PREEMPT_NONE=y |
| 200 | # CONFIG_PREEMPT_VOLUNTARY is not set | 224 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 201 | # CONFIG_PREEMPT is not set | 225 | # CONFIG_PREEMPT is not set |
| @@ -205,6 +229,7 @@ CONFIG_BINFMT_ELF=y | |||
| 205 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 206 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 230 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 231 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 232 | # CONFIG_KEXEC is not set | ||
| 208 | CONFIG_ARCH_FLATMEM_ENABLE=y | 233 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 209 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 234 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 210 | CONFIG_SELECT_MEMORY_MODEL=y | 235 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -217,6 +242,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 242 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | 243 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 244 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 245 | CONFIG_MIGRATION=y | ||
| 220 | # CONFIG_RESOURCES_64BIT is not set | 246 | # CONFIG_RESOURCES_64BIT is not set |
| 221 | CONFIG_ZONE_DMA_FLAG=1 | 247 | CONFIG_ZONE_DMA_FLAG=1 |
| 222 | CONFIG_BOUNCE=y | 248 | CONFIG_BOUNCE=y |
| @@ -224,6 +250,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 225 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
| 226 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
| 253 | CONFIG_EXTRA_TARGETS="" | ||
| 227 | # CONFIG_PM is not set | 254 | # CONFIG_PM is not set |
| 228 | CONFIG_SECCOMP=y | 255 | CONFIG_SECCOMP=y |
| 229 | CONFIG_ISA_DMA_API=y | 256 | CONFIG_ISA_DMA_API=y |
| @@ -231,10 +258,13 @@ CONFIG_ISA_DMA_API=y | |||
| 231 | # | 258 | # |
| 232 | # Bus options | 259 | # Bus options |
| 233 | # | 260 | # |
| 261 | # CONFIG_ISA is not set | ||
| 234 | CONFIG_ZONE_DMA=y | 262 | CONFIG_ZONE_DMA=y |
| 235 | CONFIG_GENERIC_ISA_DMA=y | 263 | CONFIG_GENERIC_ISA_DMA=y |
| 236 | CONFIG_PPC_INDIRECT_PCI=y | 264 | CONFIG_PPC_INDIRECT_PCI=y |
| 237 | CONFIG_FSL_SOC=y | 265 | CONFIG_FSL_SOC=y |
| 266 | CONFIG_FSL_PCI=y | ||
| 267 | CONFIG_PPC_PCI_CHOICE=y | ||
| 238 | CONFIG_PCI=y | 268 | CONFIG_PCI=y |
| 239 | CONFIG_PCI_DOMAINS=y | 269 | CONFIG_PCI_DOMAINS=y |
| 240 | CONFIG_PCI_SYSCALL=y | 270 | CONFIG_PCI_SYSCALL=y |
| @@ -259,10 +289,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 259 | CONFIG_KERNEL_START=0xc0000000 | 289 | CONFIG_KERNEL_START=0xc0000000 |
| 260 | CONFIG_PHYSICAL_START=0x00000000 | 290 | CONFIG_PHYSICAL_START=0x00000000 |
| 261 | CONFIG_TASK_SIZE=0xc0000000 | 291 | CONFIG_TASK_SIZE=0xc0000000 |
| 262 | |||
| 263 | # | ||
| 264 | # Networking | ||
| 265 | # | ||
| 266 | CONFIG_NET=y | 292 | CONFIG_NET=y |
| 267 | 293 | ||
| 268 | # | 294 | # |
| @@ -439,9 +465,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
| 439 | # CONFIG_MTD_UBI is not set | 465 | # CONFIG_MTD_UBI is not set |
| 440 | CONFIG_OF_DEVICE=y | 466 | CONFIG_OF_DEVICE=y |
| 441 | CONFIG_OF_I2C=y | 467 | CONFIG_OF_I2C=y |
| 468 | CONFIG_OF_SPI=y | ||
| 442 | # CONFIG_PARPORT is not set | 469 | # CONFIG_PARPORT is not set |
| 443 | CONFIG_BLK_DEV=y | 470 | CONFIG_BLK_DEV=y |
| 444 | # CONFIG_BLK_DEV_FD is not set | 471 | # CONFIG_BLK_DEV_FD is not set |
| 472 | # CONFIG_MAC_FLOPPY is not set | ||
| 445 | # CONFIG_BLK_CPQ_DA is not set | 473 | # CONFIG_BLK_CPQ_DA is not set |
| 446 | # CONFIG_BLK_CPQ_CISS_DA is not set | 474 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 447 | # CONFIG_BLK_DEV_DAC960 is not set | 475 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -458,18 +486,17 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 458 | # CONFIG_BLK_DEV_XIP is not set | 486 | # CONFIG_BLK_DEV_XIP is not set |
| 459 | # CONFIG_CDROM_PKTCDVD is not set | 487 | # CONFIG_CDROM_PKTCDVD is not set |
| 460 | # CONFIG_ATA_OVER_ETH is not set | 488 | # CONFIG_ATA_OVER_ETH is not set |
| 489 | # CONFIG_BLK_DEV_HD is not set | ||
| 461 | CONFIG_MISC_DEVICES=y | 490 | CONFIG_MISC_DEVICES=y |
| 462 | # CONFIG_PHANTOM is not set | 491 | # CONFIG_PHANTOM is not set |
| 463 | # CONFIG_EEPROM_93CX6 is not set | 492 | # CONFIG_EEPROM_93CX6 is not set |
| 464 | # CONFIG_SGI_IOC4 is not set | 493 | # CONFIG_SGI_IOC4 is not set |
| 465 | # CONFIG_TIFM_CORE is not set | 494 | # CONFIG_TIFM_CORE is not set |
| 466 | # CONFIG_ENCLOSURE_SERVICES is not set | 495 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 496 | # CONFIG_HP_ILO is not set | ||
| 467 | CONFIG_HAVE_IDE=y | 497 | CONFIG_HAVE_IDE=y |
| 468 | CONFIG_IDE=y | 498 | CONFIG_IDE=y |
| 469 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 470 | # CONFIG_BLK_DEV_IDE is not set | 499 | # CONFIG_BLK_DEV_IDE is not set |
| 471 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 472 | # CONFIG_BLK_DEV_HD is not set | ||
| 473 | 500 | ||
| 474 | # | 501 | # |
| 475 | # SCSI device support | 502 | # SCSI device support |
| @@ -545,7 +572,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 545 | # CONFIG_SCSI_DC390T is not set | 572 | # CONFIG_SCSI_DC390T is not set |
| 546 | # CONFIG_SCSI_NSP32 is not set | 573 | # CONFIG_SCSI_NSP32 is not set |
| 547 | # CONFIG_SCSI_DEBUG is not set | 574 | # CONFIG_SCSI_DEBUG is not set |
| 575 | # CONFIG_SCSI_MESH is not set | ||
| 576 | # CONFIG_SCSI_MAC53C94 is not set | ||
| 548 | # CONFIG_SCSI_SRP is not set | 577 | # CONFIG_SCSI_SRP is not set |
| 578 | # CONFIG_SCSI_DH is not set | ||
| 549 | CONFIG_ATA=y | 579 | CONFIG_ATA=y |
| 550 | # CONFIG_ATA_NONSTANDARD is not set | 580 | # CONFIG_ATA_NONSTANDARD is not set |
| 551 | CONFIG_SATA_PMP=y | 581 | CONFIG_SATA_PMP=y |
| @@ -623,12 +653,15 @@ CONFIG_MD_RAID1=y | |||
| 623 | # | 653 | # |
| 624 | # IEEE 1394 (FireWire) support | 654 | # IEEE 1394 (FireWire) support |
| 625 | # | 655 | # |
| 656 | |||
| 657 | # | ||
| 658 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 659 | # | ||
| 626 | # CONFIG_FIREWIRE is not set | 660 | # CONFIG_FIREWIRE is not set |
| 627 | # CONFIG_IEEE1394 is not set | 661 | # CONFIG_IEEE1394 is not set |
| 628 | # CONFIG_I2O is not set | 662 | # CONFIG_I2O is not set |
| 629 | # CONFIG_MACINTOSH_DRIVERS is not set | 663 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 630 | CONFIG_NETDEVICES=y | 664 | CONFIG_NETDEVICES=y |
| 631 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 632 | # CONFIG_DUMMY is not set | 665 | # CONFIG_DUMMY is not set |
| 633 | # CONFIG_BONDING is not set | 666 | # CONFIG_BONDING is not set |
| 634 | # CONFIG_MACVLAN is not set | 667 | # CONFIG_MACVLAN is not set |
| @@ -659,7 +692,6 @@ CONFIG_NETDEV_1000=y | |||
| 659 | # CONFIG_DL2K is not set | 692 | # CONFIG_DL2K is not set |
| 660 | # CONFIG_E1000 is not set | 693 | # CONFIG_E1000 is not set |
| 661 | # CONFIG_E1000E is not set | 694 | # CONFIG_E1000E is not set |
| 662 | # CONFIG_E1000E_ENABLED is not set | ||
| 663 | # CONFIG_IP1000 is not set | 695 | # CONFIG_IP1000 is not set |
| 664 | # CONFIG_IGB is not set | 696 | # CONFIG_IGB is not set |
| 665 | # CONFIG_NS83820 is not set | 697 | # CONFIG_NS83820 is not set |
| @@ -673,9 +705,10 @@ CONFIG_NETDEV_1000=y | |||
| 673 | # CONFIG_TIGON3 is not set | 705 | # CONFIG_TIGON3 is not set |
| 674 | # CONFIG_BNX2 is not set | 706 | # CONFIG_BNX2 is not set |
| 675 | CONFIG_GIANFAR=y | 707 | CONFIG_GIANFAR=y |
| 676 | CONFIG_GFAR_NAPI=y | 708 | # CONFIG_MV643XX_ETH is not set |
| 677 | # CONFIG_QLA3XXX is not set | 709 | # CONFIG_QLA3XXX is not set |
| 678 | # CONFIG_ATL1 is not set | 710 | # CONFIG_ATL1 is not set |
| 711 | # CONFIG_ATL1E is not set | ||
| 679 | CONFIG_NETDEV_10000=y | 712 | CONFIG_NETDEV_10000=y |
| 680 | # CONFIG_CHELSIO_T1 is not set | 713 | # CONFIG_CHELSIO_T1 is not set |
| 681 | # CONFIG_CHELSIO_T3 is not set | 714 | # CONFIG_CHELSIO_T3 is not set |
| @@ -753,11 +786,14 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 753 | # CONFIG_SERIAL_UARTLITE is not set | 786 | # CONFIG_SERIAL_UARTLITE is not set |
| 754 | CONFIG_SERIAL_CORE=y | 787 | CONFIG_SERIAL_CORE=y |
| 755 | CONFIG_SERIAL_CORE_CONSOLE=y | 788 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 789 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 756 | # CONFIG_SERIAL_JSM is not set | 790 | # CONFIG_SERIAL_JSM is not set |
| 757 | # CONFIG_SERIAL_OF_PLATFORM is not set | 791 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 758 | CONFIG_UNIX98_PTYS=y | 792 | CONFIG_UNIX98_PTYS=y |
| 759 | CONFIG_LEGACY_PTYS=y | 793 | CONFIG_LEGACY_PTYS=y |
| 760 | CONFIG_LEGACY_PTY_COUNT=256 | 794 | CONFIG_LEGACY_PTY_COUNT=256 |
| 795 | # CONFIG_BRIQ_PANEL is not set | ||
| 796 | # CONFIG_HVC_RTAS is not set | ||
| 761 | # CONFIG_IPMI_HANDLER is not set | 797 | # CONFIG_IPMI_HANDLER is not set |
| 762 | CONFIG_HW_RANDOM=y | 798 | CONFIG_HW_RANDOM=y |
| 763 | # CONFIG_NVRAM is not set | 799 | # CONFIG_NVRAM is not set |
| @@ -769,43 +805,70 @@ CONFIG_DEVPORT=y | |||
| 769 | CONFIG_I2C=y | 805 | CONFIG_I2C=y |
| 770 | CONFIG_I2C_BOARDINFO=y | 806 | CONFIG_I2C_BOARDINFO=y |
| 771 | CONFIG_I2C_CHARDEV=y | 807 | CONFIG_I2C_CHARDEV=y |
| 808 | CONFIG_I2C_HELPER_AUTO=y | ||
| 772 | 809 | ||
| 773 | # | 810 | # |
| 774 | # I2C Hardware Bus support | 811 | # I2C Hardware Bus support |
| 775 | # | 812 | # |
| 813 | |||
| 814 | # | ||
| 815 | # PC SMBus host controller drivers | ||
| 816 | # | ||
| 776 | # CONFIG_I2C_ALI1535 is not set | 817 | # CONFIG_I2C_ALI1535 is not set |
| 777 | # CONFIG_I2C_ALI1563 is not set | 818 | # CONFIG_I2C_ALI1563 is not set |
| 778 | # CONFIG_I2C_ALI15X3 is not set | 819 | # CONFIG_I2C_ALI15X3 is not set |
| 779 | # CONFIG_I2C_AMD756 is not set | 820 | # CONFIG_I2C_AMD756 is not set |
| 780 | # CONFIG_I2C_AMD8111 is not set | 821 | # CONFIG_I2C_AMD8111 is not set |
| 781 | # CONFIG_I2C_I801 is not set | 822 | # CONFIG_I2C_I801 is not set |
| 782 | # CONFIG_I2C_I810 is not set | 823 | # CONFIG_I2C_ISCH is not set |
| 783 | # CONFIG_I2C_PIIX4 is not set | 824 | # CONFIG_I2C_PIIX4 is not set |
| 784 | CONFIG_I2C_MPC=y | ||
| 785 | # CONFIG_I2C_NFORCE2 is not set | 825 | # CONFIG_I2C_NFORCE2 is not set |
| 786 | # CONFIG_I2C_OCORES is not set | ||
| 787 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 788 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 789 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 790 | # CONFIG_I2C_SIMTEC is not set | ||
| 791 | # CONFIG_I2C_SIS5595 is not set | 826 | # CONFIG_I2C_SIS5595 is not set |
| 792 | # CONFIG_I2C_SIS630 is not set | 827 | # CONFIG_I2C_SIS630 is not set |
| 793 | # CONFIG_I2C_SIS96X is not set | 828 | # CONFIG_I2C_SIS96X is not set |
| 794 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 795 | # CONFIG_I2C_STUB is not set | ||
| 796 | # CONFIG_I2C_TINY_USB is not set | ||
| 797 | # CONFIG_I2C_VIA is not set | 829 | # CONFIG_I2C_VIA is not set |
| 798 | # CONFIG_I2C_VIAPRO is not set | 830 | # CONFIG_I2C_VIAPRO is not set |
| 831 | |||
| 832 | # | ||
| 833 | # Mac SMBus host controller drivers | ||
| 834 | # | ||
| 835 | # CONFIG_I2C_HYDRA is not set | ||
| 836 | CONFIG_I2C_POWERMAC=y | ||
| 837 | |||
| 838 | # | ||
| 839 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 840 | # | ||
| 841 | CONFIG_I2C_MPC=y | ||
| 842 | # CONFIG_I2C_OCORES is not set | ||
| 843 | # CONFIG_I2C_SIMTEC is not set | ||
| 844 | |||
| 845 | # | ||
| 846 | # External I2C/SMBus adapter drivers | ||
| 847 | # | ||
| 848 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 849 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 850 | # CONFIG_I2C_TINY_USB is not set | ||
| 851 | |||
| 852 | # | ||
| 853 | # Graphics adapter I2C/DDC channel drivers | ||
| 854 | # | ||
| 799 | # CONFIG_I2C_VOODOO3 is not set | 855 | # CONFIG_I2C_VOODOO3 is not set |
| 856 | |||
| 857 | # | ||
| 858 | # Other I2C/SMBus bus drivers | ||
| 859 | # | ||
| 800 | # CONFIG_I2C_PCA_PLATFORM is not set | 860 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 861 | # CONFIG_I2C_STUB is not set | ||
| 801 | 862 | ||
| 802 | # | 863 | # |
| 803 | # Miscellaneous I2C Chip support | 864 | # Miscellaneous I2C Chip support |
| 804 | # | 865 | # |
| 805 | # CONFIG_DS1682 is not set | 866 | # CONFIG_DS1682 is not set |
| 867 | # CONFIG_AT24 is not set | ||
| 806 | # CONFIG_SENSORS_EEPROM is not set | 868 | # CONFIG_SENSORS_EEPROM is not set |
| 807 | CONFIG_SENSORS_PCF8574=y | 869 | CONFIG_SENSORS_PCF8574=y |
| 808 | # CONFIG_PCF8575 is not set | 870 | # CONFIG_PCF8575 is not set |
| 871 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 809 | # CONFIG_SENSORS_PCF8591 is not set | 872 | # CONFIG_SENSORS_PCF8591 is not set |
| 810 | # CONFIG_SENSORS_MAX6875 is not set | 873 | # CONFIG_SENSORS_MAX6875 is not set |
| 811 | # CONFIG_SENSORS_TSL2550 is not set | 874 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -828,10 +891,13 @@ CONFIG_SPI_MPC83xx=y | |||
| 828 | # CONFIG_SPI_AT25 is not set | 891 | # CONFIG_SPI_AT25 is not set |
| 829 | # CONFIG_SPI_SPIDEV is not set | 892 | # CONFIG_SPI_SPIDEV is not set |
| 830 | # CONFIG_SPI_TLE62X0 is not set | 893 | # CONFIG_SPI_TLE62X0 is not set |
| 894 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 895 | # CONFIG_GPIOLIB is not set | ||
| 831 | # CONFIG_W1 is not set | 896 | # CONFIG_W1 is not set |
| 832 | # CONFIG_POWER_SUPPLY is not set | 897 | # CONFIG_POWER_SUPPLY is not set |
| 833 | # CONFIG_HWMON is not set | 898 | # CONFIG_HWMON is not set |
| 834 | # CONFIG_THERMAL is not set | 899 | # CONFIG_THERMAL is not set |
| 900 | # CONFIG_THERMAL_HWMON is not set | ||
| 835 | CONFIG_WATCHDOG=y | 901 | CONFIG_WATCHDOG=y |
| 836 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 902 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 837 | 903 | ||
| @@ -839,7 +905,9 @@ CONFIG_WATCHDOG=y | |||
| 839 | # Watchdog Device Drivers | 905 | # Watchdog Device Drivers |
| 840 | # | 906 | # |
| 841 | # CONFIG_SOFT_WATCHDOG is not set | 907 | # CONFIG_SOFT_WATCHDOG is not set |
| 842 | CONFIG_83xx_WDT=y | 908 | # CONFIG_ALIM7101_WDT is not set |
| 909 | # CONFIG_8xxx_WDT is not set | ||
| 910 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 843 | 911 | ||
| 844 | # | 912 | # |
| 845 | # PCI-based Watchdog Cards | 913 | # PCI-based Watchdog Cards |
| @@ -861,8 +929,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 861 | # | 929 | # |
| 862 | # Multifunction device drivers | 930 | # Multifunction device drivers |
| 863 | # | 931 | # |
| 932 | # CONFIG_MFD_CORE is not set | ||
| 864 | # CONFIG_MFD_SM501 is not set | 933 | # CONFIG_MFD_SM501 is not set |
| 865 | # CONFIG_HTC_PASIC3 is not set | 934 | # CONFIG_HTC_PASIC3 is not set |
| 935 | # CONFIG_MFD_TMIO is not set | ||
| 866 | 936 | ||
| 867 | # | 937 | # |
| 868 | # Multimedia devices | 938 | # Multimedia devices |
| @@ -895,10 +965,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 895 | # Display device support | 965 | # Display device support |
| 896 | # | 966 | # |
| 897 | # CONFIG_DISPLAY_SUPPORT is not set | 967 | # CONFIG_DISPLAY_SUPPORT is not set |
| 898 | |||
| 899 | # | ||
| 900 | # Sound | ||
| 901 | # | ||
| 902 | # CONFIG_SOUND is not set | 968 | # CONFIG_SOUND is not set |
| 903 | CONFIG_USB_SUPPORT=y | 969 | CONFIG_USB_SUPPORT=y |
| 904 | CONFIG_USB_ARCH_HAS_HCD=y | 970 | CONFIG_USB_ARCH_HAS_HCD=y |
| @@ -917,6 +983,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 917 | # CONFIG_USB_OTG is not set | 983 | # CONFIG_USB_OTG is not set |
| 918 | # CONFIG_USB_OTG_WHITELIST is not set | 984 | # CONFIG_USB_OTG_WHITELIST is not set |
| 919 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 985 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 986 | CONFIG_USB_MON=y | ||
| 920 | 987 | ||
| 921 | # | 988 | # |
| 922 | # USB Host Controller Drivers | 989 | # USB Host Controller Drivers |
| @@ -960,6 +1027,7 @@ CONFIG_USB_STORAGE=y | |||
| 960 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 1027 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 961 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1028 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 962 | # CONFIG_USB_STORAGE_KARMA is not set | 1029 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1030 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 963 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1031 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 964 | # CONFIG_USB_LIBUSUAL is not set | 1032 | # CONFIG_USB_LIBUSUAL is not set |
| 965 | 1033 | ||
| @@ -968,7 +1036,6 @@ CONFIG_USB_STORAGE=y | |||
| 968 | # | 1036 | # |
| 969 | # CONFIG_USB_MDC800 is not set | 1037 | # CONFIG_USB_MDC800 is not set |
| 970 | # CONFIG_USB_MICROTEK is not set | 1038 | # CONFIG_USB_MICROTEK is not set |
| 971 | CONFIG_USB_MON=y | ||
| 972 | 1039 | ||
| 973 | # | 1040 | # |
| 974 | # USB port drivers | 1041 | # USB port drivers |
| @@ -981,7 +1048,6 @@ CONFIG_USB_MON=y | |||
| 981 | # CONFIG_USB_EMI62 is not set | 1048 | # CONFIG_USB_EMI62 is not set |
| 982 | # CONFIG_USB_EMI26 is not set | 1049 | # CONFIG_USB_EMI26 is not set |
| 983 | # CONFIG_USB_ADUTUX is not set | 1050 | # CONFIG_USB_ADUTUX is not set |
| 984 | # CONFIG_USB_AUERSWALD is not set | ||
| 985 | # CONFIG_USB_RIO500 is not set | 1051 | # CONFIG_USB_RIO500 is not set |
| 986 | # CONFIG_USB_LEGOTOWER is not set | 1052 | # CONFIG_USB_LEGOTOWER is not set |
| 987 | # CONFIG_USB_LCD is not set | 1053 | # CONFIG_USB_LCD is not set |
| @@ -1035,10 +1101,13 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1035 | # CONFIG_RTC_DRV_PCF8583 is not set | 1101 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 1036 | # CONFIG_RTC_DRV_M41T80 is not set | 1102 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1037 | # CONFIG_RTC_DRV_S35390A is not set | 1103 | # CONFIG_RTC_DRV_S35390A is not set |
| 1104 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1038 | 1105 | ||
| 1039 | # | 1106 | # |
| 1040 | # SPI RTC drivers | 1107 | # SPI RTC drivers |
| 1041 | # | 1108 | # |
| 1109 | # CONFIG_RTC_DRV_M41T94 is not set | ||
| 1110 | # CONFIG_RTC_DRV_DS1305 is not set | ||
| 1042 | # CONFIG_RTC_DRV_MAX6902 is not set | 1111 | # CONFIG_RTC_DRV_MAX6902 is not set |
| 1043 | # CONFIG_RTC_DRV_R9701 is not set | 1112 | # CONFIG_RTC_DRV_R9701 is not set |
| 1044 | # CONFIG_RTC_DRV_RS5C348 is not set | 1113 | # CONFIG_RTC_DRV_RS5C348 is not set |
| @@ -1130,6 +1199,7 @@ CONFIG_TMPFS=y | |||
| 1130 | # CONFIG_CRAMFS is not set | 1199 | # CONFIG_CRAMFS is not set |
| 1131 | # CONFIG_VXFS_FS is not set | 1200 | # CONFIG_VXFS_FS is not set |
| 1132 | # CONFIG_MINIX_FS is not set | 1201 | # CONFIG_MINIX_FS is not set |
| 1202 | # CONFIG_OMFS_FS is not set | ||
| 1133 | # CONFIG_HPFS_FS is not set | 1203 | # CONFIG_HPFS_FS is not set |
| 1134 | # CONFIG_QNX4FS_FS is not set | 1204 | # CONFIG_QNX4FS_FS is not set |
| 1135 | # CONFIG_ROMFS_FS is not set | 1205 | # CONFIG_ROMFS_FS is not set |
| @@ -1140,14 +1210,13 @@ CONFIG_NFS_FS=y | |||
| 1140 | CONFIG_NFS_V3=y | 1210 | CONFIG_NFS_V3=y |
| 1141 | # CONFIG_NFS_V3_ACL is not set | 1211 | # CONFIG_NFS_V3_ACL is not set |
| 1142 | CONFIG_NFS_V4=y | 1212 | CONFIG_NFS_V4=y |
| 1143 | # CONFIG_NFSD is not set | ||
| 1144 | CONFIG_ROOT_NFS=y | 1213 | CONFIG_ROOT_NFS=y |
| 1214 | # CONFIG_NFSD is not set | ||
| 1145 | CONFIG_LOCKD=y | 1215 | CONFIG_LOCKD=y |
| 1146 | CONFIG_LOCKD_V4=y | 1216 | CONFIG_LOCKD_V4=y |
| 1147 | CONFIG_NFS_COMMON=y | 1217 | CONFIG_NFS_COMMON=y |
| 1148 | CONFIG_SUNRPC=y | 1218 | CONFIG_SUNRPC=y |
| 1149 | CONFIG_SUNRPC_GSS=y | 1219 | CONFIG_SUNRPC_GSS=y |
| 1150 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1151 | CONFIG_RPCSEC_GSS_KRB5=y | 1220 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1152 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1221 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1153 | # CONFIG_SMB_FS is not set | 1222 | # CONFIG_SMB_FS is not set |
| @@ -1226,6 +1295,7 @@ CONFIG_BITREVERSE=y | |||
| 1226 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1295 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1227 | # CONFIG_CRC_CCITT is not set | 1296 | # CONFIG_CRC_CCITT is not set |
| 1228 | # CONFIG_CRC16 is not set | 1297 | # CONFIG_CRC16 is not set |
| 1298 | CONFIG_CRC_T10DIF=y | ||
| 1229 | # CONFIG_CRC_ITU_T is not set | 1299 | # CONFIG_CRC_ITU_T is not set |
| 1230 | CONFIG_CRC32=y | 1300 | CONFIG_CRC32=y |
| 1231 | # CONFIG_CRC7 is not set | 1301 | # CONFIG_CRC7 is not set |
| @@ -1251,8 +1321,18 @@ CONFIG_FRAME_WARN=1024 | |||
| 1251 | # CONFIG_SLUB_DEBUG_ON is not set | 1321 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1252 | # CONFIG_SLUB_STATS is not set | 1322 | # CONFIG_SLUB_STATS is not set |
| 1253 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1323 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1324 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1325 | # CONFIG_LATENCYTOP is not set | ||
| 1326 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1327 | CONFIG_HAVE_FTRACE=y | ||
| 1328 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1329 | # CONFIG_FTRACE is not set | ||
| 1330 | # CONFIG_SCHED_TRACER is not set | ||
| 1331 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1254 | # CONFIG_SAMPLES is not set | 1332 | # CONFIG_SAMPLES is not set |
| 1333 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1255 | # CONFIG_IRQSTACKS is not set | 1334 | # CONFIG_IRQSTACKS is not set |
| 1335 | # CONFIG_BOOTX_TEXT is not set | ||
| 1256 | # CONFIG_PPC_EARLY_DEBUG is not set | 1336 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1257 | 1337 | ||
| 1258 | # | 1338 | # |
| @@ -1306,6 +1386,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1306 | # CONFIG_CRYPTO_MD4 is not set | 1386 | # CONFIG_CRYPTO_MD4 is not set |
| 1307 | CONFIG_CRYPTO_MD5=y | 1387 | CONFIG_CRYPTO_MD5=y |
| 1308 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1388 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1389 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1390 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1391 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1392 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1309 | # CONFIG_CRYPTO_SHA1 is not set | 1393 | # CONFIG_CRYPTO_SHA1 is not set |
| 1310 | # CONFIG_CRYPTO_SHA256 is not set | 1394 | # CONFIG_CRYPTO_SHA256 is not set |
| 1311 | # CONFIG_CRYPTO_SHA512 is not set | 1395 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1338,5 +1422,6 @@ CONFIG_CRYPTO_DES=y | |||
| 1338 | # CONFIG_CRYPTO_LZO is not set | 1422 | # CONFIG_CRYPTO_LZO is not set |
| 1339 | CONFIG_CRYPTO_HW=y | 1423 | CONFIG_CRYPTO_HW=y |
| 1340 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1424 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1425 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1341 | # CONFIG_PPC_CLOCK is not set | 1426 | # CONFIG_PPC_CLOCK is not set |
| 1342 | # CONFIG_VIRTUALIZATION is not set | 1427 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig b/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig index fdac4845bad9..a8afa39d6f76 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:26 2008 | 4 | # Thu Aug 21 00:52:21 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -51,6 +53,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,12 +93,12 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | # CONFIG_KALLSYMS is not set | 96 | # CONFIG_KALLSYMS is not set |
| 93 | CONFIG_HOTPLUG=y | 97 | CONFIG_HOTPLUG=y |
| 94 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
| 95 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
| 96 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
| 101 | CONFIG_PCSPKR_PLATFORM=y | ||
| 97 | CONFIG_COMPAT_BRK=y | 102 | CONFIG_COMPAT_BRK=y |
| 98 | CONFIG_BASE_FULL=y | 103 | CONFIG_BASE_FULL=y |
| 99 | CONFIG_FUTEX=y | 104 | CONFIG_FUTEX=y |
| @@ -111,10 +116,16 @@ CONFIG_SLUB=y | |||
| 111 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
| 112 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 113 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 114 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 115 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | 124 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 125 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 126 | # CONFIG_HAVE_CLK is not set | ||
| 117 | CONFIG_PROC_PAGE_MONITOR=y | 127 | CONFIG_PROC_PAGE_MONITOR=y |
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 118 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
| 119 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
| 120 | # CONFIG_TINY_SHMEM is not set | 131 | # CONFIG_TINY_SHMEM is not set |
| @@ -125,12 +136,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 136 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 126 | # CONFIG_MODVERSIONS is not set | 137 | # CONFIG_MODVERSIONS is not set |
| 127 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 138 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 128 | # CONFIG_KMOD is not set | 139 | CONFIG_KMOD=y |
| 129 | CONFIG_BLOCK=y | 140 | CONFIG_BLOCK=y |
| 130 | # CONFIG_LBD is not set | 141 | # CONFIG_LBD is not set |
| 131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 132 | # CONFIG_LSF is not set | 143 | # CONFIG_LSF is not set |
| 133 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
| 145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 134 | 146 | ||
| 135 | # | 147 | # |
| 136 | # IO Schedulers | 148 | # IO Schedulers |
| @@ -149,37 +161,49 @@ CONFIG_CLASSIC_RCU=y | |||
| 149 | # | 161 | # |
| 150 | # Platform support | 162 | # Platform support |
| 151 | # | 163 | # |
| 152 | # CONFIG_PPC_MULTIPLATFORM is not set | 164 | CONFIG_PPC_MULTIPLATFORM=y |
| 153 | # CONFIG_PPC_82xx is not set | 165 | CONFIG_CLASSIC32=y |
| 154 | CONFIG_PPC_83xx=y | 166 | CONFIG_PPC_CHRP=y |
| 155 | # CONFIG_PPC_86xx is not set | 167 | # CONFIG_MPC5121_ADS is not set |
| 156 | # CONFIG_PPC_MPC512x is not set | 168 | # CONFIG_MPC5121_GENERIC is not set |
| 157 | # CONFIG_PPC_MPC5121 is not set | 169 | # CONFIG_PPC_MPC52xx is not set |
| 170 | CONFIG_PPC_PMAC=y | ||
| 158 | # CONFIG_PPC_CELL is not set | 171 | # CONFIG_PPC_CELL is not set |
| 159 | # CONFIG_PPC_CELL_NATIVE is not set | 172 | # CONFIG_PPC_CELL_NATIVE is not set |
| 173 | # CONFIG_PPC_82xx is not set | ||
| 160 | # CONFIG_PQ2ADS is not set | 174 | # CONFIG_PQ2ADS is not set |
| 161 | CONFIG_MPC83xx=y | 175 | CONFIG_PPC_83xx=y |
| 162 | # CONFIG_MPC831x_RDB is not set | 176 | # CONFIG_MPC831x_RDB is not set |
| 163 | # CONFIG_MPC832x_MDS is not set | 177 | # CONFIG_MPC832x_MDS is not set |
| 164 | # CONFIG_MPC832x_RDB is not set | 178 | # CONFIG_MPC832x_RDB is not set |
| 165 | # CONFIG_MPC834x_MDS is not set | 179 | # CONFIG_MPC834x_MDS is not set |
| 166 | CONFIG_MPC834x_ITX=y | 180 | CONFIG_MPC834x_ITX=y |
| 167 | # CONFIG_MPC836x_MDS is not set | 181 | # CONFIG_MPC836x_MDS is not set |
| 182 | # CONFIG_MPC836x_RDK is not set | ||
| 168 | # CONFIG_MPC837x_MDS is not set | 183 | # CONFIG_MPC837x_MDS is not set |
| 169 | # CONFIG_MPC837x_RDB is not set | 184 | # CONFIG_MPC837x_RDB is not set |
| 170 | # CONFIG_SBC834x is not set | 185 | # CONFIG_SBC834x is not set |
| 186 | # CONFIG_ASP834x is not set | ||
| 171 | CONFIG_PPC_MPC834x=y | 187 | CONFIG_PPC_MPC834x=y |
| 188 | # CONFIG_PPC_86xx is not set | ||
| 189 | # CONFIG_EMBEDDED6xx is not set | ||
| 190 | CONFIG_PPC_NATIVE=y | ||
| 191 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 172 | CONFIG_IPIC=y | 192 | CONFIG_IPIC=y |
| 173 | # CONFIG_MPIC is not set | 193 | CONFIG_MPIC=y |
| 174 | # CONFIG_MPIC_WEIRD is not set | 194 | # CONFIG_MPIC_WEIRD is not set |
| 175 | # CONFIG_PPC_I8259 is not set | 195 | CONFIG_PPC_I8259=y |
| 176 | # CONFIG_PPC_RTAS is not set | 196 | CONFIG_PPC_RTAS=y |
| 197 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 198 | CONFIG_RTAS_PROC=y | ||
| 177 | # CONFIG_MMIO_NVRAM is not set | 199 | # CONFIG_MMIO_NVRAM is not set |
| 178 | # CONFIG_PPC_MPC106 is not set | 200 | CONFIG_PPC_MPC106=y |
| 179 | # CONFIG_PPC_970_NAP is not set | 201 | # CONFIG_PPC_970_NAP is not set |
| 180 | # CONFIG_PPC_INDIRECT_IO is not set | 202 | # CONFIG_PPC_INDIRECT_IO is not set |
| 181 | # CONFIG_GENERIC_IOMAP is not set | 203 | # CONFIG_GENERIC_IOMAP is not set |
| 182 | # CONFIG_CPU_FREQ is not set | 204 | # CONFIG_CPU_FREQ is not set |
| 205 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 206 | # CONFIG_TAU is not set | ||
| 183 | # CONFIG_FSL_ULI1575 is not set | 207 | # CONFIG_FSL_ULI1575 is not set |
| 184 | 208 | ||
| 185 | # | 209 | # |
| @@ -195,7 +219,7 @@ CONFIG_HZ_250=y | |||
| 195 | # CONFIG_HZ_300 is not set | 219 | # CONFIG_HZ_300 is not set |
| 196 | # CONFIG_HZ_1000 is not set | 220 | # CONFIG_HZ_1000 is not set |
| 197 | CONFIG_HZ=250 | 221 | CONFIG_HZ=250 |
| 198 | # CONFIG_SCHED_HRTICK is not set | 222 | CONFIG_SCHED_HRTICK=y |
| 199 | CONFIG_PREEMPT_NONE=y | 223 | CONFIG_PREEMPT_NONE=y |
| 200 | # CONFIG_PREEMPT_VOLUNTARY is not set | 224 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 201 | # CONFIG_PREEMPT is not set | 225 | # CONFIG_PREEMPT is not set |
| @@ -205,6 +229,7 @@ CONFIG_BINFMT_ELF=y | |||
| 205 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 206 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 230 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 231 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 232 | # CONFIG_KEXEC is not set | ||
| 208 | CONFIG_ARCH_FLATMEM_ENABLE=y | 233 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 209 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 234 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 210 | CONFIG_SELECT_MEMORY_MODEL=y | 235 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -217,6 +242,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 242 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | 243 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 244 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 245 | CONFIG_MIGRATION=y | ||
| 220 | # CONFIG_RESOURCES_64BIT is not set | 246 | # CONFIG_RESOURCES_64BIT is not set |
| 221 | CONFIG_ZONE_DMA_FLAG=1 | 247 | CONFIG_ZONE_DMA_FLAG=1 |
| 222 | CONFIG_BOUNCE=y | 248 | CONFIG_BOUNCE=y |
| @@ -224,6 +250,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 225 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
| 226 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
| 253 | CONFIG_EXTRA_TARGETS="" | ||
| 227 | # CONFIG_PM is not set | 254 | # CONFIG_PM is not set |
| 228 | CONFIG_SECCOMP=y | 255 | CONFIG_SECCOMP=y |
| 229 | CONFIG_ISA_DMA_API=y | 256 | CONFIG_ISA_DMA_API=y |
| @@ -231,10 +258,13 @@ CONFIG_ISA_DMA_API=y | |||
| 231 | # | 258 | # |
| 232 | # Bus options | 259 | # Bus options |
| 233 | # | 260 | # |
| 261 | # CONFIG_ISA is not set | ||
| 234 | CONFIG_ZONE_DMA=y | 262 | CONFIG_ZONE_DMA=y |
| 235 | CONFIG_GENERIC_ISA_DMA=y | 263 | CONFIG_GENERIC_ISA_DMA=y |
| 236 | CONFIG_PPC_INDIRECT_PCI=y | 264 | CONFIG_PPC_INDIRECT_PCI=y |
| 237 | CONFIG_FSL_SOC=y | 265 | CONFIG_FSL_SOC=y |
| 266 | CONFIG_FSL_PCI=y | ||
| 267 | CONFIG_PPC_PCI_CHOICE=y | ||
| 238 | CONFIG_PCI=y | 268 | CONFIG_PCI=y |
| 239 | CONFIG_PCI_DOMAINS=y | 269 | CONFIG_PCI_DOMAINS=y |
| 240 | CONFIG_PCI_SYSCALL=y | 270 | CONFIG_PCI_SYSCALL=y |
| @@ -259,10 +289,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 259 | CONFIG_KERNEL_START=0xc0000000 | 289 | CONFIG_KERNEL_START=0xc0000000 |
| 260 | CONFIG_PHYSICAL_START=0x00000000 | 290 | CONFIG_PHYSICAL_START=0x00000000 |
| 261 | CONFIG_TASK_SIZE=0xc0000000 | 291 | CONFIG_TASK_SIZE=0xc0000000 |
| 262 | |||
| 263 | # | ||
| 264 | # Networking | ||
| 265 | # | ||
| 266 | CONFIG_NET=y | 292 | CONFIG_NET=y |
| 267 | 293 | ||
| 268 | # | 294 | # |
| @@ -439,9 +465,11 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
| 439 | # CONFIG_MTD_UBI is not set | 465 | # CONFIG_MTD_UBI is not set |
| 440 | CONFIG_OF_DEVICE=y | 466 | CONFIG_OF_DEVICE=y |
| 441 | CONFIG_OF_I2C=y | 467 | CONFIG_OF_I2C=y |
| 468 | CONFIG_OF_SPI=y | ||
| 442 | # CONFIG_PARPORT is not set | 469 | # CONFIG_PARPORT is not set |
| 443 | CONFIG_BLK_DEV=y | 470 | CONFIG_BLK_DEV=y |
| 444 | # CONFIG_BLK_DEV_FD is not set | 471 | # CONFIG_BLK_DEV_FD is not set |
| 472 | # CONFIG_MAC_FLOPPY is not set | ||
| 445 | # CONFIG_BLK_CPQ_DA is not set | 473 | # CONFIG_BLK_CPQ_DA is not set |
| 446 | # CONFIG_BLK_CPQ_CISS_DA is not set | 474 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 447 | # CONFIG_BLK_DEV_DAC960 is not set | 475 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -458,12 +486,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 458 | # CONFIG_BLK_DEV_XIP is not set | 486 | # CONFIG_BLK_DEV_XIP is not set |
| 459 | # CONFIG_CDROM_PKTCDVD is not set | 487 | # CONFIG_CDROM_PKTCDVD is not set |
| 460 | # CONFIG_ATA_OVER_ETH is not set | 488 | # CONFIG_ATA_OVER_ETH is not set |
| 489 | # CONFIG_BLK_DEV_HD is not set | ||
| 461 | CONFIG_MISC_DEVICES=y | 490 | CONFIG_MISC_DEVICES=y |
| 462 | # CONFIG_PHANTOM is not set | 491 | # CONFIG_PHANTOM is not set |
| 463 | # CONFIG_EEPROM_93CX6 is not set | 492 | # CONFIG_EEPROM_93CX6 is not set |
| 464 | # CONFIG_SGI_IOC4 is not set | 493 | # CONFIG_SGI_IOC4 is not set |
| 465 | # CONFIG_TIFM_CORE is not set | 494 | # CONFIG_TIFM_CORE is not set |
| 466 | # CONFIG_ENCLOSURE_SERVICES is not set | 495 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 496 | # CONFIG_HP_ILO is not set | ||
| 467 | CONFIG_HAVE_IDE=y | 497 | CONFIG_HAVE_IDE=y |
| 468 | # CONFIG_IDE is not set | 498 | # CONFIG_IDE is not set |
| 469 | 499 | ||
| @@ -540,7 +570,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 540 | # CONFIG_SCSI_DC390T is not set | 570 | # CONFIG_SCSI_DC390T is not set |
| 541 | # CONFIG_SCSI_NSP32 is not set | 571 | # CONFIG_SCSI_NSP32 is not set |
| 542 | # CONFIG_SCSI_DEBUG is not set | 572 | # CONFIG_SCSI_DEBUG is not set |
| 573 | # CONFIG_SCSI_MESH is not set | ||
| 574 | # CONFIG_SCSI_MAC53C94 is not set | ||
| 543 | # CONFIG_SCSI_SRP is not set | 575 | # CONFIG_SCSI_SRP is not set |
| 576 | # CONFIG_SCSI_DH is not set | ||
| 544 | # CONFIG_ATA is not set | 577 | # CONFIG_ATA is not set |
| 545 | # CONFIG_MD is not set | 578 | # CONFIG_MD is not set |
| 546 | # CONFIG_FUSION is not set | 579 | # CONFIG_FUSION is not set |
| @@ -548,12 +581,15 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 548 | # | 581 | # |
| 549 | # IEEE 1394 (FireWire) support | 582 | # IEEE 1394 (FireWire) support |
| 550 | # | 583 | # |
| 584 | |||
| 585 | # | ||
| 586 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 587 | # | ||
| 551 | # CONFIG_FIREWIRE is not set | 588 | # CONFIG_FIREWIRE is not set |
| 552 | # CONFIG_IEEE1394 is not set | 589 | # CONFIG_IEEE1394 is not set |
| 553 | # CONFIG_I2O is not set | 590 | # CONFIG_I2O is not set |
| 554 | # CONFIG_MACINTOSH_DRIVERS is not set | 591 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 555 | CONFIG_NETDEVICES=y | 592 | CONFIG_NETDEVICES=y |
| 556 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 557 | # CONFIG_DUMMY is not set | 593 | # CONFIG_DUMMY is not set |
| 558 | # CONFIG_BONDING is not set | 594 | # CONFIG_BONDING is not set |
| 559 | # CONFIG_MACVLAN is not set | 595 | # CONFIG_MACVLAN is not set |
| @@ -584,7 +620,6 @@ CONFIG_NETDEV_1000=y | |||
| 584 | # CONFIG_DL2K is not set | 620 | # CONFIG_DL2K is not set |
| 585 | # CONFIG_E1000 is not set | 621 | # CONFIG_E1000 is not set |
| 586 | # CONFIG_E1000E is not set | 622 | # CONFIG_E1000E is not set |
| 587 | # CONFIG_E1000E_ENABLED is not set | ||
| 588 | # CONFIG_IP1000 is not set | 623 | # CONFIG_IP1000 is not set |
| 589 | # CONFIG_IGB is not set | 624 | # CONFIG_IGB is not set |
| 590 | # CONFIG_NS83820 is not set | 625 | # CONFIG_NS83820 is not set |
| @@ -598,9 +633,10 @@ CONFIG_NETDEV_1000=y | |||
| 598 | # CONFIG_TIGON3 is not set | 633 | # CONFIG_TIGON3 is not set |
| 599 | # CONFIG_BNX2 is not set | 634 | # CONFIG_BNX2 is not set |
| 600 | CONFIG_GIANFAR=y | 635 | CONFIG_GIANFAR=y |
| 601 | CONFIG_GFAR_NAPI=y | 636 | # CONFIG_MV643XX_ETH is not set |
| 602 | # CONFIG_QLA3XXX is not set | 637 | # CONFIG_QLA3XXX is not set |
| 603 | # CONFIG_ATL1 is not set | 638 | # CONFIG_ATL1 is not set |
| 639 | # CONFIG_ATL1E is not set | ||
| 604 | CONFIG_NETDEV_10000=y | 640 | CONFIG_NETDEV_10000=y |
| 605 | # CONFIG_CHELSIO_T1 is not set | 641 | # CONFIG_CHELSIO_T1 is not set |
| 606 | # CONFIG_CHELSIO_T3 is not set | 642 | # CONFIG_CHELSIO_T3 is not set |
| @@ -678,11 +714,14 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 678 | # CONFIG_SERIAL_UARTLITE is not set | 714 | # CONFIG_SERIAL_UARTLITE is not set |
| 679 | CONFIG_SERIAL_CORE=y | 715 | CONFIG_SERIAL_CORE=y |
| 680 | CONFIG_SERIAL_CORE_CONSOLE=y | 716 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 717 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 681 | # CONFIG_SERIAL_JSM is not set | 718 | # CONFIG_SERIAL_JSM is not set |
| 682 | # CONFIG_SERIAL_OF_PLATFORM is not set | 719 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 683 | CONFIG_UNIX98_PTYS=y | 720 | CONFIG_UNIX98_PTYS=y |
| 684 | CONFIG_LEGACY_PTYS=y | 721 | CONFIG_LEGACY_PTYS=y |
| 685 | CONFIG_LEGACY_PTY_COUNT=256 | 722 | CONFIG_LEGACY_PTY_COUNT=256 |
| 723 | # CONFIG_BRIQ_PANEL is not set | ||
| 724 | # CONFIG_HVC_RTAS is not set | ||
| 686 | # CONFIG_IPMI_HANDLER is not set | 725 | # CONFIG_IPMI_HANDLER is not set |
| 687 | CONFIG_HW_RANDOM=y | 726 | CONFIG_HW_RANDOM=y |
| 688 | # CONFIG_NVRAM is not set | 727 | # CONFIG_NVRAM is not set |
| @@ -694,43 +733,70 @@ CONFIG_DEVPORT=y | |||
| 694 | CONFIG_I2C=y | 733 | CONFIG_I2C=y |
| 695 | CONFIG_I2C_BOARDINFO=y | 734 | CONFIG_I2C_BOARDINFO=y |
| 696 | CONFIG_I2C_CHARDEV=y | 735 | CONFIG_I2C_CHARDEV=y |
| 736 | CONFIG_I2C_HELPER_AUTO=y | ||
| 697 | 737 | ||
| 698 | # | 738 | # |
| 699 | # I2C Hardware Bus support | 739 | # I2C Hardware Bus support |
| 700 | # | 740 | # |
| 741 | |||
| 742 | # | ||
| 743 | # PC SMBus host controller drivers | ||
| 744 | # | ||
| 701 | # CONFIG_I2C_ALI1535 is not set | 745 | # CONFIG_I2C_ALI1535 is not set |
| 702 | # CONFIG_I2C_ALI1563 is not set | 746 | # CONFIG_I2C_ALI1563 is not set |
| 703 | # CONFIG_I2C_ALI15X3 is not set | 747 | # CONFIG_I2C_ALI15X3 is not set |
| 704 | # CONFIG_I2C_AMD756 is not set | 748 | # CONFIG_I2C_AMD756 is not set |
| 705 | # CONFIG_I2C_AMD8111 is not set | 749 | # CONFIG_I2C_AMD8111 is not set |
| 706 | # CONFIG_I2C_I801 is not set | 750 | # CONFIG_I2C_I801 is not set |
| 707 | # CONFIG_I2C_I810 is not set | 751 | # CONFIG_I2C_ISCH is not set |
| 708 | # CONFIG_I2C_PIIX4 is not set | 752 | # CONFIG_I2C_PIIX4 is not set |
| 709 | CONFIG_I2C_MPC=y | ||
| 710 | # CONFIG_I2C_NFORCE2 is not set | 753 | # CONFIG_I2C_NFORCE2 is not set |
| 711 | # CONFIG_I2C_OCORES is not set | ||
| 712 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 713 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 714 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 715 | # CONFIG_I2C_SIMTEC is not set | ||
| 716 | # CONFIG_I2C_SIS5595 is not set | 754 | # CONFIG_I2C_SIS5595 is not set |
| 717 | # CONFIG_I2C_SIS630 is not set | 755 | # CONFIG_I2C_SIS630 is not set |
| 718 | # CONFIG_I2C_SIS96X is not set | 756 | # CONFIG_I2C_SIS96X is not set |
| 719 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 720 | # CONFIG_I2C_STUB is not set | ||
| 721 | # CONFIG_I2C_TINY_USB is not set | ||
| 722 | # CONFIG_I2C_VIA is not set | 757 | # CONFIG_I2C_VIA is not set |
| 723 | # CONFIG_I2C_VIAPRO is not set | 758 | # CONFIG_I2C_VIAPRO is not set |
| 759 | |||
| 760 | # | ||
| 761 | # Mac SMBus host controller drivers | ||
| 762 | # | ||
| 763 | # CONFIG_I2C_HYDRA is not set | ||
| 764 | CONFIG_I2C_POWERMAC=y | ||
| 765 | |||
| 766 | # | ||
| 767 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 768 | # | ||
| 769 | CONFIG_I2C_MPC=y | ||
| 770 | # CONFIG_I2C_OCORES is not set | ||
| 771 | # CONFIG_I2C_SIMTEC is not set | ||
| 772 | |||
| 773 | # | ||
| 774 | # External I2C/SMBus adapter drivers | ||
| 775 | # | ||
| 776 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 777 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 778 | # CONFIG_I2C_TINY_USB is not set | ||
| 779 | |||
| 780 | # | ||
| 781 | # Graphics adapter I2C/DDC channel drivers | ||
| 782 | # | ||
| 724 | # CONFIG_I2C_VOODOO3 is not set | 783 | # CONFIG_I2C_VOODOO3 is not set |
| 784 | |||
| 785 | # | ||
| 786 | # Other I2C/SMBus bus drivers | ||
| 787 | # | ||
| 725 | # CONFIG_I2C_PCA_PLATFORM is not set | 788 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 789 | # CONFIG_I2C_STUB is not set | ||
| 726 | 790 | ||
| 727 | # | 791 | # |
| 728 | # Miscellaneous I2C Chip support | 792 | # Miscellaneous I2C Chip support |
| 729 | # | 793 | # |
| 730 | # CONFIG_DS1682 is not set | 794 | # CONFIG_DS1682 is not set |
| 795 | # CONFIG_AT24 is not set | ||
| 731 | # CONFIG_SENSORS_EEPROM is not set | 796 | # CONFIG_SENSORS_EEPROM is not set |
| 732 | CONFIG_SENSORS_PCF8574=y | 797 | CONFIG_SENSORS_PCF8574=y |
| 733 | # CONFIG_PCF8575 is not set | 798 | # CONFIG_PCF8575 is not set |
| 799 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 734 | # CONFIG_SENSORS_PCF8591 is not set | 800 | # CONFIG_SENSORS_PCF8591 is not set |
| 735 | # CONFIG_SENSORS_MAX6875 is not set | 801 | # CONFIG_SENSORS_MAX6875 is not set |
| 736 | # CONFIG_SENSORS_TSL2550 is not set | 802 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -753,10 +819,13 @@ CONFIG_SPI_MPC83xx=y | |||
| 753 | # CONFIG_SPI_AT25 is not set | 819 | # CONFIG_SPI_AT25 is not set |
| 754 | # CONFIG_SPI_SPIDEV is not set | 820 | # CONFIG_SPI_SPIDEV is not set |
| 755 | # CONFIG_SPI_TLE62X0 is not set | 821 | # CONFIG_SPI_TLE62X0 is not set |
| 822 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 823 | # CONFIG_GPIOLIB is not set | ||
| 756 | # CONFIG_W1 is not set | 824 | # CONFIG_W1 is not set |
| 757 | # CONFIG_POWER_SUPPLY is not set | 825 | # CONFIG_POWER_SUPPLY is not set |
| 758 | # CONFIG_HWMON is not set | 826 | # CONFIG_HWMON is not set |
| 759 | # CONFIG_THERMAL is not set | 827 | # CONFIG_THERMAL is not set |
| 828 | # CONFIG_THERMAL_HWMON is not set | ||
| 760 | CONFIG_WATCHDOG=y | 829 | CONFIG_WATCHDOG=y |
| 761 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 830 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 762 | 831 | ||
| @@ -764,7 +833,9 @@ CONFIG_WATCHDOG=y | |||
| 764 | # Watchdog Device Drivers | 833 | # Watchdog Device Drivers |
| 765 | # | 834 | # |
| 766 | # CONFIG_SOFT_WATCHDOG is not set | 835 | # CONFIG_SOFT_WATCHDOG is not set |
| 767 | CONFIG_83xx_WDT=y | 836 | # CONFIG_ALIM7101_WDT is not set |
| 837 | # CONFIG_8xxx_WDT is not set | ||
| 838 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 768 | 839 | ||
| 769 | # | 840 | # |
| 770 | # PCI-based Watchdog Cards | 841 | # PCI-based Watchdog Cards |
| @@ -786,8 +857,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 786 | # | 857 | # |
| 787 | # Multifunction device drivers | 858 | # Multifunction device drivers |
| 788 | # | 859 | # |
| 860 | # CONFIG_MFD_CORE is not set | ||
| 789 | # CONFIG_MFD_SM501 is not set | 861 | # CONFIG_MFD_SM501 is not set |
| 790 | # CONFIG_HTC_PASIC3 is not set | 862 | # CONFIG_HTC_PASIC3 is not set |
| 863 | # CONFIG_MFD_TMIO is not set | ||
| 791 | 864 | ||
| 792 | # | 865 | # |
| 793 | # Multimedia devices | 866 | # Multimedia devices |
| @@ -820,10 +893,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 820 | # Display device support | 893 | # Display device support |
| 821 | # | 894 | # |
| 822 | # CONFIG_DISPLAY_SUPPORT is not set | 895 | # CONFIG_DISPLAY_SUPPORT is not set |
| 823 | |||
| 824 | # | ||
| 825 | # Sound | ||
| 826 | # | ||
| 827 | # CONFIG_SOUND is not set | 896 | # CONFIG_SOUND is not set |
| 828 | CONFIG_USB_SUPPORT=y | 897 | CONFIG_USB_SUPPORT=y |
| 829 | CONFIG_USB_ARCH_HAS_HCD=y | 898 | CONFIG_USB_ARCH_HAS_HCD=y |
| @@ -842,6 +911,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 842 | # CONFIG_USB_OTG is not set | 911 | # CONFIG_USB_OTG is not set |
| 843 | # CONFIG_USB_OTG_WHITELIST is not set | 912 | # CONFIG_USB_OTG_WHITELIST is not set |
| 844 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 913 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 914 | CONFIG_USB_MON=y | ||
| 845 | 915 | ||
| 846 | # | 916 | # |
| 847 | # USB Host Controller Drivers | 917 | # USB Host Controller Drivers |
| @@ -885,6 +955,7 @@ CONFIG_USB_STORAGE=y | |||
| 885 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 955 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 886 | # CONFIG_USB_STORAGE_ALAUDA is not set | 956 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 887 | # CONFIG_USB_STORAGE_KARMA is not set | 957 | # CONFIG_USB_STORAGE_KARMA is not set |
| 958 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 888 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 959 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 889 | # CONFIG_USB_LIBUSUAL is not set | 960 | # CONFIG_USB_LIBUSUAL is not set |
| 890 | 961 | ||
| @@ -893,7 +964,6 @@ CONFIG_USB_STORAGE=y | |||
| 893 | # | 964 | # |
| 894 | # CONFIG_USB_MDC800 is not set | 965 | # CONFIG_USB_MDC800 is not set |
| 895 | # CONFIG_USB_MICROTEK is not set | 966 | # CONFIG_USB_MICROTEK is not set |
| 896 | CONFIG_USB_MON=y | ||
| 897 | 967 | ||
| 898 | # | 968 | # |
| 899 | # USB port drivers | 969 | # USB port drivers |
| @@ -906,7 +976,6 @@ CONFIG_USB_MON=y | |||
| 906 | # CONFIG_USB_EMI62 is not set | 976 | # CONFIG_USB_EMI62 is not set |
| 907 | # CONFIG_USB_EMI26 is not set | 977 | # CONFIG_USB_EMI26 is not set |
| 908 | # CONFIG_USB_ADUTUX is not set | 978 | # CONFIG_USB_ADUTUX is not set |
| 909 | # CONFIG_USB_AUERSWALD is not set | ||
| 910 | # CONFIG_USB_RIO500 is not set | 979 | # CONFIG_USB_RIO500 is not set |
| 911 | # CONFIG_USB_LEGOTOWER is not set | 980 | # CONFIG_USB_LEGOTOWER is not set |
| 912 | # CONFIG_USB_LCD is not set | 981 | # CONFIG_USB_LCD is not set |
| @@ -959,10 +1028,13 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 959 | # CONFIG_RTC_DRV_PCF8583 is not set | 1028 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 960 | # CONFIG_RTC_DRV_M41T80 is not set | 1029 | # CONFIG_RTC_DRV_M41T80 is not set |
| 961 | # CONFIG_RTC_DRV_S35390A is not set | 1030 | # CONFIG_RTC_DRV_S35390A is not set |
| 1031 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 962 | 1032 | ||
| 963 | # | 1033 | # |
| 964 | # SPI RTC drivers | 1034 | # SPI RTC drivers |
| 965 | # | 1035 | # |
| 1036 | # CONFIG_RTC_DRV_M41T94 is not set | ||
| 1037 | # CONFIG_RTC_DRV_DS1305 is not set | ||
| 966 | # CONFIG_RTC_DRV_MAX6902 is not set | 1038 | # CONFIG_RTC_DRV_MAX6902 is not set |
| 967 | # CONFIG_RTC_DRV_R9701 is not set | 1039 | # CONFIG_RTC_DRV_R9701 is not set |
| 968 | # CONFIG_RTC_DRV_RS5C348 is not set | 1040 | # CONFIG_RTC_DRV_RS5C348 is not set |
| @@ -1054,6 +1126,7 @@ CONFIG_TMPFS=y | |||
| 1054 | # CONFIG_CRAMFS is not set | 1126 | # CONFIG_CRAMFS is not set |
| 1055 | # CONFIG_VXFS_FS is not set | 1127 | # CONFIG_VXFS_FS is not set |
| 1056 | # CONFIG_MINIX_FS is not set | 1128 | # CONFIG_MINIX_FS is not set |
| 1129 | # CONFIG_OMFS_FS is not set | ||
| 1057 | # CONFIG_HPFS_FS is not set | 1130 | # CONFIG_HPFS_FS is not set |
| 1058 | # CONFIG_QNX4FS_FS is not set | 1131 | # CONFIG_QNX4FS_FS is not set |
| 1059 | # CONFIG_ROMFS_FS is not set | 1132 | # CONFIG_ROMFS_FS is not set |
| @@ -1064,14 +1137,13 @@ CONFIG_NFS_FS=y | |||
| 1064 | CONFIG_NFS_V3=y | 1137 | CONFIG_NFS_V3=y |
| 1065 | # CONFIG_NFS_V3_ACL is not set | 1138 | # CONFIG_NFS_V3_ACL is not set |
| 1066 | CONFIG_NFS_V4=y | 1139 | CONFIG_NFS_V4=y |
| 1067 | # CONFIG_NFSD is not set | ||
| 1068 | CONFIG_ROOT_NFS=y | 1140 | CONFIG_ROOT_NFS=y |
| 1141 | # CONFIG_NFSD is not set | ||
| 1069 | CONFIG_LOCKD=y | 1142 | CONFIG_LOCKD=y |
| 1070 | CONFIG_LOCKD_V4=y | 1143 | CONFIG_LOCKD_V4=y |
| 1071 | CONFIG_NFS_COMMON=y | 1144 | CONFIG_NFS_COMMON=y |
| 1072 | CONFIG_SUNRPC=y | 1145 | CONFIG_SUNRPC=y |
| 1073 | CONFIG_SUNRPC_GSS=y | 1146 | CONFIG_SUNRPC_GSS=y |
| 1074 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1075 | CONFIG_RPCSEC_GSS_KRB5=y | 1147 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1076 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1148 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1077 | # CONFIG_SMB_FS is not set | 1149 | # CONFIG_SMB_FS is not set |
| @@ -1150,6 +1222,7 @@ CONFIG_BITREVERSE=y | |||
| 1150 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1222 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1151 | # CONFIG_CRC_CCITT is not set | 1223 | # CONFIG_CRC_CCITT is not set |
| 1152 | # CONFIG_CRC16 is not set | 1224 | # CONFIG_CRC16 is not set |
| 1225 | CONFIG_CRC_T10DIF=y | ||
| 1153 | # CONFIG_CRC_ITU_T is not set | 1226 | # CONFIG_CRC_ITU_T is not set |
| 1154 | CONFIG_CRC32=y | 1227 | CONFIG_CRC32=y |
| 1155 | # CONFIG_CRC7 is not set | 1228 | # CONFIG_CRC7 is not set |
| @@ -1175,8 +1248,18 @@ CONFIG_FRAME_WARN=1024 | |||
| 1175 | # CONFIG_SLUB_DEBUG_ON is not set | 1248 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1176 | # CONFIG_SLUB_STATS is not set | 1249 | # CONFIG_SLUB_STATS is not set |
| 1177 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1250 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1251 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1252 | # CONFIG_LATENCYTOP is not set | ||
| 1253 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1254 | CONFIG_HAVE_FTRACE=y | ||
| 1255 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1256 | # CONFIG_FTRACE is not set | ||
| 1257 | # CONFIG_SCHED_TRACER is not set | ||
| 1258 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1178 | # CONFIG_SAMPLES is not set | 1259 | # CONFIG_SAMPLES is not set |
| 1260 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1179 | # CONFIG_IRQSTACKS is not set | 1261 | # CONFIG_IRQSTACKS is not set |
| 1262 | # CONFIG_BOOTX_TEXT is not set | ||
| 1180 | # CONFIG_PPC_EARLY_DEBUG is not set | 1263 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1181 | 1264 | ||
| 1182 | # | 1265 | # |
| @@ -1230,6 +1313,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1230 | # CONFIG_CRYPTO_MD4 is not set | 1313 | # CONFIG_CRYPTO_MD4 is not set |
| 1231 | CONFIG_CRYPTO_MD5=y | 1314 | CONFIG_CRYPTO_MD5=y |
| 1232 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1315 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1316 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1317 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1318 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1319 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1233 | # CONFIG_CRYPTO_SHA1 is not set | 1320 | # CONFIG_CRYPTO_SHA1 is not set |
| 1234 | # CONFIG_CRYPTO_SHA256 is not set | 1321 | # CONFIG_CRYPTO_SHA256 is not set |
| 1235 | # CONFIG_CRYPTO_SHA512 is not set | 1322 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1262,5 +1349,6 @@ CONFIG_CRYPTO_DES=y | |||
| 1262 | # CONFIG_CRYPTO_LZO is not set | 1349 | # CONFIG_CRYPTO_LZO is not set |
| 1263 | CONFIG_CRYPTO_HW=y | 1350 | CONFIG_CRYPTO_HW=y |
| 1264 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1351 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1352 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1265 | # CONFIG_PPC_CLOCK is not set | 1353 | # CONFIG_PPC_CLOCK is not set |
| 1266 | # CONFIG_VIRTUALIZATION is not set | 1354 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/83xx/mpc834x_mds_defconfig b/arch/powerpc/configs/83xx/mpc834x_mds_defconfig index c82e96e984fc..24c320a36670 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:26 2008 | 4 | # Thu Aug 21 00:52:21 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -51,6 +53,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,12 +93,12 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | # CONFIG_KALLSYMS is not set | 96 | # CONFIG_KALLSYMS is not set |
| 93 | CONFIG_HOTPLUG=y | 97 | CONFIG_HOTPLUG=y |
| 94 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
| 95 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
| 96 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
| 101 | CONFIG_PCSPKR_PLATFORM=y | ||
| 97 | CONFIG_COMPAT_BRK=y | 102 | CONFIG_COMPAT_BRK=y |
| 98 | CONFIG_BASE_FULL=y | 103 | CONFIG_BASE_FULL=y |
| 99 | CONFIG_FUTEX=y | 104 | CONFIG_FUTEX=y |
| @@ -111,10 +116,16 @@ CONFIG_SLUB=y | |||
| 111 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
| 112 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 113 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 114 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 115 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | 124 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 125 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 126 | # CONFIG_HAVE_CLK is not set | ||
| 117 | CONFIG_PROC_PAGE_MONITOR=y | 127 | CONFIG_PROC_PAGE_MONITOR=y |
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 118 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
| 119 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
| 120 | # CONFIG_TINY_SHMEM is not set | 131 | # CONFIG_TINY_SHMEM is not set |
| @@ -125,12 +136,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 136 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 126 | # CONFIG_MODVERSIONS is not set | 137 | # CONFIG_MODVERSIONS is not set |
| 127 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 138 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 128 | # CONFIG_KMOD is not set | 139 | CONFIG_KMOD=y |
| 129 | CONFIG_BLOCK=y | 140 | CONFIG_BLOCK=y |
| 130 | # CONFIG_LBD is not set | 141 | # CONFIG_LBD is not set |
| 131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 132 | # CONFIG_LSF is not set | 143 | # CONFIG_LSF is not set |
| 133 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
| 145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 134 | 146 | ||
| 135 | # | 147 | # |
| 136 | # IO Schedulers | 148 | # IO Schedulers |
| @@ -149,37 +161,49 @@ CONFIG_CLASSIC_RCU=y | |||
| 149 | # | 161 | # |
| 150 | # Platform support | 162 | # Platform support |
| 151 | # | 163 | # |
| 152 | # CONFIG_PPC_MULTIPLATFORM is not set | 164 | CONFIG_PPC_MULTIPLATFORM=y |
| 153 | # CONFIG_PPC_82xx is not set | 165 | CONFIG_CLASSIC32=y |
| 154 | CONFIG_PPC_83xx=y | 166 | CONFIG_PPC_CHRP=y |
| 155 | # CONFIG_PPC_86xx is not set | 167 | # CONFIG_MPC5121_ADS is not set |
| 156 | # CONFIG_PPC_MPC512x is not set | 168 | # CONFIG_MPC5121_GENERIC is not set |
| 157 | # CONFIG_PPC_MPC5121 is not set | 169 | # CONFIG_PPC_MPC52xx is not set |
| 170 | CONFIG_PPC_PMAC=y | ||
| 158 | # CONFIG_PPC_CELL is not set | 171 | # CONFIG_PPC_CELL is not set |
| 159 | # CONFIG_PPC_CELL_NATIVE is not set | 172 | # CONFIG_PPC_CELL_NATIVE is not set |
| 173 | # CONFIG_PPC_82xx is not set | ||
| 160 | # CONFIG_PQ2ADS is not set | 174 | # CONFIG_PQ2ADS is not set |
| 161 | CONFIG_MPC83xx=y | 175 | CONFIG_PPC_83xx=y |
| 162 | # CONFIG_MPC831x_RDB is not set | 176 | # CONFIG_MPC831x_RDB is not set |
| 163 | # CONFIG_MPC832x_MDS is not set | 177 | # CONFIG_MPC832x_MDS is not set |
| 164 | # CONFIG_MPC832x_RDB is not set | 178 | # CONFIG_MPC832x_RDB is not set |
| 165 | CONFIG_MPC834x_MDS=y | 179 | CONFIG_MPC834x_MDS=y |
| 166 | # CONFIG_MPC834x_ITX is not set | 180 | # CONFIG_MPC834x_ITX is not set |
| 167 | # CONFIG_MPC836x_MDS is not set | 181 | # CONFIG_MPC836x_MDS is not set |
| 182 | # CONFIG_MPC836x_RDK is not set | ||
| 168 | # CONFIG_MPC837x_MDS is not set | 183 | # CONFIG_MPC837x_MDS is not set |
| 169 | # CONFIG_MPC837x_RDB is not set | 184 | # CONFIG_MPC837x_RDB is not set |
| 170 | # CONFIG_SBC834x is not set | 185 | # CONFIG_SBC834x is not set |
| 186 | # CONFIG_ASP834x is not set | ||
| 171 | CONFIG_PPC_MPC834x=y | 187 | CONFIG_PPC_MPC834x=y |
| 188 | # CONFIG_PPC_86xx is not set | ||
| 189 | # CONFIG_EMBEDDED6xx is not set | ||
| 190 | CONFIG_PPC_NATIVE=y | ||
| 191 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 172 | CONFIG_IPIC=y | 192 | CONFIG_IPIC=y |
| 173 | # CONFIG_MPIC is not set | 193 | CONFIG_MPIC=y |
| 174 | # CONFIG_MPIC_WEIRD is not set | 194 | # CONFIG_MPIC_WEIRD is not set |
| 175 | # CONFIG_PPC_I8259 is not set | 195 | CONFIG_PPC_I8259=y |
| 176 | # CONFIG_PPC_RTAS is not set | 196 | CONFIG_PPC_RTAS=y |
| 197 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 198 | CONFIG_RTAS_PROC=y | ||
| 177 | # CONFIG_MMIO_NVRAM is not set | 199 | # CONFIG_MMIO_NVRAM is not set |
| 178 | # CONFIG_PPC_MPC106 is not set | 200 | CONFIG_PPC_MPC106=y |
| 179 | # CONFIG_PPC_970_NAP is not set | 201 | # CONFIG_PPC_970_NAP is not set |
| 180 | # CONFIG_PPC_INDIRECT_IO is not set | 202 | # CONFIG_PPC_INDIRECT_IO is not set |
| 181 | # CONFIG_GENERIC_IOMAP is not set | 203 | # CONFIG_GENERIC_IOMAP is not set |
| 182 | # CONFIG_CPU_FREQ is not set | 204 | # CONFIG_CPU_FREQ is not set |
| 205 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 206 | # CONFIG_TAU is not set | ||
| 183 | # CONFIG_FSL_ULI1575 is not set | 207 | # CONFIG_FSL_ULI1575 is not set |
| 184 | 208 | ||
| 185 | # | 209 | # |
| @@ -195,7 +219,7 @@ CONFIG_HZ_250=y | |||
| 195 | # CONFIG_HZ_300 is not set | 219 | # CONFIG_HZ_300 is not set |
| 196 | # CONFIG_HZ_1000 is not set | 220 | # CONFIG_HZ_1000 is not set |
| 197 | CONFIG_HZ=250 | 221 | CONFIG_HZ=250 |
| 198 | # CONFIG_SCHED_HRTICK is not set | 222 | CONFIG_SCHED_HRTICK=y |
| 199 | CONFIG_PREEMPT_NONE=y | 223 | CONFIG_PREEMPT_NONE=y |
| 200 | # CONFIG_PREEMPT_VOLUNTARY is not set | 224 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 201 | # CONFIG_PREEMPT is not set | 225 | # CONFIG_PREEMPT is not set |
| @@ -205,6 +229,7 @@ CONFIG_BINFMT_ELF=y | |||
| 205 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 206 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 230 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 231 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 232 | # CONFIG_KEXEC is not set | ||
| 208 | CONFIG_ARCH_FLATMEM_ENABLE=y | 233 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 209 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 234 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 210 | CONFIG_SELECT_MEMORY_MODEL=y | 235 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -217,6 +242,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 242 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | 243 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 244 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 245 | CONFIG_MIGRATION=y | ||
| 220 | # CONFIG_RESOURCES_64BIT is not set | 246 | # CONFIG_RESOURCES_64BIT is not set |
| 221 | CONFIG_ZONE_DMA_FLAG=1 | 247 | CONFIG_ZONE_DMA_FLAG=1 |
| 222 | CONFIG_BOUNCE=y | 248 | CONFIG_BOUNCE=y |
| @@ -224,6 +250,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 225 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
| 226 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
| 253 | CONFIG_EXTRA_TARGETS="" | ||
| 227 | # CONFIG_PM is not set | 254 | # CONFIG_PM is not set |
| 228 | CONFIG_SECCOMP=y | 255 | CONFIG_SECCOMP=y |
| 229 | CONFIG_ISA_DMA_API=y | 256 | CONFIG_ISA_DMA_API=y |
| @@ -231,10 +258,13 @@ CONFIG_ISA_DMA_API=y | |||
| 231 | # | 258 | # |
| 232 | # Bus options | 259 | # Bus options |
| 233 | # | 260 | # |
| 261 | # CONFIG_ISA is not set | ||
| 234 | CONFIG_ZONE_DMA=y | 262 | CONFIG_ZONE_DMA=y |
| 235 | CONFIG_GENERIC_ISA_DMA=y | 263 | CONFIG_GENERIC_ISA_DMA=y |
| 236 | CONFIG_PPC_INDIRECT_PCI=y | 264 | CONFIG_PPC_INDIRECT_PCI=y |
| 237 | CONFIG_FSL_SOC=y | 265 | CONFIG_FSL_SOC=y |
| 266 | CONFIG_FSL_PCI=y | ||
| 267 | CONFIG_PPC_PCI_CHOICE=y | ||
| 238 | CONFIG_PCI=y | 268 | CONFIG_PCI=y |
| 239 | CONFIG_PCI_DOMAINS=y | 269 | CONFIG_PCI_DOMAINS=y |
| 240 | CONFIG_PCI_SYSCALL=y | 270 | CONFIG_PCI_SYSCALL=y |
| @@ -259,10 +289,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 259 | CONFIG_KERNEL_START=0xc0000000 | 289 | CONFIG_KERNEL_START=0xc0000000 |
| 260 | CONFIG_PHYSICAL_START=0x00000000 | 290 | CONFIG_PHYSICAL_START=0x00000000 |
| 261 | CONFIG_TASK_SIZE=0xc0000000 | 291 | CONFIG_TASK_SIZE=0xc0000000 |
| 262 | |||
| 263 | # | ||
| 264 | # Networking | ||
| 265 | # | ||
| 266 | CONFIG_NET=y | 292 | CONFIG_NET=y |
| 267 | 293 | ||
| 268 | # | 294 | # |
| @@ -363,6 +389,7 @@ CONFIG_OF_I2C=y | |||
| 363 | # CONFIG_PARPORT is not set | 389 | # CONFIG_PARPORT is not set |
| 364 | CONFIG_BLK_DEV=y | 390 | CONFIG_BLK_DEV=y |
| 365 | # CONFIG_BLK_DEV_FD is not set | 391 | # CONFIG_BLK_DEV_FD is not set |
| 392 | # CONFIG_MAC_FLOPPY is not set | ||
| 366 | # CONFIG_BLK_CPQ_DA is not set | 393 | # CONFIG_BLK_CPQ_DA is not set |
| 367 | # CONFIG_BLK_CPQ_CISS_DA is not set | 394 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 368 | # CONFIG_BLK_DEV_DAC960 is not set | 395 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -378,12 +405,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 378 | # CONFIG_BLK_DEV_XIP is not set | 405 | # CONFIG_BLK_DEV_XIP is not set |
| 379 | # CONFIG_CDROM_PKTCDVD is not set | 406 | # CONFIG_CDROM_PKTCDVD is not set |
| 380 | # CONFIG_ATA_OVER_ETH is not set | 407 | # CONFIG_ATA_OVER_ETH is not set |
| 408 | # CONFIG_BLK_DEV_HD is not set | ||
| 381 | CONFIG_MISC_DEVICES=y | 409 | CONFIG_MISC_DEVICES=y |
| 382 | # CONFIG_PHANTOM is not set | 410 | # CONFIG_PHANTOM is not set |
| 383 | # CONFIG_EEPROM_93CX6 is not set | 411 | # CONFIG_EEPROM_93CX6 is not set |
| 384 | # CONFIG_SGI_IOC4 is not set | 412 | # CONFIG_SGI_IOC4 is not set |
| 385 | # CONFIG_TIFM_CORE is not set | 413 | # CONFIG_TIFM_CORE is not set |
| 386 | # CONFIG_ENCLOSURE_SERVICES is not set | 414 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 415 | # CONFIG_HP_ILO is not set | ||
| 387 | CONFIG_HAVE_IDE=y | 416 | CONFIG_HAVE_IDE=y |
| 388 | # CONFIG_IDE is not set | 417 | # CONFIG_IDE is not set |
| 389 | 418 | ||
| @@ -401,12 +430,15 @@ CONFIG_HAVE_IDE=y | |||
| 401 | # | 430 | # |
| 402 | # IEEE 1394 (FireWire) support | 431 | # IEEE 1394 (FireWire) support |
| 403 | # | 432 | # |
| 433 | |||
| 434 | # | ||
| 435 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 436 | # | ||
| 404 | # CONFIG_FIREWIRE is not set | 437 | # CONFIG_FIREWIRE is not set |
| 405 | # CONFIG_IEEE1394 is not set | 438 | # CONFIG_IEEE1394 is not set |
| 406 | # CONFIG_I2O is not set | 439 | # CONFIG_I2O is not set |
| 407 | # CONFIG_MACINTOSH_DRIVERS is not set | 440 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 408 | CONFIG_NETDEVICES=y | 441 | CONFIG_NETDEVICES=y |
| 409 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 410 | # CONFIG_DUMMY is not set | 442 | # CONFIG_DUMMY is not set |
| 411 | # CONFIG_BONDING is not set | 443 | # CONFIG_BONDING is not set |
| 412 | # CONFIG_MACVLAN is not set | 444 | # CONFIG_MACVLAN is not set |
| @@ -433,6 +465,8 @@ CONFIG_MARVELL_PHY=y | |||
| 433 | # CONFIG_MDIO_BITBANG is not set | 465 | # CONFIG_MDIO_BITBANG is not set |
| 434 | CONFIG_NET_ETHERNET=y | 466 | CONFIG_NET_ETHERNET=y |
| 435 | CONFIG_MII=y | 467 | CONFIG_MII=y |
| 468 | # CONFIG_MACE is not set | ||
| 469 | # CONFIG_BMAC is not set | ||
| 436 | # CONFIG_HAPPYMEAL is not set | 470 | # CONFIG_HAPPYMEAL is not set |
| 437 | # CONFIG_SUNGEM is not set | 471 | # CONFIG_SUNGEM is not set |
| 438 | # CONFIG_CASSINI is not set | 472 | # CONFIG_CASSINI is not set |
| @@ -468,7 +502,6 @@ CONFIG_NETDEV_1000=y | |||
| 468 | # CONFIG_DL2K is not set | 502 | # CONFIG_DL2K is not set |
| 469 | # CONFIG_E1000 is not set | 503 | # CONFIG_E1000 is not set |
| 470 | # CONFIG_E1000E is not set | 504 | # CONFIG_E1000E is not set |
| 471 | # CONFIG_E1000E_ENABLED is not set | ||
| 472 | # CONFIG_IP1000 is not set | 505 | # CONFIG_IP1000 is not set |
| 473 | # CONFIG_IGB is not set | 506 | # CONFIG_IGB is not set |
| 474 | # CONFIG_NS83820 is not set | 507 | # CONFIG_NS83820 is not set |
| @@ -482,9 +515,10 @@ CONFIG_NETDEV_1000=y | |||
| 482 | # CONFIG_TIGON3 is not set | 515 | # CONFIG_TIGON3 is not set |
| 483 | # CONFIG_BNX2 is not set | 516 | # CONFIG_BNX2 is not set |
| 484 | CONFIG_GIANFAR=y | 517 | CONFIG_GIANFAR=y |
| 485 | # CONFIG_GFAR_NAPI is not set | 518 | # CONFIG_MV643XX_ETH is not set |
| 486 | # CONFIG_QLA3XXX is not set | 519 | # CONFIG_QLA3XXX is not set |
| 487 | # CONFIG_ATL1 is not set | 520 | # CONFIG_ATL1 is not set |
| 521 | # CONFIG_ATL1E is not set | ||
| 488 | CONFIG_NETDEV_10000=y | 522 | CONFIG_NETDEV_10000=y |
| 489 | # CONFIG_CHELSIO_T1 is not set | 523 | # CONFIG_CHELSIO_T1 is not set |
| 490 | # CONFIG_CHELSIO_T3 is not set | 524 | # CONFIG_CHELSIO_T3 is not set |
| @@ -572,11 +606,14 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 572 | # CONFIG_SERIAL_UARTLITE is not set | 606 | # CONFIG_SERIAL_UARTLITE is not set |
| 573 | CONFIG_SERIAL_CORE=y | 607 | CONFIG_SERIAL_CORE=y |
| 574 | CONFIG_SERIAL_CORE_CONSOLE=y | 608 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 609 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 575 | # CONFIG_SERIAL_JSM is not set | 610 | # CONFIG_SERIAL_JSM is not set |
| 576 | # CONFIG_SERIAL_OF_PLATFORM is not set | 611 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 577 | CONFIG_UNIX98_PTYS=y | 612 | CONFIG_UNIX98_PTYS=y |
| 578 | CONFIG_LEGACY_PTYS=y | 613 | CONFIG_LEGACY_PTYS=y |
| 579 | CONFIG_LEGACY_PTY_COUNT=256 | 614 | CONFIG_LEGACY_PTY_COUNT=256 |
| 615 | # CONFIG_BRIQ_PANEL is not set | ||
| 616 | # CONFIG_HVC_RTAS is not set | ||
| 580 | # CONFIG_IPMI_HANDLER is not set | 617 | # CONFIG_IPMI_HANDLER is not set |
| 581 | # CONFIG_HW_RANDOM is not set | 618 | # CONFIG_HW_RANDOM is not set |
| 582 | # CONFIG_NVRAM is not set | 619 | # CONFIG_NVRAM is not set |
| @@ -588,42 +625,69 @@ CONFIG_DEVPORT=y | |||
| 588 | CONFIG_I2C=y | 625 | CONFIG_I2C=y |
| 589 | CONFIG_I2C_BOARDINFO=y | 626 | CONFIG_I2C_BOARDINFO=y |
| 590 | CONFIG_I2C_CHARDEV=y | 627 | CONFIG_I2C_CHARDEV=y |
| 628 | CONFIG_I2C_HELPER_AUTO=y | ||
| 591 | 629 | ||
| 592 | # | 630 | # |
| 593 | # I2C Hardware Bus support | 631 | # I2C Hardware Bus support |
| 594 | # | 632 | # |
| 633 | |||
| 634 | # | ||
| 635 | # PC SMBus host controller drivers | ||
| 636 | # | ||
| 595 | # CONFIG_I2C_ALI1535 is not set | 637 | # CONFIG_I2C_ALI1535 is not set |
| 596 | # CONFIG_I2C_ALI1563 is not set | 638 | # CONFIG_I2C_ALI1563 is not set |
| 597 | # CONFIG_I2C_ALI15X3 is not set | 639 | # CONFIG_I2C_ALI15X3 is not set |
| 598 | # CONFIG_I2C_AMD756 is not set | 640 | # CONFIG_I2C_AMD756 is not set |
| 599 | # CONFIG_I2C_AMD8111 is not set | 641 | # CONFIG_I2C_AMD8111 is not set |
| 600 | # CONFIG_I2C_I801 is not set | 642 | # CONFIG_I2C_I801 is not set |
| 601 | # CONFIG_I2C_I810 is not set | 643 | # CONFIG_I2C_ISCH is not set |
| 602 | # CONFIG_I2C_PIIX4 is not set | 644 | # CONFIG_I2C_PIIX4 is not set |
| 603 | CONFIG_I2C_MPC=y | ||
| 604 | # CONFIG_I2C_NFORCE2 is not set | 645 | # CONFIG_I2C_NFORCE2 is not set |
| 605 | # CONFIG_I2C_OCORES is not set | ||
| 606 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 607 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 608 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 609 | # CONFIG_I2C_SIMTEC is not set | ||
| 610 | # CONFIG_I2C_SIS5595 is not set | 646 | # CONFIG_I2C_SIS5595 is not set |
| 611 | # CONFIG_I2C_SIS630 is not set | 647 | # CONFIG_I2C_SIS630 is not set |
| 612 | # CONFIG_I2C_SIS96X is not set | 648 | # CONFIG_I2C_SIS96X is not set |
| 613 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 614 | # CONFIG_I2C_STUB is not set | ||
| 615 | # CONFIG_I2C_VIA is not set | 649 | # CONFIG_I2C_VIA is not set |
| 616 | # CONFIG_I2C_VIAPRO is not set | 650 | # CONFIG_I2C_VIAPRO is not set |
| 651 | |||
| 652 | # | ||
| 653 | # Mac SMBus host controller drivers | ||
| 654 | # | ||
| 655 | # CONFIG_I2C_HYDRA is not set | ||
| 656 | CONFIG_I2C_POWERMAC=y | ||
| 657 | |||
| 658 | # | ||
| 659 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 660 | # | ||
| 661 | CONFIG_I2C_MPC=y | ||
| 662 | # CONFIG_I2C_OCORES is not set | ||
| 663 | # CONFIG_I2C_SIMTEC is not set | ||
| 664 | |||
| 665 | # | ||
| 666 | # External I2C/SMBus adapter drivers | ||
| 667 | # | ||
| 668 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 669 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 670 | |||
| 671 | # | ||
| 672 | # Graphics adapter I2C/DDC channel drivers | ||
| 673 | # | ||
| 617 | # CONFIG_I2C_VOODOO3 is not set | 674 | # CONFIG_I2C_VOODOO3 is not set |
| 675 | |||
| 676 | # | ||
| 677 | # Other I2C/SMBus bus drivers | ||
| 678 | # | ||
| 618 | # CONFIG_I2C_PCA_PLATFORM is not set | 679 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 680 | # CONFIG_I2C_STUB is not set | ||
| 619 | 681 | ||
| 620 | # | 682 | # |
| 621 | # Miscellaneous I2C Chip support | 683 | # Miscellaneous I2C Chip support |
| 622 | # | 684 | # |
| 623 | # CONFIG_DS1682 is not set | 685 | # CONFIG_DS1682 is not set |
| 686 | # CONFIG_AT24 is not set | ||
| 624 | # CONFIG_SENSORS_EEPROM is not set | 687 | # CONFIG_SENSORS_EEPROM is not set |
| 625 | # CONFIG_SENSORS_PCF8574 is not set | 688 | # CONFIG_SENSORS_PCF8574 is not set |
| 626 | # CONFIG_PCF8575 is not set | 689 | # CONFIG_PCF8575 is not set |
| 690 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 627 | # CONFIG_SENSORS_PCF8591 is not set | 691 | # CONFIG_SENSORS_PCF8591 is not set |
| 628 | # CONFIG_SENSORS_MAX6875 is not set | 692 | # CONFIG_SENSORS_MAX6875 is not set |
| 629 | # CONFIG_SENSORS_TSL2550 is not set | 693 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -632,10 +696,13 @@ CONFIG_I2C_MPC=y | |||
| 632 | # CONFIG_I2C_DEBUG_BUS is not set | 696 | # CONFIG_I2C_DEBUG_BUS is not set |
| 633 | # CONFIG_I2C_DEBUG_CHIP is not set | 697 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 634 | # CONFIG_SPI is not set | 698 | # CONFIG_SPI is not set |
| 699 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 700 | # CONFIG_GPIOLIB is not set | ||
| 635 | # CONFIG_W1 is not set | 701 | # CONFIG_W1 is not set |
| 636 | # CONFIG_POWER_SUPPLY is not set | 702 | # CONFIG_POWER_SUPPLY is not set |
| 637 | CONFIG_HWMON=y | 703 | CONFIG_HWMON=y |
| 638 | # CONFIG_HWMON_VID is not set | 704 | # CONFIG_HWMON_VID is not set |
| 705 | # CONFIG_SENSORS_AD7414 is not set | ||
| 639 | # CONFIG_SENSORS_AD7418 is not set | 706 | # CONFIG_SENSORS_AD7418 is not set |
| 640 | # CONFIG_SENSORS_ADM1021 is not set | 707 | # CONFIG_SENSORS_ADM1021 is not set |
| 641 | # CONFIG_SENSORS_ADM1025 is not set | 708 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -645,6 +712,7 @@ CONFIG_HWMON=y | |||
| 645 | # CONFIG_SENSORS_ADM9240 is not set | 712 | # CONFIG_SENSORS_ADM9240 is not set |
| 646 | # CONFIG_SENSORS_ADT7470 is not set | 713 | # CONFIG_SENSORS_ADT7470 is not set |
| 647 | # CONFIG_SENSORS_ADT7473 is not set | 714 | # CONFIG_SENSORS_ADT7473 is not set |
| 715 | # CONFIG_SENSORS_AMS is not set | ||
| 648 | # CONFIG_SENSORS_ATXP1 is not set | 716 | # CONFIG_SENSORS_ATXP1 is not set |
| 649 | # CONFIG_SENSORS_DS1621 is not set | 717 | # CONFIG_SENSORS_DS1621 is not set |
| 650 | # CONFIG_SENSORS_I5K_AMB is not set | 718 | # CONFIG_SENSORS_I5K_AMB is not set |
| @@ -689,6 +757,7 @@ CONFIG_HWMON=y | |||
| 689 | # CONFIG_SENSORS_W83627EHF is not set | 757 | # CONFIG_SENSORS_W83627EHF is not set |
| 690 | # CONFIG_HWMON_DEBUG_CHIP is not set | 758 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 691 | # CONFIG_THERMAL is not set | 759 | # CONFIG_THERMAL is not set |
| 760 | # CONFIG_THERMAL_HWMON is not set | ||
| 692 | CONFIG_WATCHDOG=y | 761 | CONFIG_WATCHDOG=y |
| 693 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 762 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 694 | 763 | ||
| @@ -696,7 +765,9 @@ CONFIG_WATCHDOG=y | |||
| 696 | # Watchdog Device Drivers | 765 | # Watchdog Device Drivers |
| 697 | # | 766 | # |
| 698 | # CONFIG_SOFT_WATCHDOG is not set | 767 | # CONFIG_SOFT_WATCHDOG is not set |
| 699 | CONFIG_83xx_WDT=y | 768 | # CONFIG_ALIM7101_WDT is not set |
| 769 | # CONFIG_8xxx_WDT is not set | ||
| 770 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 700 | 771 | ||
| 701 | # | 772 | # |
| 702 | # PCI-based Watchdog Cards | 773 | # PCI-based Watchdog Cards |
| @@ -713,8 +784,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 713 | # | 784 | # |
| 714 | # Multifunction device drivers | 785 | # Multifunction device drivers |
| 715 | # | 786 | # |
| 787 | # CONFIG_MFD_CORE is not set | ||
| 716 | # CONFIG_MFD_SM501 is not set | 788 | # CONFIG_MFD_SM501 is not set |
| 717 | # CONFIG_HTC_PASIC3 is not set | 789 | # CONFIG_HTC_PASIC3 is not set |
| 790 | # CONFIG_MFD_TMIO is not set | ||
| 718 | 791 | ||
| 719 | # | 792 | # |
| 720 | # Multimedia devices | 793 | # Multimedia devices |
| @@ -746,10 +819,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 746 | # Display device support | 819 | # Display device support |
| 747 | # | 820 | # |
| 748 | # CONFIG_DISPLAY_SUPPORT is not set | 821 | # CONFIG_DISPLAY_SUPPORT is not set |
| 749 | |||
| 750 | # | ||
| 751 | # Sound | ||
| 752 | # | ||
| 753 | # CONFIG_SOUND is not set | 822 | # CONFIG_SOUND is not set |
| 754 | CONFIG_HID_SUPPORT=y | 823 | CONFIG_HID_SUPPORT=y |
| 755 | CONFIG_HID=y | 824 | CONFIG_HID=y |
| @@ -764,6 +833,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 764 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 833 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 765 | 834 | ||
| 766 | # | 835 | # |
| 836 | # Enable Host or Gadget support to see Inventra options | ||
| 837 | # | ||
| 838 | |||
| 839 | # | ||
| 767 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 840 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 768 | # | 841 | # |
| 769 | # CONFIG_USB_GADGET is not set | 842 | # CONFIG_USB_GADGET is not set |
| @@ -802,6 +875,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 802 | # CONFIG_RTC_DRV_PCF8583 is not set | 875 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 803 | # CONFIG_RTC_DRV_M41T80 is not set | 876 | # CONFIG_RTC_DRV_M41T80 is not set |
| 804 | # CONFIG_RTC_DRV_S35390A is not set | 877 | # CONFIG_RTC_DRV_S35390A is not set |
| 878 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 805 | 879 | ||
| 806 | # | 880 | # |
| 807 | # SPI RTC drivers | 881 | # SPI RTC drivers |
| @@ -890,6 +964,7 @@ CONFIG_TMPFS=y | |||
| 890 | # CONFIG_CRAMFS is not set | 964 | # CONFIG_CRAMFS is not set |
| 891 | # CONFIG_VXFS_FS is not set | 965 | # CONFIG_VXFS_FS is not set |
| 892 | # CONFIG_MINIX_FS is not set | 966 | # CONFIG_MINIX_FS is not set |
| 967 | # CONFIG_OMFS_FS is not set | ||
| 893 | # CONFIG_HPFS_FS is not set | 968 | # CONFIG_HPFS_FS is not set |
| 894 | # CONFIG_QNX4FS_FS is not set | 969 | # CONFIG_QNX4FS_FS is not set |
| 895 | # CONFIG_ROMFS_FS is not set | 970 | # CONFIG_ROMFS_FS is not set |
| @@ -900,14 +975,13 @@ CONFIG_NFS_FS=y | |||
| 900 | CONFIG_NFS_V3=y | 975 | CONFIG_NFS_V3=y |
| 901 | # CONFIG_NFS_V3_ACL is not set | 976 | # CONFIG_NFS_V3_ACL is not set |
| 902 | CONFIG_NFS_V4=y | 977 | CONFIG_NFS_V4=y |
| 903 | # CONFIG_NFSD is not set | ||
| 904 | CONFIG_ROOT_NFS=y | 978 | CONFIG_ROOT_NFS=y |
| 979 | # CONFIG_NFSD is not set | ||
| 905 | CONFIG_LOCKD=y | 980 | CONFIG_LOCKD=y |
| 906 | CONFIG_LOCKD_V4=y | 981 | CONFIG_LOCKD_V4=y |
| 907 | CONFIG_NFS_COMMON=y | 982 | CONFIG_NFS_COMMON=y |
| 908 | CONFIG_SUNRPC=y | 983 | CONFIG_SUNRPC=y |
| 909 | CONFIG_SUNRPC_GSS=y | 984 | CONFIG_SUNRPC_GSS=y |
| 910 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 911 | CONFIG_RPCSEC_GSS_KRB5=y | 985 | CONFIG_RPCSEC_GSS_KRB5=y |
| 912 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 986 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 913 | # CONFIG_SMB_FS is not set | 987 | # CONFIG_SMB_FS is not set |
| @@ -943,6 +1017,7 @@ CONFIG_BITREVERSE=y | |||
| 943 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1017 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 944 | # CONFIG_CRC_CCITT is not set | 1018 | # CONFIG_CRC_CCITT is not set |
| 945 | # CONFIG_CRC16 is not set | 1019 | # CONFIG_CRC16 is not set |
| 1020 | # CONFIG_CRC_T10DIF is not set | ||
| 946 | # CONFIG_CRC_ITU_T is not set | 1021 | # CONFIG_CRC_ITU_T is not set |
| 947 | CONFIG_CRC32=y | 1022 | CONFIG_CRC32=y |
| 948 | # CONFIG_CRC7 is not set | 1023 | # CONFIG_CRC7 is not set |
| @@ -968,8 +1043,18 @@ CONFIG_FRAME_WARN=1024 | |||
| 968 | # CONFIG_SLUB_DEBUG_ON is not set | 1043 | # CONFIG_SLUB_DEBUG_ON is not set |
| 969 | # CONFIG_SLUB_STATS is not set | 1044 | # CONFIG_SLUB_STATS is not set |
| 970 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1045 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1046 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1047 | # CONFIG_LATENCYTOP is not set | ||
| 1048 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1049 | CONFIG_HAVE_FTRACE=y | ||
| 1050 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1051 | # CONFIG_FTRACE is not set | ||
| 1052 | # CONFIG_SCHED_TRACER is not set | ||
| 1053 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 971 | # CONFIG_SAMPLES is not set | 1054 | # CONFIG_SAMPLES is not set |
| 1055 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 972 | # CONFIG_IRQSTACKS is not set | 1056 | # CONFIG_IRQSTACKS is not set |
| 1057 | # CONFIG_BOOTX_TEXT is not set | ||
| 973 | # CONFIG_PPC_EARLY_DEBUG is not set | 1058 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 974 | 1059 | ||
| 975 | # | 1060 | # |
| @@ -1023,6 +1108,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1023 | # CONFIG_CRYPTO_MD4 is not set | 1108 | # CONFIG_CRYPTO_MD4 is not set |
| 1024 | CONFIG_CRYPTO_MD5=y | 1109 | CONFIG_CRYPTO_MD5=y |
| 1025 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1110 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1111 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1112 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1113 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1114 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1026 | # CONFIG_CRYPTO_SHA1 is not set | 1115 | # CONFIG_CRYPTO_SHA1 is not set |
| 1027 | # CONFIG_CRYPTO_SHA256 is not set | 1116 | # CONFIG_CRYPTO_SHA256 is not set |
| 1028 | # CONFIG_CRYPTO_SHA512 is not set | 1117 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1055,5 +1144,6 @@ CONFIG_CRYPTO_DES=y | |||
| 1055 | # CONFIG_CRYPTO_LZO is not set | 1144 | # CONFIG_CRYPTO_LZO is not set |
| 1056 | CONFIG_CRYPTO_HW=y | 1145 | CONFIG_CRYPTO_HW=y |
| 1057 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1146 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1147 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1058 | # CONFIG_PPC_CLOCK is not set | 1148 | # CONFIG_PPC_CLOCK is not set |
| 1059 | # CONFIG_VIRTUALIZATION is not set | 1149 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/83xx/mpc836x_mds_defconfig b/arch/powerpc/configs/83xx/mpc836x_mds_defconfig index 20fd9f58cf42..e029e9e14622 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:27 2008 | 4 | # Thu Aug 21 00:52:22 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -51,6 +53,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,12 +93,12 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | # CONFIG_KALLSYMS is not set | 96 | # CONFIG_KALLSYMS is not set |
| 93 | CONFIG_HOTPLUG=y | 97 | CONFIG_HOTPLUG=y |
| 94 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
| 95 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
| 96 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
| 101 | CONFIG_PCSPKR_PLATFORM=y | ||
| 97 | CONFIG_COMPAT_BRK=y | 102 | CONFIG_COMPAT_BRK=y |
| 98 | CONFIG_BASE_FULL=y | 103 | CONFIG_BASE_FULL=y |
| 99 | CONFIG_FUTEX=y | 104 | CONFIG_FUTEX=y |
| @@ -111,10 +116,16 @@ CONFIG_SLUB=y | |||
| 111 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
| 112 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 113 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 114 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 115 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | 124 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 125 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 126 | # CONFIG_HAVE_CLK is not set | ||
| 117 | CONFIG_PROC_PAGE_MONITOR=y | 127 | CONFIG_PROC_PAGE_MONITOR=y |
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 118 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
| 119 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
| 120 | # CONFIG_TINY_SHMEM is not set | 131 | # CONFIG_TINY_SHMEM is not set |
| @@ -125,12 +136,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 136 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 126 | # CONFIG_MODVERSIONS is not set | 137 | # CONFIG_MODVERSIONS is not set |
| 127 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 138 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 128 | # CONFIG_KMOD is not set | 139 | CONFIG_KMOD=y |
| 129 | CONFIG_BLOCK=y | 140 | CONFIG_BLOCK=y |
| 130 | # CONFIG_LBD is not set | 141 | # CONFIG_LBD is not set |
| 131 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 132 | # CONFIG_LSF is not set | 143 | # CONFIG_LSF is not set |
| 133 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
| 145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 134 | 146 | ||
| 135 | # | 147 | # |
| 136 | # IO Schedulers | 148 | # IO Schedulers |
| @@ -149,36 +161,48 @@ CONFIG_CLASSIC_RCU=y | |||
| 149 | # | 161 | # |
| 150 | # Platform support | 162 | # Platform support |
| 151 | # | 163 | # |
| 152 | # CONFIG_PPC_MULTIPLATFORM is not set | 164 | CONFIG_PPC_MULTIPLATFORM=y |
| 153 | # CONFIG_PPC_82xx is not set | 165 | CONFIG_CLASSIC32=y |
| 154 | CONFIG_PPC_83xx=y | 166 | CONFIG_PPC_CHRP=y |
| 155 | # CONFIG_PPC_86xx is not set | 167 | # CONFIG_MPC5121_ADS is not set |
| 156 | # CONFIG_PPC_MPC512x is not set | 168 | # CONFIG_MPC5121_GENERIC is not set |
| 157 | # CONFIG_PPC_MPC5121 is not set | 169 | # CONFIG_PPC_MPC52xx is not set |
| 170 | CONFIG_PPC_PMAC=y | ||
| 158 | # CONFIG_PPC_CELL is not set | 171 | # CONFIG_PPC_CELL is not set |
| 159 | # CONFIG_PPC_CELL_NATIVE is not set | 172 | # CONFIG_PPC_CELL_NATIVE is not set |
| 173 | # CONFIG_PPC_82xx is not set | ||
| 160 | # CONFIG_PQ2ADS is not set | 174 | # CONFIG_PQ2ADS is not set |
| 161 | CONFIG_MPC83xx=y | 175 | CONFIG_PPC_83xx=y |
| 162 | # CONFIG_MPC831x_RDB is not set | 176 | # CONFIG_MPC831x_RDB is not set |
| 163 | # CONFIG_MPC832x_MDS is not set | 177 | # CONFIG_MPC832x_MDS is not set |
| 164 | # CONFIG_MPC832x_RDB is not set | 178 | # CONFIG_MPC832x_RDB is not set |
| 165 | # CONFIG_MPC834x_MDS is not set | 179 | # CONFIG_MPC834x_MDS is not set |
| 166 | # CONFIG_MPC834x_ITX is not set | 180 | # CONFIG_MPC834x_ITX is not set |
| 167 | CONFIG_MPC836x_MDS=y | 181 | CONFIG_MPC836x_MDS=y |
| 182 | # CONFIG_MPC836x_RDK is not set | ||
| 168 | # CONFIG_MPC837x_MDS is not set | 183 | # CONFIG_MPC837x_MDS is not set |
| 169 | # CONFIG_MPC837x_RDB is not set | 184 | # CONFIG_MPC837x_RDB is not set |
| 170 | # CONFIG_SBC834x is not set | 185 | # CONFIG_SBC834x is not set |
| 186 | # CONFIG_ASP834x is not set | ||
| 187 | # CONFIG_PPC_86xx is not set | ||
| 188 | # CONFIG_EMBEDDED6xx is not set | ||
| 189 | CONFIG_PPC_NATIVE=y | ||
| 190 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 171 | CONFIG_IPIC=y | 191 | CONFIG_IPIC=y |
| 172 | # CONFIG_MPIC is not set | 192 | CONFIG_MPIC=y |
| 173 | # CONFIG_MPIC_WEIRD is not set | 193 | # CONFIG_MPIC_WEIRD is not set |
| 174 | # CONFIG_PPC_I8259 is not set | 194 | CONFIG_PPC_I8259=y |
| 175 | # CONFIG_PPC_RTAS is not set | 195 | CONFIG_PPC_RTAS=y |
| 196 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 197 | CONFIG_RTAS_PROC=y | ||
| 176 | # CONFIG_MMIO_NVRAM is not set | 198 | # CONFIG_MMIO_NVRAM is not set |
| 177 | # CONFIG_PPC_MPC106 is not set | 199 | CONFIG_PPC_MPC106=y |
| 178 | # CONFIG_PPC_970_NAP is not set | 200 | # CONFIG_PPC_970_NAP is not set |
| 179 | # CONFIG_PPC_INDIRECT_IO is not set | 201 | # CONFIG_PPC_INDIRECT_IO is not set |
| 180 | # CONFIG_GENERIC_IOMAP is not set | 202 | # CONFIG_GENERIC_IOMAP is not set |
| 181 | # CONFIG_CPU_FREQ is not set | 203 | # CONFIG_CPU_FREQ is not set |
| 204 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 205 | # CONFIG_TAU is not set | ||
| 182 | CONFIG_QUICC_ENGINE=y | 206 | CONFIG_QUICC_ENGINE=y |
| 183 | # CONFIG_FSL_ULI1575 is not set | 207 | # CONFIG_FSL_ULI1575 is not set |
| 184 | 208 | ||
| @@ -195,7 +219,7 @@ CONFIG_HZ_250=y | |||
| 195 | # CONFIG_HZ_300 is not set | 219 | # CONFIG_HZ_300 is not set |
| 196 | # CONFIG_HZ_1000 is not set | 220 | # CONFIG_HZ_1000 is not set |
| 197 | CONFIG_HZ=250 | 221 | CONFIG_HZ=250 |
| 198 | # CONFIG_SCHED_HRTICK is not set | 222 | CONFIG_SCHED_HRTICK=y |
| 199 | CONFIG_PREEMPT_NONE=y | 223 | CONFIG_PREEMPT_NONE=y |
| 200 | # CONFIG_PREEMPT_VOLUNTARY is not set | 224 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 201 | # CONFIG_PREEMPT is not set | 225 | # CONFIG_PREEMPT is not set |
| @@ -205,6 +229,7 @@ CONFIG_BINFMT_ELF=y | |||
| 205 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 229 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 206 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 230 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 231 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 232 | # CONFIG_KEXEC is not set | ||
| 208 | CONFIG_ARCH_FLATMEM_ENABLE=y | 233 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 209 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 234 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 210 | CONFIG_SELECT_MEMORY_MODEL=y | 235 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -217,6 +242,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 242 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | 243 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 244 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 245 | CONFIG_MIGRATION=y | ||
| 220 | # CONFIG_RESOURCES_64BIT is not set | 246 | # CONFIG_RESOURCES_64BIT is not set |
| 221 | CONFIG_ZONE_DMA_FLAG=1 | 247 | CONFIG_ZONE_DMA_FLAG=1 |
| 222 | CONFIG_BOUNCE=y | 248 | CONFIG_BOUNCE=y |
| @@ -224,6 +250,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 225 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
| 226 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
| 253 | CONFIG_EXTRA_TARGETS="" | ||
| 227 | # CONFIG_PM is not set | 254 | # CONFIG_PM is not set |
| 228 | CONFIG_SECCOMP=y | 255 | CONFIG_SECCOMP=y |
| 229 | CONFIG_ISA_DMA_API=y | 256 | CONFIG_ISA_DMA_API=y |
| @@ -231,10 +258,13 @@ CONFIG_ISA_DMA_API=y | |||
| 231 | # | 258 | # |
| 232 | # Bus options | 259 | # Bus options |
| 233 | # | 260 | # |
| 261 | # CONFIG_ISA is not set | ||
| 234 | CONFIG_ZONE_DMA=y | 262 | CONFIG_ZONE_DMA=y |
| 235 | CONFIG_GENERIC_ISA_DMA=y | 263 | CONFIG_GENERIC_ISA_DMA=y |
| 236 | CONFIG_PPC_INDIRECT_PCI=y | 264 | CONFIG_PPC_INDIRECT_PCI=y |
| 237 | CONFIG_FSL_SOC=y | 265 | CONFIG_FSL_SOC=y |
| 266 | CONFIG_FSL_PCI=y | ||
| 267 | CONFIG_PPC_PCI_CHOICE=y | ||
| 238 | CONFIG_PCI=y | 268 | CONFIG_PCI=y |
| 239 | CONFIG_PCI_DOMAINS=y | 269 | CONFIG_PCI_DOMAINS=y |
| 240 | CONFIG_PCI_SYSCALL=y | 270 | CONFIG_PCI_SYSCALL=y |
| @@ -259,10 +289,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 259 | CONFIG_KERNEL_START=0xc0000000 | 289 | CONFIG_KERNEL_START=0xc0000000 |
| 260 | CONFIG_PHYSICAL_START=0x00000000 | 290 | CONFIG_PHYSICAL_START=0x00000000 |
| 261 | CONFIG_TASK_SIZE=0xc0000000 | 291 | CONFIG_TASK_SIZE=0xc0000000 |
| 262 | |||
| 263 | # | ||
| 264 | # Networking | ||
| 265 | # | ||
| 266 | CONFIG_NET=y | 292 | CONFIG_NET=y |
| 267 | 293 | ||
| 268 | # | 294 | # |
| @@ -363,6 +389,7 @@ CONFIG_OF_I2C=y | |||
| 363 | # CONFIG_PARPORT is not set | 389 | # CONFIG_PARPORT is not set |
| 364 | CONFIG_BLK_DEV=y | 390 | CONFIG_BLK_DEV=y |
| 365 | # CONFIG_BLK_DEV_FD is not set | 391 | # CONFIG_BLK_DEV_FD is not set |
| 392 | # CONFIG_MAC_FLOPPY is not set | ||
| 366 | # CONFIG_BLK_CPQ_DA is not set | 393 | # CONFIG_BLK_CPQ_DA is not set |
| 367 | # CONFIG_BLK_CPQ_CISS_DA is not set | 394 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 368 | # CONFIG_BLK_DEV_DAC960 is not set | 395 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -378,12 +405,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 378 | # CONFIG_BLK_DEV_XIP is not set | 405 | # CONFIG_BLK_DEV_XIP is not set |
| 379 | # CONFIG_CDROM_PKTCDVD is not set | 406 | # CONFIG_CDROM_PKTCDVD is not set |
| 380 | # CONFIG_ATA_OVER_ETH is not set | 407 | # CONFIG_ATA_OVER_ETH is not set |
| 408 | # CONFIG_BLK_DEV_HD is not set | ||
| 381 | CONFIG_MISC_DEVICES=y | 409 | CONFIG_MISC_DEVICES=y |
| 382 | # CONFIG_PHANTOM is not set | 410 | # CONFIG_PHANTOM is not set |
| 383 | # CONFIG_EEPROM_93CX6 is not set | 411 | # CONFIG_EEPROM_93CX6 is not set |
| 384 | # CONFIG_SGI_IOC4 is not set | 412 | # CONFIG_SGI_IOC4 is not set |
| 385 | # CONFIG_TIFM_CORE is not set | 413 | # CONFIG_TIFM_CORE is not set |
| 386 | # CONFIG_ENCLOSURE_SERVICES is not set | 414 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 415 | # CONFIG_HP_ILO is not set | ||
| 387 | CONFIG_HAVE_IDE=y | 416 | CONFIG_HAVE_IDE=y |
| 388 | # CONFIG_IDE is not set | 417 | # CONFIG_IDE is not set |
| 389 | 418 | ||
| @@ -460,7 +489,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 460 | # CONFIG_SCSI_DC390T is not set | 489 | # CONFIG_SCSI_DC390T is not set |
| 461 | # CONFIG_SCSI_NSP32 is not set | 490 | # CONFIG_SCSI_NSP32 is not set |
| 462 | # CONFIG_SCSI_DEBUG is not set | 491 | # CONFIG_SCSI_DEBUG is not set |
| 492 | # CONFIG_SCSI_MESH is not set | ||
| 493 | # CONFIG_SCSI_MAC53C94 is not set | ||
| 463 | # CONFIG_SCSI_SRP is not set | 494 | # CONFIG_SCSI_SRP is not set |
| 495 | # CONFIG_SCSI_DH is not set | ||
| 464 | # CONFIG_ATA is not set | 496 | # CONFIG_ATA is not set |
| 465 | # CONFIG_MD is not set | 497 | # CONFIG_MD is not set |
| 466 | # CONFIG_FUSION is not set | 498 | # CONFIG_FUSION is not set |
| @@ -468,12 +500,15 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 468 | # | 500 | # |
| 469 | # IEEE 1394 (FireWire) support | 501 | # IEEE 1394 (FireWire) support |
| 470 | # | 502 | # |
| 503 | |||
| 504 | # | ||
| 505 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 506 | # | ||
| 471 | # CONFIG_FIREWIRE is not set | 507 | # CONFIG_FIREWIRE is not set |
| 472 | # CONFIG_IEEE1394 is not set | 508 | # CONFIG_IEEE1394 is not set |
| 473 | # CONFIG_I2O is not set | 509 | # CONFIG_I2O is not set |
| 474 | # CONFIG_MACINTOSH_DRIVERS is not set | 510 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 475 | CONFIG_NETDEVICES=y | 511 | CONFIG_NETDEVICES=y |
| 476 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 477 | # CONFIG_DUMMY is not set | 512 | # CONFIG_DUMMY is not set |
| 478 | # CONFIG_BONDING is not set | 513 | # CONFIG_BONDING is not set |
| 479 | # CONFIG_MACVLAN is not set | 514 | # CONFIG_MACVLAN is not set |
| @@ -500,6 +535,8 @@ CONFIG_MARVELL_PHY=y | |||
| 500 | # CONFIG_MDIO_BITBANG is not set | 535 | # CONFIG_MDIO_BITBANG is not set |
| 501 | CONFIG_NET_ETHERNET=y | 536 | CONFIG_NET_ETHERNET=y |
| 502 | CONFIG_MII=y | 537 | CONFIG_MII=y |
| 538 | # CONFIG_MACE is not set | ||
| 539 | # CONFIG_BMAC is not set | ||
| 503 | # CONFIG_HAPPYMEAL is not set | 540 | # CONFIG_HAPPYMEAL is not set |
| 504 | # CONFIG_SUNGEM is not set | 541 | # CONFIG_SUNGEM is not set |
| 505 | # CONFIG_CASSINI is not set | 542 | # CONFIG_CASSINI is not set |
| @@ -517,7 +554,6 @@ CONFIG_NETDEV_1000=y | |||
| 517 | # CONFIG_DL2K is not set | 554 | # CONFIG_DL2K is not set |
| 518 | # CONFIG_E1000 is not set | 555 | # CONFIG_E1000 is not set |
| 519 | # CONFIG_E1000E is not set | 556 | # CONFIG_E1000E is not set |
| 520 | # CONFIG_E1000E_ENABLED is not set | ||
| 521 | # CONFIG_IP1000 is not set | 557 | # CONFIG_IP1000 is not set |
| 522 | # CONFIG_IGB is not set | 558 | # CONFIG_IGB is not set |
| 523 | # CONFIG_NS83820 is not set | 559 | # CONFIG_NS83820 is not set |
| @@ -532,12 +568,13 @@ CONFIG_NETDEV_1000=y | |||
| 532 | # CONFIG_BNX2 is not set | 568 | # CONFIG_BNX2 is not set |
| 533 | # CONFIG_GIANFAR is not set | 569 | # CONFIG_GIANFAR is not set |
| 534 | CONFIG_UCC_GETH=y | 570 | CONFIG_UCC_GETH=y |
| 535 | # CONFIG_UGETH_NAPI is not set | ||
| 536 | # CONFIG_UGETH_MAGIC_PACKET is not set | 571 | # CONFIG_UGETH_MAGIC_PACKET is not set |
| 537 | # CONFIG_UGETH_FILTERING is not set | 572 | # CONFIG_UGETH_FILTERING is not set |
| 538 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 573 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
| 574 | # CONFIG_MV643XX_ETH is not set | ||
| 539 | # CONFIG_QLA3XXX is not set | 575 | # CONFIG_QLA3XXX is not set |
| 540 | # CONFIG_ATL1 is not set | 576 | # CONFIG_ATL1 is not set |
| 577 | # CONFIG_ATL1E is not set | ||
| 541 | CONFIG_NETDEV_10000=y | 578 | CONFIG_NETDEV_10000=y |
| 542 | # CONFIG_CHELSIO_T1 is not set | 579 | # CONFIG_CHELSIO_T1 is not set |
| 543 | # CONFIG_CHELSIO_T3 is not set | 580 | # CONFIG_CHELSIO_T3 is not set |
| @@ -626,12 +663,15 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 626 | # CONFIG_SERIAL_UARTLITE is not set | 663 | # CONFIG_SERIAL_UARTLITE is not set |
| 627 | CONFIG_SERIAL_CORE=y | 664 | CONFIG_SERIAL_CORE=y |
| 628 | CONFIG_SERIAL_CORE_CONSOLE=y | 665 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 666 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 629 | # CONFIG_SERIAL_JSM is not set | 667 | # CONFIG_SERIAL_JSM is not set |
| 630 | # CONFIG_SERIAL_OF_PLATFORM is not set | 668 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 631 | # CONFIG_SERIAL_QE is not set | 669 | # CONFIG_SERIAL_QE is not set |
| 632 | CONFIG_UNIX98_PTYS=y | 670 | CONFIG_UNIX98_PTYS=y |
| 633 | CONFIG_LEGACY_PTYS=y | 671 | CONFIG_LEGACY_PTYS=y |
| 634 | CONFIG_LEGACY_PTY_COUNT=256 | 672 | CONFIG_LEGACY_PTY_COUNT=256 |
| 673 | # CONFIG_BRIQ_PANEL is not set | ||
| 674 | # CONFIG_HVC_RTAS is not set | ||
| 635 | # CONFIG_IPMI_HANDLER is not set | 675 | # CONFIG_IPMI_HANDLER is not set |
| 636 | CONFIG_HW_RANDOM=y | 676 | CONFIG_HW_RANDOM=y |
| 637 | # CONFIG_NVRAM is not set | 677 | # CONFIG_NVRAM is not set |
| @@ -643,42 +683,69 @@ CONFIG_DEVPORT=y | |||
| 643 | CONFIG_I2C=y | 683 | CONFIG_I2C=y |
| 644 | CONFIG_I2C_BOARDINFO=y | 684 | CONFIG_I2C_BOARDINFO=y |
| 645 | CONFIG_I2C_CHARDEV=y | 685 | CONFIG_I2C_CHARDEV=y |
| 686 | CONFIG_I2C_HELPER_AUTO=y | ||
| 646 | 687 | ||
| 647 | # | 688 | # |
| 648 | # I2C Hardware Bus support | 689 | # I2C Hardware Bus support |
| 649 | # | 690 | # |
| 691 | |||
| 692 | # | ||
| 693 | # PC SMBus host controller drivers | ||
| 694 | # | ||
| 650 | # CONFIG_I2C_ALI1535 is not set | 695 | # CONFIG_I2C_ALI1535 is not set |
| 651 | # CONFIG_I2C_ALI1563 is not set | 696 | # CONFIG_I2C_ALI1563 is not set |
| 652 | # CONFIG_I2C_ALI15X3 is not set | 697 | # CONFIG_I2C_ALI15X3 is not set |
| 653 | # CONFIG_I2C_AMD756 is not set | 698 | # CONFIG_I2C_AMD756 is not set |
| 654 | # CONFIG_I2C_AMD8111 is not set | 699 | # CONFIG_I2C_AMD8111 is not set |
| 655 | # CONFIG_I2C_I801 is not set | 700 | # CONFIG_I2C_I801 is not set |
| 656 | # CONFIG_I2C_I810 is not set | 701 | # CONFIG_I2C_ISCH is not set |
| 657 | # CONFIG_I2C_PIIX4 is not set | 702 | # CONFIG_I2C_PIIX4 is not set |
| 658 | CONFIG_I2C_MPC=y | ||
| 659 | # CONFIG_I2C_NFORCE2 is not set | 703 | # CONFIG_I2C_NFORCE2 is not set |
| 660 | # CONFIG_I2C_OCORES is not set | ||
| 661 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 662 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 663 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 664 | # CONFIG_I2C_SIMTEC is not set | ||
| 665 | # CONFIG_I2C_SIS5595 is not set | 704 | # CONFIG_I2C_SIS5595 is not set |
| 666 | # CONFIG_I2C_SIS630 is not set | 705 | # CONFIG_I2C_SIS630 is not set |
| 667 | # CONFIG_I2C_SIS96X is not set | 706 | # CONFIG_I2C_SIS96X is not set |
| 668 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 669 | # CONFIG_I2C_STUB is not set | ||
| 670 | # CONFIG_I2C_VIA is not set | 707 | # CONFIG_I2C_VIA is not set |
| 671 | # CONFIG_I2C_VIAPRO is not set | 708 | # CONFIG_I2C_VIAPRO is not set |
| 709 | |||
| 710 | # | ||
| 711 | # Mac SMBus host controller drivers | ||
| 712 | # | ||
| 713 | # CONFIG_I2C_HYDRA is not set | ||
| 714 | CONFIG_I2C_POWERMAC=y | ||
| 715 | |||
| 716 | # | ||
| 717 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 718 | # | ||
| 719 | CONFIG_I2C_MPC=y | ||
| 720 | # CONFIG_I2C_OCORES is not set | ||
| 721 | # CONFIG_I2C_SIMTEC is not set | ||
| 722 | |||
| 723 | # | ||
| 724 | # External I2C/SMBus adapter drivers | ||
| 725 | # | ||
| 726 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 727 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 728 | |||
| 729 | # | ||
| 730 | # Graphics adapter I2C/DDC channel drivers | ||
| 731 | # | ||
| 672 | # CONFIG_I2C_VOODOO3 is not set | 732 | # CONFIG_I2C_VOODOO3 is not set |
| 733 | |||
| 734 | # | ||
| 735 | # Other I2C/SMBus bus drivers | ||
| 736 | # | ||
| 673 | # CONFIG_I2C_PCA_PLATFORM is not set | 737 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 738 | # CONFIG_I2C_STUB is not set | ||
| 674 | 739 | ||
| 675 | # | 740 | # |
| 676 | # Miscellaneous I2C Chip support | 741 | # Miscellaneous I2C Chip support |
| 677 | # | 742 | # |
| 678 | # CONFIG_DS1682 is not set | 743 | # CONFIG_DS1682 is not set |
| 744 | # CONFIG_AT24 is not set | ||
| 679 | # CONFIG_SENSORS_EEPROM is not set | 745 | # CONFIG_SENSORS_EEPROM is not set |
| 680 | # CONFIG_SENSORS_PCF8574 is not set | 746 | # CONFIG_SENSORS_PCF8574 is not set |
| 681 | # CONFIG_PCF8575 is not set | 747 | # CONFIG_PCF8575 is not set |
| 748 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 682 | # CONFIG_SENSORS_PCF8591 is not set | 749 | # CONFIG_SENSORS_PCF8591 is not set |
| 683 | # CONFIG_SENSORS_MAX6875 is not set | 750 | # CONFIG_SENSORS_MAX6875 is not set |
| 684 | # CONFIG_SENSORS_TSL2550 is not set | 751 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -687,10 +754,13 @@ CONFIG_I2C_MPC=y | |||
| 687 | # CONFIG_I2C_DEBUG_BUS is not set | 754 | # CONFIG_I2C_DEBUG_BUS is not set |
| 688 | # CONFIG_I2C_DEBUG_CHIP is not set | 755 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 689 | # CONFIG_SPI is not set | 756 | # CONFIG_SPI is not set |
| 757 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 758 | # CONFIG_GPIOLIB is not set | ||
| 690 | # CONFIG_W1 is not set | 759 | # CONFIG_W1 is not set |
| 691 | # CONFIG_POWER_SUPPLY is not set | 760 | # CONFIG_POWER_SUPPLY is not set |
| 692 | CONFIG_HWMON=y | 761 | CONFIG_HWMON=y |
| 693 | # CONFIG_HWMON_VID is not set | 762 | # CONFIG_HWMON_VID is not set |
| 763 | # CONFIG_SENSORS_AD7414 is not set | ||
| 694 | # CONFIG_SENSORS_AD7418 is not set | 764 | # CONFIG_SENSORS_AD7418 is not set |
| 695 | # CONFIG_SENSORS_ADM1021 is not set | 765 | # CONFIG_SENSORS_ADM1021 is not set |
| 696 | # CONFIG_SENSORS_ADM1025 is not set | 766 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -700,6 +770,7 @@ CONFIG_HWMON=y | |||
| 700 | # CONFIG_SENSORS_ADM9240 is not set | 770 | # CONFIG_SENSORS_ADM9240 is not set |
| 701 | # CONFIG_SENSORS_ADT7470 is not set | 771 | # CONFIG_SENSORS_ADT7470 is not set |
| 702 | # CONFIG_SENSORS_ADT7473 is not set | 772 | # CONFIG_SENSORS_ADT7473 is not set |
| 773 | # CONFIG_SENSORS_AMS is not set | ||
| 703 | # CONFIG_SENSORS_ATXP1 is not set | 774 | # CONFIG_SENSORS_ATXP1 is not set |
| 704 | # CONFIG_SENSORS_DS1621 is not set | 775 | # CONFIG_SENSORS_DS1621 is not set |
| 705 | # CONFIG_SENSORS_I5K_AMB is not set | 776 | # CONFIG_SENSORS_I5K_AMB is not set |
| @@ -744,6 +815,7 @@ CONFIG_HWMON=y | |||
| 744 | # CONFIG_SENSORS_W83627EHF is not set | 815 | # CONFIG_SENSORS_W83627EHF is not set |
| 745 | # CONFIG_HWMON_DEBUG_CHIP is not set | 816 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 746 | # CONFIG_THERMAL is not set | 817 | # CONFIG_THERMAL is not set |
| 818 | # CONFIG_THERMAL_HWMON is not set | ||
| 747 | CONFIG_WATCHDOG=y | 819 | CONFIG_WATCHDOG=y |
| 748 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 820 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 749 | 821 | ||
| @@ -751,7 +823,9 @@ CONFIG_WATCHDOG=y | |||
| 751 | # Watchdog Device Drivers | 823 | # Watchdog Device Drivers |
| 752 | # | 824 | # |
| 753 | # CONFIG_SOFT_WATCHDOG is not set | 825 | # CONFIG_SOFT_WATCHDOG is not set |
| 754 | CONFIG_83xx_WDT=y | 826 | # CONFIG_ALIM7101_WDT is not set |
| 827 | # CONFIG_8xxx_WDT is not set | ||
| 828 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 755 | 829 | ||
| 756 | # | 830 | # |
| 757 | # PCI-based Watchdog Cards | 831 | # PCI-based Watchdog Cards |
| @@ -768,8 +842,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 768 | # | 842 | # |
| 769 | # Multifunction device drivers | 843 | # Multifunction device drivers |
| 770 | # | 844 | # |
| 845 | # CONFIG_MFD_CORE is not set | ||
| 771 | # CONFIG_MFD_SM501 is not set | 846 | # CONFIG_MFD_SM501 is not set |
| 772 | # CONFIG_HTC_PASIC3 is not set | 847 | # CONFIG_HTC_PASIC3 is not set |
| 848 | # CONFIG_MFD_TMIO is not set | ||
| 773 | 849 | ||
| 774 | # | 850 | # |
| 775 | # Multimedia devices | 851 | # Multimedia devices |
| @@ -801,10 +877,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 801 | # Display device support | 877 | # Display device support |
| 802 | # | 878 | # |
| 803 | # CONFIG_DISPLAY_SUPPORT is not set | 879 | # CONFIG_DISPLAY_SUPPORT is not set |
| 804 | |||
| 805 | # | ||
| 806 | # Sound | ||
| 807 | # | ||
| 808 | # CONFIG_SOUND is not set | 880 | # CONFIG_SOUND is not set |
| 809 | CONFIG_HID_SUPPORT=y | 881 | CONFIG_HID_SUPPORT=y |
| 810 | CONFIG_HID=y | 882 | CONFIG_HID=y |
| @@ -819,6 +891,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 819 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 891 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 820 | 892 | ||
| 821 | # | 893 | # |
| 894 | # Enable Host or Gadget support to see Inventra options | ||
| 895 | # | ||
| 896 | |||
| 897 | # | ||
| 822 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 898 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 823 | # | 899 | # |
| 824 | # CONFIG_USB_GADGET is not set | 900 | # CONFIG_USB_GADGET is not set |
| @@ -857,6 +933,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 857 | # CONFIG_RTC_DRV_PCF8583 is not set | 933 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 858 | # CONFIG_RTC_DRV_M41T80 is not set | 934 | # CONFIG_RTC_DRV_M41T80 is not set |
| 859 | # CONFIG_RTC_DRV_S35390A is not set | 935 | # CONFIG_RTC_DRV_S35390A is not set |
| 936 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 860 | 937 | ||
| 861 | # | 938 | # |
| 862 | # SPI RTC drivers | 939 | # SPI RTC drivers |
| @@ -945,6 +1022,7 @@ CONFIG_TMPFS=y | |||
| 945 | # CONFIG_CRAMFS is not set | 1022 | # CONFIG_CRAMFS is not set |
| 946 | # CONFIG_VXFS_FS is not set | 1023 | # CONFIG_VXFS_FS is not set |
| 947 | # CONFIG_MINIX_FS is not set | 1024 | # CONFIG_MINIX_FS is not set |
| 1025 | # CONFIG_OMFS_FS is not set | ||
| 948 | # CONFIG_HPFS_FS is not set | 1026 | # CONFIG_HPFS_FS is not set |
| 949 | # CONFIG_QNX4FS_FS is not set | 1027 | # CONFIG_QNX4FS_FS is not set |
| 950 | # CONFIG_ROMFS_FS is not set | 1028 | # CONFIG_ROMFS_FS is not set |
| @@ -955,14 +1033,13 @@ CONFIG_NFS_FS=y | |||
| 955 | CONFIG_NFS_V3=y | 1033 | CONFIG_NFS_V3=y |
| 956 | # CONFIG_NFS_V3_ACL is not set | 1034 | # CONFIG_NFS_V3_ACL is not set |
| 957 | CONFIG_NFS_V4=y | 1035 | CONFIG_NFS_V4=y |
| 958 | # CONFIG_NFSD is not set | ||
| 959 | CONFIG_ROOT_NFS=y | 1036 | CONFIG_ROOT_NFS=y |
| 1037 | # CONFIG_NFSD is not set | ||
| 960 | CONFIG_LOCKD=y | 1038 | CONFIG_LOCKD=y |
| 961 | CONFIG_LOCKD_V4=y | 1039 | CONFIG_LOCKD_V4=y |
| 962 | CONFIG_NFS_COMMON=y | 1040 | CONFIG_NFS_COMMON=y |
| 963 | CONFIG_SUNRPC=y | 1041 | CONFIG_SUNRPC=y |
| 964 | CONFIG_SUNRPC_GSS=y | 1042 | CONFIG_SUNRPC_GSS=y |
| 965 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 966 | CONFIG_RPCSEC_GSS_KRB5=y | 1043 | CONFIG_RPCSEC_GSS_KRB5=y |
| 967 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1044 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 968 | # CONFIG_SMB_FS is not set | 1045 | # CONFIG_SMB_FS is not set |
| @@ -992,6 +1069,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 992 | # CONFIG_DLM is not set | 1069 | # CONFIG_DLM is not set |
| 993 | CONFIG_UCC_FAST=y | 1070 | CONFIG_UCC_FAST=y |
| 994 | CONFIG_UCC=y | 1071 | CONFIG_UCC=y |
| 1072 | # CONFIG_QE_GPIO is not set | ||
| 995 | 1073 | ||
| 996 | # | 1074 | # |
| 997 | # Library routines | 1075 | # Library routines |
| @@ -1000,6 +1078,7 @@ CONFIG_BITREVERSE=y | |||
| 1000 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1078 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1001 | # CONFIG_CRC_CCITT is not set | 1079 | # CONFIG_CRC_CCITT is not set |
| 1002 | # CONFIG_CRC16 is not set | 1080 | # CONFIG_CRC16 is not set |
| 1081 | # CONFIG_CRC_T10DIF is not set | ||
| 1003 | # CONFIG_CRC_ITU_T is not set | 1082 | # CONFIG_CRC_ITU_T is not set |
| 1004 | CONFIG_CRC32=y | 1083 | CONFIG_CRC32=y |
| 1005 | # CONFIG_CRC7 is not set | 1084 | # CONFIG_CRC7 is not set |
| @@ -1025,8 +1104,18 @@ CONFIG_FRAME_WARN=1024 | |||
| 1025 | # CONFIG_SLUB_DEBUG_ON is not set | 1104 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1026 | # CONFIG_SLUB_STATS is not set | 1105 | # CONFIG_SLUB_STATS is not set |
| 1027 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1106 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1107 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1108 | # CONFIG_LATENCYTOP is not set | ||
| 1109 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1110 | CONFIG_HAVE_FTRACE=y | ||
| 1111 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1112 | # CONFIG_FTRACE is not set | ||
| 1113 | # CONFIG_SCHED_TRACER is not set | ||
| 1114 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1028 | # CONFIG_SAMPLES is not set | 1115 | # CONFIG_SAMPLES is not set |
| 1116 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1029 | # CONFIG_IRQSTACKS is not set | 1117 | # CONFIG_IRQSTACKS is not set |
| 1118 | # CONFIG_BOOTX_TEXT is not set | ||
| 1030 | # CONFIG_PPC_EARLY_DEBUG is not set | 1119 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1031 | 1120 | ||
| 1032 | # | 1121 | # |
| @@ -1080,6 +1169,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1080 | # CONFIG_CRYPTO_MD4 is not set | 1169 | # CONFIG_CRYPTO_MD4 is not set |
| 1081 | CONFIG_CRYPTO_MD5=y | 1170 | CONFIG_CRYPTO_MD5=y |
| 1082 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1171 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1172 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1173 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1174 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1175 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1083 | # CONFIG_CRYPTO_SHA1 is not set | 1176 | # CONFIG_CRYPTO_SHA1 is not set |
| 1084 | # CONFIG_CRYPTO_SHA256 is not set | 1177 | # CONFIG_CRYPTO_SHA256 is not set |
| 1085 | # CONFIG_CRYPTO_SHA512 is not set | 1178 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1112,6 +1205,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1112 | # CONFIG_CRYPTO_LZO is not set | 1205 | # CONFIG_CRYPTO_LZO is not set |
| 1113 | CONFIG_CRYPTO_HW=y | 1206 | CONFIG_CRYPTO_HW=y |
| 1114 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1207 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1208 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1115 | # CONFIG_PPC_CLOCK is not set | 1209 | # CONFIG_PPC_CLOCK is not set |
| 1116 | CONFIG_PPC_LIB_RHEAP=y | 1210 | CONFIG_PPC_LIB_RHEAP=y |
| 1117 | # CONFIG_VIRTUALIZATION is not set | 1211 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig b/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig index d2c435f0da42..7d674be702fe 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.26-rc2 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon May 19 21:12:32 2008 | 4 | # Thu Aug 21 00:52:24 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -52,6 +54,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 52 | CONFIG_AUDIT_ARCH=y | 54 | CONFIG_AUDIT_ARCH=y |
| 53 | CONFIG_GENERIC_BUG=y | 55 | CONFIG_GENERIC_BUG=y |
| 54 | CONFIG_DEFAULT_UIMAGE=y | 56 | CONFIG_DEFAULT_UIMAGE=y |
| 57 | CONFIG_HIBERNATE_32=y | ||
| 58 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 59 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 55 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 56 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 57 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -89,12 +94,12 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 94 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 95 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 96 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | # CONFIG_KALLSYMS is not set | 97 | # CONFIG_KALLSYMS is not set |
| 94 | CONFIG_HOTPLUG=y | 98 | CONFIG_HOTPLUG=y |
| 95 | CONFIG_PRINTK=y | 99 | CONFIG_PRINTK=y |
| 96 | CONFIG_BUG=y | 100 | CONFIG_BUG=y |
| 97 | CONFIG_ELF_CORE=y | 101 | CONFIG_ELF_CORE=y |
| 102 | CONFIG_PCSPKR_PLATFORM=y | ||
| 98 | CONFIG_COMPAT_BRK=y | 103 | CONFIG_COMPAT_BRK=y |
| 99 | CONFIG_BASE_FULL=y | 104 | CONFIG_BASE_FULL=y |
| 100 | CONFIG_FUTEX=y | 105 | CONFIG_FUTEX=y |
| @@ -112,10 +117,16 @@ CONFIG_SLUB=y | |||
| 112 | # CONFIG_PROFILING is not set | 117 | # CONFIG_PROFILING is not set |
| 113 | # CONFIG_MARKERS is not set | 118 | # CONFIG_MARKERS is not set |
| 114 | CONFIG_HAVE_OPROFILE=y | 119 | CONFIG_HAVE_OPROFILE=y |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 121 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 122 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 123 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 125 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 126 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 127 | # CONFIG_HAVE_CLK is not set | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 128 | CONFIG_PROC_PAGE_MONITOR=y |
| 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 130 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 131 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | 132 | # CONFIG_TINY_SHMEM is not set |
| @@ -126,12 +137,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 137 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 127 | # CONFIG_MODVERSIONS is not set | 138 | # CONFIG_MODVERSIONS is not set |
| 128 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 139 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 129 | # CONFIG_KMOD is not set | 140 | CONFIG_KMOD=y |
| 130 | CONFIG_BLOCK=y | 141 | CONFIG_BLOCK=y |
| 131 | # CONFIG_LBD is not set | 142 | # CONFIG_LBD is not set |
| 132 | # CONFIG_BLK_DEV_IO_TRACE is not set | 143 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 133 | # CONFIG_LSF is not set | 144 | # CONFIG_LSF is not set |
| 134 | # CONFIG_BLK_DEV_BSG is not set | 145 | # CONFIG_BLK_DEV_BSG is not set |
| 146 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 135 | 147 | ||
| 136 | # | 148 | # |
| 137 | # IO Schedulers | 149 | # IO Schedulers |
| @@ -150,16 +162,18 @@ CONFIG_CLASSIC_RCU=y | |||
| 150 | # | 162 | # |
| 151 | # Platform support | 163 | # Platform support |
| 152 | # | 164 | # |
| 153 | # CONFIG_PPC_MULTIPLATFORM is not set | 165 | CONFIG_PPC_MULTIPLATFORM=y |
| 154 | # CONFIG_PPC_82xx is not set | 166 | CONFIG_CLASSIC32=y |
| 155 | CONFIG_PPC_83xx=y | 167 | CONFIG_PPC_CHRP=y |
| 156 | # CONFIG_PPC_86xx is not set | 168 | # CONFIG_MPC5121_ADS is not set |
| 157 | # CONFIG_PPC_MPC512x is not set | 169 | # CONFIG_MPC5121_GENERIC is not set |
| 158 | # CONFIG_PPC_MPC5121 is not set | 170 | # CONFIG_PPC_MPC52xx is not set |
| 171 | CONFIG_PPC_PMAC=y | ||
| 159 | # CONFIG_PPC_CELL is not set | 172 | # CONFIG_PPC_CELL is not set |
| 160 | # CONFIG_PPC_CELL_NATIVE is not set | 173 | # CONFIG_PPC_CELL_NATIVE is not set |
| 174 | # CONFIG_PPC_82xx is not set | ||
| 161 | # CONFIG_PQ2ADS is not set | 175 | # CONFIG_PQ2ADS is not set |
| 162 | CONFIG_MPC83xx=y | 176 | CONFIG_PPC_83xx=y |
| 163 | # CONFIG_MPC831x_RDB is not set | 177 | # CONFIG_MPC831x_RDB is not set |
| 164 | # CONFIG_MPC832x_MDS is not set | 178 | # CONFIG_MPC832x_MDS is not set |
| 165 | # CONFIG_MPC832x_RDB is not set | 179 | # CONFIG_MPC832x_RDB is not set |
| @@ -170,17 +184,26 @@ CONFIG_MPC836x_RDK=y | |||
| 170 | # CONFIG_MPC837x_MDS is not set | 184 | # CONFIG_MPC837x_MDS is not set |
| 171 | # CONFIG_MPC837x_RDB is not set | 185 | # CONFIG_MPC837x_RDB is not set |
| 172 | # CONFIG_SBC834x is not set | 186 | # CONFIG_SBC834x is not set |
| 187 | # CONFIG_ASP834x is not set | ||
| 188 | # CONFIG_PPC_86xx is not set | ||
| 189 | # CONFIG_EMBEDDED6xx is not set | ||
| 190 | CONFIG_PPC_NATIVE=y | ||
| 191 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 173 | CONFIG_IPIC=y | 192 | CONFIG_IPIC=y |
| 174 | # CONFIG_MPIC is not set | 193 | CONFIG_MPIC=y |
| 175 | # CONFIG_MPIC_WEIRD is not set | 194 | # CONFIG_MPIC_WEIRD is not set |
| 176 | # CONFIG_PPC_I8259 is not set | 195 | CONFIG_PPC_I8259=y |
| 177 | # CONFIG_PPC_RTAS is not set | 196 | CONFIG_PPC_RTAS=y |
| 197 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 198 | CONFIG_RTAS_PROC=y | ||
| 178 | # CONFIG_MMIO_NVRAM is not set | 199 | # CONFIG_MMIO_NVRAM is not set |
| 179 | # CONFIG_PPC_MPC106 is not set | 200 | CONFIG_PPC_MPC106=y |
| 180 | # CONFIG_PPC_970_NAP is not set | 201 | # CONFIG_PPC_970_NAP is not set |
| 181 | # CONFIG_PPC_INDIRECT_IO is not set | 202 | # CONFIG_PPC_INDIRECT_IO is not set |
| 182 | # CONFIG_GENERIC_IOMAP is not set | 203 | # CONFIG_GENERIC_IOMAP is not set |
| 183 | # CONFIG_CPU_FREQ is not set | 204 | # CONFIG_CPU_FREQ is not set |
| 205 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 206 | # CONFIG_TAU is not set | ||
| 184 | CONFIG_QUICC_ENGINE=y | 207 | CONFIG_QUICC_ENGINE=y |
| 185 | # CONFIG_FSL_ULI1575 is not set | 208 | # CONFIG_FSL_ULI1575 is not set |
| 186 | 209 | ||
| @@ -207,6 +230,7 @@ CONFIG_BINFMT_ELF=y | |||
| 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 230 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 208 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 231 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 209 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 232 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 233 | # CONFIG_KEXEC is not set | ||
| 210 | CONFIG_ARCH_FLATMEM_ENABLE=y | 234 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 211 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 235 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 212 | CONFIG_SELECT_MEMORY_MODEL=y | 236 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -219,6 +243,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 243 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 220 | CONFIG_PAGEFLAGS_EXTENDED=y | 244 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 245 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 246 | CONFIG_MIGRATION=y | ||
| 222 | # CONFIG_RESOURCES_64BIT is not set | 247 | # CONFIG_RESOURCES_64BIT is not set |
| 223 | CONFIG_ZONE_DMA_FLAG=1 | 248 | CONFIG_ZONE_DMA_FLAG=1 |
| 224 | CONFIG_BOUNCE=y | 249 | CONFIG_BOUNCE=y |
| @@ -226,6 +251,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 226 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 227 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
| 228 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
| 254 | CONFIG_EXTRA_TARGETS="" | ||
| 229 | # CONFIG_PM is not set | 255 | # CONFIG_PM is not set |
| 230 | CONFIG_SECCOMP=y | 256 | CONFIG_SECCOMP=y |
| 231 | CONFIG_ISA_DMA_API=y | 257 | CONFIG_ISA_DMA_API=y |
| @@ -233,12 +259,15 @@ CONFIG_ISA_DMA_API=y | |||
| 233 | # | 259 | # |
| 234 | # Bus options | 260 | # Bus options |
| 235 | # | 261 | # |
| 262 | # CONFIG_ISA is not set | ||
| 236 | CONFIG_ZONE_DMA=y | 263 | CONFIG_ZONE_DMA=y |
| 237 | CONFIG_GENERIC_ISA_DMA=y | 264 | CONFIG_GENERIC_ISA_DMA=y |
| 238 | CONFIG_PPC_INDIRECT_PCI=y | 265 | CONFIG_PPC_INDIRECT_PCI=y |
| 239 | CONFIG_FSL_SOC=y | 266 | CONFIG_FSL_SOC=y |
| 267 | CONFIG_FSL_PCI=y | ||
| 240 | CONFIG_FSL_LBC=y | 268 | CONFIG_FSL_LBC=y |
| 241 | CONFIG_FSL_GTM=y | 269 | CONFIG_FSL_GTM=y |
| 270 | CONFIG_PPC_PCI_CHOICE=y | ||
| 242 | CONFIG_PCI=y | 271 | CONFIG_PCI=y |
| 243 | CONFIG_PCI_DOMAINS=y | 272 | CONFIG_PCI_DOMAINS=y |
| 244 | CONFIG_PCI_SYSCALL=y | 273 | CONFIG_PCI_SYSCALL=y |
| @@ -263,10 +292,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 263 | CONFIG_KERNEL_START=0xc0000000 | 292 | CONFIG_KERNEL_START=0xc0000000 |
| 264 | CONFIG_PHYSICAL_START=0x00000000 | 293 | CONFIG_PHYSICAL_START=0x00000000 |
| 265 | CONFIG_TASK_SIZE=0xc0000000 | 294 | CONFIG_TASK_SIZE=0xc0000000 |
| 266 | |||
| 267 | # | ||
| 268 | # Networking | ||
| 269 | # | ||
| 270 | CONFIG_NET=y | 295 | CONFIG_NET=y |
| 271 | 296 | ||
| 272 | # | 297 | # |
| @@ -359,6 +384,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 359 | CONFIG_STANDALONE=y | 384 | CONFIG_STANDALONE=y |
| 360 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 385 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 361 | CONFIG_FW_LOADER=y | 386 | CONFIG_FW_LOADER=y |
| 387 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 388 | CONFIG_EXTRA_FIRMWARE="" | ||
| 362 | # CONFIG_SYS_HYPERVISOR is not set | 389 | # CONFIG_SYS_HYPERVISOR is not set |
| 363 | # CONFIG_CONNECTOR is not set | 390 | # CONFIG_CONNECTOR is not set |
| 364 | CONFIG_MTD=y | 391 | CONFIG_MTD=y |
| @@ -449,9 +476,11 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 449 | CONFIG_OF_DEVICE=y | 476 | CONFIG_OF_DEVICE=y |
| 450 | CONFIG_OF_GPIO=y | 477 | CONFIG_OF_GPIO=y |
| 451 | CONFIG_OF_I2C=y | 478 | CONFIG_OF_I2C=y |
| 479 | CONFIG_OF_SPI=y | ||
| 452 | # CONFIG_PARPORT is not set | 480 | # CONFIG_PARPORT is not set |
| 453 | CONFIG_BLK_DEV=y | 481 | CONFIG_BLK_DEV=y |
| 454 | # CONFIG_BLK_DEV_FD is not set | 482 | # CONFIG_BLK_DEV_FD is not set |
| 483 | # CONFIG_MAC_FLOPPY is not set | ||
| 455 | # CONFIG_BLK_CPQ_DA is not set | 484 | # CONFIG_BLK_CPQ_DA is not set |
| 456 | # CONFIG_BLK_CPQ_CISS_DA is not set | 485 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 457 | # CONFIG_BLK_DEV_DAC960 is not set | 486 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -467,12 +496,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 467 | # CONFIG_BLK_DEV_XIP is not set | 496 | # CONFIG_BLK_DEV_XIP is not set |
| 468 | # CONFIG_CDROM_PKTCDVD is not set | 497 | # CONFIG_CDROM_PKTCDVD is not set |
| 469 | # CONFIG_ATA_OVER_ETH is not set | 498 | # CONFIG_ATA_OVER_ETH is not set |
| 499 | # CONFIG_BLK_DEV_HD is not set | ||
| 470 | CONFIG_MISC_DEVICES=y | 500 | CONFIG_MISC_DEVICES=y |
| 471 | # CONFIG_PHANTOM is not set | 501 | # CONFIG_PHANTOM is not set |
| 472 | # CONFIG_EEPROM_93CX6 is not set | 502 | # CONFIG_EEPROM_93CX6 is not set |
| 473 | # CONFIG_SGI_IOC4 is not set | 503 | # CONFIG_SGI_IOC4 is not set |
| 474 | # CONFIG_TIFM_CORE is not set | 504 | # CONFIG_TIFM_CORE is not set |
| 475 | # CONFIG_ENCLOSURE_SERVICES is not set | 505 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 506 | # CONFIG_HP_ILO is not set | ||
| 476 | CONFIG_HAVE_IDE=y | 507 | CONFIG_HAVE_IDE=y |
| 477 | # CONFIG_IDE is not set | 508 | # CONFIG_IDE is not set |
| 478 | 509 | ||
| @@ -490,12 +521,15 @@ CONFIG_HAVE_IDE=y | |||
| 490 | # | 521 | # |
| 491 | # IEEE 1394 (FireWire) support | 522 | # IEEE 1394 (FireWire) support |
| 492 | # | 523 | # |
| 524 | |||
| 525 | # | ||
| 526 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 527 | # | ||
| 493 | # CONFIG_FIREWIRE is not set | 528 | # CONFIG_FIREWIRE is not set |
| 494 | # CONFIG_IEEE1394 is not set | 529 | # CONFIG_IEEE1394 is not set |
| 495 | # CONFIG_I2O is not set | 530 | # CONFIG_I2O is not set |
| 496 | # CONFIG_MACINTOSH_DRIVERS is not set | 531 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 497 | CONFIG_NETDEVICES=y | 532 | CONFIG_NETDEVICES=y |
| 498 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 499 | # CONFIG_DUMMY is not set | 533 | # CONFIG_DUMMY is not set |
| 500 | # CONFIG_BONDING is not set | 534 | # CONFIG_BONDING is not set |
| 501 | # CONFIG_MACVLAN is not set | 535 | # CONFIG_MACVLAN is not set |
| @@ -526,7 +560,6 @@ CONFIG_NETDEV_1000=y | |||
| 526 | # CONFIG_DL2K is not set | 560 | # CONFIG_DL2K is not set |
| 527 | # CONFIG_E1000 is not set | 561 | # CONFIG_E1000 is not set |
| 528 | # CONFIG_E1000E is not set | 562 | # CONFIG_E1000E is not set |
| 529 | # CONFIG_E1000E_ENABLED is not set | ||
| 530 | # CONFIG_IP1000 is not set | 563 | # CONFIG_IP1000 is not set |
| 531 | # CONFIG_IGB is not set | 564 | # CONFIG_IGB is not set |
| 532 | # CONFIG_NS83820 is not set | 565 | # CONFIG_NS83820 is not set |
| @@ -541,12 +574,13 @@ CONFIG_NETDEV_1000=y | |||
| 541 | # CONFIG_BNX2 is not set | 574 | # CONFIG_BNX2 is not set |
| 542 | # CONFIG_GIANFAR is not set | 575 | # CONFIG_GIANFAR is not set |
| 543 | CONFIG_UCC_GETH=y | 576 | CONFIG_UCC_GETH=y |
| 544 | CONFIG_UGETH_NAPI=y | ||
| 545 | # CONFIG_UGETH_MAGIC_PACKET is not set | 577 | # CONFIG_UGETH_MAGIC_PACKET is not set |
| 546 | # CONFIG_UGETH_FILTERING is not set | 578 | # CONFIG_UGETH_FILTERING is not set |
| 547 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 579 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
| 580 | # CONFIG_MV643XX_ETH is not set | ||
| 548 | # CONFIG_QLA3XXX is not set | 581 | # CONFIG_QLA3XXX is not set |
| 549 | # CONFIG_ATL1 is not set | 582 | # CONFIG_ATL1 is not set |
| 583 | # CONFIG_ATL1E is not set | ||
| 550 | # CONFIG_NETDEV_10000 is not set | 584 | # CONFIG_NETDEV_10000 is not set |
| 551 | # CONFIG_TR is not set | 585 | # CONFIG_TR is not set |
| 552 | 586 | ||
| @@ -602,6 +636,7 @@ CONFIG_INPUT=y | |||
| 602 | # Character devices | 636 | # Character devices |
| 603 | # | 637 | # |
| 604 | CONFIG_VT=y | 638 | CONFIG_VT=y |
| 639 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 605 | CONFIG_VT_CONSOLE=y | 640 | CONFIG_VT_CONSOLE=y |
| 606 | CONFIG_HW_CONSOLE=y | 641 | CONFIG_HW_CONSOLE=y |
| 607 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 642 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -625,12 +660,15 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 625 | # CONFIG_SERIAL_UARTLITE is not set | 660 | # CONFIG_SERIAL_UARTLITE is not set |
| 626 | CONFIG_SERIAL_CORE=y | 661 | CONFIG_SERIAL_CORE=y |
| 627 | CONFIG_SERIAL_CORE_CONSOLE=y | 662 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 663 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 628 | # CONFIG_SERIAL_JSM is not set | 664 | # CONFIG_SERIAL_JSM is not set |
| 629 | # CONFIG_SERIAL_OF_PLATFORM is not set | 665 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 630 | CONFIG_SERIAL_QE=y | 666 | CONFIG_SERIAL_QE=y |
| 631 | CONFIG_UNIX98_PTYS=y | 667 | CONFIG_UNIX98_PTYS=y |
| 632 | CONFIG_LEGACY_PTYS=y | 668 | CONFIG_LEGACY_PTYS=y |
| 633 | CONFIG_LEGACY_PTY_COUNT=256 | 669 | CONFIG_LEGACY_PTY_COUNT=256 |
| 670 | # CONFIG_BRIQ_PANEL is not set | ||
| 671 | # CONFIG_HVC_RTAS is not set | ||
| 634 | # CONFIG_IPMI_HANDLER is not set | 672 | # CONFIG_IPMI_HANDLER is not set |
| 635 | CONFIG_HW_RANDOM=y | 673 | CONFIG_HW_RANDOM=y |
| 636 | # CONFIG_NVRAM is not set | 674 | # CONFIG_NVRAM is not set |
| @@ -643,43 +681,70 @@ CONFIG_DEVPORT=y | |||
| 643 | CONFIG_I2C=y | 681 | CONFIG_I2C=y |
| 644 | CONFIG_I2C_BOARDINFO=y | 682 | CONFIG_I2C_BOARDINFO=y |
| 645 | CONFIG_I2C_CHARDEV=y | 683 | CONFIG_I2C_CHARDEV=y |
| 684 | CONFIG_I2C_HELPER_AUTO=y | ||
| 646 | 685 | ||
| 647 | # | 686 | # |
| 648 | # I2C Hardware Bus support | 687 | # I2C Hardware Bus support |
| 649 | # | 688 | # |
| 689 | |||
| 690 | # | ||
| 691 | # PC SMBus host controller drivers | ||
| 692 | # | ||
| 650 | # CONFIG_I2C_ALI1535 is not set | 693 | # CONFIG_I2C_ALI1535 is not set |
| 651 | # CONFIG_I2C_ALI1563 is not set | 694 | # CONFIG_I2C_ALI1563 is not set |
| 652 | # CONFIG_I2C_ALI15X3 is not set | 695 | # CONFIG_I2C_ALI15X3 is not set |
| 653 | # CONFIG_I2C_AMD756 is not set | 696 | # CONFIG_I2C_AMD756 is not set |
| 654 | # CONFIG_I2C_AMD8111 is not set | 697 | # CONFIG_I2C_AMD8111 is not set |
| 655 | # CONFIG_I2C_GPIO is not set | ||
| 656 | # CONFIG_I2C_I801 is not set | 698 | # CONFIG_I2C_I801 is not set |
| 657 | # CONFIG_I2C_I810 is not set | 699 | # CONFIG_I2C_ISCH is not set |
| 658 | # CONFIG_I2C_PIIX4 is not set | 700 | # CONFIG_I2C_PIIX4 is not set |
| 659 | CONFIG_I2C_MPC=y | ||
| 660 | # CONFIG_I2C_NFORCE2 is not set | 701 | # CONFIG_I2C_NFORCE2 is not set |
| 661 | # CONFIG_I2C_OCORES is not set | ||
| 662 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 663 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 664 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 665 | # CONFIG_I2C_SIMTEC is not set | ||
| 666 | # CONFIG_I2C_SIS5595 is not set | 702 | # CONFIG_I2C_SIS5595 is not set |
| 667 | # CONFIG_I2C_SIS630 is not set | 703 | # CONFIG_I2C_SIS630 is not set |
| 668 | # CONFIG_I2C_SIS96X is not set | 704 | # CONFIG_I2C_SIS96X is not set |
| 669 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 670 | # CONFIG_I2C_STUB is not set | ||
| 671 | # CONFIG_I2C_VIA is not set | 705 | # CONFIG_I2C_VIA is not set |
| 672 | # CONFIG_I2C_VIAPRO is not set | 706 | # CONFIG_I2C_VIAPRO is not set |
| 707 | |||
| 708 | # | ||
| 709 | # Mac SMBus host controller drivers | ||
| 710 | # | ||
| 711 | # CONFIG_I2C_HYDRA is not set | ||
| 712 | CONFIG_I2C_POWERMAC=y | ||
| 713 | |||
| 714 | # | ||
| 715 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 716 | # | ||
| 717 | # CONFIG_I2C_GPIO is not set | ||
| 718 | CONFIG_I2C_MPC=y | ||
| 719 | # CONFIG_I2C_OCORES is not set | ||
| 720 | # CONFIG_I2C_SIMTEC is not set | ||
| 721 | |||
| 722 | # | ||
| 723 | # External I2C/SMBus adapter drivers | ||
| 724 | # | ||
| 725 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 726 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 727 | |||
| 728 | # | ||
| 729 | # Graphics adapter I2C/DDC channel drivers | ||
| 730 | # | ||
| 673 | # CONFIG_I2C_VOODOO3 is not set | 731 | # CONFIG_I2C_VOODOO3 is not set |
| 732 | |||
| 733 | # | ||
| 734 | # Other I2C/SMBus bus drivers | ||
| 735 | # | ||
| 674 | # CONFIG_I2C_PCA_PLATFORM is not set | 736 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 737 | # CONFIG_I2C_STUB is not set | ||
| 675 | 738 | ||
| 676 | # | 739 | # |
| 677 | # Miscellaneous I2C Chip support | 740 | # Miscellaneous I2C Chip support |
| 678 | # | 741 | # |
| 679 | # CONFIG_DS1682 is not set | 742 | # CONFIG_DS1682 is not set |
| 743 | # CONFIG_AT24 is not set | ||
| 680 | # CONFIG_SENSORS_EEPROM is not set | 744 | # CONFIG_SENSORS_EEPROM is not set |
| 681 | # CONFIG_SENSORS_PCF8574 is not set | 745 | # CONFIG_SENSORS_PCF8574 is not set |
| 682 | # CONFIG_PCF8575 is not set | 746 | # CONFIG_PCF8575 is not set |
| 747 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 683 | # CONFIG_SENSORS_PCF8591 is not set | 748 | # CONFIG_SENSORS_PCF8591 is not set |
| 684 | # CONFIG_TPS65010 is not set | 749 | # CONFIG_TPS65010 is not set |
| 685 | # CONFIG_SENSORS_MAX6875 is not set | 750 | # CONFIG_SENSORS_MAX6875 is not set |
| @@ -703,26 +768,33 @@ CONFIG_SPI_MPC83xx=y | |||
| 703 | # CONFIG_SPI_AT25 is not set | 768 | # CONFIG_SPI_AT25 is not set |
| 704 | CONFIG_SPI_SPIDEV=y | 769 | CONFIG_SPI_SPIDEV=y |
| 705 | # CONFIG_SPI_TLE62X0 is not set | 770 | # CONFIG_SPI_TLE62X0 is not set |
| 706 | CONFIG_HAVE_GPIO_LIB=y | 771 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
| 707 | 772 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | |
| 708 | # | 773 | CONFIG_GPIOLIB=y |
| 709 | # GPIO Support | 774 | # CONFIG_GPIO_SYSFS is not set |
| 710 | # | ||
| 711 | 775 | ||
| 712 | # | 776 | # |
| 713 | # I2C GPIO expanders: | 777 | # I2C GPIO expanders: |
| 714 | # | 778 | # |
| 779 | # CONFIG_GPIO_MAX732X is not set | ||
| 715 | # CONFIG_GPIO_PCA953X is not set | 780 | # CONFIG_GPIO_PCA953X is not set |
| 716 | # CONFIG_GPIO_PCF857X is not set | 781 | # CONFIG_GPIO_PCF857X is not set |
| 717 | 782 | ||
| 718 | # | 783 | # |
| 784 | # PCI GPIO expanders: | ||
| 785 | # | ||
| 786 | # CONFIG_GPIO_BT8XX is not set | ||
| 787 | |||
| 788 | # | ||
| 719 | # SPI GPIO expanders: | 789 | # SPI GPIO expanders: |
| 720 | # | 790 | # |
| 791 | # CONFIG_GPIO_MAX7301 is not set | ||
| 721 | # CONFIG_GPIO_MCP23S08 is not set | 792 | # CONFIG_GPIO_MCP23S08 is not set |
| 722 | # CONFIG_W1 is not set | 793 | # CONFIG_W1 is not set |
| 723 | # CONFIG_POWER_SUPPLY is not set | 794 | # CONFIG_POWER_SUPPLY is not set |
| 724 | # CONFIG_HWMON is not set | 795 | # CONFIG_HWMON is not set |
| 725 | # CONFIG_THERMAL is not set | 796 | # CONFIG_THERMAL is not set |
| 797 | # CONFIG_THERMAL_HWMON is not set | ||
| 726 | CONFIG_WATCHDOG=y | 798 | CONFIG_WATCHDOG=y |
| 727 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 799 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 728 | 800 | ||
| @@ -730,7 +802,9 @@ CONFIG_WATCHDOG=y | |||
| 730 | # Watchdog Device Drivers | 802 | # Watchdog Device Drivers |
| 731 | # | 803 | # |
| 732 | # CONFIG_SOFT_WATCHDOG is not set | 804 | # CONFIG_SOFT_WATCHDOG is not set |
| 733 | CONFIG_83xx_WDT=y | 805 | # CONFIG_ALIM7101_WDT is not set |
| 806 | # CONFIG_8xxx_WDT is not set | ||
| 807 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 734 | 808 | ||
| 735 | # | 809 | # |
| 736 | # PCI-based Watchdog Cards | 810 | # PCI-based Watchdog Cards |
| @@ -747,9 +821,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 747 | # | 821 | # |
| 748 | # Multifunction device drivers | 822 | # Multifunction device drivers |
| 749 | # | 823 | # |
| 824 | # CONFIG_MFD_CORE is not set | ||
| 750 | # CONFIG_MFD_SM501 is not set | 825 | # CONFIG_MFD_SM501 is not set |
| 751 | # CONFIG_HTC_EGPIO is not set | ||
| 752 | # CONFIG_HTC_PASIC3 is not set | 826 | # CONFIG_HTC_PASIC3 is not set |
| 827 | # CONFIG_MFD_TMIO is not set | ||
| 753 | 828 | ||
| 754 | # | 829 | # |
| 755 | # Multimedia devices | 830 | # Multimedia devices |
| @@ -799,6 +874,9 @@ CONFIG_FB_MACMODES=y | |||
| 799 | # CONFIG_FB_PM2 is not set | 874 | # CONFIG_FB_PM2 is not set |
| 800 | # CONFIG_FB_CYBER2000 is not set | 875 | # CONFIG_FB_CYBER2000 is not set |
| 801 | CONFIG_FB_OF=y | 876 | CONFIG_FB_OF=y |
| 877 | # CONFIG_FB_CONTROL is not set | ||
| 878 | # CONFIG_FB_PLATINUM is not set | ||
| 879 | # CONFIG_FB_VALKYRIE is not set | ||
| 802 | # CONFIG_FB_CT65550 is not set | 880 | # CONFIG_FB_CT65550 is not set |
| 803 | # CONFIG_FB_ASILIANT is not set | 881 | # CONFIG_FB_ASILIANT is not set |
| 804 | # CONFIG_FB_IMSTT is not set | 882 | # CONFIG_FB_IMSTT is not set |
| @@ -821,6 +899,7 @@ CONFIG_FB_OF=y | |||
| 821 | # CONFIG_FB_TRIDENT is not set | 899 | # CONFIG_FB_TRIDENT is not set |
| 822 | # CONFIG_FB_ARK is not set | 900 | # CONFIG_FB_ARK is not set |
| 823 | # CONFIG_FB_PM3 is not set | 901 | # CONFIG_FB_PM3 is not set |
| 902 | # CONFIG_FB_CARMINE is not set | ||
| 824 | # CONFIG_FB_FSL_DIU is not set | 903 | # CONFIG_FB_FSL_DIU is not set |
| 825 | # CONFIG_FB_IBM_GXT4500 is not set | 904 | # CONFIG_FB_IBM_GXT4500 is not set |
| 826 | # CONFIG_FB_VIRTUAL is not set | 905 | # CONFIG_FB_VIRTUAL is not set |
| @@ -846,10 +925,6 @@ CONFIG_LOGO=y | |||
| 846 | # CONFIG_LOGO_LINUX_MONO is not set | 925 | # CONFIG_LOGO_LINUX_MONO is not set |
| 847 | CONFIG_LOGO_LINUX_VGA16=y | 926 | CONFIG_LOGO_LINUX_VGA16=y |
| 848 | CONFIG_LOGO_LINUX_CLUT224=y | 927 | CONFIG_LOGO_LINUX_CLUT224=y |
| 849 | |||
| 850 | # | ||
| 851 | # Sound | ||
| 852 | # | ||
| 853 | # CONFIG_SOUND is not set | 928 | # CONFIG_SOUND is not set |
| 854 | CONFIG_HID_SUPPORT=y | 929 | CONFIG_HID_SUPPORT=y |
| 855 | CONFIG_HID=y | 930 | CONFIG_HID=y |
| @@ -941,6 +1016,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 941 | # CONFIG_CRAMFS is not set | 1016 | # CONFIG_CRAMFS is not set |
| 942 | # CONFIG_VXFS_FS is not set | 1017 | # CONFIG_VXFS_FS is not set |
| 943 | # CONFIG_MINIX_FS is not set | 1018 | # CONFIG_MINIX_FS is not set |
| 1019 | # CONFIG_OMFS_FS is not set | ||
| 944 | # CONFIG_HPFS_FS is not set | 1020 | # CONFIG_HPFS_FS is not set |
| 945 | # CONFIG_QNX4FS_FS is not set | 1021 | # CONFIG_QNX4FS_FS is not set |
| 946 | # CONFIG_ROMFS_FS is not set | 1022 | # CONFIG_ROMFS_FS is not set |
| @@ -951,14 +1027,13 @@ CONFIG_NFS_FS=y | |||
| 951 | CONFIG_NFS_V3=y | 1027 | CONFIG_NFS_V3=y |
| 952 | # CONFIG_NFS_V3_ACL is not set | 1028 | # CONFIG_NFS_V3_ACL is not set |
| 953 | CONFIG_NFS_V4=y | 1029 | CONFIG_NFS_V4=y |
| 954 | # CONFIG_NFSD is not set | ||
| 955 | CONFIG_ROOT_NFS=y | 1030 | CONFIG_ROOT_NFS=y |
| 1031 | # CONFIG_NFSD is not set | ||
| 956 | CONFIG_LOCKD=y | 1032 | CONFIG_LOCKD=y |
| 957 | CONFIG_LOCKD_V4=y | 1033 | CONFIG_LOCKD_V4=y |
| 958 | CONFIG_NFS_COMMON=y | 1034 | CONFIG_NFS_COMMON=y |
| 959 | CONFIG_SUNRPC=y | 1035 | CONFIG_SUNRPC=y |
| 960 | CONFIG_SUNRPC_GSS=y | 1036 | CONFIG_SUNRPC_GSS=y |
| 961 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 962 | CONFIG_RPCSEC_GSS_KRB5=y | 1037 | CONFIG_RPCSEC_GSS_KRB5=y |
| 963 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1038 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 964 | # CONFIG_SMB_FS is not set | 1039 | # CONFIG_SMB_FS is not set |
| @@ -998,6 +1073,7 @@ CONFIG_BITREVERSE=y | |||
| 998 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1073 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 999 | # CONFIG_CRC_CCITT is not set | 1074 | # CONFIG_CRC_CCITT is not set |
| 1000 | # CONFIG_CRC16 is not set | 1075 | # CONFIG_CRC16 is not set |
| 1076 | # CONFIG_CRC_T10DIF is not set | ||
| 1001 | # CONFIG_CRC_ITU_T is not set | 1077 | # CONFIG_CRC_ITU_T is not set |
| 1002 | CONFIG_CRC32=y | 1078 | CONFIG_CRC32=y |
| 1003 | # CONFIG_CRC7 is not set | 1079 | # CONFIG_CRC7 is not set |
| @@ -1025,12 +1101,22 @@ CONFIG_FRAME_WARN=1024 | |||
| 1025 | # CONFIG_SLUB_DEBUG_ON is not set | 1101 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1026 | # CONFIG_SLUB_STATS is not set | 1102 | # CONFIG_SLUB_STATS is not set |
| 1027 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1103 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1104 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1105 | # CONFIG_LATENCYTOP is not set | ||
| 1106 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1107 | CONFIG_HAVE_FTRACE=y | ||
| 1108 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1109 | # CONFIG_FTRACE is not set | ||
| 1110 | # CONFIG_SCHED_TRACER is not set | ||
| 1111 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1028 | # CONFIG_SAMPLES is not set | 1112 | # CONFIG_SAMPLES is not set |
| 1113 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1029 | # CONFIG_IRQSTACKS is not set | 1114 | # CONFIG_IRQSTACKS is not set |
| 1115 | # CONFIG_BOOTX_TEXT is not set | ||
| 1030 | CONFIG_PPC_EARLY_DEBUG=y | 1116 | CONFIG_PPC_EARLY_DEBUG=y |
| 1031 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | 1117 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set |
| 1032 | # CONFIG_PPC_EARLY_DEBUG_G5 is not set | 1118 | # CONFIG_PPC_EARLY_DEBUG_G5 is not set |
| 1033 | # CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL is not set | 1119 | CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL=y |
| 1034 | # CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE is not set | 1120 | # CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE is not set |
| 1035 | # CONFIG_PPC_EARLY_DEBUG_MAPLE is not set | 1121 | # CONFIG_PPC_EARLY_DEBUG_MAPLE is not set |
| 1036 | # CONFIG_PPC_EARLY_DEBUG_ISERIES is not set | 1122 | # CONFIG_PPC_EARLY_DEBUG_ISERIES is not set |
| @@ -1091,6 +1177,10 @@ CONFIG_CRYPTO_CBC=y | |||
| 1091 | # CONFIG_CRYPTO_MD4 is not set | 1177 | # CONFIG_CRYPTO_MD4 is not set |
| 1092 | CONFIG_CRYPTO_MD5=y | 1178 | CONFIG_CRYPTO_MD5=y |
| 1093 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1179 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1180 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1181 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1182 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1183 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1094 | # CONFIG_CRYPTO_SHA1 is not set | 1184 | # CONFIG_CRYPTO_SHA1 is not set |
| 1095 | # CONFIG_CRYPTO_SHA256 is not set | 1185 | # CONFIG_CRYPTO_SHA256 is not set |
| 1096 | # CONFIG_CRYPTO_SHA512 is not set | 1186 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1123,6 +1213,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1123 | # CONFIG_CRYPTO_LZO is not set | 1213 | # CONFIG_CRYPTO_LZO is not set |
| 1124 | CONFIG_CRYPTO_HW=y | 1214 | CONFIG_CRYPTO_HW=y |
| 1125 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1215 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1216 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1126 | # CONFIG_PPC_CLOCK is not set | 1217 | # CONFIG_PPC_CLOCK is not set |
| 1127 | CONFIG_PPC_LIB_RHEAP=y | 1218 | CONFIG_PPC_LIB_RHEAP=y |
| 1128 | # CONFIG_VIRTUALIZATION is not set | 1219 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/83xx/mpc837x_mds_defconfig b/arch/powerpc/configs/83xx/mpc837x_mds_defconfig index 0f94d9f56beb..de472022aa81 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:28 2008 | 4 | # Thu Aug 21 00:52:23 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -51,6 +53,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,13 +93,13 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
| 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 97 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 94 | CONFIG_HOTPLUG=y | 98 | CONFIG_HOTPLUG=y |
| 95 | CONFIG_PRINTK=y | 99 | CONFIG_PRINTK=y |
| 96 | CONFIG_BUG=y | 100 | CONFIG_BUG=y |
| 97 | CONFIG_ELF_CORE=y | 101 | CONFIG_ELF_CORE=y |
| 102 | CONFIG_PCSPKR_PLATFORM=y | ||
| 98 | CONFIG_COMPAT_BRK=y | 103 | CONFIG_COMPAT_BRK=y |
| 99 | CONFIG_BASE_FULL=y | 104 | CONFIG_BASE_FULL=y |
| 100 | CONFIG_FUTEX=y | 105 | CONFIG_FUTEX=y |
| @@ -112,10 +117,16 @@ CONFIG_SLAB=y | |||
| 112 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 113 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 114 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 121 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 122 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 123 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 125 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 126 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 127 | # CONFIG_HAVE_CLK is not set | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 128 | CONFIG_PROC_PAGE_MONITOR=y |
| 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 130 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 131 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | 132 | # CONFIG_TINY_SHMEM is not set |
| @@ -126,12 +137,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 137 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 127 | # CONFIG_MODVERSIONS is not set | 138 | # CONFIG_MODVERSIONS is not set |
| 128 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 139 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 129 | # CONFIG_KMOD is not set | 140 | CONFIG_KMOD=y |
| 130 | CONFIG_BLOCK=y | 141 | CONFIG_BLOCK=y |
| 131 | # CONFIG_LBD is not set | 142 | # CONFIG_LBD is not set |
| 132 | # CONFIG_BLK_DEV_IO_TRACE is not set | 143 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 133 | # CONFIG_LSF is not set | 144 | # CONFIG_LSF is not set |
| 134 | # CONFIG_BLK_DEV_BSG is not set | 145 | # CONFIG_BLK_DEV_BSG is not set |
| 146 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 135 | 147 | ||
| 136 | # | 148 | # |
| 137 | # IO Schedulers | 149 | # IO Schedulers |
| @@ -150,37 +162,49 @@ CONFIG_CLASSIC_RCU=y | |||
| 150 | # | 162 | # |
| 151 | # Platform support | 163 | # Platform support |
| 152 | # | 164 | # |
| 153 | # CONFIG_PPC_MULTIPLATFORM is not set | 165 | CONFIG_PPC_MULTIPLATFORM=y |
| 154 | # CONFIG_PPC_82xx is not set | 166 | CONFIG_CLASSIC32=y |
| 155 | CONFIG_PPC_83xx=y | 167 | CONFIG_PPC_CHRP=y |
| 156 | # CONFIG_PPC_86xx is not set | 168 | # CONFIG_MPC5121_ADS is not set |
| 157 | # CONFIG_PPC_MPC512x is not set | 169 | # CONFIG_MPC5121_GENERIC is not set |
| 158 | # CONFIG_PPC_MPC5121 is not set | 170 | # CONFIG_PPC_MPC52xx is not set |
| 171 | CONFIG_PPC_PMAC=y | ||
| 159 | # CONFIG_PPC_CELL is not set | 172 | # CONFIG_PPC_CELL is not set |
| 160 | # CONFIG_PPC_CELL_NATIVE is not set | 173 | # CONFIG_PPC_CELL_NATIVE is not set |
| 174 | # CONFIG_PPC_82xx is not set | ||
| 161 | # CONFIG_PQ2ADS is not set | 175 | # CONFIG_PQ2ADS is not set |
| 162 | CONFIG_MPC83xx=y | 176 | CONFIG_PPC_83xx=y |
| 163 | # CONFIG_MPC831x_RDB is not set | 177 | # CONFIG_MPC831x_RDB is not set |
| 164 | # CONFIG_MPC832x_MDS is not set | 178 | # CONFIG_MPC832x_MDS is not set |
| 165 | # CONFIG_MPC832x_RDB is not set | 179 | # CONFIG_MPC832x_RDB is not set |
| 166 | # CONFIG_MPC834x_MDS is not set | 180 | # CONFIG_MPC834x_MDS is not set |
| 167 | # CONFIG_MPC834x_ITX is not set | 181 | # CONFIG_MPC834x_ITX is not set |
| 168 | # CONFIG_MPC836x_MDS is not set | 182 | # CONFIG_MPC836x_MDS is not set |
| 183 | # CONFIG_MPC836x_RDK is not set | ||
| 169 | CONFIG_MPC837x_MDS=y | 184 | CONFIG_MPC837x_MDS=y |
| 170 | # CONFIG_MPC837x_RDB is not set | 185 | # CONFIG_MPC837x_RDB is not set |
| 171 | # CONFIG_SBC834x is not set | 186 | # CONFIG_SBC834x is not set |
| 187 | # CONFIG_ASP834x is not set | ||
| 172 | CONFIG_PPC_MPC837x=y | 188 | CONFIG_PPC_MPC837x=y |
| 189 | # CONFIG_PPC_86xx is not set | ||
| 190 | # CONFIG_EMBEDDED6xx is not set | ||
| 191 | CONFIG_PPC_NATIVE=y | ||
| 192 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 173 | CONFIG_IPIC=y | 193 | CONFIG_IPIC=y |
| 174 | # CONFIG_MPIC is not set | 194 | CONFIG_MPIC=y |
| 175 | # CONFIG_MPIC_WEIRD is not set | 195 | # CONFIG_MPIC_WEIRD is not set |
| 176 | # CONFIG_PPC_I8259 is not set | 196 | CONFIG_PPC_I8259=y |
| 177 | # CONFIG_PPC_RTAS is not set | 197 | CONFIG_PPC_RTAS=y |
| 198 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 199 | CONFIG_RTAS_PROC=y | ||
| 178 | # CONFIG_MMIO_NVRAM is not set | 200 | # CONFIG_MMIO_NVRAM is not set |
| 179 | # CONFIG_PPC_MPC106 is not set | 201 | CONFIG_PPC_MPC106=y |
| 180 | # CONFIG_PPC_970_NAP is not set | 202 | # CONFIG_PPC_970_NAP is not set |
| 181 | # CONFIG_PPC_INDIRECT_IO is not set | 203 | # CONFIG_PPC_INDIRECT_IO is not set |
| 182 | # CONFIG_GENERIC_IOMAP is not set | 204 | # CONFIG_GENERIC_IOMAP is not set |
| 183 | # CONFIG_CPU_FREQ is not set | 205 | # CONFIG_CPU_FREQ is not set |
| 206 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 207 | # CONFIG_TAU is not set | ||
| 184 | # CONFIG_FSL_ULI1575 is not set | 208 | # CONFIG_FSL_ULI1575 is not set |
| 185 | 209 | ||
| 186 | # | 210 | # |
| @@ -206,6 +230,7 @@ CONFIG_BINFMT_ELF=y | |||
| 206 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 230 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 207 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 231 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 208 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 232 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 233 | # CONFIG_KEXEC is not set | ||
| 209 | CONFIG_ARCH_FLATMEM_ENABLE=y | 234 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 210 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 235 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 211 | CONFIG_SELECT_MEMORY_MODEL=y | 236 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -218,6 +243,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 218 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 243 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 219 | CONFIG_PAGEFLAGS_EXTENDED=y | 244 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 245 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 246 | CONFIG_MIGRATION=y | ||
| 221 | # CONFIG_RESOURCES_64BIT is not set | 247 | # CONFIG_RESOURCES_64BIT is not set |
| 222 | CONFIG_ZONE_DMA_FLAG=1 | 248 | CONFIG_ZONE_DMA_FLAG=1 |
| 223 | CONFIG_BOUNCE=y | 249 | CONFIG_BOUNCE=y |
| @@ -225,6 +251,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 225 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 226 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
| 227 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
| 254 | CONFIG_EXTRA_TARGETS="" | ||
| 228 | # CONFIG_PM is not set | 255 | # CONFIG_PM is not set |
| 229 | CONFIG_SECCOMP=y | 256 | CONFIG_SECCOMP=y |
| 230 | CONFIG_ISA_DMA_API=y | 257 | CONFIG_ISA_DMA_API=y |
| @@ -232,15 +259,22 @@ CONFIG_ISA_DMA_API=y | |||
| 232 | # | 259 | # |
| 233 | # Bus options | 260 | # Bus options |
| 234 | # | 261 | # |
| 262 | # CONFIG_ISA is not set | ||
| 235 | CONFIG_ZONE_DMA=y | 263 | CONFIG_ZONE_DMA=y |
| 236 | CONFIG_GENERIC_ISA_DMA=y | 264 | CONFIG_GENERIC_ISA_DMA=y |
| 237 | CONFIG_PPC_INDIRECT_PCI=y | 265 | CONFIG_PPC_INDIRECT_PCI=y |
| 238 | CONFIG_FSL_SOC=y | 266 | CONFIG_FSL_SOC=y |
| 239 | # CONFIG_PCI is not set | 267 | CONFIG_FSL_PCI=y |
| 240 | # CONFIG_PCI_DOMAINS is not set | 268 | CONFIG_PPC_PCI_CHOICE=y |
| 241 | # CONFIG_PCI_SYSCALL is not set | 269 | CONFIG_PCI=y |
| 242 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 270 | CONFIG_PCI_DOMAINS=y |
| 271 | CONFIG_PCI_SYSCALL=y | ||
| 272 | # CONFIG_PCIEPORTBUS is not set | ||
| 273 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
| 274 | # CONFIG_PCI_MSI is not set | ||
| 275 | CONFIG_PCI_LEGACY=y | ||
| 243 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
| 277 | # CONFIG_HOTPLUG_PCI is not set | ||
| 244 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
| 245 | 279 | ||
| 246 | # | 280 | # |
| @@ -256,10 +290,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 256 | CONFIG_KERNEL_START=0xc0000000 | 290 | CONFIG_KERNEL_START=0xc0000000 |
| 257 | CONFIG_PHYSICAL_START=0x00000000 | 291 | CONFIG_PHYSICAL_START=0x00000000 |
| 258 | CONFIG_TASK_SIZE=0xc0000000 | 292 | CONFIG_TASK_SIZE=0xc0000000 |
| 259 | |||
| 260 | # | ||
| 261 | # Networking | ||
| 262 | # | ||
| 263 | CONFIG_NET=y | 293 | CONFIG_NET=y |
| 264 | 294 | ||
| 265 | # | 295 | # |
| @@ -360,19 +390,30 @@ CONFIG_OF_I2C=y | |||
| 360 | # CONFIG_PARPORT is not set | 390 | # CONFIG_PARPORT is not set |
| 361 | CONFIG_BLK_DEV=y | 391 | CONFIG_BLK_DEV=y |
| 362 | # CONFIG_BLK_DEV_FD is not set | 392 | # CONFIG_BLK_DEV_FD is not set |
| 393 | # CONFIG_MAC_FLOPPY is not set | ||
| 394 | # CONFIG_BLK_CPQ_DA is not set | ||
| 395 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
| 396 | # CONFIG_BLK_DEV_DAC960 is not set | ||
| 397 | # CONFIG_BLK_DEV_UMEM is not set | ||
| 363 | # CONFIG_BLK_DEV_COW_COMMON is not set | 398 | # CONFIG_BLK_DEV_COW_COMMON is not set |
| 364 | CONFIG_BLK_DEV_LOOP=y | 399 | CONFIG_BLK_DEV_LOOP=y |
| 365 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 400 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
| 366 | # CONFIG_BLK_DEV_NBD is not set | 401 | # CONFIG_BLK_DEV_NBD is not set |
| 402 | # CONFIG_BLK_DEV_SX8 is not set | ||
| 367 | CONFIG_BLK_DEV_RAM=y | 403 | CONFIG_BLK_DEV_RAM=y |
| 368 | CONFIG_BLK_DEV_RAM_COUNT=16 | 404 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 369 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 405 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
| 370 | # CONFIG_BLK_DEV_XIP is not set | 406 | # CONFIG_BLK_DEV_XIP is not set |
| 371 | # CONFIG_CDROM_PKTCDVD is not set | 407 | # CONFIG_CDROM_PKTCDVD is not set |
| 372 | # CONFIG_ATA_OVER_ETH is not set | 408 | # CONFIG_ATA_OVER_ETH is not set |
| 409 | # CONFIG_BLK_DEV_HD is not set | ||
| 373 | CONFIG_MISC_DEVICES=y | 410 | CONFIG_MISC_DEVICES=y |
| 411 | # CONFIG_PHANTOM is not set | ||
| 374 | # CONFIG_EEPROM_93CX6 is not set | 412 | # CONFIG_EEPROM_93CX6 is not set |
| 413 | # CONFIG_SGI_IOC4 is not set | ||
| 414 | # CONFIG_TIFM_CORE is not set | ||
| 375 | # CONFIG_ENCLOSURE_SERVICES is not set | 415 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 416 | # CONFIG_HP_ILO is not set | ||
| 376 | CONFIG_HAVE_IDE=y | 417 | CONFIG_HAVE_IDE=y |
| 377 | # CONFIG_IDE is not set | 418 | # CONFIG_IDE is not set |
| 378 | 419 | ||
| @@ -415,24 +456,128 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 415 | # CONFIG_SCSI_SRP_ATTRS is not set | 456 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 416 | CONFIG_SCSI_LOWLEVEL=y | 457 | CONFIG_SCSI_LOWLEVEL=y |
| 417 | # CONFIG_ISCSI_TCP is not set | 458 | # CONFIG_ISCSI_TCP is not set |
| 459 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
| 460 | # CONFIG_SCSI_3W_9XXX is not set | ||
| 461 | # CONFIG_SCSI_ACARD is not set | ||
| 462 | # CONFIG_SCSI_AACRAID is not set | ||
| 463 | # CONFIG_SCSI_AIC7XXX is not set | ||
| 464 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
| 465 | # CONFIG_SCSI_AIC79XX is not set | ||
| 466 | # CONFIG_SCSI_AIC94XX is not set | ||
| 467 | # CONFIG_SCSI_DPT_I2O is not set | ||
| 468 | # CONFIG_SCSI_ADVANSYS is not set | ||
| 469 | # CONFIG_SCSI_ARCMSR is not set | ||
| 470 | # CONFIG_MEGARAID_NEWGEN is not set | ||
| 471 | # CONFIG_MEGARAID_LEGACY is not set | ||
| 472 | # CONFIG_MEGARAID_SAS is not set | ||
| 473 | # CONFIG_SCSI_HPTIOP is not set | ||
| 474 | # CONFIG_SCSI_BUSLOGIC is not set | ||
| 475 | # CONFIG_SCSI_DMX3191D is not set | ||
| 476 | # CONFIG_SCSI_EATA is not set | ||
| 477 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
| 478 | # CONFIG_SCSI_GDTH is not set | ||
| 479 | # CONFIG_SCSI_IPS is not set | ||
| 480 | # CONFIG_SCSI_INITIO is not set | ||
| 481 | # CONFIG_SCSI_INIA100 is not set | ||
| 482 | # CONFIG_SCSI_MVSAS is not set | ||
| 483 | # CONFIG_SCSI_STEX is not set | ||
| 484 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
| 485 | # CONFIG_SCSI_IPR is not set | ||
| 486 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
| 487 | # CONFIG_SCSI_QLA_FC is not set | ||
| 488 | # CONFIG_SCSI_QLA_ISCSI is not set | ||
| 489 | # CONFIG_SCSI_LPFC is not set | ||
| 490 | # CONFIG_SCSI_DC395x is not set | ||
| 491 | # CONFIG_SCSI_DC390T is not set | ||
| 492 | # CONFIG_SCSI_NSP32 is not set | ||
| 418 | # CONFIG_SCSI_DEBUG is not set | 493 | # CONFIG_SCSI_DEBUG is not set |
| 494 | # CONFIG_SCSI_MESH is not set | ||
| 495 | # CONFIG_SCSI_MAC53C94 is not set | ||
| 496 | # CONFIG_SCSI_SRP is not set | ||
| 497 | # CONFIG_SCSI_DH is not set | ||
| 419 | CONFIG_ATA=y | 498 | CONFIG_ATA=y |
| 420 | # CONFIG_ATA_NONSTANDARD is not set | 499 | # CONFIG_ATA_NONSTANDARD is not set |
| 421 | CONFIG_SATA_PMP=y | 500 | CONFIG_SATA_PMP=y |
| 501 | # CONFIG_SATA_AHCI is not set | ||
| 502 | # CONFIG_SATA_SIL24 is not set | ||
| 422 | CONFIG_SATA_FSL=y | 503 | CONFIG_SATA_FSL=y |
| 423 | CONFIG_ATA_SFF=y | 504 | CONFIG_ATA_SFF=y |
| 505 | # CONFIG_SATA_SVW is not set | ||
| 506 | # CONFIG_ATA_PIIX is not set | ||
| 424 | # CONFIG_SATA_MV is not set | 507 | # CONFIG_SATA_MV is not set |
| 508 | # CONFIG_SATA_NV is not set | ||
| 509 | # CONFIG_PDC_ADMA is not set | ||
| 510 | # CONFIG_SATA_QSTOR is not set | ||
| 511 | # CONFIG_SATA_PROMISE is not set | ||
| 512 | # CONFIG_SATA_SX4 is not set | ||
| 513 | # CONFIG_SATA_SIL is not set | ||
| 514 | # CONFIG_SATA_SIS is not set | ||
| 515 | # CONFIG_SATA_ULI is not set | ||
| 516 | # CONFIG_SATA_VIA is not set | ||
| 517 | # CONFIG_SATA_VITESSE is not set | ||
| 518 | # CONFIG_SATA_INIC162X is not set | ||
| 519 | # CONFIG_PATA_ALI is not set | ||
| 520 | # CONFIG_PATA_AMD is not set | ||
| 521 | # CONFIG_PATA_ARTOP is not set | ||
| 522 | # CONFIG_PATA_ATIIXP is not set | ||
| 523 | # CONFIG_PATA_CMD640_PCI is not set | ||
| 524 | # CONFIG_PATA_CMD64X is not set | ||
| 525 | # CONFIG_PATA_CS5520 is not set | ||
| 526 | # CONFIG_PATA_CS5530 is not set | ||
| 527 | # CONFIG_PATA_CYPRESS is not set | ||
| 528 | # CONFIG_PATA_EFAR is not set | ||
| 529 | # CONFIG_ATA_GENERIC is not set | ||
| 530 | # CONFIG_PATA_HPT366 is not set | ||
| 531 | # CONFIG_PATA_HPT37X is not set | ||
| 532 | # CONFIG_PATA_HPT3X2N is not set | ||
| 533 | # CONFIG_PATA_HPT3X3 is not set | ||
| 534 | # CONFIG_PATA_IT821X is not set | ||
| 535 | # CONFIG_PATA_IT8213 is not set | ||
| 536 | # CONFIG_PATA_JMICRON is not set | ||
| 537 | # CONFIG_PATA_TRIFLEX is not set | ||
| 538 | # CONFIG_PATA_MARVELL is not set | ||
| 539 | # CONFIG_PATA_MPIIX is not set | ||
| 540 | # CONFIG_PATA_OLDPIIX is not set | ||
| 541 | # CONFIG_PATA_NETCELL is not set | ||
| 542 | # CONFIG_PATA_NINJA32 is not set | ||
| 543 | # CONFIG_PATA_NS87410 is not set | ||
| 544 | # CONFIG_PATA_NS87415 is not set | ||
| 545 | # CONFIG_PATA_OPTI is not set | ||
| 546 | # CONFIG_PATA_OPTIDMA is not set | ||
| 547 | # CONFIG_PATA_PDC_OLD is not set | ||
| 548 | # CONFIG_PATA_RADISYS is not set | ||
| 549 | # CONFIG_PATA_RZ1000 is not set | ||
| 550 | # CONFIG_PATA_SC1200 is not set | ||
| 551 | # CONFIG_PATA_SERVERWORKS is not set | ||
| 552 | # CONFIG_PATA_PDC2027X is not set | ||
| 553 | # CONFIG_PATA_SIL680 is not set | ||
| 554 | # CONFIG_PATA_SIS is not set | ||
| 555 | # CONFIG_PATA_VIA is not set | ||
| 556 | # CONFIG_PATA_WINBOND is not set | ||
| 425 | # CONFIG_PATA_PLATFORM is not set | 557 | # CONFIG_PATA_PLATFORM is not set |
| 558 | # CONFIG_PATA_SCH is not set | ||
| 426 | # CONFIG_MD is not set | 559 | # CONFIG_MD is not set |
| 560 | # CONFIG_FUSION is not set | ||
| 561 | |||
| 562 | # | ||
| 563 | # IEEE 1394 (FireWire) support | ||
| 564 | # | ||
| 565 | |||
| 566 | # | ||
| 567 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 568 | # | ||
| 569 | # CONFIG_FIREWIRE is not set | ||
| 570 | # CONFIG_IEEE1394 is not set | ||
| 571 | # CONFIG_I2O is not set | ||
| 427 | # CONFIG_MACINTOSH_DRIVERS is not set | 572 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 428 | CONFIG_NETDEVICES=y | 573 | CONFIG_NETDEVICES=y |
| 429 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 430 | # CONFIG_DUMMY is not set | 574 | # CONFIG_DUMMY is not set |
| 431 | # CONFIG_BONDING is not set | 575 | # CONFIG_BONDING is not set |
| 432 | # CONFIG_MACVLAN is not set | 576 | # CONFIG_MACVLAN is not set |
| 433 | # CONFIG_EQUALIZER is not set | 577 | # CONFIG_EQUALIZER is not set |
| 434 | # CONFIG_TUN is not set | 578 | # CONFIG_TUN is not set |
| 435 | # CONFIG_VETH is not set | 579 | # CONFIG_VETH is not set |
| 580 | # CONFIG_ARCNET is not set | ||
| 436 | CONFIG_PHYLIB=y | 581 | CONFIG_PHYLIB=y |
| 437 | 582 | ||
| 438 | # | 583 | # |
| @@ -452,16 +597,56 @@ CONFIG_MARVELL_PHY=y | |||
| 452 | # CONFIG_MDIO_BITBANG is not set | 597 | # CONFIG_MDIO_BITBANG is not set |
| 453 | CONFIG_NET_ETHERNET=y | 598 | CONFIG_NET_ETHERNET=y |
| 454 | CONFIG_MII=y | 599 | CONFIG_MII=y |
| 600 | # CONFIG_MACE is not set | ||
| 601 | # CONFIG_BMAC is not set | ||
| 602 | # CONFIG_HAPPYMEAL is not set | ||
| 603 | # CONFIG_SUNGEM is not set | ||
| 604 | # CONFIG_CASSINI is not set | ||
| 605 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 606 | # CONFIG_NET_TULIP is not set | ||
| 607 | # CONFIG_HP100 is not set | ||
| 455 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 608 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 456 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 609 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 457 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 610 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| 458 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 611 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 612 | # CONFIG_NET_PCI is not set | ||
| 459 | # CONFIG_B44 is not set | 613 | # CONFIG_B44 is not set |
| 460 | CONFIG_NETDEV_1000=y | 614 | CONFIG_NETDEV_1000=y |
| 461 | # CONFIG_E1000E_ENABLED is not set | 615 | # CONFIG_ACENIC is not set |
| 616 | # CONFIG_DL2K is not set | ||
| 617 | # CONFIG_E1000 is not set | ||
| 618 | # CONFIG_E1000E is not set | ||
| 619 | # CONFIG_IP1000 is not set | ||
| 620 | # CONFIG_IGB is not set | ||
| 621 | # CONFIG_NS83820 is not set | ||
| 622 | # CONFIG_HAMACHI is not set | ||
| 623 | # CONFIG_YELLOWFIN is not set | ||
| 624 | # CONFIG_R8169 is not set | ||
| 625 | # CONFIG_SIS190 is not set | ||
| 626 | # CONFIG_SKGE is not set | ||
| 627 | # CONFIG_SKY2 is not set | ||
| 628 | # CONFIG_VIA_VELOCITY is not set | ||
| 629 | # CONFIG_TIGON3 is not set | ||
| 630 | # CONFIG_BNX2 is not set | ||
| 462 | CONFIG_GIANFAR=y | 631 | CONFIG_GIANFAR=y |
| 463 | # CONFIG_GFAR_NAPI is not set | 632 | # CONFIG_MV643XX_ETH is not set |
| 633 | # CONFIG_QLA3XXX is not set | ||
| 634 | # CONFIG_ATL1 is not set | ||
| 635 | # CONFIG_ATL1E is not set | ||
| 464 | CONFIG_NETDEV_10000=y | 636 | CONFIG_NETDEV_10000=y |
| 637 | # CONFIG_CHELSIO_T1 is not set | ||
| 638 | # CONFIG_CHELSIO_T3 is not set | ||
| 639 | # CONFIG_IXGBE is not set | ||
| 640 | # CONFIG_IXGB is not set | ||
| 641 | # CONFIG_S2IO is not set | ||
| 642 | # CONFIG_MYRI10GE is not set | ||
| 643 | # CONFIG_NETXEN_NIC is not set | ||
| 644 | # CONFIG_NIU is not set | ||
| 645 | # CONFIG_MLX4_CORE is not set | ||
| 646 | # CONFIG_TEHUTI is not set | ||
| 647 | # CONFIG_BNX2X is not set | ||
| 648 | # CONFIG_SFC is not set | ||
| 649 | # CONFIG_TR is not set | ||
| 465 | 650 | ||
| 466 | # | 651 | # |
| 467 | # Wireless LAN | 652 | # Wireless LAN |
| @@ -470,8 +655,11 @@ CONFIG_NETDEV_10000=y | |||
| 470 | # CONFIG_WLAN_80211 is not set | 655 | # CONFIG_WLAN_80211 is not set |
| 471 | # CONFIG_IWLWIFI_LEDS is not set | 656 | # CONFIG_IWLWIFI_LEDS is not set |
| 472 | # CONFIG_WAN is not set | 657 | # CONFIG_WAN is not set |
| 658 | # CONFIG_FDDI is not set | ||
| 659 | # CONFIG_HIPPI is not set | ||
| 473 | # CONFIG_PPP is not set | 660 | # CONFIG_PPP is not set |
| 474 | # CONFIG_SLIP is not set | 661 | # CONFIG_SLIP is not set |
| 662 | # CONFIG_NET_FC is not set | ||
| 475 | # CONFIG_NETCONSOLE is not set | 663 | # CONFIG_NETCONSOLE is not set |
| 476 | # CONFIG_NETPOLL is not set | 664 | # CONFIG_NETPOLL is not set |
| 477 | # CONFIG_NET_POLL_CONTROLLER is not set | 665 | # CONFIG_NET_POLL_CONTROLLER is not set |
| @@ -515,12 +703,14 @@ CONFIG_INPUT=y | |||
| 515 | # CONFIG_VT is not set | 703 | # CONFIG_VT is not set |
| 516 | CONFIG_DEVKMEM=y | 704 | CONFIG_DEVKMEM=y |
| 517 | # CONFIG_SERIAL_NONSTANDARD is not set | 705 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 706 | # CONFIG_NOZOMI is not set | ||
| 518 | 707 | ||
| 519 | # | 708 | # |
| 520 | # Serial drivers | 709 | # Serial drivers |
| 521 | # | 710 | # |
| 522 | CONFIG_SERIAL_8250=y | 711 | CONFIG_SERIAL_8250=y |
| 523 | CONFIG_SERIAL_8250_CONSOLE=y | 712 | CONFIG_SERIAL_8250_CONSOLE=y |
| 713 | CONFIG_SERIAL_8250_PCI=y | ||
| 524 | CONFIG_SERIAL_8250_NR_UARTS=4 | 714 | CONFIG_SERIAL_8250_NR_UARTS=4 |
| 525 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | 715 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 |
| 526 | # CONFIG_SERIAL_8250_EXTENDED is not set | 716 | # CONFIG_SERIAL_8250_EXTENDED is not set |
| @@ -531,40 +721,90 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 531 | # CONFIG_SERIAL_UARTLITE is not set | 721 | # CONFIG_SERIAL_UARTLITE is not set |
| 532 | CONFIG_SERIAL_CORE=y | 722 | CONFIG_SERIAL_CORE=y |
| 533 | CONFIG_SERIAL_CORE_CONSOLE=y | 723 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 724 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 725 | # CONFIG_SERIAL_JSM is not set | ||
| 534 | # CONFIG_SERIAL_OF_PLATFORM is not set | 726 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 535 | CONFIG_UNIX98_PTYS=y | 727 | CONFIG_UNIX98_PTYS=y |
| 536 | CONFIG_LEGACY_PTYS=y | 728 | CONFIG_LEGACY_PTYS=y |
| 537 | CONFIG_LEGACY_PTY_COUNT=256 | 729 | CONFIG_LEGACY_PTY_COUNT=256 |
| 730 | # CONFIG_BRIQ_PANEL is not set | ||
| 731 | # CONFIG_HVC_RTAS is not set | ||
| 538 | # CONFIG_IPMI_HANDLER is not set | 732 | # CONFIG_IPMI_HANDLER is not set |
| 539 | # CONFIG_HW_RANDOM is not set | 733 | # CONFIG_HW_RANDOM is not set |
| 540 | # CONFIG_NVRAM is not set | 734 | # CONFIG_NVRAM is not set |
| 541 | CONFIG_GEN_RTC=y | 735 | CONFIG_GEN_RTC=y |
| 542 | # CONFIG_GEN_RTC_X is not set | 736 | # CONFIG_GEN_RTC_X is not set |
| 543 | # CONFIG_R3964 is not set | 737 | # CONFIG_R3964 is not set |
| 738 | # CONFIG_APPLICOM is not set | ||
| 544 | # CONFIG_RAW_DRIVER is not set | 739 | # CONFIG_RAW_DRIVER is not set |
| 545 | # CONFIG_TCG_TPM is not set | 740 | # CONFIG_TCG_TPM is not set |
| 741 | CONFIG_DEVPORT=y | ||
| 546 | CONFIG_I2C=y | 742 | CONFIG_I2C=y |
| 547 | CONFIG_I2C_BOARDINFO=y | 743 | CONFIG_I2C_BOARDINFO=y |
| 548 | CONFIG_I2C_CHARDEV=y | 744 | CONFIG_I2C_CHARDEV=y |
| 745 | CONFIG_I2C_HELPER_AUTO=y | ||
| 549 | 746 | ||
| 550 | # | 747 | # |
| 551 | # I2C Hardware Bus support | 748 | # I2C Hardware Bus support |
| 552 | # | 749 | # |
| 750 | |||
| 751 | # | ||
| 752 | # PC SMBus host controller drivers | ||
| 753 | # | ||
| 754 | # CONFIG_I2C_ALI1535 is not set | ||
| 755 | # CONFIG_I2C_ALI1563 is not set | ||
| 756 | # CONFIG_I2C_ALI15X3 is not set | ||
| 757 | # CONFIG_I2C_AMD756 is not set | ||
| 758 | # CONFIG_I2C_AMD8111 is not set | ||
| 759 | # CONFIG_I2C_I801 is not set | ||
| 760 | # CONFIG_I2C_ISCH is not set | ||
| 761 | # CONFIG_I2C_PIIX4 is not set | ||
| 762 | # CONFIG_I2C_NFORCE2 is not set | ||
| 763 | # CONFIG_I2C_SIS5595 is not set | ||
| 764 | # CONFIG_I2C_SIS630 is not set | ||
| 765 | # CONFIG_I2C_SIS96X is not set | ||
| 766 | # CONFIG_I2C_VIA is not set | ||
| 767 | # CONFIG_I2C_VIAPRO is not set | ||
| 768 | |||
| 769 | # | ||
| 770 | # Mac SMBus host controller drivers | ||
| 771 | # | ||
| 772 | # CONFIG_I2C_HYDRA is not set | ||
| 773 | CONFIG_I2C_POWERMAC=y | ||
| 774 | |||
| 775 | # | ||
| 776 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 777 | # | ||
| 553 | CONFIG_I2C_MPC=y | 778 | CONFIG_I2C_MPC=y |
| 554 | # CONFIG_I2C_OCORES is not set | 779 | # CONFIG_I2C_OCORES is not set |
| 555 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 556 | # CONFIG_I2C_SIMTEC is not set | 780 | # CONFIG_I2C_SIMTEC is not set |
| 781 | |||
| 782 | # | ||
| 783 | # External I2C/SMBus adapter drivers | ||
| 784 | # | ||
| 785 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 557 | # CONFIG_I2C_TAOS_EVM is not set | 786 | # CONFIG_I2C_TAOS_EVM is not set |
| 558 | # CONFIG_I2C_STUB is not set | 787 | |
| 788 | # | ||
| 789 | # Graphics adapter I2C/DDC channel drivers | ||
| 790 | # | ||
| 791 | # CONFIG_I2C_VOODOO3 is not set | ||
| 792 | |||
| 793 | # | ||
| 794 | # Other I2C/SMBus bus drivers | ||
| 795 | # | ||
| 559 | # CONFIG_I2C_PCA_PLATFORM is not set | 796 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 797 | # CONFIG_I2C_STUB is not set | ||
| 560 | 798 | ||
| 561 | # | 799 | # |
| 562 | # Miscellaneous I2C Chip support | 800 | # Miscellaneous I2C Chip support |
| 563 | # | 801 | # |
| 564 | # CONFIG_DS1682 is not set | 802 | # CONFIG_DS1682 is not set |
| 803 | # CONFIG_AT24 is not set | ||
| 565 | # CONFIG_SENSORS_EEPROM is not set | 804 | # CONFIG_SENSORS_EEPROM is not set |
| 566 | # CONFIG_SENSORS_PCF8574 is not set | 805 | # CONFIG_SENSORS_PCF8574 is not set |
| 567 | # CONFIG_PCF8575 is not set | 806 | # CONFIG_PCF8575 is not set |
| 807 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 568 | # CONFIG_SENSORS_PCF8591 is not set | 808 | # CONFIG_SENSORS_PCF8591 is not set |
| 569 | # CONFIG_SENSORS_MAX6875 is not set | 809 | # CONFIG_SENSORS_MAX6875 is not set |
| 570 | # CONFIG_SENSORS_TSL2550 is not set | 810 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -573,10 +813,13 @@ CONFIG_I2C_MPC=y | |||
| 573 | # CONFIG_I2C_DEBUG_BUS is not set | 813 | # CONFIG_I2C_DEBUG_BUS is not set |
| 574 | # CONFIG_I2C_DEBUG_CHIP is not set | 814 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 575 | # CONFIG_SPI is not set | 815 | # CONFIG_SPI is not set |
| 816 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 817 | # CONFIG_GPIOLIB is not set | ||
| 576 | # CONFIG_W1 is not set | 818 | # CONFIG_W1 is not set |
| 577 | # CONFIG_POWER_SUPPLY is not set | 819 | # CONFIG_POWER_SUPPLY is not set |
| 578 | CONFIG_HWMON=y | 820 | CONFIG_HWMON=y |
| 579 | # CONFIG_HWMON_VID is not set | 821 | # CONFIG_HWMON_VID is not set |
| 822 | # CONFIG_SENSORS_AD7414 is not set | ||
| 580 | # CONFIG_SENSORS_AD7418 is not set | 823 | # CONFIG_SENSORS_AD7418 is not set |
| 581 | # CONFIG_SENSORS_ADM1021 is not set | 824 | # CONFIG_SENSORS_ADM1021 is not set |
| 582 | # CONFIG_SENSORS_ADM1025 is not set | 825 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -586,8 +829,10 @@ CONFIG_HWMON=y | |||
| 586 | # CONFIG_SENSORS_ADM9240 is not set | 829 | # CONFIG_SENSORS_ADM9240 is not set |
| 587 | # CONFIG_SENSORS_ADT7470 is not set | 830 | # CONFIG_SENSORS_ADT7470 is not set |
| 588 | # CONFIG_SENSORS_ADT7473 is not set | 831 | # CONFIG_SENSORS_ADT7473 is not set |
| 832 | # CONFIG_SENSORS_AMS is not set | ||
| 589 | # CONFIG_SENSORS_ATXP1 is not set | 833 | # CONFIG_SENSORS_ATXP1 is not set |
| 590 | # CONFIG_SENSORS_DS1621 is not set | 834 | # CONFIG_SENSORS_DS1621 is not set |
| 835 | # CONFIG_SENSORS_I5K_AMB is not set | ||
| 591 | # CONFIG_SENSORS_F71805F is not set | 836 | # CONFIG_SENSORS_F71805F is not set |
| 592 | # CONFIG_SENSORS_F71882FG is not set | 837 | # CONFIG_SENSORS_F71882FG is not set |
| 593 | # CONFIG_SENSORS_F75375S is not set | 838 | # CONFIG_SENSORS_F75375S is not set |
| @@ -609,13 +854,16 @@ CONFIG_HWMON=y | |||
| 609 | # CONFIG_SENSORS_MAX6650 is not set | 854 | # CONFIG_SENSORS_MAX6650 is not set |
| 610 | # CONFIG_SENSORS_PC87360 is not set | 855 | # CONFIG_SENSORS_PC87360 is not set |
| 611 | # CONFIG_SENSORS_PC87427 is not set | 856 | # CONFIG_SENSORS_PC87427 is not set |
| 857 | # CONFIG_SENSORS_SIS5595 is not set | ||
| 612 | # CONFIG_SENSORS_DME1737 is not set | 858 | # CONFIG_SENSORS_DME1737 is not set |
| 613 | # CONFIG_SENSORS_SMSC47M1 is not set | 859 | # CONFIG_SENSORS_SMSC47M1 is not set |
| 614 | # CONFIG_SENSORS_SMSC47M192 is not set | 860 | # CONFIG_SENSORS_SMSC47M192 is not set |
| 615 | # CONFIG_SENSORS_SMSC47B397 is not set | 861 | # CONFIG_SENSORS_SMSC47B397 is not set |
| 616 | # CONFIG_SENSORS_ADS7828 is not set | 862 | # CONFIG_SENSORS_ADS7828 is not set |
| 617 | # CONFIG_SENSORS_THMC50 is not set | 863 | # CONFIG_SENSORS_THMC50 is not set |
| 864 | # CONFIG_SENSORS_VIA686A is not set | ||
| 618 | # CONFIG_SENSORS_VT1211 is not set | 865 | # CONFIG_SENSORS_VT1211 is not set |
| 866 | # CONFIG_SENSORS_VT8231 is not set | ||
| 619 | # CONFIG_SENSORS_W83781D is not set | 867 | # CONFIG_SENSORS_W83781D is not set |
| 620 | # CONFIG_SENSORS_W83791D is not set | 868 | # CONFIG_SENSORS_W83791D is not set |
| 621 | # CONFIG_SENSORS_W83792D is not set | 869 | # CONFIG_SENSORS_W83792D is not set |
| @@ -626,6 +874,7 @@ CONFIG_HWMON=y | |||
| 626 | # CONFIG_SENSORS_W83627EHF is not set | 874 | # CONFIG_SENSORS_W83627EHF is not set |
| 627 | # CONFIG_HWMON_DEBUG_CHIP is not set | 875 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 628 | # CONFIG_THERMAL is not set | 876 | # CONFIG_THERMAL is not set |
| 877 | # CONFIG_THERMAL_HWMON is not set | ||
| 629 | CONFIG_WATCHDOG=y | 878 | CONFIG_WATCHDOG=y |
| 630 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 879 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 631 | 880 | ||
| @@ -633,7 +882,15 @@ CONFIG_WATCHDOG=y | |||
| 633 | # Watchdog Device Drivers | 882 | # Watchdog Device Drivers |
| 634 | # | 883 | # |
| 635 | # CONFIG_SOFT_WATCHDOG is not set | 884 | # CONFIG_SOFT_WATCHDOG is not set |
| 636 | CONFIG_83xx_WDT=y | 885 | # CONFIG_ALIM7101_WDT is not set |
| 886 | # CONFIG_8xxx_WDT is not set | ||
| 887 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 888 | |||
| 889 | # | ||
| 890 | # PCI-based Watchdog Cards | ||
| 891 | # | ||
| 892 | # CONFIG_PCIPCWATCHDOG is not set | ||
| 893 | # CONFIG_WDTPCI is not set | ||
| 637 | 894 | ||
| 638 | # | 895 | # |
| 639 | # Sonics Silicon Backplane | 896 | # Sonics Silicon Backplane |
| @@ -644,8 +901,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 644 | # | 901 | # |
| 645 | # Multifunction device drivers | 902 | # Multifunction device drivers |
| 646 | # | 903 | # |
| 904 | # CONFIG_MFD_CORE is not set | ||
| 647 | # CONFIG_MFD_SM501 is not set | 905 | # CONFIG_MFD_SM501 is not set |
| 648 | # CONFIG_HTC_PASIC3 is not set | 906 | # CONFIG_HTC_PASIC3 is not set |
| 907 | # CONFIG_MFD_TMIO is not set | ||
| 649 | 908 | ||
| 650 | # | 909 | # |
| 651 | # Multimedia devices | 910 | # Multimedia devices |
| @@ -666,6 +925,8 @@ CONFIG_DAB=y | |||
| 666 | # | 925 | # |
| 667 | # Graphics support | 926 | # Graphics support |
| 668 | # | 927 | # |
| 928 | # CONFIG_AGP is not set | ||
| 929 | # CONFIG_DRM is not set | ||
| 669 | # CONFIG_VGASTATE is not set | 930 | # CONFIG_VGASTATE is not set |
| 670 | CONFIG_VIDEO_OUTPUT_CONTROL=m | 931 | CONFIG_VIDEO_OUTPUT_CONTROL=m |
| 671 | # CONFIG_FB is not set | 932 | # CONFIG_FB is not set |
| @@ -675,10 +936,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 675 | # Display device support | 936 | # Display device support |
| 676 | # | 937 | # |
| 677 | # CONFIG_DISPLAY_SUPPORT is not set | 938 | # CONFIG_DISPLAY_SUPPORT is not set |
| 678 | |||
| 679 | # | ||
| 680 | # Sound | ||
| 681 | # | ||
| 682 | # CONFIG_SOUND is not set | 939 | # CONFIG_SOUND is not set |
| 683 | CONFIG_HID_SUPPORT=y | 940 | CONFIG_HID_SUPPORT=y |
| 684 | CONFIG_HID=y | 941 | CONFIG_HID=y |
| @@ -686,13 +943,17 @@ CONFIG_HID=y | |||
| 686 | # CONFIG_HIDRAW is not set | 943 | # CONFIG_HIDRAW is not set |
| 687 | CONFIG_USB_SUPPORT=y | 944 | CONFIG_USB_SUPPORT=y |
| 688 | CONFIG_USB_ARCH_HAS_HCD=y | 945 | CONFIG_USB_ARCH_HAS_HCD=y |
| 689 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 946 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 690 | CONFIG_USB_ARCH_HAS_EHCI=y | 947 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 691 | # CONFIG_USB is not set | 948 | # CONFIG_USB is not set |
| 692 | # CONFIG_USB_OTG_WHITELIST is not set | 949 | # CONFIG_USB_OTG_WHITELIST is not set |
| 693 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 950 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 694 | 951 | ||
| 695 | # | 952 | # |
| 953 | # Enable Host or Gadget support to see Inventra options | ||
| 954 | # | ||
| 955 | |||
| 956 | # | ||
| 696 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 957 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 697 | # | 958 | # |
| 698 | # CONFIG_USB_GADGET is not set | 959 | # CONFIG_USB_GADGET is not set |
| @@ -700,6 +961,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 700 | # CONFIG_MEMSTICK is not set | 961 | # CONFIG_MEMSTICK is not set |
| 701 | # CONFIG_NEW_LEDS is not set | 962 | # CONFIG_NEW_LEDS is not set |
| 702 | # CONFIG_ACCESSIBILITY is not set | 963 | # CONFIG_ACCESSIBILITY is not set |
| 964 | # CONFIG_INFINIBAND is not set | ||
| 703 | # CONFIG_EDAC is not set | 965 | # CONFIG_EDAC is not set |
| 704 | # CONFIG_RTC_CLASS is not set | 966 | # CONFIG_RTC_CLASS is not set |
| 705 | # CONFIG_DMADEVICES is not set | 967 | # CONFIG_DMADEVICES is not set |
| @@ -769,6 +1031,7 @@ CONFIG_TMPFS=y | |||
| 769 | # CONFIG_CRAMFS is not set | 1031 | # CONFIG_CRAMFS is not set |
| 770 | # CONFIG_VXFS_FS is not set | 1032 | # CONFIG_VXFS_FS is not set |
| 771 | # CONFIG_MINIX_FS is not set | 1033 | # CONFIG_MINIX_FS is not set |
| 1034 | # CONFIG_OMFS_FS is not set | ||
| 772 | # CONFIG_HPFS_FS is not set | 1035 | # CONFIG_HPFS_FS is not set |
| 773 | # CONFIG_QNX4FS_FS is not set | 1036 | # CONFIG_QNX4FS_FS is not set |
| 774 | # CONFIG_ROMFS_FS is not set | 1037 | # CONFIG_ROMFS_FS is not set |
| @@ -779,14 +1042,13 @@ CONFIG_NFS_FS=y | |||
| 779 | CONFIG_NFS_V3=y | 1042 | CONFIG_NFS_V3=y |
| 780 | # CONFIG_NFS_V3_ACL is not set | 1043 | # CONFIG_NFS_V3_ACL is not set |
| 781 | CONFIG_NFS_V4=y | 1044 | CONFIG_NFS_V4=y |
| 782 | # CONFIG_NFSD is not set | ||
| 783 | CONFIG_ROOT_NFS=y | 1045 | CONFIG_ROOT_NFS=y |
| 1046 | # CONFIG_NFSD is not set | ||
| 784 | CONFIG_LOCKD=y | 1047 | CONFIG_LOCKD=y |
| 785 | CONFIG_LOCKD_V4=y | 1048 | CONFIG_LOCKD_V4=y |
| 786 | CONFIG_NFS_COMMON=y | 1049 | CONFIG_NFS_COMMON=y |
| 787 | CONFIG_SUNRPC=y | 1050 | CONFIG_SUNRPC=y |
| 788 | CONFIG_SUNRPC_GSS=y | 1051 | CONFIG_SUNRPC_GSS=y |
| 789 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 790 | CONFIG_RPCSEC_GSS_KRB5=y | 1052 | CONFIG_RPCSEC_GSS_KRB5=y |
| 791 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1053 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 792 | # CONFIG_SMB_FS is not set | 1054 | # CONFIG_SMB_FS is not set |
| @@ -826,6 +1088,7 @@ CONFIG_BITREVERSE=y | |||
| 826 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1088 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 827 | # CONFIG_CRC_CCITT is not set | 1089 | # CONFIG_CRC_CCITT is not set |
| 828 | # CONFIG_CRC16 is not set | 1090 | # CONFIG_CRC16 is not set |
| 1091 | CONFIG_CRC_T10DIF=y | ||
| 829 | # CONFIG_CRC_ITU_T is not set | 1092 | # CONFIG_CRC_ITU_T is not set |
| 830 | CONFIG_CRC32=y | 1093 | CONFIG_CRC32=y |
| 831 | # CONFIG_CRC7 is not set | 1094 | # CONFIG_CRC7 is not set |
| @@ -849,8 +1112,18 @@ CONFIG_FRAME_WARN=1024 | |||
| 849 | # CONFIG_HEADERS_CHECK is not set | 1112 | # CONFIG_HEADERS_CHECK is not set |
| 850 | # CONFIG_DEBUG_KERNEL is not set | 1113 | # CONFIG_DEBUG_KERNEL is not set |
| 851 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1114 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1115 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1116 | # CONFIG_LATENCYTOP is not set | ||
| 1117 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1118 | CONFIG_HAVE_FTRACE=y | ||
| 1119 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1120 | # CONFIG_FTRACE is not set | ||
| 1121 | # CONFIG_SCHED_TRACER is not set | ||
| 1122 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 852 | # CONFIG_SAMPLES is not set | 1123 | # CONFIG_SAMPLES is not set |
| 1124 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 853 | # CONFIG_IRQSTACKS is not set | 1125 | # CONFIG_IRQSTACKS is not set |
| 1126 | # CONFIG_BOOTX_TEXT is not set | ||
| 854 | # CONFIG_PPC_EARLY_DEBUG is not set | 1127 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 855 | 1128 | ||
| 856 | # | 1129 | # |
| @@ -904,6 +1177,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 904 | # CONFIG_CRYPTO_MD4 is not set | 1177 | # CONFIG_CRYPTO_MD4 is not set |
| 905 | CONFIG_CRYPTO_MD5=y | 1178 | CONFIG_CRYPTO_MD5=y |
| 906 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1179 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1180 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1181 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1182 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1183 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 907 | # CONFIG_CRYPTO_SHA1 is not set | 1184 | # CONFIG_CRYPTO_SHA1 is not set |
| 908 | # CONFIG_CRYPTO_SHA256 is not set | 1185 | # CONFIG_CRYPTO_SHA256 is not set |
| 909 | # CONFIG_CRYPTO_SHA512 is not set | 1186 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -935,5 +1212,7 @@ CONFIG_CRYPTO_DES=y | |||
| 935 | # CONFIG_CRYPTO_DEFLATE is not set | 1212 | # CONFIG_CRYPTO_DEFLATE is not set |
| 936 | # CONFIG_CRYPTO_LZO is not set | 1213 | # CONFIG_CRYPTO_LZO is not set |
| 937 | CONFIG_CRYPTO_HW=y | 1214 | CONFIG_CRYPTO_HW=y |
| 1215 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
| 1216 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 938 | # CONFIG_PPC_CLOCK is not set | 1217 | # CONFIG_PPC_CLOCK is not set |
| 939 | # CONFIG_VIRTUALIZATION is not set | 1218 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig b/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig index 0d448556f53a..e8d2d691d26c 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Tue Jun 10 09:17:12 2008 | 4 | # Thu Aug 21 00:52:25 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -51,6 +53,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,13 +93,13 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
| 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 97 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 94 | CONFIG_HOTPLUG=y | 98 | CONFIG_HOTPLUG=y |
| 95 | CONFIG_PRINTK=y | 99 | CONFIG_PRINTK=y |
| 96 | CONFIG_BUG=y | 100 | CONFIG_BUG=y |
| 97 | CONFIG_ELF_CORE=y | 101 | CONFIG_ELF_CORE=y |
| 102 | CONFIG_PCSPKR_PLATFORM=y | ||
| 98 | CONFIG_COMPAT_BRK=y | 103 | CONFIG_COMPAT_BRK=y |
| 99 | CONFIG_BASE_FULL=y | 104 | CONFIG_BASE_FULL=y |
| 100 | CONFIG_FUTEX=y | 105 | CONFIG_FUTEX=y |
| @@ -112,10 +117,16 @@ CONFIG_SLAB=y | |||
| 112 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 113 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 114 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 121 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 122 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 123 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 125 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 126 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 127 | # CONFIG_HAVE_CLK is not set | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 128 | CONFIG_PROC_PAGE_MONITOR=y |
| 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 130 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 131 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | 132 | # CONFIG_TINY_SHMEM is not set |
| @@ -126,12 +137,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 137 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 127 | # CONFIG_MODVERSIONS is not set | 138 | # CONFIG_MODVERSIONS is not set |
| 128 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 139 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 129 | # CONFIG_KMOD is not set | 140 | CONFIG_KMOD=y |
| 130 | CONFIG_BLOCK=y | 141 | CONFIG_BLOCK=y |
| 131 | # CONFIG_LBD is not set | 142 | # CONFIG_LBD is not set |
| 132 | # CONFIG_BLK_DEV_IO_TRACE is not set | 143 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 133 | # CONFIG_LSF is not set | 144 | # CONFIG_LSF is not set |
| 134 | # CONFIG_BLK_DEV_BSG is not set | 145 | # CONFIG_BLK_DEV_BSG is not set |
| 146 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 135 | 147 | ||
| 136 | # | 148 | # |
| 137 | # IO Schedulers | 149 | # IO Schedulers |
| @@ -150,37 +162,49 @@ CONFIG_CLASSIC_RCU=y | |||
| 150 | # | 162 | # |
| 151 | # Platform support | 163 | # Platform support |
| 152 | # | 164 | # |
| 153 | # CONFIG_PPC_MULTIPLATFORM is not set | 165 | CONFIG_PPC_MULTIPLATFORM=y |
| 154 | # CONFIG_PPC_82xx is not set | 166 | CONFIG_CLASSIC32=y |
| 155 | CONFIG_PPC_83xx=y | 167 | CONFIG_PPC_CHRP=y |
| 156 | # CONFIG_PPC_86xx is not set | 168 | # CONFIG_MPC5121_ADS is not set |
| 157 | # CONFIG_PPC_MPC512x is not set | 169 | # CONFIG_MPC5121_GENERIC is not set |
| 158 | # CONFIG_PPC_MPC5121 is not set | 170 | # CONFIG_PPC_MPC52xx is not set |
| 171 | CONFIG_PPC_PMAC=y | ||
| 159 | # CONFIG_PPC_CELL is not set | 172 | # CONFIG_PPC_CELL is not set |
| 160 | # CONFIG_PPC_CELL_NATIVE is not set | 173 | # CONFIG_PPC_CELL_NATIVE is not set |
| 174 | # CONFIG_PPC_82xx is not set | ||
| 161 | # CONFIG_PQ2ADS is not set | 175 | # CONFIG_PQ2ADS is not set |
| 162 | CONFIG_MPC83xx=y | 176 | CONFIG_PPC_83xx=y |
| 163 | # CONFIG_MPC831x_RDB is not set | 177 | # CONFIG_MPC831x_RDB is not set |
| 164 | # CONFIG_MPC832x_MDS is not set | 178 | # CONFIG_MPC832x_MDS is not set |
| 165 | # CONFIG_MPC832x_RDB is not set | 179 | # CONFIG_MPC832x_RDB is not set |
| 166 | # CONFIG_MPC834x_MDS is not set | 180 | # CONFIG_MPC834x_MDS is not set |
| 167 | # CONFIG_MPC834x_ITX is not set | 181 | # CONFIG_MPC834x_ITX is not set |
| 168 | # CONFIG_MPC836x_MDS is not set | 182 | # CONFIG_MPC836x_MDS is not set |
| 183 | # CONFIG_MPC836x_RDK is not set | ||
| 169 | # CONFIG_MPC837x_MDS is not set | 184 | # CONFIG_MPC837x_MDS is not set |
| 170 | CONFIG_MPC837x_RDB=y | 185 | CONFIG_MPC837x_RDB=y |
| 171 | # CONFIG_SBC834x is not set | 186 | # CONFIG_SBC834x is not set |
| 187 | # CONFIG_ASP834x is not set | ||
| 172 | CONFIG_PPC_MPC837x=y | 188 | CONFIG_PPC_MPC837x=y |
| 189 | # CONFIG_PPC_86xx is not set | ||
| 190 | # CONFIG_EMBEDDED6xx is not set | ||
| 191 | CONFIG_PPC_NATIVE=y | ||
| 192 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 173 | CONFIG_IPIC=y | 193 | CONFIG_IPIC=y |
| 174 | # CONFIG_MPIC is not set | 194 | CONFIG_MPIC=y |
| 175 | # CONFIG_MPIC_WEIRD is not set | 195 | # CONFIG_MPIC_WEIRD is not set |
| 176 | # CONFIG_PPC_I8259 is not set | 196 | CONFIG_PPC_I8259=y |
| 177 | # CONFIG_PPC_RTAS is not set | 197 | CONFIG_PPC_RTAS=y |
| 198 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 199 | CONFIG_RTAS_PROC=y | ||
| 178 | # CONFIG_MMIO_NVRAM is not set | 200 | # CONFIG_MMIO_NVRAM is not set |
| 179 | # CONFIG_PPC_MPC106 is not set | 201 | CONFIG_PPC_MPC106=y |
| 180 | # CONFIG_PPC_970_NAP is not set | 202 | # CONFIG_PPC_970_NAP is not set |
| 181 | # CONFIG_PPC_INDIRECT_IO is not set | 203 | # CONFIG_PPC_INDIRECT_IO is not set |
| 182 | # CONFIG_GENERIC_IOMAP is not set | 204 | # CONFIG_GENERIC_IOMAP is not set |
| 183 | # CONFIG_CPU_FREQ is not set | 205 | # CONFIG_CPU_FREQ is not set |
| 206 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 207 | # CONFIG_TAU is not set | ||
| 184 | # CONFIG_FSL_ULI1575 is not set | 208 | # CONFIG_FSL_ULI1575 is not set |
| 185 | 209 | ||
| 186 | # | 210 | # |
| @@ -206,6 +230,7 @@ CONFIG_BINFMT_ELF=y | |||
| 206 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 230 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 207 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 231 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 208 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 232 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 233 | # CONFIG_KEXEC is not set | ||
| 209 | CONFIG_ARCH_FLATMEM_ENABLE=y | 234 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 210 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 235 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 211 | CONFIG_SELECT_MEMORY_MODEL=y | 236 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -218,6 +243,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 218 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 243 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 219 | CONFIG_PAGEFLAGS_EXTENDED=y | 244 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 245 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 246 | CONFIG_MIGRATION=y | ||
| 221 | # CONFIG_RESOURCES_64BIT is not set | 247 | # CONFIG_RESOURCES_64BIT is not set |
| 222 | CONFIG_ZONE_DMA_FLAG=1 | 248 | CONFIG_ZONE_DMA_FLAG=1 |
| 223 | CONFIG_BOUNCE=y | 249 | CONFIG_BOUNCE=y |
| @@ -225,6 +251,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 225 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 226 | CONFIG_PROC_DEVICETREE=y | 252 | CONFIG_PROC_DEVICETREE=y |
| 227 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
| 254 | CONFIG_EXTRA_TARGETS="" | ||
| 228 | # CONFIG_PM is not set | 255 | # CONFIG_PM is not set |
| 229 | CONFIG_SECCOMP=y | 256 | CONFIG_SECCOMP=y |
| 230 | CONFIG_ISA_DMA_API=y | 257 | CONFIG_ISA_DMA_API=y |
| @@ -232,15 +259,22 @@ CONFIG_ISA_DMA_API=y | |||
| 232 | # | 259 | # |
| 233 | # Bus options | 260 | # Bus options |
| 234 | # | 261 | # |
| 262 | # CONFIG_ISA is not set | ||
| 235 | CONFIG_ZONE_DMA=y | 263 | CONFIG_ZONE_DMA=y |
| 236 | CONFIG_GENERIC_ISA_DMA=y | 264 | CONFIG_GENERIC_ISA_DMA=y |
| 237 | CONFIG_PPC_INDIRECT_PCI=y | 265 | CONFIG_PPC_INDIRECT_PCI=y |
| 238 | CONFIG_FSL_SOC=y | 266 | CONFIG_FSL_SOC=y |
| 239 | # CONFIG_PCI is not set | 267 | CONFIG_FSL_PCI=y |
| 240 | # CONFIG_PCI_DOMAINS is not set | 268 | CONFIG_PPC_PCI_CHOICE=y |
| 241 | # CONFIG_PCI_SYSCALL is not set | 269 | CONFIG_PCI=y |
| 242 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 270 | CONFIG_PCI_DOMAINS=y |
| 271 | CONFIG_PCI_SYSCALL=y | ||
| 272 | # CONFIG_PCIEPORTBUS is not set | ||
| 273 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
| 274 | # CONFIG_PCI_MSI is not set | ||
| 275 | CONFIG_PCI_LEGACY=y | ||
| 243 | # CONFIG_PCCARD is not set | 276 | # CONFIG_PCCARD is not set |
| 277 | # CONFIG_HOTPLUG_PCI is not set | ||
| 244 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
| 245 | 279 | ||
| 246 | # | 280 | # |
| @@ -256,10 +290,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 256 | CONFIG_KERNEL_START=0xc0000000 | 290 | CONFIG_KERNEL_START=0xc0000000 |
| 257 | CONFIG_PHYSICAL_START=0x00000000 | 291 | CONFIG_PHYSICAL_START=0x00000000 |
| 258 | CONFIG_TASK_SIZE=0xc0000000 | 292 | CONFIG_TASK_SIZE=0xc0000000 |
| 259 | |||
| 260 | # | ||
| 261 | # Networking | ||
| 262 | # | ||
| 263 | CONFIG_NET=y | 293 | CONFIG_NET=y |
| 264 | 294 | ||
| 265 | # | 295 | # |
| @@ -355,10 +385,16 @@ CONFIG_OF_I2C=y | |||
| 355 | # CONFIG_PARPORT is not set | 385 | # CONFIG_PARPORT is not set |
| 356 | CONFIG_BLK_DEV=y | 386 | CONFIG_BLK_DEV=y |
| 357 | # CONFIG_BLK_DEV_FD is not set | 387 | # CONFIG_BLK_DEV_FD is not set |
| 388 | # CONFIG_MAC_FLOPPY is not set | ||
| 389 | # CONFIG_BLK_CPQ_DA is not set | ||
| 390 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
| 391 | # CONFIG_BLK_DEV_DAC960 is not set | ||
| 392 | # CONFIG_BLK_DEV_UMEM is not set | ||
| 358 | # CONFIG_BLK_DEV_COW_COMMON is not set | 393 | # CONFIG_BLK_DEV_COW_COMMON is not set |
| 359 | CONFIG_BLK_DEV_LOOP=y | 394 | CONFIG_BLK_DEV_LOOP=y |
| 360 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 395 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
| 361 | # CONFIG_BLK_DEV_NBD is not set | 396 | # CONFIG_BLK_DEV_NBD is not set |
| 397 | # CONFIG_BLK_DEV_SX8 is not set | ||
| 362 | # CONFIG_BLK_DEV_UB is not set | 398 | # CONFIG_BLK_DEV_UB is not set |
| 363 | CONFIG_BLK_DEV_RAM=y | 399 | CONFIG_BLK_DEV_RAM=y |
| 364 | CONFIG_BLK_DEV_RAM_COUNT=16 | 400 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| @@ -366,9 +402,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 366 | # CONFIG_BLK_DEV_XIP is not set | 402 | # CONFIG_BLK_DEV_XIP is not set |
| 367 | # CONFIG_CDROM_PKTCDVD is not set | 403 | # CONFIG_CDROM_PKTCDVD is not set |
| 368 | # CONFIG_ATA_OVER_ETH is not set | 404 | # CONFIG_ATA_OVER_ETH is not set |
| 405 | # CONFIG_BLK_DEV_HD is not set | ||
| 369 | CONFIG_MISC_DEVICES=y | 406 | CONFIG_MISC_DEVICES=y |
| 407 | # CONFIG_PHANTOM is not set | ||
| 370 | # CONFIG_EEPROM_93CX6 is not set | 408 | # CONFIG_EEPROM_93CX6 is not set |
| 409 | # CONFIG_SGI_IOC4 is not set | ||
| 410 | # CONFIG_TIFM_CORE is not set | ||
| 371 | # CONFIG_ENCLOSURE_SERVICES is not set | 411 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 412 | # CONFIG_HP_ILO is not set | ||
| 372 | CONFIG_HAVE_IDE=y | 413 | CONFIG_HAVE_IDE=y |
| 373 | # CONFIG_IDE is not set | 414 | # CONFIG_IDE is not set |
| 374 | 415 | ||
| @@ -411,14 +452,106 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 411 | # CONFIG_SCSI_SRP_ATTRS is not set | 452 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 412 | CONFIG_SCSI_LOWLEVEL=y | 453 | CONFIG_SCSI_LOWLEVEL=y |
| 413 | # CONFIG_ISCSI_TCP is not set | 454 | # CONFIG_ISCSI_TCP is not set |
| 455 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
| 456 | # CONFIG_SCSI_3W_9XXX is not set | ||
| 457 | # CONFIG_SCSI_ACARD is not set | ||
| 458 | # CONFIG_SCSI_AACRAID is not set | ||
| 459 | # CONFIG_SCSI_AIC7XXX is not set | ||
| 460 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
| 461 | # CONFIG_SCSI_AIC79XX is not set | ||
| 462 | # CONFIG_SCSI_AIC94XX is not set | ||
| 463 | # CONFIG_SCSI_DPT_I2O is not set | ||
| 464 | # CONFIG_SCSI_ADVANSYS is not set | ||
| 465 | # CONFIG_SCSI_ARCMSR is not set | ||
| 466 | # CONFIG_MEGARAID_NEWGEN is not set | ||
| 467 | # CONFIG_MEGARAID_LEGACY is not set | ||
| 468 | # CONFIG_MEGARAID_SAS is not set | ||
| 469 | # CONFIG_SCSI_HPTIOP is not set | ||
| 470 | # CONFIG_SCSI_BUSLOGIC is not set | ||
| 471 | # CONFIG_SCSI_DMX3191D is not set | ||
| 472 | # CONFIG_SCSI_EATA is not set | ||
| 473 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
| 474 | # CONFIG_SCSI_GDTH is not set | ||
| 475 | # CONFIG_SCSI_IPS is not set | ||
| 476 | # CONFIG_SCSI_INITIO is not set | ||
| 477 | # CONFIG_SCSI_INIA100 is not set | ||
| 478 | # CONFIG_SCSI_MVSAS is not set | ||
| 479 | # CONFIG_SCSI_STEX is not set | ||
| 480 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
| 481 | # CONFIG_SCSI_IPR is not set | ||
| 482 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
| 483 | # CONFIG_SCSI_QLA_FC is not set | ||
| 484 | # CONFIG_SCSI_QLA_ISCSI is not set | ||
| 485 | # CONFIG_SCSI_LPFC is not set | ||
| 486 | # CONFIG_SCSI_DC395x is not set | ||
| 487 | # CONFIG_SCSI_DC390T is not set | ||
| 488 | # CONFIG_SCSI_NSP32 is not set | ||
| 414 | # CONFIG_SCSI_DEBUG is not set | 489 | # CONFIG_SCSI_DEBUG is not set |
| 490 | # CONFIG_SCSI_MESH is not set | ||
| 491 | # CONFIG_SCSI_MAC53C94 is not set | ||
| 492 | # CONFIG_SCSI_SRP is not set | ||
| 493 | # CONFIG_SCSI_DH is not set | ||
| 415 | CONFIG_ATA=y | 494 | CONFIG_ATA=y |
| 416 | # CONFIG_ATA_NONSTANDARD is not set | 495 | # CONFIG_ATA_NONSTANDARD is not set |
| 417 | CONFIG_SATA_PMP=y | 496 | CONFIG_SATA_PMP=y |
| 497 | # CONFIG_SATA_AHCI is not set | ||
| 498 | # CONFIG_SATA_SIL24 is not set | ||
| 418 | CONFIG_SATA_FSL=y | 499 | CONFIG_SATA_FSL=y |
| 419 | CONFIG_ATA_SFF=y | 500 | CONFIG_ATA_SFF=y |
| 501 | # CONFIG_SATA_SVW is not set | ||
| 502 | # CONFIG_ATA_PIIX is not set | ||
| 420 | # CONFIG_SATA_MV is not set | 503 | # CONFIG_SATA_MV is not set |
| 504 | # CONFIG_SATA_NV is not set | ||
| 505 | # CONFIG_PDC_ADMA is not set | ||
| 506 | # CONFIG_SATA_QSTOR is not set | ||
| 507 | # CONFIG_SATA_PROMISE is not set | ||
| 508 | # CONFIG_SATA_SX4 is not set | ||
| 509 | # CONFIG_SATA_SIL is not set | ||
| 510 | # CONFIG_SATA_SIS is not set | ||
| 511 | # CONFIG_SATA_ULI is not set | ||
| 512 | # CONFIG_SATA_VIA is not set | ||
| 513 | # CONFIG_SATA_VITESSE is not set | ||
| 514 | # CONFIG_SATA_INIC162X is not set | ||
| 515 | # CONFIG_PATA_ALI is not set | ||
| 516 | # CONFIG_PATA_AMD is not set | ||
| 517 | # CONFIG_PATA_ARTOP is not set | ||
| 518 | # CONFIG_PATA_ATIIXP is not set | ||
| 519 | # CONFIG_PATA_CMD640_PCI is not set | ||
| 520 | # CONFIG_PATA_CMD64X is not set | ||
| 521 | # CONFIG_PATA_CS5520 is not set | ||
| 522 | # CONFIG_PATA_CS5530 is not set | ||
| 523 | # CONFIG_PATA_CYPRESS is not set | ||
| 524 | # CONFIG_PATA_EFAR is not set | ||
| 525 | # CONFIG_ATA_GENERIC is not set | ||
| 526 | # CONFIG_PATA_HPT366 is not set | ||
| 527 | # CONFIG_PATA_HPT37X is not set | ||
| 528 | # CONFIG_PATA_HPT3X2N is not set | ||
| 529 | # CONFIG_PATA_HPT3X3 is not set | ||
| 530 | # CONFIG_PATA_IT821X is not set | ||
| 531 | # CONFIG_PATA_IT8213 is not set | ||
| 532 | # CONFIG_PATA_JMICRON is not set | ||
| 533 | # CONFIG_PATA_TRIFLEX is not set | ||
| 534 | # CONFIG_PATA_MARVELL is not set | ||
| 535 | # CONFIG_PATA_MPIIX is not set | ||
| 536 | # CONFIG_PATA_OLDPIIX is not set | ||
| 537 | # CONFIG_PATA_NETCELL is not set | ||
| 538 | # CONFIG_PATA_NINJA32 is not set | ||
| 539 | # CONFIG_PATA_NS87410 is not set | ||
| 540 | # CONFIG_PATA_NS87415 is not set | ||
| 541 | # CONFIG_PATA_OPTI is not set | ||
| 542 | # CONFIG_PATA_OPTIDMA is not set | ||
| 543 | # CONFIG_PATA_PDC_OLD is not set | ||
| 544 | # CONFIG_PATA_RADISYS is not set | ||
| 545 | # CONFIG_PATA_RZ1000 is not set | ||
| 546 | # CONFIG_PATA_SC1200 is not set | ||
| 547 | # CONFIG_PATA_SERVERWORKS is not set | ||
| 548 | # CONFIG_PATA_PDC2027X is not set | ||
| 549 | # CONFIG_PATA_SIL680 is not set | ||
| 550 | # CONFIG_PATA_SIS is not set | ||
| 551 | # CONFIG_PATA_VIA is not set | ||
| 552 | # CONFIG_PATA_WINBOND is not set | ||
| 421 | # CONFIG_PATA_PLATFORM is not set | 553 | # CONFIG_PATA_PLATFORM is not set |
| 554 | # CONFIG_PATA_SCH is not set | ||
| 422 | CONFIG_MD=y | 555 | CONFIG_MD=y |
| 423 | CONFIG_BLK_DEV_MD=y | 556 | CONFIG_BLK_DEV_MD=y |
| 424 | # CONFIG_MD_LINEAR is not set | 557 | # CONFIG_MD_LINEAR is not set |
| @@ -430,15 +563,27 @@ CONFIG_MD_RAID5_RESHAPE=y | |||
| 430 | # CONFIG_MD_MULTIPATH is not set | 563 | # CONFIG_MD_MULTIPATH is not set |
| 431 | # CONFIG_MD_FAULTY is not set | 564 | # CONFIG_MD_FAULTY is not set |
| 432 | # CONFIG_BLK_DEV_DM is not set | 565 | # CONFIG_BLK_DEV_DM is not set |
| 566 | # CONFIG_FUSION is not set | ||
| 567 | |||
| 568 | # | ||
| 569 | # IEEE 1394 (FireWire) support | ||
| 570 | # | ||
| 571 | |||
| 572 | # | ||
| 573 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 574 | # | ||
| 575 | # CONFIG_FIREWIRE is not set | ||
| 576 | # CONFIG_IEEE1394 is not set | ||
| 577 | # CONFIG_I2O is not set | ||
| 433 | # CONFIG_MACINTOSH_DRIVERS is not set | 578 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 434 | CONFIG_NETDEVICES=y | 579 | CONFIG_NETDEVICES=y |
| 435 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 436 | # CONFIG_DUMMY is not set | 580 | # CONFIG_DUMMY is not set |
| 437 | # CONFIG_BONDING is not set | 581 | # CONFIG_BONDING is not set |
| 438 | # CONFIG_MACVLAN is not set | 582 | # CONFIG_MACVLAN is not set |
| 439 | # CONFIG_EQUALIZER is not set | 583 | # CONFIG_EQUALIZER is not set |
| 440 | # CONFIG_TUN is not set | 584 | # CONFIG_TUN is not set |
| 441 | # CONFIG_VETH is not set | 585 | # CONFIG_VETH is not set |
| 586 | # CONFIG_ARCNET is not set | ||
| 442 | CONFIG_PHYLIB=y | 587 | CONFIG_PHYLIB=y |
| 443 | 588 | ||
| 444 | # | 589 | # |
| @@ -458,16 +603,44 @@ CONFIG_FIXED_PHY=y | |||
| 458 | # CONFIG_MDIO_BITBANG is not set | 603 | # CONFIG_MDIO_BITBANG is not set |
| 459 | CONFIG_NET_ETHERNET=y | 604 | CONFIG_NET_ETHERNET=y |
| 460 | CONFIG_MII=y | 605 | CONFIG_MII=y |
| 606 | # CONFIG_MACE is not set | ||
| 607 | # CONFIG_BMAC is not set | ||
| 608 | # CONFIG_HAPPYMEAL is not set | ||
| 609 | # CONFIG_SUNGEM is not set | ||
| 610 | # CONFIG_CASSINI is not set | ||
| 611 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 612 | # CONFIG_NET_TULIP is not set | ||
| 613 | # CONFIG_HP100 is not set | ||
| 461 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 614 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 462 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 615 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 463 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 616 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| 464 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 617 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 618 | # CONFIG_NET_PCI is not set | ||
| 465 | # CONFIG_B44 is not set | 619 | # CONFIG_B44 is not set |
| 466 | CONFIG_NETDEV_1000=y | 620 | CONFIG_NETDEV_1000=y |
| 467 | # CONFIG_E1000E_ENABLED is not set | 621 | # CONFIG_ACENIC is not set |
| 622 | # CONFIG_DL2K is not set | ||
| 623 | # CONFIG_E1000 is not set | ||
| 624 | # CONFIG_E1000E is not set | ||
| 625 | # CONFIG_IP1000 is not set | ||
| 626 | # CONFIG_IGB is not set | ||
| 627 | # CONFIG_NS83820 is not set | ||
| 628 | # CONFIG_HAMACHI is not set | ||
| 629 | # CONFIG_YELLOWFIN is not set | ||
| 630 | # CONFIG_R8169 is not set | ||
| 631 | # CONFIG_SIS190 is not set | ||
| 632 | # CONFIG_SKGE is not set | ||
| 633 | # CONFIG_SKY2 is not set | ||
| 634 | # CONFIG_VIA_VELOCITY is not set | ||
| 635 | # CONFIG_TIGON3 is not set | ||
| 636 | # CONFIG_BNX2 is not set | ||
| 468 | CONFIG_GIANFAR=y | 637 | CONFIG_GIANFAR=y |
| 469 | CONFIG_GFAR_NAPI=y | 638 | # CONFIG_MV643XX_ETH is not set |
| 639 | # CONFIG_QLA3XXX is not set | ||
| 640 | # CONFIG_ATL1 is not set | ||
| 641 | # CONFIG_ATL1E is not set | ||
| 470 | # CONFIG_NETDEV_10000 is not set | 642 | # CONFIG_NETDEV_10000 is not set |
| 643 | # CONFIG_TR is not set | ||
| 471 | 644 | ||
| 472 | # | 645 | # |
| 473 | # Wireless LAN | 646 | # Wireless LAN |
| @@ -485,8 +658,11 @@ CONFIG_GFAR_NAPI=y | |||
| 485 | # CONFIG_USB_RTL8150 is not set | 658 | # CONFIG_USB_RTL8150 is not set |
| 486 | # CONFIG_USB_USBNET is not set | 659 | # CONFIG_USB_USBNET is not set |
| 487 | # CONFIG_WAN is not set | 660 | # CONFIG_WAN is not set |
| 661 | # CONFIG_FDDI is not set | ||
| 662 | # CONFIG_HIPPI is not set | ||
| 488 | # CONFIG_PPP is not set | 663 | # CONFIG_PPP is not set |
| 489 | # CONFIG_SLIP is not set | 664 | # CONFIG_SLIP is not set |
| 665 | # CONFIG_NET_FC is not set | ||
| 490 | # CONFIG_NETCONSOLE is not set | 666 | # CONFIG_NETCONSOLE is not set |
| 491 | # CONFIG_NETPOLL is not set | 667 | # CONFIG_NETPOLL is not set |
| 492 | # CONFIG_NET_POLL_CONTROLLER is not set | 668 | # CONFIG_NET_POLL_CONTROLLER is not set |
| @@ -530,12 +706,14 @@ CONFIG_INPUT=y | |||
| 530 | # CONFIG_VT is not set | 706 | # CONFIG_VT is not set |
| 531 | CONFIG_DEVKMEM=y | 707 | CONFIG_DEVKMEM=y |
| 532 | # CONFIG_SERIAL_NONSTANDARD is not set | 708 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 709 | # CONFIG_NOZOMI is not set | ||
| 533 | 710 | ||
| 534 | # | 711 | # |
| 535 | # Serial drivers | 712 | # Serial drivers |
| 536 | # | 713 | # |
| 537 | CONFIG_SERIAL_8250=y | 714 | CONFIG_SERIAL_8250=y |
| 538 | CONFIG_SERIAL_8250_CONSOLE=y | 715 | CONFIG_SERIAL_8250_CONSOLE=y |
| 716 | CONFIG_SERIAL_8250_PCI=y | ||
| 539 | CONFIG_SERIAL_8250_NR_UARTS=4 | 717 | CONFIG_SERIAL_8250_NR_UARTS=4 |
| 540 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | 718 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 |
| 541 | # CONFIG_SERIAL_8250_EXTENDED is not set | 719 | # CONFIG_SERIAL_8250_EXTENDED is not set |
| @@ -546,41 +724,91 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 546 | # CONFIG_SERIAL_UARTLITE is not set | 724 | # CONFIG_SERIAL_UARTLITE is not set |
| 547 | CONFIG_SERIAL_CORE=y | 725 | CONFIG_SERIAL_CORE=y |
| 548 | CONFIG_SERIAL_CORE_CONSOLE=y | 726 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 727 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 728 | # CONFIG_SERIAL_JSM is not set | ||
| 549 | # CONFIG_SERIAL_OF_PLATFORM is not set | 729 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 550 | CONFIG_UNIX98_PTYS=y | 730 | CONFIG_UNIX98_PTYS=y |
| 551 | CONFIG_LEGACY_PTYS=y | 731 | CONFIG_LEGACY_PTYS=y |
| 552 | CONFIG_LEGACY_PTY_COUNT=256 | 732 | CONFIG_LEGACY_PTY_COUNT=256 |
| 733 | # CONFIG_BRIQ_PANEL is not set | ||
| 734 | # CONFIG_HVC_RTAS is not set | ||
| 553 | # CONFIG_IPMI_HANDLER is not set | 735 | # CONFIG_IPMI_HANDLER is not set |
| 554 | # CONFIG_HW_RANDOM is not set | 736 | # CONFIG_HW_RANDOM is not set |
| 555 | # CONFIG_NVRAM is not set | 737 | # CONFIG_NVRAM is not set |
| 556 | CONFIG_GEN_RTC=y | 738 | CONFIG_GEN_RTC=y |
| 557 | # CONFIG_GEN_RTC_X is not set | 739 | # CONFIG_GEN_RTC_X is not set |
| 558 | # CONFIG_R3964 is not set | 740 | # CONFIG_R3964 is not set |
| 741 | # CONFIG_APPLICOM is not set | ||
| 559 | # CONFIG_RAW_DRIVER is not set | 742 | # CONFIG_RAW_DRIVER is not set |
| 560 | # CONFIG_TCG_TPM is not set | 743 | # CONFIG_TCG_TPM is not set |
| 744 | CONFIG_DEVPORT=y | ||
| 561 | CONFIG_I2C=y | 745 | CONFIG_I2C=y |
| 562 | CONFIG_I2C_BOARDINFO=y | 746 | CONFIG_I2C_BOARDINFO=y |
| 563 | CONFIG_I2C_CHARDEV=y | 747 | CONFIG_I2C_CHARDEV=y |
| 748 | CONFIG_I2C_HELPER_AUTO=y | ||
| 564 | 749 | ||
| 565 | # | 750 | # |
| 566 | # I2C Hardware Bus support | 751 | # I2C Hardware Bus support |
| 567 | # | 752 | # |
| 753 | |||
| 754 | # | ||
| 755 | # PC SMBus host controller drivers | ||
| 756 | # | ||
| 757 | # CONFIG_I2C_ALI1535 is not set | ||
| 758 | # CONFIG_I2C_ALI1563 is not set | ||
| 759 | # CONFIG_I2C_ALI15X3 is not set | ||
| 760 | # CONFIG_I2C_AMD756 is not set | ||
| 761 | # CONFIG_I2C_AMD8111 is not set | ||
| 762 | # CONFIG_I2C_I801 is not set | ||
| 763 | # CONFIG_I2C_ISCH is not set | ||
| 764 | # CONFIG_I2C_PIIX4 is not set | ||
| 765 | # CONFIG_I2C_NFORCE2 is not set | ||
| 766 | # CONFIG_I2C_SIS5595 is not set | ||
| 767 | # CONFIG_I2C_SIS630 is not set | ||
| 768 | # CONFIG_I2C_SIS96X is not set | ||
| 769 | # CONFIG_I2C_VIA is not set | ||
| 770 | # CONFIG_I2C_VIAPRO is not set | ||
| 771 | |||
| 772 | # | ||
| 773 | # Mac SMBus host controller drivers | ||
| 774 | # | ||
| 775 | # CONFIG_I2C_HYDRA is not set | ||
| 776 | CONFIG_I2C_POWERMAC=y | ||
| 777 | |||
| 778 | # | ||
| 779 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 780 | # | ||
| 568 | CONFIG_I2C_MPC=y | 781 | CONFIG_I2C_MPC=y |
| 569 | # CONFIG_I2C_OCORES is not set | 782 | # CONFIG_I2C_OCORES is not set |
| 570 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 571 | # CONFIG_I2C_SIMTEC is not set | 783 | # CONFIG_I2C_SIMTEC is not set |
| 784 | |||
| 785 | # | ||
| 786 | # External I2C/SMBus adapter drivers | ||
| 787 | # | ||
| 788 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 572 | # CONFIG_I2C_TAOS_EVM is not set | 789 | # CONFIG_I2C_TAOS_EVM is not set |
| 573 | # CONFIG_I2C_STUB is not set | ||
| 574 | # CONFIG_I2C_TINY_USB is not set | 790 | # CONFIG_I2C_TINY_USB is not set |
| 791 | |||
| 792 | # | ||
| 793 | # Graphics adapter I2C/DDC channel drivers | ||
| 794 | # | ||
| 795 | # CONFIG_I2C_VOODOO3 is not set | ||
| 796 | |||
| 797 | # | ||
| 798 | # Other I2C/SMBus bus drivers | ||
| 799 | # | ||
| 575 | # CONFIG_I2C_PCA_PLATFORM is not set | 800 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 801 | # CONFIG_I2C_STUB is not set | ||
| 576 | 802 | ||
| 577 | # | 803 | # |
| 578 | # Miscellaneous I2C Chip support | 804 | # Miscellaneous I2C Chip support |
| 579 | # | 805 | # |
| 580 | # CONFIG_DS1682 is not set | 806 | # CONFIG_DS1682 is not set |
| 807 | # CONFIG_AT24 is not set | ||
| 581 | # CONFIG_SENSORS_EEPROM is not set | 808 | # CONFIG_SENSORS_EEPROM is not set |
| 582 | # CONFIG_SENSORS_PCF8574 is not set | 809 | # CONFIG_SENSORS_PCF8574 is not set |
| 583 | # CONFIG_PCF8575 is not set | 810 | # CONFIG_PCF8575 is not set |
| 811 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 584 | # CONFIG_SENSORS_PCF8591 is not set | 812 | # CONFIG_SENSORS_PCF8591 is not set |
| 585 | # CONFIG_SENSORS_MAX6875 is not set | 813 | # CONFIG_SENSORS_MAX6875 is not set |
| 586 | # CONFIG_SENSORS_TSL2550 is not set | 814 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -589,10 +817,13 @@ CONFIG_I2C_MPC=y | |||
| 589 | # CONFIG_I2C_DEBUG_BUS is not set | 817 | # CONFIG_I2C_DEBUG_BUS is not set |
| 590 | # CONFIG_I2C_DEBUG_CHIP is not set | 818 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 591 | # CONFIG_SPI is not set | 819 | # CONFIG_SPI is not set |
| 820 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 821 | # CONFIG_GPIOLIB is not set | ||
| 592 | # CONFIG_W1 is not set | 822 | # CONFIG_W1 is not set |
| 593 | # CONFIG_POWER_SUPPLY is not set | 823 | # CONFIG_POWER_SUPPLY is not set |
| 594 | CONFIG_HWMON=y | 824 | CONFIG_HWMON=y |
| 595 | # CONFIG_HWMON_VID is not set | 825 | # CONFIG_HWMON_VID is not set |
| 826 | # CONFIG_SENSORS_AD7414 is not set | ||
| 596 | # CONFIG_SENSORS_AD7418 is not set | 827 | # CONFIG_SENSORS_AD7418 is not set |
| 597 | # CONFIG_SENSORS_ADM1021 is not set | 828 | # CONFIG_SENSORS_ADM1021 is not set |
| 598 | # CONFIG_SENSORS_ADM1025 is not set | 829 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -602,8 +833,10 @@ CONFIG_HWMON=y | |||
| 602 | # CONFIG_SENSORS_ADM9240 is not set | 833 | # CONFIG_SENSORS_ADM9240 is not set |
| 603 | # CONFIG_SENSORS_ADT7470 is not set | 834 | # CONFIG_SENSORS_ADT7470 is not set |
| 604 | # CONFIG_SENSORS_ADT7473 is not set | 835 | # CONFIG_SENSORS_ADT7473 is not set |
| 836 | # CONFIG_SENSORS_AMS is not set | ||
| 605 | # CONFIG_SENSORS_ATXP1 is not set | 837 | # CONFIG_SENSORS_ATXP1 is not set |
| 606 | # CONFIG_SENSORS_DS1621 is not set | 838 | # CONFIG_SENSORS_DS1621 is not set |
| 839 | # CONFIG_SENSORS_I5K_AMB is not set | ||
| 607 | # CONFIG_SENSORS_F71805F is not set | 840 | # CONFIG_SENSORS_F71805F is not set |
| 608 | # CONFIG_SENSORS_F71882FG is not set | 841 | # CONFIG_SENSORS_F71882FG is not set |
| 609 | # CONFIG_SENSORS_F75375S is not set | 842 | # CONFIG_SENSORS_F75375S is not set |
| @@ -625,13 +858,16 @@ CONFIG_HWMON=y | |||
| 625 | # CONFIG_SENSORS_MAX6650 is not set | 858 | # CONFIG_SENSORS_MAX6650 is not set |
| 626 | # CONFIG_SENSORS_PC87360 is not set | 859 | # CONFIG_SENSORS_PC87360 is not set |
| 627 | # CONFIG_SENSORS_PC87427 is not set | 860 | # CONFIG_SENSORS_PC87427 is not set |
| 861 | # CONFIG_SENSORS_SIS5595 is not set | ||
| 628 | # CONFIG_SENSORS_DME1737 is not set | 862 | # CONFIG_SENSORS_DME1737 is not set |
| 629 | # CONFIG_SENSORS_SMSC47M1 is not set | 863 | # CONFIG_SENSORS_SMSC47M1 is not set |
| 630 | # CONFIG_SENSORS_SMSC47M192 is not set | 864 | # CONFIG_SENSORS_SMSC47M192 is not set |
| 631 | # CONFIG_SENSORS_SMSC47B397 is not set | 865 | # CONFIG_SENSORS_SMSC47B397 is not set |
| 632 | # CONFIG_SENSORS_ADS7828 is not set | 866 | # CONFIG_SENSORS_ADS7828 is not set |
| 633 | # CONFIG_SENSORS_THMC50 is not set | 867 | # CONFIG_SENSORS_THMC50 is not set |
| 868 | # CONFIG_SENSORS_VIA686A is not set | ||
| 634 | # CONFIG_SENSORS_VT1211 is not set | 869 | # CONFIG_SENSORS_VT1211 is not set |
| 870 | # CONFIG_SENSORS_VT8231 is not set | ||
| 635 | # CONFIG_SENSORS_W83781D is not set | 871 | # CONFIG_SENSORS_W83781D is not set |
| 636 | # CONFIG_SENSORS_W83791D is not set | 872 | # CONFIG_SENSORS_W83791D is not set |
| 637 | # CONFIG_SENSORS_W83792D is not set | 873 | # CONFIG_SENSORS_W83792D is not set |
| @@ -642,6 +878,7 @@ CONFIG_HWMON=y | |||
| 642 | # CONFIG_SENSORS_W83627EHF is not set | 878 | # CONFIG_SENSORS_W83627EHF is not set |
| 643 | # CONFIG_HWMON_DEBUG_CHIP is not set | 879 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 644 | # CONFIG_THERMAL is not set | 880 | # CONFIG_THERMAL is not set |
| 881 | # CONFIG_THERMAL_HWMON is not set | ||
| 645 | CONFIG_WATCHDOG=y | 882 | CONFIG_WATCHDOG=y |
| 646 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 883 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 647 | 884 | ||
| @@ -649,7 +886,15 @@ CONFIG_WATCHDOG=y | |||
| 649 | # Watchdog Device Drivers | 886 | # Watchdog Device Drivers |
| 650 | # | 887 | # |
| 651 | # CONFIG_SOFT_WATCHDOG is not set | 888 | # CONFIG_SOFT_WATCHDOG is not set |
| 652 | CONFIG_83xx_WDT=y | 889 | # CONFIG_ALIM7101_WDT is not set |
| 890 | # CONFIG_8xxx_WDT is not set | ||
| 891 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 892 | |||
| 893 | # | ||
| 894 | # PCI-based Watchdog Cards | ||
| 895 | # | ||
| 896 | # CONFIG_PCIPCWATCHDOG is not set | ||
| 897 | # CONFIG_WDTPCI is not set | ||
| 653 | 898 | ||
| 654 | # | 899 | # |
| 655 | # USB-based Watchdog Cards | 900 | # USB-based Watchdog Cards |
| @@ -665,8 +910,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 665 | # | 910 | # |
| 666 | # Multifunction device drivers | 911 | # Multifunction device drivers |
| 667 | # | 912 | # |
| 913 | # CONFIG_MFD_CORE is not set | ||
| 668 | # CONFIG_MFD_SM501 is not set | 914 | # CONFIG_MFD_SM501 is not set |
| 669 | # CONFIG_HTC_PASIC3 is not set | 915 | # CONFIG_HTC_PASIC3 is not set |
| 916 | # CONFIG_MFD_TMIO is not set | ||
| 670 | 917 | ||
| 671 | # | 918 | # |
| 672 | # Multimedia devices | 919 | # Multimedia devices |
| @@ -688,6 +935,8 @@ CONFIG_DAB=y | |||
| 688 | # | 935 | # |
| 689 | # Graphics support | 936 | # Graphics support |
| 690 | # | 937 | # |
| 938 | # CONFIG_AGP is not set | ||
| 939 | # CONFIG_DRM is not set | ||
| 691 | # CONFIG_VGASTATE is not set | 940 | # CONFIG_VGASTATE is not set |
| 692 | CONFIG_VIDEO_OUTPUT_CONTROL=m | 941 | CONFIG_VIDEO_OUTPUT_CONTROL=m |
| 693 | # CONFIG_FB is not set | 942 | # CONFIG_FB is not set |
| @@ -697,10 +946,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 697 | # Display device support | 946 | # Display device support |
| 698 | # | 947 | # |
| 699 | # CONFIG_DISPLAY_SUPPORT is not set | 948 | # CONFIG_DISPLAY_SUPPORT is not set |
| 700 | |||
| 701 | # | ||
| 702 | # Sound | ||
| 703 | # | ||
| 704 | # CONFIG_SOUND is not set | 949 | # CONFIG_SOUND is not set |
| 705 | CONFIG_HID_SUPPORT=y | 950 | CONFIG_HID_SUPPORT=y |
| 706 | CONFIG_HID=y | 951 | CONFIG_HID=y |
| @@ -716,7 +961,7 @@ CONFIG_USB_HID=y | |||
| 716 | # CONFIG_USB_HIDDEV is not set | 961 | # CONFIG_USB_HIDDEV is not set |
| 717 | CONFIG_USB_SUPPORT=y | 962 | CONFIG_USB_SUPPORT=y |
| 718 | CONFIG_USB_ARCH_HAS_HCD=y | 963 | CONFIG_USB_ARCH_HAS_HCD=y |
| 719 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 964 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 720 | CONFIG_USB_ARCH_HAS_EHCI=y | 965 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 721 | CONFIG_USB=y | 966 | CONFIG_USB=y |
| 722 | # CONFIG_USB_DEBUG is not set | 967 | # CONFIG_USB_DEBUG is not set |
| @@ -731,6 +976,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 731 | # CONFIG_USB_OTG is not set | 976 | # CONFIG_USB_OTG is not set |
| 732 | # CONFIG_USB_OTG_WHITELIST is not set | 977 | # CONFIG_USB_OTG_WHITELIST is not set |
| 733 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 978 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 979 | CONFIG_USB_MON=y | ||
| 734 | 980 | ||
| 735 | # | 981 | # |
| 736 | # USB Host Controller Drivers | 982 | # USB Host Controller Drivers |
| @@ -743,6 +989,8 @@ CONFIG_USB_EHCI_FSL=y | |||
| 743 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 989 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 744 | # CONFIG_USB_ISP116X_HCD is not set | 990 | # CONFIG_USB_ISP116X_HCD is not set |
| 745 | # CONFIG_USB_ISP1760_HCD is not set | 991 | # CONFIG_USB_ISP1760_HCD is not set |
| 992 | # CONFIG_USB_OHCI_HCD is not set | ||
| 993 | # CONFIG_USB_UHCI_HCD is not set | ||
| 746 | # CONFIG_USB_SL811_HCD is not set | 994 | # CONFIG_USB_SL811_HCD is not set |
| 747 | # CONFIG_USB_R8A66597_HCD is not set | 995 | # CONFIG_USB_R8A66597_HCD is not set |
| 748 | 996 | ||
| @@ -768,7 +1016,6 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 768 | # | 1016 | # |
| 769 | # CONFIG_USB_MDC800 is not set | 1017 | # CONFIG_USB_MDC800 is not set |
| 770 | # CONFIG_USB_MICROTEK is not set | 1018 | # CONFIG_USB_MICROTEK is not set |
| 771 | CONFIG_USB_MON=y | ||
| 772 | 1019 | ||
| 773 | # | 1020 | # |
| 774 | # USB port drivers | 1021 | # USB port drivers |
| @@ -781,7 +1028,6 @@ CONFIG_USB_MON=y | |||
| 781 | # CONFIG_USB_EMI62 is not set | 1028 | # CONFIG_USB_EMI62 is not set |
| 782 | # CONFIG_USB_EMI26 is not set | 1029 | # CONFIG_USB_EMI26 is not set |
| 783 | # CONFIG_USB_ADUTUX is not set | 1030 | # CONFIG_USB_ADUTUX is not set |
| 784 | # CONFIG_USB_AUERSWALD is not set | ||
| 785 | # CONFIG_USB_RIO500 is not set | 1031 | # CONFIG_USB_RIO500 is not set |
| 786 | # CONFIG_USB_LEGOTOWER is not set | 1032 | # CONFIG_USB_LEGOTOWER is not set |
| 787 | # CONFIG_USB_LCD is not set | 1033 | # CONFIG_USB_LCD is not set |
| @@ -803,6 +1049,7 @@ CONFIG_USB_MON=y | |||
| 803 | # CONFIG_MEMSTICK is not set | 1049 | # CONFIG_MEMSTICK is not set |
| 804 | # CONFIG_NEW_LEDS is not set | 1050 | # CONFIG_NEW_LEDS is not set |
| 805 | # CONFIG_ACCESSIBILITY is not set | 1051 | # CONFIG_ACCESSIBILITY is not set |
| 1052 | # CONFIG_INFINIBAND is not set | ||
| 806 | # CONFIG_EDAC is not set | 1053 | # CONFIG_EDAC is not set |
| 807 | # CONFIG_RTC_CLASS is not set | 1054 | # CONFIG_RTC_CLASS is not set |
| 808 | # CONFIG_DMADEVICES is not set | 1055 | # CONFIG_DMADEVICES is not set |
| @@ -872,6 +1119,7 @@ CONFIG_TMPFS=y | |||
| 872 | # CONFIG_CRAMFS is not set | 1119 | # CONFIG_CRAMFS is not set |
| 873 | # CONFIG_VXFS_FS is not set | 1120 | # CONFIG_VXFS_FS is not set |
| 874 | # CONFIG_MINIX_FS is not set | 1121 | # CONFIG_MINIX_FS is not set |
| 1122 | # CONFIG_OMFS_FS is not set | ||
| 875 | # CONFIG_HPFS_FS is not set | 1123 | # CONFIG_HPFS_FS is not set |
| 876 | # CONFIG_QNX4FS_FS is not set | 1124 | # CONFIG_QNX4FS_FS is not set |
| 877 | # CONFIG_ROMFS_FS is not set | 1125 | # CONFIG_ROMFS_FS is not set |
| @@ -882,14 +1130,13 @@ CONFIG_NFS_FS=y | |||
| 882 | CONFIG_NFS_V3=y | 1130 | CONFIG_NFS_V3=y |
| 883 | # CONFIG_NFS_V3_ACL is not set | 1131 | # CONFIG_NFS_V3_ACL is not set |
| 884 | CONFIG_NFS_V4=y | 1132 | CONFIG_NFS_V4=y |
| 885 | # CONFIG_NFSD is not set | ||
| 886 | CONFIG_ROOT_NFS=y | 1133 | CONFIG_ROOT_NFS=y |
| 1134 | # CONFIG_NFSD is not set | ||
| 887 | CONFIG_LOCKD=y | 1135 | CONFIG_LOCKD=y |
| 888 | CONFIG_LOCKD_V4=y | 1136 | CONFIG_LOCKD_V4=y |
| 889 | CONFIG_NFS_COMMON=y | 1137 | CONFIG_NFS_COMMON=y |
| 890 | CONFIG_SUNRPC=y | 1138 | CONFIG_SUNRPC=y |
| 891 | CONFIG_SUNRPC_GSS=y | 1139 | CONFIG_SUNRPC_GSS=y |
| 892 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 893 | CONFIG_RPCSEC_GSS_KRB5=y | 1140 | CONFIG_RPCSEC_GSS_KRB5=y |
| 894 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1141 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 895 | # CONFIG_SMB_FS is not set | 1142 | # CONFIG_SMB_FS is not set |
| @@ -929,6 +1176,7 @@ CONFIG_BITREVERSE=y | |||
| 929 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1176 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 930 | # CONFIG_CRC_CCITT is not set | 1177 | # CONFIG_CRC_CCITT is not set |
| 931 | # CONFIG_CRC16 is not set | 1178 | # CONFIG_CRC16 is not set |
| 1179 | CONFIG_CRC_T10DIF=y | ||
| 932 | # CONFIG_CRC_ITU_T is not set | 1180 | # CONFIG_CRC_ITU_T is not set |
| 933 | CONFIG_CRC32=y | 1181 | CONFIG_CRC32=y |
| 934 | # CONFIG_CRC7 is not set | 1182 | # CONFIG_CRC7 is not set |
| @@ -952,8 +1200,18 @@ CONFIG_FRAME_WARN=1024 | |||
| 952 | # CONFIG_HEADERS_CHECK is not set | 1200 | # CONFIG_HEADERS_CHECK is not set |
| 953 | # CONFIG_DEBUG_KERNEL is not set | 1201 | # CONFIG_DEBUG_KERNEL is not set |
| 954 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1202 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1203 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1204 | # CONFIG_LATENCYTOP is not set | ||
| 1205 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1206 | CONFIG_HAVE_FTRACE=y | ||
| 1207 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1208 | # CONFIG_FTRACE is not set | ||
| 1209 | # CONFIG_SCHED_TRACER is not set | ||
| 1210 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 955 | # CONFIG_SAMPLES is not set | 1211 | # CONFIG_SAMPLES is not set |
| 1212 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 956 | # CONFIG_IRQSTACKS is not set | 1213 | # CONFIG_IRQSTACKS is not set |
| 1214 | # CONFIG_BOOTX_TEXT is not set | ||
| 957 | # CONFIG_PPC_EARLY_DEBUG is not set | 1215 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 958 | 1216 | ||
| 959 | # | 1217 | # |
| @@ -1011,6 +1269,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1011 | # CONFIG_CRYPTO_MD4 is not set | 1269 | # CONFIG_CRYPTO_MD4 is not set |
| 1012 | CONFIG_CRYPTO_MD5=y | 1270 | CONFIG_CRYPTO_MD5=y |
| 1013 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1271 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1272 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1273 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1274 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1275 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1014 | # CONFIG_CRYPTO_SHA1 is not set | 1276 | # CONFIG_CRYPTO_SHA1 is not set |
| 1015 | # CONFIG_CRYPTO_SHA256 is not set | 1277 | # CONFIG_CRYPTO_SHA256 is not set |
| 1016 | # CONFIG_CRYPTO_SHA512 is not set | 1278 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1042,5 +1304,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1042 | # CONFIG_CRYPTO_DEFLATE is not set | 1304 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1043 | # CONFIG_CRYPTO_LZO is not set | 1305 | # CONFIG_CRYPTO_LZO is not set |
| 1044 | CONFIG_CRYPTO_HW=y | 1306 | CONFIG_CRYPTO_HW=y |
| 1307 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
| 1308 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1045 | # CONFIG_PPC_CLOCK is not set | 1309 | # CONFIG_PPC_CLOCK is not set |
| 1046 | # CONFIG_VIRTUALIZATION is not set | 1310 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/83xx/sbc834x_defconfig b/arch/powerpc/configs/83xx/sbc834x_defconfig index 1752918be2c1..9245a67da200 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:30 2008 | 4 | # Thu Aug 21 00:52:27 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -51,6 +53,9 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,12 +93,12 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | # CONFIG_KALLSYMS is not set | 96 | # CONFIG_KALLSYMS is not set |
| 93 | CONFIG_HOTPLUG=y | 97 | CONFIG_HOTPLUG=y |
| 94 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
| 95 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
| 96 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
| 101 | CONFIG_PCSPKR_PLATFORM=y | ||
| 97 | CONFIG_COMPAT_BRK=y | 102 | CONFIG_COMPAT_BRK=y |
| 98 | CONFIG_BASE_FULL=y | 103 | CONFIG_BASE_FULL=y |
| 99 | CONFIG_FUTEX=y | 104 | CONFIG_FUTEX=y |
| @@ -110,10 +115,16 @@ CONFIG_SLAB=y | |||
| 110 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
| 111 | # CONFIG_MARKERS is not set | 116 | # CONFIG_MARKERS is not set |
| 112 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
| 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 119 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 113 | CONFIG_HAVE_KPROBES=y | 120 | CONFIG_HAVE_KPROBES=y |
| 114 | CONFIG_HAVE_KRETPROBES=y | 121 | CONFIG_HAVE_KRETPROBES=y |
| 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 115 | # CONFIG_HAVE_DMA_ATTRS is not set | 123 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 124 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 125 | # CONFIG_HAVE_CLK is not set | ||
| 116 | CONFIG_PROC_PAGE_MONITOR=y | 126 | CONFIG_PROC_PAGE_MONITOR=y |
| 127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 117 | CONFIG_SLABINFO=y | 128 | CONFIG_SLABINFO=y |
| 118 | CONFIG_RT_MUTEXES=y | 129 | CONFIG_RT_MUTEXES=y |
| 119 | # CONFIG_TINY_SHMEM is not set | 130 | # CONFIG_TINY_SHMEM is not set |
| @@ -124,12 +135,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 124 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 135 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 125 | # CONFIG_MODVERSIONS is not set | 136 | # CONFIG_MODVERSIONS is not set |
| 126 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 127 | # CONFIG_KMOD is not set | 138 | CONFIG_KMOD=y |
| 128 | CONFIG_BLOCK=y | 139 | CONFIG_BLOCK=y |
| 129 | # CONFIG_LBD is not set | 140 | # CONFIG_LBD is not set |
| 130 | # CONFIG_BLK_DEV_IO_TRACE is not set | 141 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 131 | # CONFIG_LSF is not set | 142 | # CONFIG_LSF is not set |
| 132 | # CONFIG_BLK_DEV_BSG is not set | 143 | # CONFIG_BLK_DEV_BSG is not set |
| 144 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 133 | 145 | ||
| 134 | # | 146 | # |
| 135 | # IO Schedulers | 147 | # IO Schedulers |
| @@ -148,37 +160,49 @@ CONFIG_CLASSIC_RCU=y | |||
| 148 | # | 160 | # |
| 149 | # Platform support | 161 | # Platform support |
| 150 | # | 162 | # |
| 151 | # CONFIG_PPC_MULTIPLATFORM is not set | 163 | CONFIG_PPC_MULTIPLATFORM=y |
| 152 | # CONFIG_PPC_82xx is not set | 164 | CONFIG_CLASSIC32=y |
| 153 | CONFIG_PPC_83xx=y | 165 | CONFIG_PPC_CHRP=y |
| 154 | # CONFIG_PPC_86xx is not set | 166 | # CONFIG_MPC5121_ADS is not set |
| 155 | # CONFIG_PPC_MPC512x is not set | 167 | # CONFIG_MPC5121_GENERIC is not set |
| 156 | # CONFIG_PPC_MPC5121 is not set | 168 | # CONFIG_PPC_MPC52xx is not set |
| 169 | CONFIG_PPC_PMAC=y | ||
| 157 | # CONFIG_PPC_CELL is not set | 170 | # CONFIG_PPC_CELL is not set |
| 158 | # CONFIG_PPC_CELL_NATIVE is not set | 171 | # CONFIG_PPC_CELL_NATIVE is not set |
| 172 | # CONFIG_PPC_82xx is not set | ||
| 159 | # CONFIG_PQ2ADS is not set | 173 | # CONFIG_PQ2ADS is not set |
| 160 | CONFIG_MPC83xx=y | 174 | CONFIG_PPC_83xx=y |
| 161 | # CONFIG_MPC831x_RDB is not set | 175 | # CONFIG_MPC831x_RDB is not set |
| 162 | # CONFIG_MPC832x_MDS is not set | 176 | # CONFIG_MPC832x_MDS is not set |
| 163 | # CONFIG_MPC832x_RDB is not set | 177 | # CONFIG_MPC832x_RDB is not set |
| 164 | # CONFIG_MPC834x_MDS is not set | 178 | # CONFIG_MPC834x_MDS is not set |
| 165 | # CONFIG_MPC834x_ITX is not set | 179 | # CONFIG_MPC834x_ITX is not set |
| 166 | # CONFIG_MPC836x_MDS is not set | 180 | # CONFIG_MPC836x_MDS is not set |
| 181 | # CONFIG_MPC836x_RDK is not set | ||
| 167 | # CONFIG_MPC837x_MDS is not set | 182 | # CONFIG_MPC837x_MDS is not set |
| 168 | # CONFIG_MPC837x_RDB is not set | 183 | # CONFIG_MPC837x_RDB is not set |
| 169 | CONFIG_SBC834x=y | 184 | CONFIG_SBC834x=y |
| 185 | # CONFIG_ASP834x is not set | ||
| 170 | CONFIG_PPC_MPC834x=y | 186 | CONFIG_PPC_MPC834x=y |
| 187 | # CONFIG_PPC_86xx is not set | ||
| 188 | # CONFIG_EMBEDDED6xx is not set | ||
| 189 | CONFIG_PPC_NATIVE=y | ||
| 190 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 171 | CONFIG_IPIC=y | 191 | CONFIG_IPIC=y |
| 172 | # CONFIG_MPIC is not set | 192 | CONFIG_MPIC=y |
| 173 | # CONFIG_MPIC_WEIRD is not set | 193 | # CONFIG_MPIC_WEIRD is not set |
| 174 | # CONFIG_PPC_I8259 is not set | 194 | CONFIG_PPC_I8259=y |
| 175 | # CONFIG_PPC_RTAS is not set | 195 | CONFIG_PPC_RTAS=y |
| 196 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 197 | CONFIG_RTAS_PROC=y | ||
| 176 | # CONFIG_MMIO_NVRAM is not set | 198 | # CONFIG_MMIO_NVRAM is not set |
| 177 | # CONFIG_PPC_MPC106 is not set | 199 | CONFIG_PPC_MPC106=y |
| 178 | # CONFIG_PPC_970_NAP is not set | 200 | # CONFIG_PPC_970_NAP is not set |
| 179 | # CONFIG_PPC_INDIRECT_IO is not set | 201 | # CONFIG_PPC_INDIRECT_IO is not set |
| 180 | # CONFIG_GENERIC_IOMAP is not set | 202 | # CONFIG_GENERIC_IOMAP is not set |
| 181 | # CONFIG_CPU_FREQ is not set | 203 | # CONFIG_CPU_FREQ is not set |
| 204 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 205 | # CONFIG_TAU is not set | ||
| 182 | # CONFIG_FSL_ULI1575 is not set | 206 | # CONFIG_FSL_ULI1575 is not set |
| 183 | 207 | ||
| 184 | # | 208 | # |
| @@ -204,6 +228,7 @@ CONFIG_BINFMT_ELF=y | |||
| 204 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 228 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 205 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 229 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 206 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 230 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 231 | # CONFIG_KEXEC is not set | ||
| 207 | CONFIG_ARCH_FLATMEM_ENABLE=y | 232 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 208 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 233 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 209 | CONFIG_SELECT_MEMORY_MODEL=y | 234 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -216,6 +241,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 216 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 241 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 217 | CONFIG_PAGEFLAGS_EXTENDED=y | 242 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 243 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 244 | CONFIG_MIGRATION=y | ||
| 219 | # CONFIG_RESOURCES_64BIT is not set | 245 | # CONFIG_RESOURCES_64BIT is not set |
| 220 | CONFIG_ZONE_DMA_FLAG=1 | 246 | CONFIG_ZONE_DMA_FLAG=1 |
| 221 | CONFIG_BOUNCE=y | 247 | CONFIG_BOUNCE=y |
| @@ -223,6 +249,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 223 | CONFIG_FORCE_MAX_ZONEORDER=11 | 249 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 224 | CONFIG_PROC_DEVICETREE=y | 250 | CONFIG_PROC_DEVICETREE=y |
| 225 | # CONFIG_CMDLINE_BOOL is not set | 251 | # CONFIG_CMDLINE_BOOL is not set |
| 252 | CONFIG_EXTRA_TARGETS="" | ||
| 226 | # CONFIG_PM is not set | 253 | # CONFIG_PM is not set |
| 227 | CONFIG_SECCOMP=y | 254 | CONFIG_SECCOMP=y |
| 228 | CONFIG_ISA_DMA_API=y | 255 | CONFIG_ISA_DMA_API=y |
| @@ -230,15 +257,22 @@ CONFIG_ISA_DMA_API=y | |||
| 230 | # | 257 | # |
| 231 | # Bus options | 258 | # Bus options |
| 232 | # | 259 | # |
| 260 | # CONFIG_ISA is not set | ||
| 233 | CONFIG_ZONE_DMA=y | 261 | CONFIG_ZONE_DMA=y |
| 234 | CONFIG_GENERIC_ISA_DMA=y | 262 | CONFIG_GENERIC_ISA_DMA=y |
| 235 | CONFIG_PPC_INDIRECT_PCI=y | 263 | CONFIG_PPC_INDIRECT_PCI=y |
| 236 | CONFIG_FSL_SOC=y | 264 | CONFIG_FSL_SOC=y |
| 237 | # CONFIG_PCI is not set | 265 | CONFIG_FSL_PCI=y |
| 238 | # CONFIG_PCI_DOMAINS is not set | 266 | CONFIG_PPC_PCI_CHOICE=y |
| 239 | # CONFIG_PCI_SYSCALL is not set | 267 | CONFIG_PCI=y |
| 240 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 268 | CONFIG_PCI_DOMAINS=y |
| 269 | CONFIG_PCI_SYSCALL=y | ||
| 270 | # CONFIG_PCIEPORTBUS is not set | ||
| 271 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
| 272 | # CONFIG_PCI_MSI is not set | ||
| 273 | CONFIG_PCI_LEGACY=y | ||
| 241 | # CONFIG_PCCARD is not set | 274 | # CONFIG_PCCARD is not set |
| 275 | # CONFIG_HOTPLUG_PCI is not set | ||
| 242 | # CONFIG_HAS_RAPIDIO is not set | 276 | # CONFIG_HAS_RAPIDIO is not set |
| 243 | 277 | ||
| 244 | # | 278 | # |
| @@ -254,10 +288,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 254 | CONFIG_KERNEL_START=0xc0000000 | 288 | CONFIG_KERNEL_START=0xc0000000 |
| 255 | CONFIG_PHYSICAL_START=0x00000000 | 289 | CONFIG_PHYSICAL_START=0x00000000 |
| 256 | CONFIG_TASK_SIZE=0xc0000000 | 290 | CONFIG_TASK_SIZE=0xc0000000 |
| 257 | |||
| 258 | # | ||
| 259 | # Networking | ||
| 260 | # | ||
| 261 | CONFIG_NET=y | 291 | CONFIG_NET=y |
| 262 | 292 | ||
| 263 | # | 293 | # |
| @@ -358,19 +388,30 @@ CONFIG_OF_I2C=y | |||
| 358 | # CONFIG_PARPORT is not set | 388 | # CONFIG_PARPORT is not set |
| 359 | CONFIG_BLK_DEV=y | 389 | CONFIG_BLK_DEV=y |
| 360 | # CONFIG_BLK_DEV_FD is not set | 390 | # CONFIG_BLK_DEV_FD is not set |
| 391 | # CONFIG_MAC_FLOPPY is not set | ||
| 392 | # CONFIG_BLK_CPQ_DA is not set | ||
| 393 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
| 394 | # CONFIG_BLK_DEV_DAC960 is not set | ||
| 395 | # CONFIG_BLK_DEV_UMEM is not set | ||
| 361 | # CONFIG_BLK_DEV_COW_COMMON is not set | 396 | # CONFIG_BLK_DEV_COW_COMMON is not set |
| 362 | CONFIG_BLK_DEV_LOOP=y | 397 | CONFIG_BLK_DEV_LOOP=y |
| 363 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 398 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
| 364 | # CONFIG_BLK_DEV_NBD is not set | 399 | # CONFIG_BLK_DEV_NBD is not set |
| 400 | # CONFIG_BLK_DEV_SX8 is not set | ||
| 365 | CONFIG_BLK_DEV_RAM=y | 401 | CONFIG_BLK_DEV_RAM=y |
| 366 | CONFIG_BLK_DEV_RAM_COUNT=16 | 402 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 367 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 403 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
| 368 | # CONFIG_BLK_DEV_XIP is not set | 404 | # CONFIG_BLK_DEV_XIP is not set |
| 369 | # CONFIG_CDROM_PKTCDVD is not set | 405 | # CONFIG_CDROM_PKTCDVD is not set |
| 370 | # CONFIG_ATA_OVER_ETH is not set | 406 | # CONFIG_ATA_OVER_ETH is not set |
| 407 | # CONFIG_BLK_DEV_HD is not set | ||
| 371 | CONFIG_MISC_DEVICES=y | 408 | CONFIG_MISC_DEVICES=y |
| 409 | # CONFIG_PHANTOM is not set | ||
| 372 | # CONFIG_EEPROM_93CX6 is not set | 410 | # CONFIG_EEPROM_93CX6 is not set |
| 411 | # CONFIG_SGI_IOC4 is not set | ||
| 412 | # CONFIG_TIFM_CORE is not set | ||
| 373 | # CONFIG_ENCLOSURE_SERVICES is not set | 413 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 414 | # CONFIG_HP_ILO is not set | ||
| 374 | CONFIG_HAVE_IDE=y | 415 | CONFIG_HAVE_IDE=y |
| 375 | # CONFIG_IDE is not set | 416 | # CONFIG_IDE is not set |
| 376 | 417 | ||
| @@ -383,15 +424,27 @@ CONFIG_HAVE_IDE=y | |||
| 383 | # CONFIG_SCSI_NETLINK is not set | 424 | # CONFIG_SCSI_NETLINK is not set |
| 384 | # CONFIG_ATA is not set | 425 | # CONFIG_ATA is not set |
| 385 | # CONFIG_MD is not set | 426 | # CONFIG_MD is not set |
| 427 | # CONFIG_FUSION is not set | ||
| 428 | |||
| 429 | # | ||
| 430 | # IEEE 1394 (FireWire) support | ||
| 431 | # | ||
| 432 | |||
| 433 | # | ||
| 434 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 435 | # | ||
| 436 | # CONFIG_FIREWIRE is not set | ||
| 437 | # CONFIG_IEEE1394 is not set | ||
| 438 | # CONFIG_I2O is not set | ||
| 386 | # CONFIG_MACINTOSH_DRIVERS is not set | 439 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 387 | CONFIG_NETDEVICES=y | 440 | CONFIG_NETDEVICES=y |
| 388 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 389 | # CONFIG_DUMMY is not set | 441 | # CONFIG_DUMMY is not set |
| 390 | # CONFIG_BONDING is not set | 442 | # CONFIG_BONDING is not set |
| 391 | # CONFIG_MACVLAN is not set | 443 | # CONFIG_MACVLAN is not set |
| 392 | # CONFIG_EQUALIZER is not set | 444 | # CONFIG_EQUALIZER is not set |
| 393 | # CONFIG_TUN is not set | 445 | # CONFIG_TUN is not set |
| 394 | # CONFIG_VETH is not set | 446 | # CONFIG_VETH is not set |
| 447 | # CONFIG_ARCNET is not set | ||
| 395 | CONFIG_PHYLIB=y | 448 | CONFIG_PHYLIB=y |
| 396 | 449 | ||
| 397 | # | 450 | # |
| @@ -411,16 +464,44 @@ CONFIG_BROADCOM_PHY=y | |||
| 411 | # CONFIG_MDIO_BITBANG is not set | 464 | # CONFIG_MDIO_BITBANG is not set |
| 412 | CONFIG_NET_ETHERNET=y | 465 | CONFIG_NET_ETHERNET=y |
| 413 | CONFIG_MII=y | 466 | CONFIG_MII=y |
| 467 | # CONFIG_MACE is not set | ||
| 468 | # CONFIG_BMAC is not set | ||
| 469 | # CONFIG_HAPPYMEAL is not set | ||
| 470 | # CONFIG_SUNGEM is not set | ||
| 471 | # CONFIG_CASSINI is not set | ||
| 472 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 473 | # CONFIG_NET_TULIP is not set | ||
| 474 | # CONFIG_HP100 is not set | ||
| 414 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 475 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 415 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 476 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 416 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 477 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| 417 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 478 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 479 | # CONFIG_NET_PCI is not set | ||
| 418 | # CONFIG_B44 is not set | 480 | # CONFIG_B44 is not set |
| 419 | CONFIG_NETDEV_1000=y | 481 | CONFIG_NETDEV_1000=y |
| 420 | # CONFIG_E1000E_ENABLED is not set | 482 | # CONFIG_ACENIC is not set |
| 483 | # CONFIG_DL2K is not set | ||
| 484 | # CONFIG_E1000 is not set | ||
| 485 | # CONFIG_E1000E is not set | ||
| 486 | # CONFIG_IP1000 is not set | ||
| 487 | # CONFIG_IGB is not set | ||
| 488 | # CONFIG_NS83820 is not set | ||
| 489 | # CONFIG_HAMACHI is not set | ||
| 490 | # CONFIG_YELLOWFIN is not set | ||
| 491 | # CONFIG_R8169 is not set | ||
| 492 | # CONFIG_SIS190 is not set | ||
| 493 | # CONFIG_SKGE is not set | ||
| 494 | # CONFIG_SKY2 is not set | ||
| 495 | # CONFIG_VIA_VELOCITY is not set | ||
| 496 | # CONFIG_TIGON3 is not set | ||
| 497 | # CONFIG_BNX2 is not set | ||
| 421 | CONFIG_GIANFAR=y | 498 | CONFIG_GIANFAR=y |
| 422 | # CONFIG_GFAR_NAPI is not set | 499 | # CONFIG_MV643XX_ETH is not set |
| 500 | # CONFIG_QLA3XXX is not set | ||
| 501 | # CONFIG_ATL1 is not set | ||
| 502 | # CONFIG_ATL1E is not set | ||
| 423 | # CONFIG_NETDEV_10000 is not set | 503 | # CONFIG_NETDEV_10000 is not set |
| 504 | # CONFIG_TR is not set | ||
| 424 | 505 | ||
| 425 | # | 506 | # |
| 426 | # Wireless LAN | 507 | # Wireless LAN |
| @@ -429,6 +510,8 @@ CONFIG_GIANFAR=y | |||
| 429 | # CONFIG_WLAN_80211 is not set | 510 | # CONFIG_WLAN_80211 is not set |
| 430 | # CONFIG_IWLWIFI_LEDS is not set | 511 | # CONFIG_IWLWIFI_LEDS is not set |
| 431 | # CONFIG_WAN is not set | 512 | # CONFIG_WAN is not set |
| 513 | # CONFIG_FDDI is not set | ||
| 514 | # CONFIG_HIPPI is not set | ||
| 432 | # CONFIG_PPP is not set | 515 | # CONFIG_PPP is not set |
| 433 | # CONFIG_SLIP is not set | 516 | # CONFIG_SLIP is not set |
| 434 | # CONFIG_NETCONSOLE is not set | 517 | # CONFIG_NETCONSOLE is not set |
| @@ -474,12 +557,14 @@ CONFIG_INPUT=y | |||
| 474 | # CONFIG_VT is not set | 557 | # CONFIG_VT is not set |
| 475 | CONFIG_DEVKMEM=y | 558 | CONFIG_DEVKMEM=y |
| 476 | # CONFIG_SERIAL_NONSTANDARD is not set | 559 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 560 | # CONFIG_NOZOMI is not set | ||
| 477 | 561 | ||
| 478 | # | 562 | # |
| 479 | # Serial drivers | 563 | # Serial drivers |
| 480 | # | 564 | # |
| 481 | CONFIG_SERIAL_8250=y | 565 | CONFIG_SERIAL_8250=y |
| 482 | CONFIG_SERIAL_8250_CONSOLE=y | 566 | CONFIG_SERIAL_8250_CONSOLE=y |
| 567 | CONFIG_SERIAL_8250_PCI=y | ||
| 483 | CONFIG_SERIAL_8250_NR_UARTS=4 | 568 | CONFIG_SERIAL_8250_NR_UARTS=4 |
| 484 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | 569 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 |
| 485 | # CONFIG_SERIAL_8250_EXTENDED is not set | 570 | # CONFIG_SERIAL_8250_EXTENDED is not set |
| @@ -490,40 +575,90 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 490 | # CONFIG_SERIAL_UARTLITE is not set | 575 | # CONFIG_SERIAL_UARTLITE is not set |
| 491 | CONFIG_SERIAL_CORE=y | 576 | CONFIG_SERIAL_CORE=y |
| 492 | CONFIG_SERIAL_CORE_CONSOLE=y | 577 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 578 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 579 | # CONFIG_SERIAL_JSM is not set | ||
| 493 | # CONFIG_SERIAL_OF_PLATFORM is not set | 580 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 494 | CONFIG_UNIX98_PTYS=y | 581 | CONFIG_UNIX98_PTYS=y |
| 495 | CONFIG_LEGACY_PTYS=y | 582 | CONFIG_LEGACY_PTYS=y |
| 496 | CONFIG_LEGACY_PTY_COUNT=256 | 583 | CONFIG_LEGACY_PTY_COUNT=256 |
| 584 | # CONFIG_BRIQ_PANEL is not set | ||
| 585 | # CONFIG_HVC_RTAS is not set | ||
| 497 | # CONFIG_IPMI_HANDLER is not set | 586 | # CONFIG_IPMI_HANDLER is not set |
| 498 | # CONFIG_HW_RANDOM is not set | 587 | # CONFIG_HW_RANDOM is not set |
| 499 | # CONFIG_NVRAM is not set | 588 | # CONFIG_NVRAM is not set |
| 500 | CONFIG_GEN_RTC=y | 589 | CONFIG_GEN_RTC=y |
| 501 | # CONFIG_GEN_RTC_X is not set | 590 | # CONFIG_GEN_RTC_X is not set |
| 502 | # CONFIG_R3964 is not set | 591 | # CONFIG_R3964 is not set |
| 592 | # CONFIG_APPLICOM is not set | ||
| 503 | # CONFIG_RAW_DRIVER is not set | 593 | # CONFIG_RAW_DRIVER is not set |
| 504 | # CONFIG_TCG_TPM is not set | 594 | # CONFIG_TCG_TPM is not set |
| 595 | CONFIG_DEVPORT=y | ||
| 505 | CONFIG_I2C=y | 596 | CONFIG_I2C=y |
| 506 | CONFIG_I2C_BOARDINFO=y | 597 | CONFIG_I2C_BOARDINFO=y |
| 507 | CONFIG_I2C_CHARDEV=y | 598 | CONFIG_I2C_CHARDEV=y |
| 599 | CONFIG_I2C_HELPER_AUTO=y | ||
| 508 | 600 | ||
| 509 | # | 601 | # |
| 510 | # I2C Hardware Bus support | 602 | # I2C Hardware Bus support |
| 511 | # | 603 | # |
| 604 | |||
| 605 | # | ||
| 606 | # PC SMBus host controller drivers | ||
| 607 | # | ||
| 608 | # CONFIG_I2C_ALI1535 is not set | ||
| 609 | # CONFIG_I2C_ALI1563 is not set | ||
| 610 | # CONFIG_I2C_ALI15X3 is not set | ||
| 611 | # CONFIG_I2C_AMD756 is not set | ||
| 612 | # CONFIG_I2C_AMD8111 is not set | ||
| 613 | # CONFIG_I2C_I801 is not set | ||
| 614 | # CONFIG_I2C_ISCH is not set | ||
| 615 | # CONFIG_I2C_PIIX4 is not set | ||
| 616 | # CONFIG_I2C_NFORCE2 is not set | ||
| 617 | # CONFIG_I2C_SIS5595 is not set | ||
| 618 | # CONFIG_I2C_SIS630 is not set | ||
| 619 | # CONFIG_I2C_SIS96X is not set | ||
| 620 | # CONFIG_I2C_VIA is not set | ||
| 621 | # CONFIG_I2C_VIAPRO is not set | ||
| 622 | |||
| 623 | # | ||
| 624 | # Mac SMBus host controller drivers | ||
| 625 | # | ||
| 626 | # CONFIG_I2C_HYDRA is not set | ||
| 627 | CONFIG_I2C_POWERMAC=y | ||
| 628 | |||
| 629 | # | ||
| 630 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 631 | # | ||
| 512 | CONFIG_I2C_MPC=y | 632 | CONFIG_I2C_MPC=y |
| 513 | # CONFIG_I2C_OCORES is not set | 633 | # CONFIG_I2C_OCORES is not set |
| 514 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 515 | # CONFIG_I2C_SIMTEC is not set | 634 | # CONFIG_I2C_SIMTEC is not set |
| 635 | |||
| 636 | # | ||
| 637 | # External I2C/SMBus adapter drivers | ||
| 638 | # | ||
| 639 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 516 | # CONFIG_I2C_TAOS_EVM is not set | 640 | # CONFIG_I2C_TAOS_EVM is not set |
| 517 | # CONFIG_I2C_STUB is not set | 641 | |
| 642 | # | ||
| 643 | # Graphics adapter I2C/DDC channel drivers | ||
| 644 | # | ||
| 645 | # CONFIG_I2C_VOODOO3 is not set | ||
| 646 | |||
| 647 | # | ||
| 648 | # Other I2C/SMBus bus drivers | ||
| 649 | # | ||
| 518 | # CONFIG_I2C_PCA_PLATFORM is not set | 650 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 651 | # CONFIG_I2C_STUB is not set | ||
| 519 | 652 | ||
| 520 | # | 653 | # |
| 521 | # Miscellaneous I2C Chip support | 654 | # Miscellaneous I2C Chip support |
| 522 | # | 655 | # |
| 523 | # CONFIG_DS1682 is not set | 656 | # CONFIG_DS1682 is not set |
| 657 | # CONFIG_AT24 is not set | ||
| 524 | # CONFIG_SENSORS_EEPROM is not set | 658 | # CONFIG_SENSORS_EEPROM is not set |
| 525 | # CONFIG_SENSORS_PCF8574 is not set | 659 | # CONFIG_SENSORS_PCF8574 is not set |
| 526 | # CONFIG_PCF8575 is not set | 660 | # CONFIG_PCF8575 is not set |
| 661 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 527 | # CONFIG_SENSORS_PCF8591 is not set | 662 | # CONFIG_SENSORS_PCF8591 is not set |
| 528 | # CONFIG_SENSORS_MAX6875 is not set | 663 | # CONFIG_SENSORS_MAX6875 is not set |
| 529 | # CONFIG_SENSORS_TSL2550 is not set | 664 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -532,10 +667,13 @@ CONFIG_I2C_MPC=y | |||
| 532 | # CONFIG_I2C_DEBUG_BUS is not set | 667 | # CONFIG_I2C_DEBUG_BUS is not set |
| 533 | # CONFIG_I2C_DEBUG_CHIP is not set | 668 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 534 | # CONFIG_SPI is not set | 669 | # CONFIG_SPI is not set |
| 670 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 671 | # CONFIG_GPIOLIB is not set | ||
| 535 | # CONFIG_W1 is not set | 672 | # CONFIG_W1 is not set |
| 536 | # CONFIG_POWER_SUPPLY is not set | 673 | # CONFIG_POWER_SUPPLY is not set |
| 537 | CONFIG_HWMON=y | 674 | CONFIG_HWMON=y |
| 538 | # CONFIG_HWMON_VID is not set | 675 | # CONFIG_HWMON_VID is not set |
| 676 | # CONFIG_SENSORS_AD7414 is not set | ||
| 539 | # CONFIG_SENSORS_AD7418 is not set | 677 | # CONFIG_SENSORS_AD7418 is not set |
| 540 | # CONFIG_SENSORS_ADM1021 is not set | 678 | # CONFIG_SENSORS_ADM1021 is not set |
| 541 | # CONFIG_SENSORS_ADM1025 is not set | 679 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -545,8 +683,10 @@ CONFIG_HWMON=y | |||
| 545 | # CONFIG_SENSORS_ADM9240 is not set | 683 | # CONFIG_SENSORS_ADM9240 is not set |
| 546 | # CONFIG_SENSORS_ADT7470 is not set | 684 | # CONFIG_SENSORS_ADT7470 is not set |
| 547 | # CONFIG_SENSORS_ADT7473 is not set | 685 | # CONFIG_SENSORS_ADT7473 is not set |
| 686 | # CONFIG_SENSORS_AMS is not set | ||
| 548 | # CONFIG_SENSORS_ATXP1 is not set | 687 | # CONFIG_SENSORS_ATXP1 is not set |
| 549 | # CONFIG_SENSORS_DS1621 is not set | 688 | # CONFIG_SENSORS_DS1621 is not set |
| 689 | # CONFIG_SENSORS_I5K_AMB is not set | ||
| 550 | # CONFIG_SENSORS_F71805F is not set | 690 | # CONFIG_SENSORS_F71805F is not set |
| 551 | # CONFIG_SENSORS_F71882FG is not set | 691 | # CONFIG_SENSORS_F71882FG is not set |
| 552 | # CONFIG_SENSORS_F75375S is not set | 692 | # CONFIG_SENSORS_F75375S is not set |
| @@ -568,13 +708,16 @@ CONFIG_HWMON=y | |||
| 568 | # CONFIG_SENSORS_MAX6650 is not set | 708 | # CONFIG_SENSORS_MAX6650 is not set |
| 569 | # CONFIG_SENSORS_PC87360 is not set | 709 | # CONFIG_SENSORS_PC87360 is not set |
| 570 | # CONFIG_SENSORS_PC87427 is not set | 710 | # CONFIG_SENSORS_PC87427 is not set |
| 711 | # CONFIG_SENSORS_SIS5595 is not set | ||
| 571 | # CONFIG_SENSORS_DME1737 is not set | 712 | # CONFIG_SENSORS_DME1737 is not set |
| 572 | # CONFIG_SENSORS_SMSC47M1 is not set | 713 | # CONFIG_SENSORS_SMSC47M1 is not set |
| 573 | # CONFIG_SENSORS_SMSC47M192 is not set | 714 | # CONFIG_SENSORS_SMSC47M192 is not set |
| 574 | # CONFIG_SENSORS_SMSC47B397 is not set | 715 | # CONFIG_SENSORS_SMSC47B397 is not set |
| 575 | # CONFIG_SENSORS_ADS7828 is not set | 716 | # CONFIG_SENSORS_ADS7828 is not set |
| 576 | # CONFIG_SENSORS_THMC50 is not set | 717 | # CONFIG_SENSORS_THMC50 is not set |
| 718 | # CONFIG_SENSORS_VIA686A is not set | ||
| 577 | # CONFIG_SENSORS_VT1211 is not set | 719 | # CONFIG_SENSORS_VT1211 is not set |
| 720 | # CONFIG_SENSORS_VT8231 is not set | ||
| 578 | # CONFIG_SENSORS_W83781D is not set | 721 | # CONFIG_SENSORS_W83781D is not set |
| 579 | # CONFIG_SENSORS_W83791D is not set | 722 | # CONFIG_SENSORS_W83791D is not set |
| 580 | # CONFIG_SENSORS_W83792D is not set | 723 | # CONFIG_SENSORS_W83792D is not set |
| @@ -585,6 +728,7 @@ CONFIG_HWMON=y | |||
| 585 | # CONFIG_SENSORS_W83627EHF is not set | 728 | # CONFIG_SENSORS_W83627EHF is not set |
| 586 | # CONFIG_HWMON_DEBUG_CHIP is not set | 729 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 587 | # CONFIG_THERMAL is not set | 730 | # CONFIG_THERMAL is not set |
| 731 | # CONFIG_THERMAL_HWMON is not set | ||
| 588 | CONFIG_WATCHDOG=y | 732 | CONFIG_WATCHDOG=y |
| 589 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 733 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 590 | 734 | ||
| @@ -592,7 +736,15 @@ CONFIG_WATCHDOG=y | |||
| 592 | # Watchdog Device Drivers | 736 | # Watchdog Device Drivers |
| 593 | # | 737 | # |
| 594 | # CONFIG_SOFT_WATCHDOG is not set | 738 | # CONFIG_SOFT_WATCHDOG is not set |
| 595 | CONFIG_83xx_WDT=y | 739 | # CONFIG_ALIM7101_WDT is not set |
| 740 | # CONFIG_8xxx_WDT is not set | ||
| 741 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 742 | |||
| 743 | # | ||
| 744 | # PCI-based Watchdog Cards | ||
| 745 | # | ||
| 746 | # CONFIG_PCIPCWATCHDOG is not set | ||
| 747 | # CONFIG_WDTPCI is not set | ||
| 596 | 748 | ||
| 597 | # | 749 | # |
| 598 | # Sonics Silicon Backplane | 750 | # Sonics Silicon Backplane |
| @@ -603,8 +755,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 603 | # | 755 | # |
| 604 | # Multifunction device drivers | 756 | # Multifunction device drivers |
| 605 | # | 757 | # |
| 758 | # CONFIG_MFD_CORE is not set | ||
| 606 | # CONFIG_MFD_SM501 is not set | 759 | # CONFIG_MFD_SM501 is not set |
| 607 | # CONFIG_HTC_PASIC3 is not set | 760 | # CONFIG_HTC_PASIC3 is not set |
| 761 | # CONFIG_MFD_TMIO is not set | ||
| 608 | 762 | ||
| 609 | # | 763 | # |
| 610 | # Multimedia devices | 764 | # Multimedia devices |
| @@ -625,6 +779,8 @@ CONFIG_SSB_POSSIBLE=y | |||
| 625 | # | 779 | # |
| 626 | # Graphics support | 780 | # Graphics support |
| 627 | # | 781 | # |
| 782 | # CONFIG_AGP is not set | ||
| 783 | # CONFIG_DRM is not set | ||
| 628 | # CONFIG_VGASTATE is not set | 784 | # CONFIG_VGASTATE is not set |
| 629 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | 785 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set |
| 630 | # CONFIG_FB is not set | 786 | # CONFIG_FB is not set |
| @@ -634,10 +790,6 @@ CONFIG_SSB_POSSIBLE=y | |||
| 634 | # Display device support | 790 | # Display device support |
| 635 | # | 791 | # |
| 636 | # CONFIG_DISPLAY_SUPPORT is not set | 792 | # CONFIG_DISPLAY_SUPPORT is not set |
| 637 | |||
| 638 | # | ||
| 639 | # Sound | ||
| 640 | # | ||
| 641 | # CONFIG_SOUND is not set | 793 | # CONFIG_SOUND is not set |
| 642 | CONFIG_HID_SUPPORT=y | 794 | CONFIG_HID_SUPPORT=y |
| 643 | CONFIG_HID=y | 795 | CONFIG_HID=y |
| @@ -648,6 +800,7 @@ CONFIG_HID=y | |||
| 648 | # CONFIG_MEMSTICK is not set | 800 | # CONFIG_MEMSTICK is not set |
| 649 | # CONFIG_NEW_LEDS is not set | 801 | # CONFIG_NEW_LEDS is not set |
| 650 | # CONFIG_ACCESSIBILITY is not set | 802 | # CONFIG_ACCESSIBILITY is not set |
| 803 | # CONFIG_INFINIBAND is not set | ||
| 651 | # CONFIG_EDAC is not set | 804 | # CONFIG_EDAC is not set |
| 652 | # CONFIG_RTC_CLASS is not set | 805 | # CONFIG_RTC_CLASS is not set |
| 653 | # CONFIG_DMADEVICES is not set | 806 | # CONFIG_DMADEVICES is not set |
| @@ -710,6 +863,7 @@ CONFIG_TMPFS=y | |||
| 710 | # CONFIG_CRAMFS is not set | 863 | # CONFIG_CRAMFS is not set |
| 711 | # CONFIG_VXFS_FS is not set | 864 | # CONFIG_VXFS_FS is not set |
| 712 | # CONFIG_MINIX_FS is not set | 865 | # CONFIG_MINIX_FS is not set |
| 866 | # CONFIG_OMFS_FS is not set | ||
| 713 | # CONFIG_HPFS_FS is not set | 867 | # CONFIG_HPFS_FS is not set |
| 714 | # CONFIG_QNX4FS_FS is not set | 868 | # CONFIG_QNX4FS_FS is not set |
| 715 | # CONFIG_ROMFS_FS is not set | 869 | # CONFIG_ROMFS_FS is not set |
| @@ -720,14 +874,13 @@ CONFIG_NFS_FS=y | |||
| 720 | CONFIG_NFS_V3=y | 874 | CONFIG_NFS_V3=y |
| 721 | # CONFIG_NFS_V3_ACL is not set | 875 | # CONFIG_NFS_V3_ACL is not set |
| 722 | CONFIG_NFS_V4=y | 876 | CONFIG_NFS_V4=y |
| 723 | # CONFIG_NFSD is not set | ||
| 724 | CONFIG_ROOT_NFS=y | 877 | CONFIG_ROOT_NFS=y |
| 878 | # CONFIG_NFSD is not set | ||
| 725 | CONFIG_LOCKD=y | 879 | CONFIG_LOCKD=y |
| 726 | CONFIG_LOCKD_V4=y | 880 | CONFIG_LOCKD_V4=y |
| 727 | CONFIG_NFS_COMMON=y | 881 | CONFIG_NFS_COMMON=y |
| 728 | CONFIG_SUNRPC=y | 882 | CONFIG_SUNRPC=y |
| 729 | CONFIG_SUNRPC_GSS=y | 883 | CONFIG_SUNRPC_GSS=y |
| 730 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 731 | CONFIG_RPCSEC_GSS_KRB5=y | 884 | CONFIG_RPCSEC_GSS_KRB5=y |
| 732 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 885 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 733 | # CONFIG_SMB_FS is not set | 886 | # CONFIG_SMB_FS is not set |
| @@ -740,6 +893,7 @@ CONFIG_RPCSEC_GSS_KRB5=y | |||
| 740 | # Partition Types | 893 | # Partition Types |
| 741 | # | 894 | # |
| 742 | # CONFIG_PARTITION_ADVANCED is not set | 895 | # CONFIG_PARTITION_ADVANCED is not set |
| 896 | CONFIG_MAC_PARTITION=y | ||
| 743 | CONFIG_MSDOS_PARTITION=y | 897 | CONFIG_MSDOS_PARTITION=y |
| 744 | # CONFIG_NLS is not set | 898 | # CONFIG_NLS is not set |
| 745 | # CONFIG_DLM is not set | 899 | # CONFIG_DLM is not set |
| @@ -751,6 +905,7 @@ CONFIG_BITREVERSE=y | |||
| 751 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 905 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 752 | # CONFIG_CRC_CCITT is not set | 906 | # CONFIG_CRC_CCITT is not set |
| 753 | # CONFIG_CRC16 is not set | 907 | # CONFIG_CRC16 is not set |
| 908 | # CONFIG_CRC_T10DIF is not set | ||
| 754 | # CONFIG_CRC_ITU_T is not set | 909 | # CONFIG_CRC_ITU_T is not set |
| 755 | CONFIG_CRC32=y | 910 | CONFIG_CRC32=y |
| 756 | # CONFIG_CRC7 is not set | 911 | # CONFIG_CRC7 is not set |
| @@ -774,8 +929,18 @@ CONFIG_FRAME_WARN=1024 | |||
| 774 | # CONFIG_HEADERS_CHECK is not set | 929 | # CONFIG_HEADERS_CHECK is not set |
| 775 | # CONFIG_DEBUG_KERNEL is not set | 930 | # CONFIG_DEBUG_KERNEL is not set |
| 776 | # CONFIG_DEBUG_BUGVERBOSE is not set | 931 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 932 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 933 | # CONFIG_LATENCYTOP is not set | ||
| 934 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 935 | CONFIG_HAVE_FTRACE=y | ||
| 936 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 937 | # CONFIG_FTRACE is not set | ||
| 938 | # CONFIG_SCHED_TRACER is not set | ||
| 939 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 777 | # CONFIG_SAMPLES is not set | 940 | # CONFIG_SAMPLES is not set |
| 941 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 778 | # CONFIG_IRQSTACKS is not set | 942 | # CONFIG_IRQSTACKS is not set |
| 943 | # CONFIG_BOOTX_TEXT is not set | ||
| 779 | # CONFIG_PPC_EARLY_DEBUG is not set | 944 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 780 | 945 | ||
| 781 | # | 946 | # |
| @@ -829,6 +994,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 829 | # CONFIG_CRYPTO_MD4 is not set | 994 | # CONFIG_CRYPTO_MD4 is not set |
| 830 | CONFIG_CRYPTO_MD5=y | 995 | CONFIG_CRYPTO_MD5=y |
| 831 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 996 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 997 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 998 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 999 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1000 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 832 | # CONFIG_CRYPTO_SHA1 is not set | 1001 | # CONFIG_CRYPTO_SHA1 is not set |
| 833 | # CONFIG_CRYPTO_SHA256 is not set | 1002 | # CONFIG_CRYPTO_SHA256 is not set |
| 834 | # CONFIG_CRYPTO_SHA512 is not set | 1003 | # CONFIG_CRYPTO_SHA512 is not set |
diff --git a/arch/powerpc/configs/85xx/ksi8560_defconfig b/arch/powerpc/configs/85xx/ksi8560_defconfig index b82bb042308a..8bb89f26a20d 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:30 2008 | 4 | # Thu Aug 21 00:52:28 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,12 +34,14 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 39 | CONFIG_GENERIC_HWEIGHT=y | 41 | CONFIG_GENERIC_HWEIGHT=y |
| 40 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 42 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 41 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 43 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 44 | CONFIG_GENERIC_GPIO=y | ||
| 42 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 45 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
| 43 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
| 44 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
| @@ -85,7 +88,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 85 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 86 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 87 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 88 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | CONFIG_KALLSYMS=y | 91 | CONFIG_KALLSYMS=y |
| 90 | # CONFIG_KALLSYMS_ALL is not set | 92 | # CONFIG_KALLSYMS_ALL is not set |
| 91 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -110,10 +112,16 @@ CONFIG_SLUB=y | |||
| 110 | # CONFIG_PROFILING is not set | 112 | # CONFIG_PROFILING is not set |
| 111 | # CONFIG_MARKERS is not set | 113 | # CONFIG_MARKERS is not set |
| 112 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
| 115 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 116 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 113 | CONFIG_HAVE_KPROBES=y | 117 | CONFIG_HAVE_KPROBES=y |
| 114 | CONFIG_HAVE_KRETPROBES=y | 118 | CONFIG_HAVE_KRETPROBES=y |
| 119 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 115 | # CONFIG_HAVE_DMA_ATTRS is not set | 120 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 121 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 122 | CONFIG_HAVE_CLK=y | ||
| 116 | CONFIG_PROC_PAGE_MONITOR=y | 123 | CONFIG_PROC_PAGE_MONITOR=y |
| 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 117 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
| 118 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
| 119 | # CONFIG_TINY_SHMEM is not set | 127 | # CONFIG_TINY_SHMEM is not set |
| @@ -124,6 +132,7 @@ CONFIG_BLOCK=y | |||
| 124 | # CONFIG_BLK_DEV_IO_TRACE is not set | 132 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 125 | # CONFIG_LSF is not set | 133 | # CONFIG_LSF is not set |
| 126 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
| 135 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 127 | 136 | ||
| 128 | # | 137 | # |
| 129 | # IO Schedulers | 138 | # IO Schedulers |
| @@ -142,8 +151,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 142 | # | 151 | # |
| 143 | # Platform support | 152 | # Platform support |
| 144 | # | 153 | # |
| 145 | # CONFIG_PPC_MPC512x is not set | ||
| 146 | # CONFIG_PPC_MPC5121 is not set | ||
| 147 | # CONFIG_PPC_CELL is not set | 154 | # CONFIG_PPC_CELL is not set |
| 148 | # CONFIG_PPC_CELL_NATIVE is not set | 155 | # CONFIG_PPC_CELL_NATIVE is not set |
| 149 | # CONFIG_PQ2ADS is not set | 156 | # CONFIG_PQ2ADS is not set |
| @@ -152,11 +159,13 @@ CONFIG_MPC85xx=y | |||
| 152 | # CONFIG_MPC8560_ADS is not set | 159 | # CONFIG_MPC8560_ADS is not set |
| 153 | # CONFIG_MPC85xx_CDS is not set | 160 | # CONFIG_MPC85xx_CDS is not set |
| 154 | # CONFIG_MPC85xx_MDS is not set | 161 | # CONFIG_MPC85xx_MDS is not set |
| 162 | # CONFIG_MPC8536_DS is not set | ||
| 155 | # CONFIG_MPC85xx_DS is not set | 163 | # CONFIG_MPC85xx_DS is not set |
| 156 | CONFIG_KSI8560=y | 164 | CONFIG_KSI8560=y |
| 157 | # CONFIG_STX_GP3 is not set | 165 | # CONFIG_STX_GP3 is not set |
| 158 | # CONFIG_TQM8540 is not set | 166 | # CONFIG_TQM8540 is not set |
| 159 | # CONFIG_TQM8541 is not set | 167 | # CONFIG_TQM8541 is not set |
| 168 | # CONFIG_TQM8548 is not set | ||
| 160 | # CONFIG_TQM8555 is not set | 169 | # CONFIG_TQM8555 is not set |
| 161 | # CONFIG_TQM8560 is not set | 170 | # CONFIG_TQM8560 is not set |
| 162 | # CONFIG_SBC8548 is not set | 171 | # CONFIG_SBC8548 is not set |
| @@ -173,7 +182,6 @@ CONFIG_MPIC=y | |||
| 173 | # CONFIG_GENERIC_IOMAP is not set | 182 | # CONFIG_GENERIC_IOMAP is not set |
| 174 | # CONFIG_CPU_FREQ is not set | 183 | # CONFIG_CPU_FREQ is not set |
| 175 | CONFIG_CPM2=y | 184 | CONFIG_CPM2=y |
| 176 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 177 | # CONFIG_FSL_ULI1575 is not set | 185 | # CONFIG_FSL_ULI1575 is not set |
| 178 | CONFIG_CPM=y | 186 | CONFIG_CPM=y |
| 179 | 187 | ||
| @@ -213,6 +221,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 213 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 221 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 214 | CONFIG_PAGEFLAGS_EXTENDED=y | 222 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 215 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 223 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 224 | CONFIG_MIGRATION=y | ||
| 216 | # CONFIG_RESOURCES_64BIT is not set | 225 | # CONFIG_RESOURCES_64BIT is not set |
| 217 | CONFIG_ZONE_DMA_FLAG=1 | 226 | CONFIG_ZONE_DMA_FLAG=1 |
| 218 | CONFIG_BOUNCE=y | 227 | CONFIG_BOUNCE=y |
| @@ -220,6 +229,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 220 | CONFIG_FORCE_MAX_ZONEORDER=11 | 229 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 221 | # CONFIG_PROC_DEVICETREE is not set | 230 | # CONFIG_PROC_DEVICETREE is not set |
| 222 | # CONFIG_CMDLINE_BOOL is not set | 231 | # CONFIG_CMDLINE_BOOL is not set |
| 232 | CONFIG_EXTRA_TARGETS="" | ||
| 223 | # CONFIG_PM is not set | 233 | # CONFIG_PM is not set |
| 224 | # CONFIG_SECCOMP is not set | 234 | # CONFIG_SECCOMP is not set |
| 225 | CONFIG_ISA_DMA_API=y | 235 | CONFIG_ISA_DMA_API=y |
| @@ -229,6 +239,7 @@ CONFIG_ISA_DMA_API=y | |||
| 229 | # | 239 | # |
| 230 | CONFIG_ZONE_DMA=y | 240 | CONFIG_ZONE_DMA=y |
| 231 | CONFIG_FSL_SOC=y | 241 | CONFIG_FSL_SOC=y |
| 242 | CONFIG_PPC_PCI_CHOICE=y | ||
| 232 | # CONFIG_PCI is not set | 243 | # CONFIG_PCI is not set |
| 233 | # CONFIG_PCI_DOMAINS is not set | 244 | # CONFIG_PCI_DOMAINS is not set |
| 234 | # CONFIG_PCI_SYSCALL is not set | 245 | # CONFIG_PCI_SYSCALL is not set |
| @@ -250,10 +261,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 250 | CONFIG_PHYSICAL_START=0x00000000 | 261 | CONFIG_PHYSICAL_START=0x00000000 |
| 251 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 262 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 252 | CONFIG_TASK_SIZE=0xc0000000 | 263 | CONFIG_TASK_SIZE=0xc0000000 |
| 253 | |||
| 254 | # | ||
| 255 | # Networking | ||
| 256 | # | ||
| 257 | CONFIG_NET=y | 264 | CONFIG_NET=y |
| 258 | 265 | ||
| 259 | # | 266 | # |
| @@ -427,6 +434,7 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 427 | # | 434 | # |
| 428 | # CONFIG_MTD_UBI is not set | 435 | # CONFIG_MTD_UBI is not set |
| 429 | CONFIG_OF_DEVICE=y | 436 | CONFIG_OF_DEVICE=y |
| 437 | CONFIG_OF_GPIO=y | ||
| 430 | # CONFIG_PARPORT is not set | 438 | # CONFIG_PARPORT is not set |
| 431 | CONFIG_BLK_DEV=y | 439 | CONFIG_BLK_DEV=y |
| 432 | # CONFIG_BLK_DEV_FD is not set | 440 | # CONFIG_BLK_DEV_FD is not set |
| @@ -440,12 +448,12 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 440 | # CONFIG_BLK_DEV_XIP is not set | 448 | # CONFIG_BLK_DEV_XIP is not set |
| 441 | # CONFIG_CDROM_PKTCDVD is not set | 449 | # CONFIG_CDROM_PKTCDVD is not set |
| 442 | # CONFIG_ATA_OVER_ETH is not set | 450 | # CONFIG_ATA_OVER_ETH is not set |
| 451 | # CONFIG_BLK_DEV_HD is not set | ||
| 443 | CONFIG_MISC_DEVICES=y | 452 | CONFIG_MISC_DEVICES=y |
| 444 | # CONFIG_EEPROM_93CX6 is not set | 453 | # CONFIG_EEPROM_93CX6 is not set |
| 445 | # CONFIG_ENCLOSURE_SERVICES is not set | 454 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 446 | CONFIG_HAVE_IDE=y | 455 | CONFIG_HAVE_IDE=y |
| 447 | CONFIG_IDE=y | 456 | CONFIG_IDE=y |
| 448 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 449 | CONFIG_BLK_DEV_IDE=y | 457 | CONFIG_BLK_DEV_IDE=y |
| 450 | 458 | ||
| 451 | # | 459 | # |
| @@ -463,11 +471,8 @@ CONFIG_IDE_PROC_FS=y | |||
| 463 | # | 471 | # |
| 464 | # IDE chipset support/bugfixes | 472 | # IDE chipset support/bugfixes |
| 465 | # | 473 | # |
| 466 | CONFIG_IDE_GENERIC=y | ||
| 467 | # CONFIG_BLK_DEV_PLATFORM is not set | 474 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 468 | # CONFIG_BLK_DEV_IDEDMA is not set | 475 | # CONFIG_BLK_DEV_IDEDMA is not set |
| 469 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 470 | # CONFIG_BLK_DEV_HD is not set | ||
| 471 | 476 | ||
| 472 | # | 477 | # |
| 473 | # SCSI device support | 478 | # SCSI device support |
| @@ -480,7 +485,6 @@ CONFIG_IDE_GENERIC=y | |||
| 480 | # CONFIG_MD is not set | 485 | # CONFIG_MD is not set |
| 481 | # CONFIG_MACINTOSH_DRIVERS is not set | 486 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 482 | CONFIG_NETDEVICES=y | 487 | CONFIG_NETDEVICES=y |
| 483 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 484 | # CONFIG_DUMMY is not set | 488 | # CONFIG_DUMMY is not set |
| 485 | # CONFIG_BONDING is not set | 489 | # CONFIG_BONDING is not set |
| 486 | # CONFIG_MACVLAN is not set | 490 | # CONFIG_MACVLAN is not set |
| @@ -504,6 +508,7 @@ CONFIG_MARVELL_PHY=y | |||
| 504 | # CONFIG_REALTEK_PHY is not set | 508 | # CONFIG_REALTEK_PHY is not set |
| 505 | # CONFIG_FIXED_PHY is not set | 509 | # CONFIG_FIXED_PHY is not set |
| 506 | CONFIG_MDIO_BITBANG=y | 510 | CONFIG_MDIO_BITBANG=y |
| 511 | # CONFIG_MDIO_OF_GPIO is not set | ||
| 507 | CONFIG_NET_ETHERNET=y | 512 | CONFIG_NET_ETHERNET=y |
| 508 | CONFIG_MII=y | 513 | CONFIG_MII=y |
| 509 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 514 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -516,9 +521,7 @@ CONFIG_FS_ENET=y | |||
| 516 | CONFIG_FS_ENET_HAS_FCC=y | 521 | CONFIG_FS_ENET_HAS_FCC=y |
| 517 | CONFIG_FS_ENET_MDIO_FCC=y | 522 | CONFIG_FS_ENET_MDIO_FCC=y |
| 518 | CONFIG_NETDEV_1000=y | 523 | CONFIG_NETDEV_1000=y |
| 519 | # CONFIG_E1000E_ENABLED is not set | ||
| 520 | CONFIG_GIANFAR=y | 524 | CONFIG_GIANFAR=y |
| 521 | CONFIG_GFAR_NAPI=y | ||
| 522 | CONFIG_NETDEV_10000=y | 525 | CONFIG_NETDEV_10000=y |
| 523 | 526 | ||
| 524 | # | 527 | # |
| @@ -606,6 +609,23 @@ CONFIG_GEN_RTC=y | |||
| 606 | # CONFIG_TCG_TPM is not set | 609 | # CONFIG_TCG_TPM is not set |
| 607 | # CONFIG_I2C is not set | 610 | # CONFIG_I2C is not set |
| 608 | # CONFIG_SPI is not set | 611 | # CONFIG_SPI is not set |
| 612 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 613 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | ||
| 614 | CONFIG_GPIOLIB=y | ||
| 615 | # CONFIG_DEBUG_GPIO is not set | ||
| 616 | # CONFIG_GPIO_SYSFS is not set | ||
| 617 | |||
| 618 | # | ||
| 619 | # I2C GPIO expanders: | ||
| 620 | # | ||
| 621 | |||
| 622 | # | ||
| 623 | # PCI GPIO expanders: | ||
| 624 | # | ||
| 625 | |||
| 626 | # | ||
| 627 | # SPI GPIO expanders: | ||
| 628 | # | ||
| 609 | # CONFIG_W1 is not set | 629 | # CONFIG_W1 is not set |
| 610 | # CONFIG_POWER_SUPPLY is not set | 630 | # CONFIG_POWER_SUPPLY is not set |
| 611 | CONFIG_HWMON=y | 631 | CONFIG_HWMON=y |
| @@ -622,6 +642,7 @@ CONFIG_HWMON=y | |||
| 622 | # CONFIG_SENSORS_W83627EHF is not set | 642 | # CONFIG_SENSORS_W83627EHF is not set |
| 623 | # CONFIG_HWMON_DEBUG_CHIP is not set | 643 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 624 | # CONFIG_THERMAL is not set | 644 | # CONFIG_THERMAL is not set |
| 645 | # CONFIG_THERMAL_HWMON is not set | ||
| 625 | # CONFIG_WATCHDOG is not set | 646 | # CONFIG_WATCHDOG is not set |
| 626 | 647 | ||
| 627 | # | 648 | # |
| @@ -633,8 +654,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 633 | # | 654 | # |
| 634 | # Multifunction device drivers | 655 | # Multifunction device drivers |
| 635 | # | 656 | # |
| 657 | # CONFIG_MFD_CORE is not set | ||
| 636 | # CONFIG_MFD_SM501 is not set | 658 | # CONFIG_MFD_SM501 is not set |
| 637 | # CONFIG_HTC_PASIC3 is not set | 659 | # CONFIG_HTC_PASIC3 is not set |
| 660 | # CONFIG_MFD_TMIO is not set | ||
| 638 | 661 | ||
| 639 | # | 662 | # |
| 640 | # Multimedia devices | 663 | # Multimedia devices |
| @@ -664,10 +687,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 664 | # Display device support | 687 | # Display device support |
| 665 | # | 688 | # |
| 666 | # CONFIG_DISPLAY_SUPPORT is not set | 689 | # CONFIG_DISPLAY_SUPPORT is not set |
| 667 | |||
| 668 | # | ||
| 669 | # Sound | ||
| 670 | # | ||
| 671 | # CONFIG_SOUND is not set | 690 | # CONFIG_SOUND is not set |
| 672 | CONFIG_HID_SUPPORT=y | 691 | CONFIG_HID_SUPPORT=y |
| 673 | CONFIG_HID=y | 692 | CONFIG_HID=y |
| @@ -681,6 +700,10 @@ CONFIG_USB_SUPPORT=y | |||
| 681 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 700 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 682 | 701 | ||
| 683 | # | 702 | # |
| 703 | # Enable Host or Gadget support to see Inventra options | ||
| 704 | # | ||
| 705 | |||
| 706 | # | ||
| 684 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 707 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 685 | # | 708 | # |
| 686 | # CONFIG_USB_GADGET is not set | 709 | # CONFIG_USB_GADGET is not set |
| @@ -759,6 +782,7 @@ CONFIG_TMPFS=y | |||
| 759 | # CONFIG_CRAMFS is not set | 782 | # CONFIG_CRAMFS is not set |
| 760 | # CONFIG_VXFS_FS is not set | 783 | # CONFIG_VXFS_FS is not set |
| 761 | # CONFIG_MINIX_FS is not set | 784 | # CONFIG_MINIX_FS is not set |
| 785 | # CONFIG_OMFS_FS is not set | ||
| 762 | # CONFIG_HPFS_FS is not set | 786 | # CONFIG_HPFS_FS is not set |
| 763 | # CONFIG_QNX4FS_FS is not set | 787 | # CONFIG_QNX4FS_FS is not set |
| 764 | # CONFIG_ROMFS_FS is not set | 788 | # CONFIG_ROMFS_FS is not set |
| @@ -768,12 +792,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 768 | CONFIG_NFS_FS=y | 792 | CONFIG_NFS_FS=y |
| 769 | # CONFIG_NFS_V3 is not set | 793 | # CONFIG_NFS_V3 is not set |
| 770 | # CONFIG_NFS_V4 is not set | 794 | # CONFIG_NFS_V4 is not set |
| 771 | # CONFIG_NFSD is not set | ||
| 772 | CONFIG_ROOT_NFS=y | 795 | CONFIG_ROOT_NFS=y |
| 796 | # CONFIG_NFSD is not set | ||
| 773 | CONFIG_LOCKD=y | 797 | CONFIG_LOCKD=y |
| 774 | CONFIG_NFS_COMMON=y | 798 | CONFIG_NFS_COMMON=y |
| 775 | CONFIG_SUNRPC=y | 799 | CONFIG_SUNRPC=y |
| 776 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 777 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 800 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 778 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 801 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 779 | # CONFIG_SMB_FS is not set | 802 | # CONFIG_SMB_FS is not set |
| @@ -809,6 +832,7 @@ CONFIG_BITREVERSE=y | |||
| 809 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 832 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 810 | # CONFIG_CRC_CCITT is not set | 833 | # CONFIG_CRC_CCITT is not set |
| 811 | # CONFIG_CRC16 is not set | 834 | # CONFIG_CRC16 is not set |
| 835 | # CONFIG_CRC_T10DIF is not set | ||
| 812 | # CONFIG_CRC_ITU_T is not set | 836 | # CONFIG_CRC_ITU_T is not set |
| 813 | CONFIG_CRC32=y | 837 | CONFIG_CRC32=y |
| 814 | # CONFIG_CRC7 is not set | 838 | # CONFIG_CRC7 is not set |
| @@ -833,6 +857,8 @@ CONFIG_DEBUG_FS=y | |||
| 833 | CONFIG_DEBUG_KERNEL=y | 857 | CONFIG_DEBUG_KERNEL=y |
| 834 | # CONFIG_DEBUG_SHIRQ is not set | 858 | # CONFIG_DEBUG_SHIRQ is not set |
| 835 | CONFIG_DETECT_SOFTLOCKUP=y | 859 | CONFIG_DETECT_SOFTLOCKUP=y |
| 860 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 861 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 836 | CONFIG_SCHED_DEBUG=y | 862 | CONFIG_SCHED_DEBUG=y |
| 837 | # CONFIG_SCHEDSTATS is not set | 863 | # CONFIG_SCHEDSTATS is not set |
| 838 | # CONFIG_TIMER_STATS is not set | 864 | # CONFIG_TIMER_STATS is not set |
| @@ -851,17 +877,29 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 851 | # CONFIG_DEBUG_INFO is not set | 877 | # CONFIG_DEBUG_INFO is not set |
| 852 | # CONFIG_DEBUG_VM is not set | 878 | # CONFIG_DEBUG_VM is not set |
| 853 | # CONFIG_DEBUG_WRITECOUNT is not set | 879 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 880 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 854 | # CONFIG_DEBUG_LIST is not set | 881 | # CONFIG_DEBUG_LIST is not set |
| 855 | # CONFIG_DEBUG_SG is not set | 882 | # CONFIG_DEBUG_SG is not set |
| 856 | # CONFIG_BOOT_PRINTK_DELAY is not set | 883 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 884 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 857 | # CONFIG_BACKTRACE_SELF_TEST is not set | 885 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 858 | # CONFIG_FAULT_INJECTION is not set | 886 | # CONFIG_FAULT_INJECTION is not set |
| 887 | # CONFIG_LATENCYTOP is not set | ||
| 888 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 889 | CONFIG_HAVE_FTRACE=y | ||
| 890 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 891 | # CONFIG_FTRACE is not set | ||
| 892 | # CONFIG_SCHED_TRACER is not set | ||
| 893 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 859 | # CONFIG_SAMPLES is not set | 894 | # CONFIG_SAMPLES is not set |
| 895 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 896 | # CONFIG_KGDB is not set | ||
| 860 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 897 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 861 | # CONFIG_DEBUG_STACK_USAGE is not set | 898 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 862 | # CONFIG_DEBUG_PAGEALLOC is not set | 899 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 863 | # CONFIG_DEBUGGER is not set | 900 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 864 | # CONFIG_KGDB_CONSOLE is not set | 901 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 902 | # CONFIG_XMON is not set | ||
| 865 | # CONFIG_IRQSTACKS is not set | 903 | # CONFIG_IRQSTACKS is not set |
| 866 | # CONFIG_VIRQ_DEBUG is not set | 904 | # CONFIG_VIRQ_DEBUG is not set |
| 867 | # CONFIG_BDI_SWITCH is not set | 905 | # CONFIG_BDI_SWITCH is not set |
| @@ -915,6 +953,10 @@ CONFIG_CRYPTO=y | |||
| 915 | # CONFIG_CRYPTO_MD4 is not set | 953 | # CONFIG_CRYPTO_MD4 is not set |
| 916 | # CONFIG_CRYPTO_MD5 is not set | 954 | # CONFIG_CRYPTO_MD5 is not set |
| 917 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 955 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 956 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 957 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 958 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 959 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 918 | # CONFIG_CRYPTO_SHA1 is not set | 960 | # CONFIG_CRYPTO_SHA1 is not set |
| 919 | # CONFIG_CRYPTO_SHA256 is not set | 961 | # CONFIG_CRYPTO_SHA256 is not set |
| 920 | # CONFIG_CRYPTO_SHA512 is not set | 962 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -946,6 +988,7 @@ CONFIG_CRYPTO=y | |||
| 946 | # CONFIG_CRYPTO_DEFLATE is not set | 988 | # CONFIG_CRYPTO_DEFLATE is not set |
| 947 | # CONFIG_CRYPTO_LZO is not set | 989 | # CONFIG_CRYPTO_LZO is not set |
| 948 | CONFIG_CRYPTO_HW=y | 990 | CONFIG_CRYPTO_HW=y |
| 949 | # CONFIG_PPC_CLOCK is not set | 991 | # CONFIG_CRYPTO_DEV_TALITOS is not set |
| 992 | CONFIG_PPC_CLOCK=y | ||
| 950 | CONFIG_PPC_LIB_RHEAP=y | 993 | CONFIG_PPC_LIB_RHEAP=y |
| 951 | # CONFIG_VIRTUALIZATION is not set | 994 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/mpc8536_ds_defconfig b/arch/powerpc/configs/85xx/mpc8536_ds_defconfig index f1e2931de5da..6b516bea6e75 100644 --- a/arch/powerpc/configs/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.26-rc8 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Wed Jul 2 01:34:26 2008 | 4 | # Thu Aug 21 07:18:18 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -34,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 35 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 36 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 37 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 39 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -93,7 +94,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 93 | CONFIG_SYSCTL=y | 94 | CONFIG_SYSCTL=y |
| 94 | CONFIG_EMBEDDED=y | 95 | CONFIG_EMBEDDED=y |
| 95 | CONFIG_SYSCTL_SYSCALL=y | 96 | CONFIG_SYSCTL_SYSCALL=y |
| 96 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 97 | CONFIG_KALLSYMS=y | 97 | CONFIG_KALLSYMS=y |
| 98 | CONFIG_KALLSYMS_ALL=y | 98 | CONFIG_KALLSYMS_ALL=y |
| 99 | CONFIG_KALLSYMS_EXTRA_PASS=y | 99 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -119,10 +119,16 @@ CONFIG_SLUB=y | |||
| 119 | # CONFIG_MARKERS 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 | ||
| 123 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 122 | CONFIG_HAVE_KPROBES=y | 124 | CONFIG_HAVE_KPROBES=y |
| 123 | CONFIG_HAVE_KRETPROBES=y | 125 | CONFIG_HAVE_KRETPROBES=y |
| 126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 124 | # CONFIG_HAVE_DMA_ATTRS is not set | 127 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 128 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 129 | # CONFIG_HAVE_CLK is not set | ||
| 125 | CONFIG_PROC_PAGE_MONITOR=y | 130 | CONFIG_PROC_PAGE_MONITOR=y |
| 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 126 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
| 127 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
| 128 | # CONFIG_TINY_SHMEM is not set | 134 | # CONFIG_TINY_SHMEM is not set |
| @@ -139,6 +145,7 @@ CONFIG_LBD=y | |||
| 139 | # CONFIG_BLK_DEV_IO_TRACE is not set | 145 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 140 | # CONFIG_LSF is not set | 146 | # CONFIG_LSF is not set |
| 141 | # CONFIG_BLK_DEV_BSG is not set | 147 | # CONFIG_BLK_DEV_BSG is not set |
| 148 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 142 | 149 | ||
| 143 | # | 150 | # |
| 144 | # IO Schedulers | 151 | # IO Schedulers |
| @@ -157,8 +164,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 157 | # | 164 | # |
| 158 | # Platform support | 165 | # Platform support |
| 159 | # | 166 | # |
| 160 | # CONFIG_PPC_MPC512x is not set | ||
| 161 | # CONFIG_PPC_MPC5121 is not set | ||
| 162 | # CONFIG_PPC_CELL is not set | 167 | # CONFIG_PPC_CELL is not set |
| 163 | # CONFIG_PPC_CELL_NATIVE is not set | 168 | # CONFIG_PPC_CELL_NATIVE is not set |
| 164 | # CONFIG_PQ2ADS is not set | 169 | # CONFIG_PQ2ADS is not set |
| @@ -205,7 +210,7 @@ CONFIG_HZ_250=y | |||
| 205 | # CONFIG_HZ_300 is not set | 210 | # CONFIG_HZ_300 is not set |
| 206 | # CONFIG_HZ_1000 is not set | 211 | # CONFIG_HZ_1000 is not set |
| 207 | CONFIG_HZ=250 | 212 | CONFIG_HZ=250 |
| 208 | # CONFIG_SCHED_HRTICK is not set | 213 | CONFIG_SCHED_HRTICK=y |
| 209 | CONFIG_PREEMPT_NONE=y | 214 | CONFIG_PREEMPT_NONE=y |
| 210 | # CONFIG_PREEMPT_VOLUNTARY is not set | 215 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 211 | # CONFIG_PREEMPT is not set | 216 | # CONFIG_PREEMPT is not set |
| @@ -228,6 +233,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 228 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 233 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 229 | CONFIG_PAGEFLAGS_EXTENDED=y | 234 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 230 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 235 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 236 | CONFIG_MIGRATION=y | ||
| 231 | # CONFIG_RESOURCES_64BIT is not set | 237 | # CONFIG_RESOURCES_64BIT is not set |
| 232 | CONFIG_ZONE_DMA_FLAG=1 | 238 | CONFIG_ZONE_DMA_FLAG=1 |
| 233 | CONFIG_BOUNCE=y | 239 | CONFIG_BOUNCE=y |
| @@ -235,6 +241,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 235 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 236 | CONFIG_PROC_DEVICETREE=y | 242 | CONFIG_PROC_DEVICETREE=y |
| 237 | # CONFIG_CMDLINE_BOOL is not set | 243 | # CONFIG_CMDLINE_BOOL is not set |
| 244 | CONFIG_EXTRA_TARGETS="" | ||
| 238 | # CONFIG_PM is not set | 245 | # CONFIG_PM is not set |
| 239 | CONFIG_SECCOMP=y | 246 | CONFIG_SECCOMP=y |
| 240 | CONFIG_ISA_DMA_API=y | 247 | CONFIG_ISA_DMA_API=y |
| @@ -246,6 +253,7 @@ CONFIG_ZONE_DMA=y | |||
| 246 | CONFIG_PPC_INDIRECT_PCI=y | 253 | CONFIG_PPC_INDIRECT_PCI=y |
| 247 | CONFIG_FSL_SOC=y | 254 | CONFIG_FSL_SOC=y |
| 248 | CONFIG_FSL_PCI=y | 255 | CONFIG_FSL_PCI=y |
| 256 | CONFIG_PPC_PCI_CHOICE=y | ||
| 249 | CONFIG_PCI=y | 257 | CONFIG_PCI=y |
| 250 | CONFIG_PCI_DOMAINS=y | 258 | CONFIG_PCI_DOMAINS=y |
| 251 | CONFIG_PCI_SYSCALL=y | 259 | CONFIG_PCI_SYSCALL=y |
| @@ -272,10 +280,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 272 | CONFIG_PHYSICAL_START=0x00000000 | 280 | CONFIG_PHYSICAL_START=0x00000000 |
| 273 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 281 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 274 | CONFIG_TASK_SIZE=0xc0000000 | 282 | CONFIG_TASK_SIZE=0xc0000000 |
| 275 | |||
| 276 | # | ||
| 277 | # Networking | ||
| 278 | # | ||
| 279 | CONFIG_NET=y | 283 | CONFIG_NET=y |
| 280 | 284 | ||
| 281 | # | 285 | # |
| @@ -401,6 +405,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 401 | CONFIG_STANDALONE=y | 405 | CONFIG_STANDALONE=y |
| 402 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 406 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 403 | CONFIG_FW_LOADER=y | 407 | CONFIG_FW_LOADER=y |
| 408 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 409 | CONFIG_EXTRA_FIRMWARE="" | ||
| 404 | # CONFIG_DEBUG_DRIVER is not set | 410 | # CONFIG_DEBUG_DRIVER is not set |
| 405 | # CONFIG_DEBUG_DEVRES is not set | 411 | # CONFIG_DEBUG_DEVRES is not set |
| 406 | # CONFIG_SYS_HYPERVISOR is not set | 412 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -427,12 +433,14 @@ CONFIG_BLK_DEV_RAM_SIZE=524288 | |||
| 427 | # CONFIG_BLK_DEV_XIP is not set | 433 | # CONFIG_BLK_DEV_XIP is not set |
| 428 | # CONFIG_CDROM_PKTCDVD is not set | 434 | # CONFIG_CDROM_PKTCDVD is not set |
| 429 | # CONFIG_ATA_OVER_ETH is not set | 435 | # CONFIG_ATA_OVER_ETH is not set |
| 436 | # CONFIG_BLK_DEV_HD is not set | ||
| 430 | CONFIG_MISC_DEVICES=y | 437 | CONFIG_MISC_DEVICES=y |
| 431 | # CONFIG_PHANTOM is not set | 438 | # CONFIG_PHANTOM is not set |
| 432 | # CONFIG_EEPROM_93CX6 is not set | 439 | # CONFIG_EEPROM_93CX6 is not set |
| 433 | # CONFIG_SGI_IOC4 is not set | 440 | # CONFIG_SGI_IOC4 is not set |
| 434 | # CONFIG_TIFM_CORE is not set | 441 | # CONFIG_TIFM_CORE is not set |
| 435 | # CONFIG_ENCLOSURE_SERVICES is not set | 442 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 443 | # CONFIG_HP_ILO is not set | ||
| 436 | CONFIG_HAVE_IDE=y | 444 | CONFIG_HAVE_IDE=y |
| 437 | # CONFIG_IDE is not set | 445 | # CONFIG_IDE is not set |
| 438 | 446 | ||
| @@ -512,6 +520,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 512 | # CONFIG_SCSI_NSP32 is not set | 520 | # CONFIG_SCSI_NSP32 is not set |
| 513 | # CONFIG_SCSI_DEBUG is not set | 521 | # CONFIG_SCSI_DEBUG is not set |
| 514 | # CONFIG_SCSI_SRP is not set | 522 | # CONFIG_SCSI_SRP is not set |
| 523 | # CONFIG_SCSI_DH is not set | ||
| 515 | CONFIG_ATA=y | 524 | CONFIG_ATA=y |
| 516 | # CONFIG_ATA_NONSTANDARD is not set | 525 | # CONFIG_ATA_NONSTANDARD is not set |
| 517 | CONFIG_SATA_PMP=y | 526 | CONFIG_SATA_PMP=y |
| @@ -588,7 +597,6 @@ CONFIG_SATA_SIL=y | |||
| 588 | # CONFIG_I2O is not set | 597 | # CONFIG_I2O is not set |
| 589 | # CONFIG_MACINTOSH_DRIVERS is not set | 598 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 590 | CONFIG_NETDEVICES=y | 599 | CONFIG_NETDEVICES=y |
| 591 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 592 | CONFIG_DUMMY=y | 600 | CONFIG_DUMMY=y |
| 593 | # CONFIG_BONDING is not set | 601 | # CONFIG_BONDING is not set |
| 594 | # CONFIG_MACVLAN is not set | 602 | # CONFIG_MACVLAN is not set |
| @@ -632,7 +640,6 @@ CONFIG_NETDEV_1000=y | |||
| 632 | # CONFIG_DL2K is not set | 640 | # CONFIG_DL2K is not set |
| 633 | # CONFIG_E1000 is not set | 641 | # CONFIG_E1000 is not set |
| 634 | # CONFIG_E1000E is not set | 642 | # CONFIG_E1000E is not set |
| 635 | # CONFIG_E1000E_ENABLED is not set | ||
| 636 | # CONFIG_IP1000 is not set | 643 | # CONFIG_IP1000 is not set |
| 637 | # CONFIG_IGB is not set | 644 | # CONFIG_IGB is not set |
| 638 | # CONFIG_NS83820 is not set | 645 | # CONFIG_NS83820 is not set |
| @@ -648,9 +655,9 @@ CONFIG_SKY2=y | |||
| 648 | # CONFIG_TIGON3 is not set | 655 | # CONFIG_TIGON3 is not set |
| 649 | # CONFIG_BNX2 is not set | 656 | # CONFIG_BNX2 is not set |
| 650 | CONFIG_GIANFAR=y | 657 | CONFIG_GIANFAR=y |
| 651 | CONFIG_GFAR_NAPI=y | ||
| 652 | # CONFIG_QLA3XXX is not set | 658 | # CONFIG_QLA3XXX is not set |
| 653 | # CONFIG_ATL1 is not set | 659 | # CONFIG_ATL1 is not set |
| 660 | # CONFIG_ATL1E is not set | ||
| 654 | CONFIG_NETDEV_10000=y | 661 | CONFIG_NETDEV_10000=y |
| 655 | # CONFIG_CHELSIO_T1 is not set | 662 | # CONFIG_CHELSIO_T1 is not set |
| 656 | # CONFIG_CHELSIO_T3 is not set | 663 | # CONFIG_CHELSIO_T3 is not set |
| @@ -727,12 +734,14 @@ CONFIG_SERIO_SERPORT=y | |||
| 727 | # CONFIG_SERIO_PCIPS2 is not set | 734 | # CONFIG_SERIO_PCIPS2 is not set |
| 728 | CONFIG_SERIO_LIBPS2=y | 735 | CONFIG_SERIO_LIBPS2=y |
| 729 | # CONFIG_SERIO_RAW is not set | 736 | # CONFIG_SERIO_RAW is not set |
| 737 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 730 | # CONFIG_GAMEPORT is not set | 738 | # CONFIG_GAMEPORT is not set |
| 731 | 739 | ||
| 732 | # | 740 | # |
| 733 | # Character devices | 741 | # Character devices |
| 734 | # | 742 | # |
| 735 | CONFIG_VT=y | 743 | CONFIG_VT=y |
| 744 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 736 | CONFIG_VT_CONSOLE=y | 745 | CONFIG_VT_CONSOLE=y |
| 737 | CONFIG_HW_CONSOLE=y | 746 | CONFIG_HW_CONSOLE=y |
| 738 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 747 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -766,7 +775,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 766 | CONFIG_LEGACY_PTYS=y | 775 | CONFIG_LEGACY_PTYS=y |
| 767 | CONFIG_LEGACY_PTY_COUNT=256 | 776 | CONFIG_LEGACY_PTY_COUNT=256 |
| 768 | # CONFIG_IPMI_HANDLER is not set | 777 | # CONFIG_IPMI_HANDLER is not set |
| 769 | # CONFIG_HW_RANDOM is not set | 778 | CONFIG_HW_RANDOM=y |
| 770 | # CONFIG_NVRAM is not set | 779 | # CONFIG_NVRAM is not set |
| 771 | # CONFIG_R3964 is not set | 780 | # CONFIG_R3964 is not set |
| 772 | # CONFIG_APPLICOM is not set | 781 | # CONFIG_APPLICOM is not set |
| @@ -776,43 +785,64 @@ CONFIG_DEVPORT=y | |||
| 776 | CONFIG_I2C=y | 785 | CONFIG_I2C=y |
| 777 | CONFIG_I2C_BOARDINFO=y | 786 | CONFIG_I2C_BOARDINFO=y |
| 778 | # CONFIG_I2C_CHARDEV is not set | 787 | # CONFIG_I2C_CHARDEV is not set |
| 788 | CONFIG_I2C_HELPER_AUTO=y | ||
| 779 | 789 | ||
| 780 | # | 790 | # |
| 781 | # I2C Hardware Bus support | 791 | # I2C Hardware Bus support |
| 782 | # | 792 | # |
| 793 | |||
| 794 | # | ||
| 795 | # PC SMBus host controller drivers | ||
| 796 | # | ||
| 783 | # CONFIG_I2C_ALI1535 is not set | 797 | # CONFIG_I2C_ALI1535 is not set |
| 784 | # CONFIG_I2C_ALI1563 is not set | 798 | # CONFIG_I2C_ALI1563 is not set |
| 785 | # CONFIG_I2C_ALI15X3 is not set | 799 | # CONFIG_I2C_ALI15X3 is not set |
| 786 | # CONFIG_I2C_AMD756 is not set | 800 | # CONFIG_I2C_AMD756 is not set |
| 787 | # CONFIG_I2C_AMD8111 is not set | 801 | # CONFIG_I2C_AMD8111 is not set |
| 788 | # CONFIG_I2C_I801 is not set | 802 | # CONFIG_I2C_I801 is not set |
| 789 | # CONFIG_I2C_I810 is not set | 803 | # CONFIG_I2C_ISCH is not set |
| 790 | # CONFIG_I2C_PIIX4 is not set | 804 | # CONFIG_I2C_PIIX4 is not set |
| 791 | CONFIG_I2C_MPC=y | ||
| 792 | # CONFIG_I2C_NFORCE2 is not set | 805 | # CONFIG_I2C_NFORCE2 is not set |
| 793 | # CONFIG_I2C_OCORES is not set | ||
| 794 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 795 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 796 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 797 | # CONFIG_I2C_SIMTEC is not set | ||
| 798 | # CONFIG_I2C_SIS5595 is not set | 806 | # CONFIG_I2C_SIS5595 is not set |
| 799 | # CONFIG_I2C_SIS630 is not set | 807 | # CONFIG_I2C_SIS630 is not set |
| 800 | # CONFIG_I2C_SIS96X is not set | 808 | # CONFIG_I2C_SIS96X is not set |
| 801 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 802 | # CONFIG_I2C_STUB is not set | ||
| 803 | # CONFIG_I2C_TINY_USB is not set | ||
| 804 | # CONFIG_I2C_VIA is not set | 809 | # CONFIG_I2C_VIA is not set |
| 805 | # CONFIG_I2C_VIAPRO is not set | 810 | # CONFIG_I2C_VIAPRO is not set |
| 811 | |||
| 812 | # | ||
| 813 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 814 | # | ||
| 815 | CONFIG_I2C_MPC=y | ||
| 816 | # CONFIG_I2C_OCORES is not set | ||
| 817 | # CONFIG_I2C_SIMTEC is not set | ||
| 818 | |||
| 819 | # | ||
| 820 | # External I2C/SMBus adapter drivers | ||
| 821 | # | ||
| 822 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 823 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 824 | # CONFIG_I2C_TINY_USB is not set | ||
| 825 | |||
| 826 | # | ||
| 827 | # Graphics adapter I2C/DDC channel drivers | ||
| 828 | # | ||
| 806 | # CONFIG_I2C_VOODOO3 is not set | 829 | # CONFIG_I2C_VOODOO3 is not set |
| 830 | |||
| 831 | # | ||
| 832 | # Other I2C/SMBus bus drivers | ||
| 833 | # | ||
| 807 | # CONFIG_I2C_PCA_PLATFORM is not set | 834 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 835 | # CONFIG_I2C_STUB is not set | ||
| 808 | 836 | ||
| 809 | # | 837 | # |
| 810 | # Miscellaneous I2C Chip support | 838 | # Miscellaneous I2C Chip support |
| 811 | # | 839 | # |
| 812 | # CONFIG_DS1682 is not set | 840 | # CONFIG_DS1682 is not set |
| 841 | # CONFIG_AT24 is not set | ||
| 813 | CONFIG_SENSORS_EEPROM=y | 842 | CONFIG_SENSORS_EEPROM=y |
| 814 | # CONFIG_SENSORS_PCF8574 is not set | 843 | # CONFIG_SENSORS_PCF8574 is not set |
| 815 | # CONFIG_PCF8575 is not set | 844 | # CONFIG_PCF8575 is not set |
| 845 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 816 | # CONFIG_SENSORS_PCF8591 is not set | 846 | # CONFIG_SENSORS_PCF8591 is not set |
| 817 | # CONFIG_SENSORS_MAX6875 is not set | 847 | # CONFIG_SENSORS_MAX6875 is not set |
| 818 | # CONFIG_SENSORS_TSL2550 is not set | 848 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -821,6 +851,8 @@ CONFIG_SENSORS_EEPROM=y | |||
| 821 | # CONFIG_I2C_DEBUG_BUS is not set | 851 | # CONFIG_I2C_DEBUG_BUS is not set |
| 822 | # CONFIG_I2C_DEBUG_CHIP is not set | 852 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 823 | # CONFIG_SPI is not set | 853 | # CONFIG_SPI is not set |
| 854 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 855 | # CONFIG_GPIOLIB is not set | ||
| 824 | # CONFIG_W1 is not set | 856 | # CONFIG_W1 is not set |
| 825 | # CONFIG_POWER_SUPPLY is not set | 857 | # CONFIG_POWER_SUPPLY is not set |
| 826 | # CONFIG_HWMON is not set | 858 | # CONFIG_HWMON is not set |
| @@ -836,8 +868,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 836 | # | 868 | # |
| 837 | # Multifunction device drivers | 869 | # Multifunction device drivers |
| 838 | # | 870 | # |
| 871 | # CONFIG_MFD_CORE is not set | ||
| 839 | # CONFIG_MFD_SM501 is not set | 872 | # CONFIG_MFD_SM501 is not set |
| 840 | # CONFIG_HTC_PASIC3 is not set | 873 | # CONFIG_HTC_PASIC3 is not set |
| 874 | # CONFIG_MFD_TMIO is not set | ||
| 841 | 875 | ||
| 842 | # | 876 | # |
| 843 | # Multimedia devices | 877 | # Multimedia devices |
| @@ -879,6 +913,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 879 | # CONFIG_DVB_TTUSB_BUDGET is not set | 913 | # CONFIG_DVB_TTUSB_BUDGET is not set |
| 880 | # CONFIG_DVB_TTUSB_DEC is not set | 914 | # CONFIG_DVB_TTUSB_DEC is not set |
| 881 | # CONFIG_DVB_CINERGYT2 is not set | 915 | # CONFIG_DVB_CINERGYT2 is not set |
| 916 | # CONFIG_DVB_SIANO_SMS1XXX is not set | ||
| 882 | 917 | ||
| 883 | # | 918 | # |
| 884 | # Supported FlexCopII (B2C2) Adapters | 919 | # Supported FlexCopII (B2C2) Adapters |
| @@ -925,6 +960,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 925 | # CONFIG_DVB_SP887X is not set | 960 | # CONFIG_DVB_SP887X is not set |
| 926 | # CONFIG_DVB_CX22700 is not set | 961 | # CONFIG_DVB_CX22700 is not set |
| 927 | # CONFIG_DVB_CX22702 is not set | 962 | # CONFIG_DVB_CX22702 is not set |
| 963 | # CONFIG_DVB_DRX397XD is not set | ||
| 928 | # CONFIG_DVB_L64781 is not set | 964 | # CONFIG_DVB_L64781 is not set |
| 929 | # CONFIG_DVB_TDA1004X is not set | 965 | # CONFIG_DVB_TDA1004X is not set |
| 930 | # CONFIG_DVB_NXT6000 is not set | 966 | # CONFIG_DVB_NXT6000 is not set |
| @@ -992,15 +1028,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 992 | CONFIG_VGA_CONSOLE=y | 1028 | CONFIG_VGA_CONSOLE=y |
| 993 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | 1029 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set |
| 994 | CONFIG_DUMMY_CONSOLE=y | 1030 | CONFIG_DUMMY_CONSOLE=y |
| 995 | |||
| 996 | # | ||
| 997 | # Sound | ||
| 998 | # | ||
| 999 | CONFIG_SOUND=y | 1031 | CONFIG_SOUND=y |
| 1000 | |||
| 1001 | # | ||
| 1002 | # Advanced Linux Sound Architecture | ||
| 1003 | # | ||
| 1004 | CONFIG_SND=y | 1032 | CONFIG_SND=y |
| 1005 | CONFIG_SND_TIMER=y | 1033 | CONFIG_SND_TIMER=y |
| 1006 | CONFIG_SND_PCM=y | 1034 | CONFIG_SND_PCM=y |
| @@ -1012,19 +1040,15 @@ CONFIG_SND_SUPPORT_OLD_API=y | |||
| 1012 | CONFIG_SND_VERBOSE_PROCFS=y | 1040 | CONFIG_SND_VERBOSE_PROCFS=y |
| 1013 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1041 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 1014 | # CONFIG_SND_DEBUG is not set | 1042 | # CONFIG_SND_DEBUG is not set |
| 1015 | 1043 | CONFIG_SND_VMASTER=y | |
| 1016 | # | ||
| 1017 | # Generic devices | ||
| 1018 | # | ||
| 1019 | CONFIG_SND_AC97_CODEC=y | 1044 | CONFIG_SND_AC97_CODEC=y |
| 1045 | CONFIG_SND_DRIVERS=y | ||
| 1020 | # CONFIG_SND_DUMMY is not set | 1046 | # CONFIG_SND_DUMMY is not set |
| 1021 | # CONFIG_SND_MTPAV is not set | 1047 | # CONFIG_SND_MTPAV is not set |
| 1022 | # CONFIG_SND_SERIAL_U16550 is not set | 1048 | # CONFIG_SND_SERIAL_U16550 is not set |
| 1023 | # CONFIG_SND_MPU401 is not set | 1049 | # CONFIG_SND_MPU401 is not set |
| 1024 | 1050 | # CONFIG_SND_AC97_POWER_SAVE is not set | |
| 1025 | # | 1051 | CONFIG_SND_PCI=y |
| 1026 | # PCI devices | ||
| 1027 | # | ||
| 1028 | # CONFIG_SND_AD1889 is not set | 1052 | # CONFIG_SND_AD1889 is not set |
| 1029 | # CONFIG_SND_ALS300 is not set | 1053 | # CONFIG_SND_ALS300 is not set |
| 1030 | # CONFIG_SND_ALS4000 is not set | 1054 | # CONFIG_SND_ALS4000 is not set |
| @@ -1086,39 +1110,12 @@ CONFIG_SND_INTEL8X0=y | |||
| 1086 | # CONFIG_SND_VIRTUOSO is not set | 1110 | # CONFIG_SND_VIRTUOSO is not set |
| 1087 | # CONFIG_SND_VX222 is not set | 1111 | # CONFIG_SND_VX222 is not set |
| 1088 | # CONFIG_SND_YMFPCI is not set | 1112 | # CONFIG_SND_YMFPCI is not set |
| 1089 | # CONFIG_SND_AC97_POWER_SAVE is not set | 1113 | CONFIG_SND_PPC=y |
| 1090 | 1114 | CONFIG_SND_USB=y | |
| 1091 | # | ||
| 1092 | # ALSA PowerMac devices | ||
| 1093 | # | ||
| 1094 | |||
| 1095 | # | ||
| 1096 | # ALSA PowerPC devices | ||
| 1097 | # | ||
| 1098 | |||
| 1099 | # | ||
| 1100 | # USB devices | ||
| 1101 | # | ||
| 1102 | # CONFIG_SND_USB_AUDIO is not set | 1115 | # CONFIG_SND_USB_AUDIO is not set |
| 1103 | # CONFIG_SND_USB_USX2Y is not set | 1116 | # CONFIG_SND_USB_USX2Y is not set |
| 1104 | # CONFIG_SND_USB_CAIAQ is not set | 1117 | # CONFIG_SND_USB_CAIAQ is not set |
| 1105 | |||
| 1106 | # | ||
| 1107 | # System on Chip audio support | ||
| 1108 | # | ||
| 1109 | # CONFIG_SND_SOC is not set | 1118 | # CONFIG_SND_SOC is not set |
| 1110 | |||
| 1111 | # | ||
| 1112 | # ALSA SoC audio for Freescale SOCs | ||
| 1113 | # | ||
| 1114 | |||
| 1115 | # | ||
| 1116 | # SoC Audio for the Texas Instruments OMAP | ||
| 1117 | # | ||
| 1118 | |||
| 1119 | # | ||
| 1120 | # Open Sound System | ||
| 1121 | # | ||
| 1122 | # CONFIG_SOUND_PRIME is not set | 1119 | # CONFIG_SOUND_PRIME is not set |
| 1123 | CONFIG_AC97_BUS=y | 1120 | CONFIG_AC97_BUS=y |
| 1124 | CONFIG_HID_SUPPORT=y | 1121 | CONFIG_HID_SUPPORT=y |
| @@ -1150,6 +1147,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 1150 | # CONFIG_USB_OTG is not set | 1147 | # CONFIG_USB_OTG is not set |
| 1151 | # CONFIG_USB_OTG_WHITELIST is not set | 1148 | # CONFIG_USB_OTG_WHITELIST is not set |
| 1152 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1149 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1150 | CONFIG_USB_MON=y | ||
| 1153 | 1151 | ||
| 1154 | # | 1152 | # |
| 1155 | # USB Host Controller Drivers | 1153 | # USB Host Controller Drivers |
| @@ -1201,6 +1199,7 @@ CONFIG_USB_STORAGE=y | |||
| 1201 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1199 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1202 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1200 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1203 | # CONFIG_USB_STORAGE_KARMA is not set | 1201 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1202 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1204 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1203 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1205 | # CONFIG_USB_LIBUSUAL is not set | 1204 | # CONFIG_USB_LIBUSUAL is not set |
| 1206 | 1205 | ||
| @@ -1209,7 +1208,6 @@ CONFIG_USB_STORAGE=y | |||
| 1209 | # | 1208 | # |
| 1210 | # CONFIG_USB_MDC800 is not set | 1209 | # CONFIG_USB_MDC800 is not set |
| 1211 | # CONFIG_USB_MICROTEK is not set | 1210 | # CONFIG_USB_MICROTEK is not set |
| 1212 | CONFIG_USB_MON=y | ||
| 1213 | 1211 | ||
| 1214 | # | 1212 | # |
| 1215 | # USB port drivers | 1213 | # USB port drivers |
| @@ -1222,7 +1220,6 @@ CONFIG_USB_MON=y | |||
| 1222 | # CONFIG_USB_EMI62 is not set | 1220 | # CONFIG_USB_EMI62 is not set |
| 1223 | # CONFIG_USB_EMI26 is not set | 1221 | # CONFIG_USB_EMI26 is not set |
| 1224 | # CONFIG_USB_ADUTUX is not set | 1222 | # CONFIG_USB_ADUTUX is not set |
| 1225 | # CONFIG_USB_AUERSWALD is not set | ||
| 1226 | # CONFIG_USB_RIO500 is not set | 1223 | # CONFIG_USB_RIO500 is not set |
| 1227 | # CONFIG_USB_LEGOTOWER is not set | 1224 | # CONFIG_USB_LEGOTOWER is not set |
| 1228 | # CONFIG_USB_LCD is not set | 1225 | # CONFIG_USB_LCD is not set |
| @@ -1310,6 +1307,7 @@ CONFIG_DMA_ENGINE=y | |||
| 1310 | # DMA Clients | 1307 | # DMA Clients |
| 1311 | # | 1308 | # |
| 1312 | # CONFIG_NET_DMA is not set | 1309 | # CONFIG_NET_DMA is not set |
| 1310 | # CONFIG_DMATEST is not set | ||
| 1313 | # CONFIG_UIO is not set | 1311 | # CONFIG_UIO is not set |
| 1314 | 1312 | ||
| 1315 | # | 1313 | # |
| @@ -1387,6 +1385,7 @@ CONFIG_EFS_FS=m | |||
| 1387 | CONFIG_CRAMFS=y | 1385 | CONFIG_CRAMFS=y |
| 1388 | CONFIG_VXFS_FS=m | 1386 | CONFIG_VXFS_FS=m |
| 1389 | # CONFIG_MINIX_FS is not set | 1387 | # CONFIG_MINIX_FS is not set |
| 1388 | # CONFIG_OMFS_FS is not set | ||
| 1390 | CONFIG_HPFS_FS=m | 1389 | CONFIG_HPFS_FS=m |
| 1391 | CONFIG_QNX4FS_FS=m | 1390 | CONFIG_QNX4FS_FS=m |
| 1392 | # CONFIG_ROMFS_FS is not set | 1391 | # CONFIG_ROMFS_FS is not set |
| @@ -1399,17 +1398,16 @@ CONFIG_NFS_FS=y | |||
| 1399 | CONFIG_NFS_V3=y | 1398 | CONFIG_NFS_V3=y |
| 1400 | # CONFIG_NFS_V3_ACL is not set | 1399 | # CONFIG_NFS_V3_ACL is not set |
| 1401 | CONFIG_NFS_V4=y | 1400 | CONFIG_NFS_V4=y |
| 1401 | CONFIG_ROOT_NFS=y | ||
| 1402 | CONFIG_NFSD=y | 1402 | CONFIG_NFSD=y |
| 1403 | # CONFIG_NFSD_V3 is not set | 1403 | # CONFIG_NFSD_V3 is not set |
| 1404 | # CONFIG_NFSD_V4 is not set | 1404 | # CONFIG_NFSD_V4 is not set |
| 1405 | CONFIG_ROOT_NFS=y | ||
| 1406 | CONFIG_LOCKD=y | 1405 | CONFIG_LOCKD=y |
| 1407 | CONFIG_LOCKD_V4=y | 1406 | CONFIG_LOCKD_V4=y |
| 1408 | CONFIG_EXPORTFS=y | 1407 | CONFIG_EXPORTFS=y |
| 1409 | CONFIG_NFS_COMMON=y | 1408 | CONFIG_NFS_COMMON=y |
| 1410 | CONFIG_SUNRPC=y | 1409 | CONFIG_SUNRPC=y |
| 1411 | CONFIG_SUNRPC_GSS=y | 1410 | CONFIG_SUNRPC_GSS=y |
| 1412 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1413 | CONFIG_RPCSEC_GSS_KRB5=y | 1411 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1414 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1412 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1415 | # CONFIG_SMB_FS is not set | 1413 | # CONFIG_SMB_FS is not set |
| @@ -1488,6 +1486,7 @@ CONFIG_BITREVERSE=y | |||
| 1488 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1486 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1489 | # CONFIG_CRC_CCITT is not set | 1487 | # CONFIG_CRC_CCITT is not set |
| 1490 | # CONFIG_CRC16 is not set | 1488 | # CONFIG_CRC16 is not set |
| 1489 | CONFIG_CRC_T10DIF=y | ||
| 1491 | CONFIG_CRC_ITU_T=m | 1490 | CONFIG_CRC_ITU_T=m |
| 1492 | CONFIG_CRC32=y | 1491 | CONFIG_CRC32=y |
| 1493 | # CONFIG_CRC7 is not set | 1492 | # CONFIG_CRC7 is not set |
| @@ -1513,6 +1512,8 @@ CONFIG_DEBUG_FS=y | |||
| 1513 | CONFIG_DEBUG_KERNEL=y | 1512 | CONFIG_DEBUG_KERNEL=y |
| 1514 | # CONFIG_DEBUG_SHIRQ is not set | 1513 | # CONFIG_DEBUG_SHIRQ is not set |
| 1515 | CONFIG_DETECT_SOFTLOCKUP=y | 1514 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1515 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1516 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1516 | CONFIG_SCHED_DEBUG=y | 1517 | CONFIG_SCHED_DEBUG=y |
| 1517 | # CONFIG_SCHEDSTATS is not set | 1518 | # CONFIG_SCHEDSTATS is not set |
| 1518 | # CONFIG_TIMER_STATS is not set | 1519 | # CONFIG_TIMER_STATS is not set |
| @@ -1531,19 +1532,29 @@ CONFIG_SCHED_DEBUG=y | |||
| 1531 | CONFIG_DEBUG_INFO=y | 1532 | CONFIG_DEBUG_INFO=y |
| 1532 | # CONFIG_DEBUG_VM is not set | 1533 | # CONFIG_DEBUG_VM is not set |
| 1533 | # CONFIG_DEBUG_WRITECOUNT is not set | 1534 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1535 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1534 | # CONFIG_DEBUG_LIST is not set | 1536 | # CONFIG_DEBUG_LIST is not set |
| 1535 | # CONFIG_DEBUG_SG is not set | 1537 | # CONFIG_DEBUG_SG is not set |
| 1536 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1538 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1537 | # CONFIG_RCU_TORTURE_TEST is not set | 1539 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1538 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1540 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1539 | # CONFIG_FAULT_INJECTION is not set | 1541 | # CONFIG_FAULT_INJECTION is not set |
| 1542 | # CONFIG_LATENCYTOP is not set | ||
| 1543 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1544 | CONFIG_HAVE_FTRACE=y | ||
| 1545 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1546 | # CONFIG_FTRACE is not set | ||
| 1547 | # CONFIG_SCHED_TRACER is not set | ||
| 1548 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1540 | # CONFIG_SAMPLES is not set | 1549 | # CONFIG_SAMPLES is not set |
| 1550 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1551 | # CONFIG_KGDB is not set | ||
| 1541 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1552 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1542 | # CONFIG_DEBUG_STACK_USAGE is not set | 1553 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1543 | # CONFIG_DEBUG_PAGEALLOC is not set | 1554 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1544 | # CONFIG_DEBUGGER is not set | ||
| 1545 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1555 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1546 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1556 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1557 | # CONFIG_XMON is not set | ||
| 1547 | # CONFIG_IRQSTACKS is not set | 1558 | # CONFIG_IRQSTACKS is not set |
| 1548 | # CONFIG_VIRQ_DEBUG is not set | 1559 | # CONFIG_VIRQ_DEBUG is not set |
| 1549 | # CONFIG_BDI_SWITCH is not set | 1560 | # CONFIG_BDI_SWITCH is not set |
| @@ -1561,13 +1572,14 @@ CONFIG_CRYPTO=y | |||
| 1561 | # Crypto core or helper | 1572 | # Crypto core or helper |
| 1562 | # | 1573 | # |
| 1563 | CONFIG_CRYPTO_ALGAPI=y | 1574 | CONFIG_CRYPTO_ALGAPI=y |
| 1575 | CONFIG_CRYPTO_AEAD=y | ||
| 1564 | CONFIG_CRYPTO_BLKCIPHER=y | 1576 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1565 | CONFIG_CRYPTO_HASH=y | 1577 | CONFIG_CRYPTO_HASH=y |
| 1566 | CONFIG_CRYPTO_MANAGER=y | 1578 | CONFIG_CRYPTO_MANAGER=y |
| 1567 | # CONFIG_CRYPTO_GF128MUL is not set | 1579 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1568 | # CONFIG_CRYPTO_NULL is not set | 1580 | # CONFIG_CRYPTO_NULL is not set |
| 1569 | # CONFIG_CRYPTO_CRYPTD is not set | 1581 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1570 | # CONFIG_CRYPTO_AUTHENC is not set | 1582 | CONFIG_CRYPTO_AUTHENC=y |
| 1571 | # CONFIG_CRYPTO_TEST is not set | 1583 | # CONFIG_CRYPTO_TEST is not set |
| 1572 | 1584 | ||
| 1573 | # | 1585 | # |
| @@ -1601,6 +1613,10 @@ CONFIG_CRYPTO_HMAC=y | |||
| 1601 | # CONFIG_CRYPTO_MD4 is not set | 1613 | # CONFIG_CRYPTO_MD4 is not set |
| 1602 | CONFIG_CRYPTO_MD5=y | 1614 | CONFIG_CRYPTO_MD5=y |
| 1603 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1615 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1616 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1617 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1618 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1619 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1604 | CONFIG_CRYPTO_SHA1=m | 1620 | CONFIG_CRYPTO_SHA1=m |
| 1605 | # CONFIG_CRYPTO_SHA256 is not set | 1621 | # CONFIG_CRYPTO_SHA256 is not set |
| 1606 | # CONFIG_CRYPTO_SHA512 is not set | 1622 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1633,5 +1649,6 @@ CONFIG_CRYPTO_DES=y | |||
| 1633 | # CONFIG_CRYPTO_LZO is not set | 1649 | # CONFIG_CRYPTO_LZO is not set |
| 1634 | CONFIG_CRYPTO_HW=y | 1650 | CONFIG_CRYPTO_HW=y |
| 1635 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1651 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1652 | CONFIG_CRYPTO_DEV_TALITOS=y | ||
| 1636 | # CONFIG_PPC_CLOCK is not set | 1653 | # CONFIG_PPC_CLOCK is not set |
| 1637 | # CONFIG_VIRTUALIZATION is not set | 1654 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8540_ads_defconfig b/arch/powerpc/configs/85xx/mpc8540_ads_defconfig index f33fd516fd54..1ea181f826f1 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:31 2008 | 4 | # Thu Aug 21 00:52:30 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -89,7 +91,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 91 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 92 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 93 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | CONFIG_KALLSYMS=y | 94 | CONFIG_KALLSYMS=y |
| 94 | # CONFIG_KALLSYMS_ALL is not set | 95 | # CONFIG_KALLSYMS_ALL is not set |
| 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 96 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -114,10 +115,16 @@ CONFIG_SLUB=y | |||
| 114 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
| 115 | # CONFIG_MARKERS is not set | 116 | # CONFIG_MARKERS is not set |
| 116 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
| 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 119 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 117 | CONFIG_HAVE_KPROBES=y | 120 | CONFIG_HAVE_KPROBES=y |
| 118 | CONFIG_HAVE_KRETPROBES=y | 121 | CONFIG_HAVE_KRETPROBES=y |
| 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 119 | # CONFIG_HAVE_DMA_ATTRS is not set | 123 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 124 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 125 | # CONFIG_HAVE_CLK is not set | ||
| 120 | CONFIG_PROC_PAGE_MONITOR=y | 126 | CONFIG_PROC_PAGE_MONITOR=y |
| 127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 121 | CONFIG_SLABINFO=y | 128 | CONFIG_SLABINFO=y |
| 122 | CONFIG_RT_MUTEXES=y | 129 | CONFIG_RT_MUTEXES=y |
| 123 | # CONFIG_TINY_SHMEM is not set | 130 | # CONFIG_TINY_SHMEM is not set |
| @@ -128,6 +135,7 @@ CONFIG_BLOCK=y | |||
| 128 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 129 | # CONFIG_LSF is not set | 136 | # CONFIG_LSF is not set |
| 130 | # CONFIG_BLK_DEV_BSG is not set | 137 | # CONFIG_BLK_DEV_BSG is not set |
| 138 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 131 | 139 | ||
| 132 | # | 140 | # |
| 133 | # IO Schedulers | 141 | # IO Schedulers |
| @@ -146,8 +154,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 146 | # | 154 | # |
| 147 | # Platform support | 155 | # Platform support |
| 148 | # | 156 | # |
| 149 | # CONFIG_PPC_MPC512x is not set | ||
| 150 | # CONFIG_PPC_MPC5121 is not set | ||
| 151 | # CONFIG_PPC_CELL is not set | 157 | # CONFIG_PPC_CELL is not set |
| 152 | # CONFIG_PPC_CELL_NATIVE is not set | 158 | # CONFIG_PPC_CELL_NATIVE is not set |
| 153 | # CONFIG_PQ2ADS is not set | 159 | # CONFIG_PQ2ADS is not set |
| @@ -156,11 +162,13 @@ CONFIG_MPC8540_ADS=y | |||
| 156 | # CONFIG_MPC8560_ADS is not set | 162 | # CONFIG_MPC8560_ADS is not set |
| 157 | # CONFIG_MPC85xx_CDS is not set | 163 | # CONFIG_MPC85xx_CDS is not set |
| 158 | # CONFIG_MPC85xx_MDS is not set | 164 | # CONFIG_MPC85xx_MDS is not set |
| 165 | # CONFIG_MPC8536_DS is not set | ||
| 159 | # CONFIG_MPC85xx_DS is not set | 166 | # CONFIG_MPC85xx_DS is not set |
| 160 | # CONFIG_KSI8560 is not set | 167 | # CONFIG_KSI8560 is not set |
| 161 | # CONFIG_STX_GP3 is not set | 168 | # CONFIG_STX_GP3 is not set |
| 162 | # CONFIG_TQM8540 is not set | 169 | # CONFIG_TQM8540 is not set |
| 163 | # CONFIG_TQM8541 is not set | 170 | # CONFIG_TQM8541 is not set |
| 171 | # CONFIG_TQM8548 is not set | ||
| 164 | # CONFIG_TQM8555 is not set | 172 | # CONFIG_TQM8555 is not set |
| 165 | # CONFIG_TQM8560 is not set | 173 | # CONFIG_TQM8560 is not set |
| 166 | # CONFIG_SBC8548 is not set | 174 | # CONFIG_SBC8548 is not set |
| @@ -192,7 +200,7 @@ CONFIG_HZ_250=y | |||
| 192 | # CONFIG_HZ_300 is not set | 200 | # CONFIG_HZ_300 is not set |
| 193 | # CONFIG_HZ_1000 is not set | 201 | # CONFIG_HZ_1000 is not set |
| 194 | CONFIG_HZ=250 | 202 | CONFIG_HZ=250 |
| 195 | # CONFIG_SCHED_HRTICK is not set | 203 | CONFIG_SCHED_HRTICK=y |
| 196 | CONFIG_PREEMPT_NONE=y | 204 | CONFIG_PREEMPT_NONE=y |
| 197 | # CONFIG_PREEMPT_VOLUNTARY is not set | 205 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 198 | # CONFIG_PREEMPT is not set | 206 | # CONFIG_PREEMPT is not set |
| @@ -215,6 +223,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 215 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 223 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 216 | CONFIG_PAGEFLAGS_EXTENDED=y | 224 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 217 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 225 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 226 | CONFIG_MIGRATION=y | ||
| 218 | # CONFIG_RESOURCES_64BIT is not set | 227 | # CONFIG_RESOURCES_64BIT is not set |
| 219 | CONFIG_ZONE_DMA_FLAG=1 | 228 | CONFIG_ZONE_DMA_FLAG=1 |
| 220 | CONFIG_BOUNCE=y | 229 | CONFIG_BOUNCE=y |
| @@ -222,6 +231,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 222 | CONFIG_FORCE_MAX_ZONEORDER=11 | 231 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 223 | CONFIG_PROC_DEVICETREE=y | 232 | CONFIG_PROC_DEVICETREE=y |
| 224 | # CONFIG_CMDLINE_BOOL is not set | 233 | # CONFIG_CMDLINE_BOOL is not set |
| 234 | CONFIG_EXTRA_TARGETS="" | ||
| 225 | # CONFIG_PM is not set | 235 | # CONFIG_PM is not set |
| 226 | # CONFIG_SECCOMP is not set | 236 | # CONFIG_SECCOMP is not set |
| 227 | CONFIG_ISA_DMA_API=y | 237 | CONFIG_ISA_DMA_API=y |
| @@ -231,6 +241,7 @@ CONFIG_ISA_DMA_API=y | |||
| 231 | # | 241 | # |
| 232 | CONFIG_ZONE_DMA=y | 242 | CONFIG_ZONE_DMA=y |
| 233 | CONFIG_FSL_SOC=y | 243 | CONFIG_FSL_SOC=y |
| 244 | CONFIG_PPC_PCI_CHOICE=y | ||
| 234 | # CONFIG_PCI is not set | 245 | # CONFIG_PCI is not set |
| 235 | # CONFIG_PCI_DOMAINS is not set | 246 | # CONFIG_PCI_DOMAINS is not set |
| 236 | # CONFIG_PCI_SYSCALL is not set | 247 | # CONFIG_PCI_SYSCALL is not set |
| @@ -252,10 +263,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 252 | CONFIG_PHYSICAL_START=0x00000000 | 263 | CONFIG_PHYSICAL_START=0x00000000 |
| 253 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 264 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 254 | CONFIG_TASK_SIZE=0xc0000000 | 265 | CONFIG_TASK_SIZE=0xc0000000 |
| 255 | |||
| 256 | # | ||
| 257 | # Networking | ||
| 258 | # | ||
| 259 | CONFIG_NET=y | 266 | CONFIG_NET=y |
| 260 | 267 | ||
| 261 | # | 268 | # |
| @@ -367,6 +374,7 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 367 | # CONFIG_BLK_DEV_XIP is not set | 374 | # CONFIG_BLK_DEV_XIP is not set |
| 368 | # CONFIG_CDROM_PKTCDVD is not set | 375 | # CONFIG_CDROM_PKTCDVD is not set |
| 369 | # CONFIG_ATA_OVER_ETH is not set | 376 | # CONFIG_ATA_OVER_ETH is not set |
| 377 | # CONFIG_BLK_DEV_HD is not set | ||
| 370 | CONFIG_MISC_DEVICES=y | 378 | CONFIG_MISC_DEVICES=y |
| 371 | # CONFIG_EEPROM_93CX6 is not set | 379 | # CONFIG_EEPROM_93CX6 is not set |
| 372 | # CONFIG_ENCLOSURE_SERVICES is not set | 380 | # CONFIG_ENCLOSURE_SERVICES is not set |
| @@ -384,7 +392,6 @@ CONFIG_HAVE_IDE=y | |||
| 384 | # CONFIG_MD is not set | 392 | # CONFIG_MD is not set |
| 385 | # CONFIG_MACINTOSH_DRIVERS is not set | 393 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 386 | CONFIG_NETDEVICES=y | 394 | CONFIG_NETDEVICES=y |
| 387 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 388 | # CONFIG_DUMMY is not set | 395 | # CONFIG_DUMMY is not set |
| 389 | # CONFIG_BONDING is not set | 396 | # CONFIG_BONDING is not set |
| 390 | # CONFIG_MACVLAN is not set | 397 | # CONFIG_MACVLAN is not set |
| @@ -416,9 +423,7 @@ CONFIG_MII=y | |||
| 416 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 423 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 417 | # CONFIG_B44 is not set | 424 | # CONFIG_B44 is not set |
| 418 | CONFIG_NETDEV_1000=y | 425 | CONFIG_NETDEV_1000=y |
| 419 | # CONFIG_E1000E_ENABLED is not set | ||
| 420 | CONFIG_GIANFAR=y | 426 | CONFIG_GIANFAR=y |
| 421 | CONFIG_GFAR_NAPI=y | ||
| 422 | CONFIG_NETDEV_10000=y | 427 | CONFIG_NETDEV_10000=y |
| 423 | 428 | ||
| 424 | # | 429 | # |
| @@ -504,6 +509,8 @@ CONFIG_GEN_RTC=y | |||
| 504 | # CONFIG_TCG_TPM is not set | 509 | # CONFIG_TCG_TPM is not set |
| 505 | # CONFIG_I2C is not set | 510 | # CONFIG_I2C is not set |
| 506 | # CONFIG_SPI is not set | 511 | # CONFIG_SPI is not set |
| 512 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 513 | # CONFIG_GPIOLIB is not set | ||
| 507 | # CONFIG_W1 is not set | 514 | # CONFIG_W1 is not set |
| 508 | # CONFIG_POWER_SUPPLY is not set | 515 | # CONFIG_POWER_SUPPLY is not set |
| 509 | CONFIG_HWMON=y | 516 | CONFIG_HWMON=y |
| @@ -520,6 +527,7 @@ CONFIG_HWMON=y | |||
| 520 | # CONFIG_SENSORS_W83627EHF is not set | 527 | # CONFIG_SENSORS_W83627EHF is not set |
| 521 | # CONFIG_HWMON_DEBUG_CHIP is not set | 528 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 522 | # CONFIG_THERMAL is not set | 529 | # CONFIG_THERMAL is not set |
| 530 | # CONFIG_THERMAL_HWMON is not set | ||
| 523 | # CONFIG_WATCHDOG is not set | 531 | # CONFIG_WATCHDOG is not set |
| 524 | 532 | ||
| 525 | # | 533 | # |
| @@ -531,8 +539,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 531 | # | 539 | # |
| 532 | # Multifunction device drivers | 540 | # Multifunction device drivers |
| 533 | # | 541 | # |
| 542 | # CONFIG_MFD_CORE is not set | ||
| 534 | # CONFIG_MFD_SM501 is not set | 543 | # CONFIG_MFD_SM501 is not set |
| 535 | # CONFIG_HTC_PASIC3 is not set | 544 | # CONFIG_HTC_PASIC3 is not set |
| 545 | # CONFIG_MFD_TMIO is not set | ||
| 536 | 546 | ||
| 537 | # | 547 | # |
| 538 | # Multimedia devices | 548 | # Multimedia devices |
| @@ -562,10 +572,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 562 | # Display device support | 572 | # Display device support |
| 563 | # | 573 | # |
| 564 | # CONFIG_DISPLAY_SUPPORT is not set | 574 | # CONFIG_DISPLAY_SUPPORT is not set |
| 565 | |||
| 566 | # | ||
| 567 | # Sound | ||
| 568 | # | ||
| 569 | # CONFIG_SOUND is not set | 575 | # CONFIG_SOUND is not set |
| 570 | CONFIG_HID_SUPPORT=y | 576 | CONFIG_HID_SUPPORT=y |
| 571 | CONFIG_HID=y | 577 | CONFIG_HID=y |
| @@ -579,6 +585,10 @@ CONFIG_USB_SUPPORT=y | |||
| 579 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 585 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 580 | 586 | ||
| 581 | # | 587 | # |
| 588 | # Enable Host or Gadget support to see Inventra options | ||
| 589 | # | ||
| 590 | |||
| 591 | # | ||
| 582 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 592 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 583 | # | 593 | # |
| 584 | # CONFIG_USB_GADGET is not set | 594 | # CONFIG_USB_GADGET is not set |
| @@ -655,6 +665,7 @@ CONFIG_TMPFS=y | |||
| 655 | # CONFIG_CRAMFS is not set | 665 | # CONFIG_CRAMFS is not set |
| 656 | # CONFIG_VXFS_FS is not set | 666 | # CONFIG_VXFS_FS is not set |
| 657 | # CONFIG_MINIX_FS is not set | 667 | # CONFIG_MINIX_FS is not set |
| 668 | # CONFIG_OMFS_FS is not set | ||
| 658 | # CONFIG_HPFS_FS is not set | 669 | # CONFIG_HPFS_FS is not set |
| 659 | # CONFIG_QNX4FS_FS is not set | 670 | # CONFIG_QNX4FS_FS is not set |
| 660 | # CONFIG_ROMFS_FS is not set | 671 | # CONFIG_ROMFS_FS is not set |
| @@ -664,12 +675,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 664 | CONFIG_NFS_FS=y | 675 | CONFIG_NFS_FS=y |
| 665 | # CONFIG_NFS_V3 is not set | 676 | # CONFIG_NFS_V3 is not set |
| 666 | # CONFIG_NFS_V4 is not set | 677 | # CONFIG_NFS_V4 is not set |
| 667 | # CONFIG_NFSD is not set | ||
| 668 | CONFIG_ROOT_NFS=y | 678 | CONFIG_ROOT_NFS=y |
| 679 | # CONFIG_NFSD is not set | ||
| 669 | CONFIG_LOCKD=y | 680 | CONFIG_LOCKD=y |
| 670 | CONFIG_NFS_COMMON=y | 681 | CONFIG_NFS_COMMON=y |
| 671 | CONFIG_SUNRPC=y | 682 | CONFIG_SUNRPC=y |
| 672 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 673 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 683 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 674 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 684 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 675 | # CONFIG_SMB_FS is not set | 685 | # CONFIG_SMB_FS is not set |
| @@ -705,6 +715,7 @@ CONFIG_BITREVERSE=y | |||
| 705 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 715 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 706 | # CONFIG_CRC_CCITT is not set | 716 | # CONFIG_CRC_CCITT is not set |
| 707 | # CONFIG_CRC16 is not set | 717 | # CONFIG_CRC16 is not set |
| 718 | # CONFIG_CRC_T10DIF is not set | ||
| 708 | # CONFIG_CRC_ITU_T is not set | 719 | # CONFIG_CRC_ITU_T is not set |
| 709 | CONFIG_CRC32=y | 720 | CONFIG_CRC32=y |
| 710 | # CONFIG_CRC7 is not set | 721 | # CONFIG_CRC7 is not set |
| @@ -729,6 +740,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 729 | CONFIG_DEBUG_KERNEL=y | 740 | CONFIG_DEBUG_KERNEL=y |
| 730 | # CONFIG_DEBUG_SHIRQ is not set | 741 | # CONFIG_DEBUG_SHIRQ is not set |
| 731 | CONFIG_DETECT_SOFTLOCKUP=y | 742 | CONFIG_DETECT_SOFTLOCKUP=y |
| 743 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 744 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 732 | CONFIG_SCHED_DEBUG=y | 745 | CONFIG_SCHED_DEBUG=y |
| 733 | # CONFIG_SCHEDSTATS is not set | 746 | # CONFIG_SCHEDSTATS is not set |
| 734 | # CONFIG_TIMER_STATS is not set | 747 | # CONFIG_TIMER_STATS is not set |
| @@ -746,16 +759,29 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 746 | # CONFIG_DEBUG_INFO is not set | 759 | # CONFIG_DEBUG_INFO is not set |
| 747 | # CONFIG_DEBUG_VM is not set | 760 | # CONFIG_DEBUG_VM is not set |
| 748 | # CONFIG_DEBUG_WRITECOUNT is not set | 761 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 762 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 749 | # CONFIG_DEBUG_LIST is not set | 763 | # CONFIG_DEBUG_LIST is not set |
| 750 | # CONFIG_DEBUG_SG is not set | 764 | # CONFIG_DEBUG_SG is not set |
| 751 | # CONFIG_BOOT_PRINTK_DELAY is not set | 765 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 766 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 752 | # CONFIG_BACKTRACE_SELF_TEST is not set | 767 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 753 | # CONFIG_FAULT_INJECTION is not set | 768 | # CONFIG_FAULT_INJECTION is not set |
| 769 | # CONFIG_LATENCYTOP is not set | ||
| 770 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 771 | CONFIG_HAVE_FTRACE=y | ||
| 772 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 773 | # CONFIG_FTRACE is not set | ||
| 774 | # CONFIG_SCHED_TRACER is not set | ||
| 775 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 754 | # CONFIG_SAMPLES is not set | 776 | # CONFIG_SAMPLES is not set |
| 777 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 778 | # CONFIG_KGDB is not set | ||
| 755 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 779 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 756 | # CONFIG_DEBUG_STACK_USAGE is not set | 780 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 757 | # CONFIG_DEBUG_PAGEALLOC is not set | 781 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 758 | # CONFIG_DEBUGGER is not set | 782 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 783 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 784 | # CONFIG_XMON is not set | ||
| 759 | # CONFIG_IRQSTACKS is not set | 785 | # CONFIG_IRQSTACKS is not set |
| 760 | # CONFIG_BDI_SWITCH is not set | 786 | # CONFIG_BDI_SWITCH is not set |
| 761 | # CONFIG_PPC_EARLY_DEBUG is not set | 787 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -808,6 +834,10 @@ CONFIG_CRYPTO=y | |||
| 808 | # CONFIG_CRYPTO_MD4 is not set | 834 | # CONFIG_CRYPTO_MD4 is not set |
| 809 | # CONFIG_CRYPTO_MD5 is not set | 835 | # CONFIG_CRYPTO_MD5 is not set |
| 810 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 836 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 837 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 838 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 839 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 840 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 811 | # CONFIG_CRYPTO_SHA1 is not set | 841 | # CONFIG_CRYPTO_SHA1 is not set |
| 812 | # CONFIG_CRYPTO_SHA256 is not set | 842 | # CONFIG_CRYPTO_SHA256 is not set |
| 813 | # CONFIG_CRYPTO_SHA512 is not set | 843 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -839,5 +869,6 @@ CONFIG_CRYPTO=y | |||
| 839 | # CONFIG_CRYPTO_DEFLATE is not set | 869 | # CONFIG_CRYPTO_DEFLATE is not set |
| 840 | # CONFIG_CRYPTO_LZO is not set | 870 | # CONFIG_CRYPTO_LZO is not set |
| 841 | CONFIG_CRYPTO_HW=y | 871 | CONFIG_CRYPTO_HW=y |
| 872 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 842 | # CONFIG_PPC_CLOCK is not set | 873 | # CONFIG_PPC_CLOCK is not set |
| 843 | # CONFIG_VIRTUALIZATION is not set | 874 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8544_ds_defconfig b/arch/powerpc/configs/85xx/mpc8544_ds_defconfig index a0583e5119f5..1aecdeab9841 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:32 2008 | 4 | # Thu Aug 21 07:20:43 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -92,7 +94,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 92 | CONFIG_SYSCTL=y | 94 | CONFIG_SYSCTL=y |
| 93 | CONFIG_EMBEDDED=y | 95 | CONFIG_EMBEDDED=y |
| 94 | CONFIG_SYSCTL_SYSCALL=y | 96 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 96 | CONFIG_KALLSYMS=y | 97 | CONFIG_KALLSYMS=y |
| 97 | CONFIG_KALLSYMS_ALL=y | 98 | CONFIG_KALLSYMS_ALL=y |
| 98 | CONFIG_KALLSYMS_EXTRA_PASS=y | 99 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -118,10 +119,16 @@ CONFIG_SLUB=y | |||
| 118 | # CONFIG_MARKERS is not set | 119 | # 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 |
| 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 123 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 121 | CONFIG_HAVE_KPROBES=y | 124 | CONFIG_HAVE_KPROBES=y |
| 122 | CONFIG_HAVE_KRETPROBES=y | 125 | CONFIG_HAVE_KRETPROBES=y |
| 126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 123 | # CONFIG_HAVE_DMA_ATTRS is not set | 127 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 128 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 129 | # CONFIG_HAVE_CLK is not set | ||
| 124 | CONFIG_PROC_PAGE_MONITOR=y | 130 | CONFIG_PROC_PAGE_MONITOR=y |
| 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 125 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
| 126 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
| 127 | # CONFIG_TINY_SHMEM is not set | 134 | # CONFIG_TINY_SHMEM is not set |
| @@ -138,6 +145,7 @@ CONFIG_LBD=y | |||
| 138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 145 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 139 | # CONFIG_LSF is not set | 146 | # CONFIG_LSF is not set |
| 140 | # CONFIG_BLK_DEV_BSG is not set | 147 | # CONFIG_BLK_DEV_BSG is not set |
| 148 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 141 | 149 | ||
| 142 | # | 150 | # |
| 143 | # IO Schedulers | 151 | # IO Schedulers |
| @@ -156,8 +164,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 156 | # | 164 | # |
| 157 | # Platform support | 165 | # Platform support |
| 158 | # | 166 | # |
| 159 | # CONFIG_PPC_MPC512x is not set | ||
| 160 | # CONFIG_PPC_MPC5121 is not set | ||
| 161 | # CONFIG_PPC_CELL is not set | 167 | # CONFIG_PPC_CELL is not set |
| 162 | # CONFIG_PPC_CELL_NATIVE is not set | 168 | # CONFIG_PPC_CELL_NATIVE is not set |
| 163 | # CONFIG_PQ2ADS is not set | 169 | # CONFIG_PQ2ADS is not set |
| @@ -166,11 +172,13 @@ CONFIG_MPC85xx=y | |||
| 166 | # CONFIG_MPC8560_ADS is not set | 172 | # CONFIG_MPC8560_ADS is not set |
| 167 | # CONFIG_MPC85xx_CDS is not set | 173 | # CONFIG_MPC85xx_CDS is not set |
| 168 | # CONFIG_MPC85xx_MDS is not set | 174 | # CONFIG_MPC85xx_MDS is not set |
| 175 | # CONFIG_MPC8536_DS is not set | ||
| 169 | CONFIG_MPC85xx_DS=y | 176 | CONFIG_MPC85xx_DS=y |
| 170 | # CONFIG_KSI8560 is not set | 177 | # CONFIG_KSI8560 is not set |
| 171 | # CONFIG_STX_GP3 is not set | 178 | # CONFIG_STX_GP3 is not set |
| 172 | # CONFIG_TQM8540 is not set | 179 | # CONFIG_TQM8540 is not set |
| 173 | # CONFIG_TQM8541 is not set | 180 | # CONFIG_TQM8541 is not set |
| 181 | # CONFIG_TQM8548 is not set | ||
| 174 | # CONFIG_TQM8555 is not set | 182 | # CONFIG_TQM8555 is not set |
| 175 | # CONFIG_TQM8560 is not set | 183 | # CONFIG_TQM8560 is not set |
| 176 | # CONFIG_SBC8548 is not set | 184 | # CONFIG_SBC8548 is not set |
| @@ -202,7 +210,7 @@ CONFIG_HZ_250=y | |||
| 202 | # CONFIG_HZ_300 is not set | 210 | # CONFIG_HZ_300 is not set |
| 203 | # CONFIG_HZ_1000 is not set | 211 | # CONFIG_HZ_1000 is not set |
| 204 | CONFIG_HZ=250 | 212 | CONFIG_HZ=250 |
| 205 | # CONFIG_SCHED_HRTICK is not set | 213 | CONFIG_SCHED_HRTICK=y |
| 206 | CONFIG_PREEMPT_NONE=y | 214 | CONFIG_PREEMPT_NONE=y |
| 207 | # CONFIG_PREEMPT_VOLUNTARY is not set | 215 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 208 | # CONFIG_PREEMPT is not set | 216 | # CONFIG_PREEMPT is not set |
| @@ -225,6 +233,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 225 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 233 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 226 | CONFIG_PAGEFLAGS_EXTENDED=y | 234 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 235 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 236 | CONFIG_MIGRATION=y | ||
| 228 | # CONFIG_RESOURCES_64BIT is not set | 237 | # CONFIG_RESOURCES_64BIT is not set |
| 229 | CONFIG_ZONE_DMA_FLAG=1 | 238 | CONFIG_ZONE_DMA_FLAG=1 |
| 230 | CONFIG_BOUNCE=y | 239 | CONFIG_BOUNCE=y |
| @@ -232,6 +241,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 232 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 233 | CONFIG_PROC_DEVICETREE=y | 242 | CONFIG_PROC_DEVICETREE=y |
| 234 | # CONFIG_CMDLINE_BOOL is not set | 243 | # CONFIG_CMDLINE_BOOL is not set |
| 244 | CONFIG_EXTRA_TARGETS="" | ||
| 235 | # CONFIG_PM is not set | 245 | # CONFIG_PM is not set |
| 236 | CONFIG_SECCOMP=y | 246 | CONFIG_SECCOMP=y |
| 237 | CONFIG_ISA_DMA_API=y | 247 | CONFIG_ISA_DMA_API=y |
| @@ -244,6 +254,7 @@ CONFIG_GENERIC_ISA_DMA=y | |||
| 244 | CONFIG_PPC_INDIRECT_PCI=y | 254 | CONFIG_PPC_INDIRECT_PCI=y |
| 245 | CONFIG_FSL_SOC=y | 255 | CONFIG_FSL_SOC=y |
| 246 | CONFIG_FSL_PCI=y | 256 | CONFIG_FSL_PCI=y |
| 257 | CONFIG_PPC_PCI_CHOICE=y | ||
| 247 | CONFIG_PCI=y | 258 | CONFIG_PCI=y |
| 248 | CONFIG_PCI_DOMAINS=y | 259 | CONFIG_PCI_DOMAINS=y |
| 249 | CONFIG_PCI_SYSCALL=y | 260 | CONFIG_PCI_SYSCALL=y |
| @@ -270,10 +281,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 270 | CONFIG_PHYSICAL_START=0x00000000 | 281 | CONFIG_PHYSICAL_START=0x00000000 |
| 271 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 282 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 272 | CONFIG_TASK_SIZE=0xc0000000 | 283 | CONFIG_TASK_SIZE=0xc0000000 |
| 273 | |||
| 274 | # | ||
| 275 | # Networking | ||
| 276 | # | ||
| 277 | CONFIG_NET=y | 284 | CONFIG_NET=y |
| 278 | 285 | ||
| 279 | # | 286 | # |
| @@ -399,6 +406,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 399 | CONFIG_STANDALONE=y | 406 | CONFIG_STANDALONE=y |
| 400 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 407 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 401 | CONFIG_FW_LOADER=y | 408 | CONFIG_FW_LOADER=y |
| 409 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 410 | CONFIG_EXTRA_FIRMWARE="" | ||
| 402 | # CONFIG_DEBUG_DRIVER is not set | 411 | # CONFIG_DEBUG_DRIVER is not set |
| 403 | # CONFIG_DEBUG_DEVRES is not set | 412 | # CONFIG_DEBUG_DEVRES is not set |
| 404 | # CONFIG_SYS_HYPERVISOR is not set | 413 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -425,12 +434,14 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 425 | # CONFIG_BLK_DEV_XIP is not set | 434 | # CONFIG_BLK_DEV_XIP is not set |
| 426 | # CONFIG_CDROM_PKTCDVD is not set | 435 | # CONFIG_CDROM_PKTCDVD is not set |
| 427 | # CONFIG_ATA_OVER_ETH is not set | 436 | # CONFIG_ATA_OVER_ETH is not set |
| 437 | # CONFIG_BLK_DEV_HD is not set | ||
| 428 | CONFIG_MISC_DEVICES=y | 438 | CONFIG_MISC_DEVICES=y |
| 429 | # CONFIG_PHANTOM is not set | 439 | # CONFIG_PHANTOM is not set |
| 430 | # CONFIG_EEPROM_93CX6 is not set | 440 | # CONFIG_EEPROM_93CX6 is not set |
| 431 | # CONFIG_SGI_IOC4 is not set | 441 | # CONFIG_SGI_IOC4 is not set |
| 432 | # CONFIG_TIFM_CORE is not set | 442 | # CONFIG_TIFM_CORE is not set |
| 433 | # CONFIG_ENCLOSURE_SERVICES is not set | 443 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 444 | # CONFIG_HP_ILO is not set | ||
| 434 | CONFIG_HAVE_IDE=y | 445 | CONFIG_HAVE_IDE=y |
| 435 | # CONFIG_IDE is not set | 446 | # CONFIG_IDE is not set |
| 436 | 447 | ||
| @@ -510,6 +521,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 510 | # CONFIG_SCSI_NSP32 is not set | 521 | # CONFIG_SCSI_NSP32 is not set |
| 511 | # CONFIG_SCSI_DEBUG is not set | 522 | # CONFIG_SCSI_DEBUG is not set |
| 512 | # CONFIG_SCSI_SRP is not set | 523 | # CONFIG_SCSI_SRP is not set |
| 524 | # CONFIG_SCSI_DH is not set | ||
| 513 | CONFIG_ATA=y | 525 | CONFIG_ATA=y |
| 514 | # CONFIG_ATA_NONSTANDARD is not set | 526 | # CONFIG_ATA_NONSTANDARD is not set |
| 515 | CONFIG_SATA_PMP=y | 527 | CONFIG_SATA_PMP=y |
| @@ -577,12 +589,15 @@ CONFIG_PATA_ALI=y | |||
| 577 | # | 589 | # |
| 578 | # IEEE 1394 (FireWire) support | 590 | # IEEE 1394 (FireWire) support |
| 579 | # | 591 | # |
| 592 | |||
| 593 | # | ||
| 594 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 595 | # | ||
| 580 | # CONFIG_FIREWIRE is not set | 596 | # CONFIG_FIREWIRE is not set |
| 581 | # CONFIG_IEEE1394 is not set | 597 | # CONFIG_IEEE1394 is not set |
| 582 | # CONFIG_I2O is not set | 598 | # CONFIG_I2O is not set |
| 583 | # CONFIG_MACINTOSH_DRIVERS is not set | 599 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 584 | CONFIG_NETDEVICES=y | 600 | CONFIG_NETDEVICES=y |
| 585 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 586 | CONFIG_DUMMY=y | 601 | CONFIG_DUMMY=y |
| 587 | # CONFIG_BONDING is not set | 602 | # CONFIG_BONDING is not set |
| 588 | # CONFIG_MACVLAN is not set | 603 | # CONFIG_MACVLAN is not set |
| @@ -626,7 +641,6 @@ CONFIG_NETDEV_1000=y | |||
| 626 | # CONFIG_DL2K is not set | 641 | # CONFIG_DL2K is not set |
| 627 | # CONFIG_E1000 is not set | 642 | # CONFIG_E1000 is not set |
| 628 | # CONFIG_E1000E is not set | 643 | # CONFIG_E1000E is not set |
| 629 | # CONFIG_E1000E_ENABLED is not set | ||
| 630 | # CONFIG_IP1000 is not set | 644 | # CONFIG_IP1000 is not set |
| 631 | # CONFIG_IGB is not set | 645 | # CONFIG_IGB is not set |
| 632 | # CONFIG_NS83820 is not set | 646 | # CONFIG_NS83820 is not set |
| @@ -640,9 +654,9 @@ CONFIG_NETDEV_1000=y | |||
| 640 | # CONFIG_TIGON3 is not set | 654 | # CONFIG_TIGON3 is not set |
| 641 | # CONFIG_BNX2 is not set | 655 | # CONFIG_BNX2 is not set |
| 642 | CONFIG_GIANFAR=y | 656 | CONFIG_GIANFAR=y |
| 643 | CONFIG_GFAR_NAPI=y | ||
| 644 | # CONFIG_QLA3XXX is not set | 657 | # CONFIG_QLA3XXX is not set |
| 645 | # CONFIG_ATL1 is not set | 658 | # CONFIG_ATL1 is not set |
| 659 | # CONFIG_ATL1E is not set | ||
| 646 | CONFIG_NETDEV_10000=y | 660 | CONFIG_NETDEV_10000=y |
| 647 | # CONFIG_CHELSIO_T1 is not set | 661 | # CONFIG_CHELSIO_T1 is not set |
| 648 | # CONFIG_CHELSIO_T3 is not set | 662 | # CONFIG_CHELSIO_T3 is not set |
| @@ -719,12 +733,14 @@ CONFIG_SERIO_SERPORT=y | |||
| 719 | # CONFIG_SERIO_PCIPS2 is not set | 733 | # CONFIG_SERIO_PCIPS2 is not set |
| 720 | CONFIG_SERIO_LIBPS2=y | 734 | CONFIG_SERIO_LIBPS2=y |
| 721 | # CONFIG_SERIO_RAW is not set | 735 | # CONFIG_SERIO_RAW is not set |
| 736 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 722 | # CONFIG_GAMEPORT is not set | 737 | # CONFIG_GAMEPORT is not set |
| 723 | 738 | ||
| 724 | # | 739 | # |
| 725 | # Character devices | 740 | # Character devices |
| 726 | # | 741 | # |
| 727 | CONFIG_VT=y | 742 | CONFIG_VT=y |
| 743 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 728 | CONFIG_VT_CONSOLE=y | 744 | CONFIG_VT_CONSOLE=y |
| 729 | CONFIG_HW_CONSOLE=y | 745 | CONFIG_HW_CONSOLE=y |
| 730 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 746 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -758,7 +774,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 758 | CONFIG_LEGACY_PTYS=y | 774 | CONFIG_LEGACY_PTYS=y |
| 759 | CONFIG_LEGACY_PTY_COUNT=256 | 775 | CONFIG_LEGACY_PTY_COUNT=256 |
| 760 | # CONFIG_IPMI_HANDLER is not set | 776 | # CONFIG_IPMI_HANDLER is not set |
| 761 | # CONFIG_HW_RANDOM is not set | 777 | CONFIG_HW_RANDOM=y |
| 762 | CONFIG_NVRAM=y | 778 | CONFIG_NVRAM=y |
| 763 | # CONFIG_R3964 is not set | 779 | # CONFIG_R3964 is not set |
| 764 | # CONFIG_APPLICOM is not set | 780 | # CONFIG_APPLICOM is not set |
| @@ -768,43 +784,64 @@ CONFIG_DEVPORT=y | |||
| 768 | CONFIG_I2C=y | 784 | CONFIG_I2C=y |
| 769 | CONFIG_I2C_BOARDINFO=y | 785 | CONFIG_I2C_BOARDINFO=y |
| 770 | # CONFIG_I2C_CHARDEV is not set | 786 | # CONFIG_I2C_CHARDEV is not set |
| 787 | CONFIG_I2C_HELPER_AUTO=y | ||
| 771 | 788 | ||
| 772 | # | 789 | # |
| 773 | # I2C Hardware Bus support | 790 | # I2C Hardware Bus support |
| 774 | # | 791 | # |
| 792 | |||
| 793 | # | ||
| 794 | # PC SMBus host controller drivers | ||
| 795 | # | ||
| 775 | # CONFIG_I2C_ALI1535 is not set | 796 | # CONFIG_I2C_ALI1535 is not set |
| 776 | # CONFIG_I2C_ALI1563 is not set | 797 | # CONFIG_I2C_ALI1563 is not set |
| 777 | # CONFIG_I2C_ALI15X3 is not set | 798 | # CONFIG_I2C_ALI15X3 is not set |
| 778 | # CONFIG_I2C_AMD756 is not set | 799 | # CONFIG_I2C_AMD756 is not set |
| 779 | # CONFIG_I2C_AMD8111 is not set | 800 | # CONFIG_I2C_AMD8111 is not set |
| 780 | # CONFIG_I2C_I801 is not set | 801 | # CONFIG_I2C_I801 is not set |
| 781 | # CONFIG_I2C_I810 is not set | 802 | # CONFIG_I2C_ISCH is not set |
| 782 | # CONFIG_I2C_PIIX4 is not set | 803 | # CONFIG_I2C_PIIX4 is not set |
| 783 | CONFIG_I2C_MPC=y | ||
| 784 | # CONFIG_I2C_NFORCE2 is not set | 804 | # CONFIG_I2C_NFORCE2 is not set |
| 785 | # CONFIG_I2C_OCORES is not set | ||
| 786 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 787 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 788 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 789 | # CONFIG_I2C_SIMTEC is not set | ||
| 790 | # CONFIG_I2C_SIS5595 is not set | 805 | # CONFIG_I2C_SIS5595 is not set |
| 791 | # CONFIG_I2C_SIS630 is not set | 806 | # CONFIG_I2C_SIS630 is not set |
| 792 | # CONFIG_I2C_SIS96X is not set | 807 | # CONFIG_I2C_SIS96X is not set |
| 793 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 794 | # CONFIG_I2C_STUB is not set | ||
| 795 | # CONFIG_I2C_TINY_USB is not set | ||
| 796 | # CONFIG_I2C_VIA is not set | 808 | # CONFIG_I2C_VIA is not set |
| 797 | # CONFIG_I2C_VIAPRO is not set | 809 | # CONFIG_I2C_VIAPRO is not set |
| 810 | |||
| 811 | # | ||
| 812 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 813 | # | ||
| 814 | CONFIG_I2C_MPC=y | ||
| 815 | # CONFIG_I2C_OCORES is not set | ||
| 816 | # CONFIG_I2C_SIMTEC is not set | ||
| 817 | |||
| 818 | # | ||
| 819 | # External I2C/SMBus adapter drivers | ||
| 820 | # | ||
| 821 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 822 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 823 | # CONFIG_I2C_TINY_USB is not set | ||
| 824 | |||
| 825 | # | ||
| 826 | # Graphics adapter I2C/DDC channel drivers | ||
| 827 | # | ||
| 798 | # CONFIG_I2C_VOODOO3 is not set | 828 | # CONFIG_I2C_VOODOO3 is not set |
| 829 | |||
| 830 | # | ||
| 831 | # Other I2C/SMBus bus drivers | ||
| 832 | # | ||
| 799 | # CONFIG_I2C_PCA_PLATFORM is not set | 833 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 834 | # CONFIG_I2C_STUB is not set | ||
| 800 | 835 | ||
| 801 | # | 836 | # |
| 802 | # Miscellaneous I2C Chip support | 837 | # Miscellaneous I2C Chip support |
| 803 | # | 838 | # |
| 804 | # CONFIG_DS1682 is not set | 839 | # CONFIG_DS1682 is not set |
| 840 | # CONFIG_AT24 is not set | ||
| 805 | CONFIG_SENSORS_EEPROM=y | 841 | CONFIG_SENSORS_EEPROM=y |
| 806 | # CONFIG_SENSORS_PCF8574 is not set | 842 | # CONFIG_SENSORS_PCF8574 is not set |
| 807 | # CONFIG_PCF8575 is not set | 843 | # CONFIG_PCF8575 is not set |
| 844 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 808 | # CONFIG_SENSORS_PCF8591 is not set | 845 | # CONFIG_SENSORS_PCF8591 is not set |
| 809 | # CONFIG_SENSORS_MAX6875 is not set | 846 | # CONFIG_SENSORS_MAX6875 is not set |
| 810 | # CONFIG_SENSORS_TSL2550 is not set | 847 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -813,10 +850,13 @@ CONFIG_SENSORS_EEPROM=y | |||
| 813 | # CONFIG_I2C_DEBUG_BUS is not set | 850 | # CONFIG_I2C_DEBUG_BUS is not set |
| 814 | # CONFIG_I2C_DEBUG_CHIP is not set | 851 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 815 | # CONFIG_SPI is not set | 852 | # CONFIG_SPI is not set |
| 853 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 854 | # CONFIG_GPIOLIB is not set | ||
| 816 | # CONFIG_W1 is not set | 855 | # CONFIG_W1 is not set |
| 817 | # CONFIG_POWER_SUPPLY is not set | 856 | # CONFIG_POWER_SUPPLY is not set |
| 818 | # CONFIG_HWMON is not set | 857 | # CONFIG_HWMON is not set |
| 819 | # CONFIG_THERMAL is not set | 858 | # CONFIG_THERMAL is not set |
| 859 | # CONFIG_THERMAL_HWMON is not set | ||
| 820 | # CONFIG_WATCHDOG is not set | 860 | # CONFIG_WATCHDOG is not set |
| 821 | 861 | ||
| 822 | # | 862 | # |
| @@ -828,8 +868,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 828 | # | 868 | # |
| 829 | # Multifunction device drivers | 869 | # Multifunction device drivers |
| 830 | # | 870 | # |
| 871 | # CONFIG_MFD_CORE is not set | ||
| 831 | # CONFIG_MFD_SM501 is not set | 872 | # CONFIG_MFD_SM501 is not set |
| 832 | # CONFIG_HTC_PASIC3 is not set | 873 | # CONFIG_HTC_PASIC3 is not set |
| 874 | # CONFIG_MFD_TMIO is not set | ||
| 833 | 875 | ||
| 834 | # | 876 | # |
| 835 | # Multimedia devices | 877 | # Multimedia devices |
| @@ -871,6 +913,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 871 | # CONFIG_DVB_TTUSB_BUDGET is not set | 913 | # CONFIG_DVB_TTUSB_BUDGET is not set |
| 872 | # CONFIG_DVB_TTUSB_DEC is not set | 914 | # CONFIG_DVB_TTUSB_DEC is not set |
| 873 | # CONFIG_DVB_CINERGYT2 is not set | 915 | # CONFIG_DVB_CINERGYT2 is not set |
| 916 | # CONFIG_DVB_SIANO_SMS1XXX is not set | ||
| 874 | 917 | ||
| 875 | # | 918 | # |
| 876 | # Supported FlexCopII (B2C2) Adapters | 919 | # Supported FlexCopII (B2C2) Adapters |
| @@ -917,6 +960,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 917 | # CONFIG_DVB_SP887X is not set | 960 | # CONFIG_DVB_SP887X is not set |
| 918 | # CONFIG_DVB_CX22700 is not set | 961 | # CONFIG_DVB_CX22700 is not set |
| 919 | # CONFIG_DVB_CX22702 is not set | 962 | # CONFIG_DVB_CX22702 is not set |
| 963 | # CONFIG_DVB_DRX397XD is not set | ||
| 920 | # CONFIG_DVB_L64781 is not set | 964 | # CONFIG_DVB_L64781 is not set |
| 921 | # CONFIG_DVB_TDA1004X is not set | 965 | # CONFIG_DVB_TDA1004X is not set |
| 922 | # CONFIG_DVB_NXT6000 is not set | 966 | # CONFIG_DVB_NXT6000 is not set |
| @@ -984,15 +1028,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 984 | CONFIG_VGA_CONSOLE=y | 1028 | CONFIG_VGA_CONSOLE=y |
| 985 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | 1029 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set |
| 986 | CONFIG_DUMMY_CONSOLE=y | 1030 | CONFIG_DUMMY_CONSOLE=y |
| 987 | |||
| 988 | # | ||
| 989 | # Sound | ||
| 990 | # | ||
| 991 | CONFIG_SOUND=y | 1031 | CONFIG_SOUND=y |
| 992 | |||
| 993 | # | ||
| 994 | # Advanced Linux Sound Architecture | ||
| 995 | # | ||
| 996 | CONFIG_SND=y | 1032 | CONFIG_SND=y |
| 997 | CONFIG_SND_TIMER=y | 1033 | CONFIG_SND_TIMER=y |
| 998 | CONFIG_SND_PCM=y | 1034 | CONFIG_SND_PCM=y |
| @@ -1006,19 +1042,15 @@ CONFIG_SND_PCM_OSS_PLUGINS=y | |||
| 1006 | CONFIG_SND_VERBOSE_PROCFS=y | 1042 | CONFIG_SND_VERBOSE_PROCFS=y |
| 1007 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1043 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 1008 | # CONFIG_SND_DEBUG is not set | 1044 | # CONFIG_SND_DEBUG is not set |
| 1009 | 1045 | CONFIG_SND_VMASTER=y | |
| 1010 | # | ||
| 1011 | # Generic devices | ||
| 1012 | # | ||
| 1013 | CONFIG_SND_AC97_CODEC=y | 1046 | CONFIG_SND_AC97_CODEC=y |
| 1047 | CONFIG_SND_DRIVERS=y | ||
| 1014 | # CONFIG_SND_DUMMY is not set | 1048 | # CONFIG_SND_DUMMY is not set |
| 1015 | # CONFIG_SND_MTPAV is not set | 1049 | # CONFIG_SND_MTPAV is not set |
| 1016 | # CONFIG_SND_SERIAL_U16550 is not set | 1050 | # CONFIG_SND_SERIAL_U16550 is not set |
| 1017 | # CONFIG_SND_MPU401 is not set | 1051 | # CONFIG_SND_MPU401 is not set |
| 1018 | 1052 | # CONFIG_SND_AC97_POWER_SAVE is not set | |
| 1019 | # | 1053 | CONFIG_SND_PCI=y |
| 1020 | # PCI devices | ||
| 1021 | # | ||
| 1022 | # CONFIG_SND_AD1889 is not set | 1054 | # CONFIG_SND_AD1889 is not set |
| 1023 | # CONFIG_SND_ALS300 is not set | 1055 | # CONFIG_SND_ALS300 is not set |
| 1024 | # CONFIG_SND_ALS4000 is not set | 1056 | # CONFIG_SND_ALS4000 is not set |
| @@ -1080,39 +1112,12 @@ CONFIG_SND_INTEL8X0=y | |||
| 1080 | # CONFIG_SND_VIRTUOSO is not set | 1112 | # CONFIG_SND_VIRTUOSO is not set |
| 1081 | # CONFIG_SND_VX222 is not set | 1113 | # CONFIG_SND_VX222 is not set |
| 1082 | # CONFIG_SND_YMFPCI is not set | 1114 | # CONFIG_SND_YMFPCI is not set |
| 1083 | # CONFIG_SND_AC97_POWER_SAVE is not set | 1115 | CONFIG_SND_PPC=y |
| 1084 | 1116 | CONFIG_SND_USB=y | |
| 1085 | # | ||
| 1086 | # ALSA PowerMac devices | ||
| 1087 | # | ||
| 1088 | |||
| 1089 | # | ||
| 1090 | # ALSA PowerPC devices | ||
| 1091 | # | ||
| 1092 | |||
| 1093 | # | ||
| 1094 | # USB devices | ||
| 1095 | # | ||
| 1096 | # CONFIG_SND_USB_AUDIO is not set | 1117 | # CONFIG_SND_USB_AUDIO is not set |
| 1097 | # CONFIG_SND_USB_USX2Y is not set | 1118 | # CONFIG_SND_USB_USX2Y is not set |
| 1098 | # CONFIG_SND_USB_CAIAQ is not set | 1119 | # CONFIG_SND_USB_CAIAQ is not set |
| 1099 | |||
| 1100 | # | ||
| 1101 | # System on Chip audio support | ||
| 1102 | # | ||
| 1103 | # CONFIG_SND_SOC is not set | 1120 | # CONFIG_SND_SOC is not set |
| 1104 | |||
| 1105 | # | ||
| 1106 | # ALSA SoC audio for Freescale SOCs | ||
| 1107 | # | ||
| 1108 | |||
| 1109 | # | ||
| 1110 | # SoC Audio for the Texas Instruments OMAP | ||
| 1111 | # | ||
| 1112 | |||
| 1113 | # | ||
| 1114 | # Open Sound System | ||
| 1115 | # | ||
| 1116 | # CONFIG_SOUND_PRIME is not set | 1121 | # CONFIG_SOUND_PRIME is not set |
| 1117 | CONFIG_AC97_BUS=y | 1122 | CONFIG_AC97_BUS=y |
| 1118 | CONFIG_HID_SUPPORT=y | 1123 | CONFIG_HID_SUPPORT=y |
| @@ -1144,6 +1149,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 1144 | # CONFIG_USB_OTG is not set | 1149 | # CONFIG_USB_OTG is not set |
| 1145 | # CONFIG_USB_OTG_WHITELIST is not set | 1150 | # CONFIG_USB_OTG_WHITELIST is not set |
| 1146 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1151 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1152 | CONFIG_USB_MON=y | ||
| 1147 | 1153 | ||
| 1148 | # | 1154 | # |
| 1149 | # USB Host Controller Drivers | 1155 | # USB Host Controller Drivers |
| @@ -1195,6 +1201,7 @@ CONFIG_USB_STORAGE=y | |||
| 1195 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1201 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1196 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1202 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1197 | # CONFIG_USB_STORAGE_KARMA is not set | 1203 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1204 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1198 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1205 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1199 | # CONFIG_USB_LIBUSUAL is not set | 1206 | # CONFIG_USB_LIBUSUAL is not set |
| 1200 | 1207 | ||
| @@ -1203,7 +1210,6 @@ CONFIG_USB_STORAGE=y | |||
| 1203 | # | 1210 | # |
| 1204 | # CONFIG_USB_MDC800 is not set | 1211 | # CONFIG_USB_MDC800 is not set |
| 1205 | # CONFIG_USB_MICROTEK is not set | 1212 | # CONFIG_USB_MICROTEK is not set |
| 1206 | CONFIG_USB_MON=y | ||
| 1207 | 1213 | ||
| 1208 | # | 1214 | # |
| 1209 | # USB port drivers | 1215 | # USB port drivers |
| @@ -1216,7 +1222,6 @@ CONFIG_USB_MON=y | |||
| 1216 | # CONFIG_USB_EMI62 is not set | 1222 | # CONFIG_USB_EMI62 is not set |
| 1217 | # CONFIG_USB_EMI26 is not set | 1223 | # CONFIG_USB_EMI26 is not set |
| 1218 | # CONFIG_USB_ADUTUX is not set | 1224 | # CONFIG_USB_ADUTUX is not set |
| 1219 | # CONFIG_USB_AUERSWALD is not set | ||
| 1220 | # CONFIG_USB_RIO500 is not set | 1225 | # CONFIG_USB_RIO500 is not set |
| 1221 | # CONFIG_USB_LEGOTOWER is not set | 1226 | # CONFIG_USB_LEGOTOWER is not set |
| 1222 | # CONFIG_USB_LCD is not set | 1227 | # CONFIG_USB_LCD is not set |
| @@ -1270,6 +1275,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 1270 | # CONFIG_RTC_DRV_PCF8583 is not set | 1275 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 1271 | # CONFIG_RTC_DRV_M41T80 is not set | 1276 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1272 | # CONFIG_RTC_DRV_S35390A is not set | 1277 | # CONFIG_RTC_DRV_S35390A is not set |
| 1278 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1273 | 1279 | ||
| 1274 | # | 1280 | # |
| 1275 | # SPI RTC drivers | 1281 | # SPI RTC drivers |
| @@ -1303,6 +1309,7 @@ CONFIG_DMA_ENGINE=y | |||
| 1303 | # DMA Clients | 1309 | # DMA Clients |
| 1304 | # | 1310 | # |
| 1305 | # CONFIG_NET_DMA is not set | 1311 | # CONFIG_NET_DMA is not set |
| 1312 | # CONFIG_DMATEST is not set | ||
| 1306 | # CONFIG_UIO is not set | 1313 | # CONFIG_UIO is not set |
| 1307 | 1314 | ||
| 1308 | # | 1315 | # |
| @@ -1379,6 +1386,7 @@ CONFIG_EFS_FS=m | |||
| 1379 | CONFIG_CRAMFS=y | 1386 | CONFIG_CRAMFS=y |
| 1380 | CONFIG_VXFS_FS=m | 1387 | CONFIG_VXFS_FS=m |
| 1381 | # CONFIG_MINIX_FS is not set | 1388 | # CONFIG_MINIX_FS is not set |
| 1389 | # CONFIG_OMFS_FS is not set | ||
| 1382 | CONFIG_HPFS_FS=m | 1390 | CONFIG_HPFS_FS=m |
| 1383 | CONFIG_QNX4FS_FS=m | 1391 | CONFIG_QNX4FS_FS=m |
| 1384 | # CONFIG_ROMFS_FS is not set | 1392 | # CONFIG_ROMFS_FS is not set |
| @@ -1391,17 +1399,16 @@ CONFIG_NFS_FS=y | |||
| 1391 | CONFIG_NFS_V3=y | 1399 | CONFIG_NFS_V3=y |
| 1392 | # CONFIG_NFS_V3_ACL is not set | 1400 | # CONFIG_NFS_V3_ACL is not set |
| 1393 | CONFIG_NFS_V4=y | 1401 | CONFIG_NFS_V4=y |
| 1402 | CONFIG_ROOT_NFS=y | ||
| 1394 | CONFIG_NFSD=y | 1403 | CONFIG_NFSD=y |
| 1395 | # CONFIG_NFSD_V3 is not set | 1404 | # CONFIG_NFSD_V3 is not set |
| 1396 | # CONFIG_NFSD_V4 is not set | 1405 | # CONFIG_NFSD_V4 is not set |
| 1397 | CONFIG_ROOT_NFS=y | ||
| 1398 | CONFIG_LOCKD=y | 1406 | CONFIG_LOCKD=y |
| 1399 | CONFIG_LOCKD_V4=y | 1407 | CONFIG_LOCKD_V4=y |
| 1400 | CONFIG_EXPORTFS=y | 1408 | CONFIG_EXPORTFS=y |
| 1401 | CONFIG_NFS_COMMON=y | 1409 | CONFIG_NFS_COMMON=y |
| 1402 | CONFIG_SUNRPC=y | 1410 | CONFIG_SUNRPC=y |
| 1403 | CONFIG_SUNRPC_GSS=y | 1411 | CONFIG_SUNRPC_GSS=y |
| 1404 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1405 | CONFIG_RPCSEC_GSS_KRB5=y | 1412 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1406 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1413 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1407 | # CONFIG_SMB_FS is not set | 1414 | # CONFIG_SMB_FS is not set |
| @@ -1480,6 +1487,7 @@ CONFIG_BITREVERSE=y | |||
| 1480 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1487 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1481 | # CONFIG_CRC_CCITT is not set | 1488 | # CONFIG_CRC_CCITT is not set |
| 1482 | # CONFIG_CRC16 is not set | 1489 | # CONFIG_CRC16 is not set |
| 1490 | CONFIG_CRC_T10DIF=y | ||
| 1483 | CONFIG_CRC_ITU_T=m | 1491 | CONFIG_CRC_ITU_T=m |
| 1484 | CONFIG_CRC32=y | 1492 | CONFIG_CRC32=y |
| 1485 | # CONFIG_CRC7 is not set | 1493 | # CONFIG_CRC7 is not set |
| @@ -1505,6 +1513,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 1505 | CONFIG_DEBUG_KERNEL=y | 1513 | CONFIG_DEBUG_KERNEL=y |
| 1506 | # CONFIG_DEBUG_SHIRQ is not set | 1514 | # CONFIG_DEBUG_SHIRQ is not set |
| 1507 | CONFIG_DETECT_SOFTLOCKUP=y | 1515 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1516 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1517 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1508 | CONFIG_SCHED_DEBUG=y | 1518 | CONFIG_SCHED_DEBUG=y |
| 1509 | # CONFIG_SCHEDSTATS is not set | 1519 | # CONFIG_SCHEDSTATS is not set |
| 1510 | # CONFIG_TIMER_STATS is not set | 1520 | # CONFIG_TIMER_STATS is not set |
| @@ -1523,17 +1533,29 @@ CONFIG_SCHED_DEBUG=y | |||
| 1523 | CONFIG_DEBUG_INFO=y | 1533 | CONFIG_DEBUG_INFO=y |
| 1524 | # CONFIG_DEBUG_VM is not set | 1534 | # CONFIG_DEBUG_VM is not set |
| 1525 | # CONFIG_DEBUG_WRITECOUNT is not set | 1535 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1536 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1526 | # CONFIG_DEBUG_LIST is not set | 1537 | # CONFIG_DEBUG_LIST is not set |
| 1527 | # CONFIG_DEBUG_SG is not set | 1538 | # CONFIG_DEBUG_SG is not set |
| 1528 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1539 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1529 | # CONFIG_RCU_TORTURE_TEST is not set | 1540 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1530 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1541 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1531 | # CONFIG_FAULT_INJECTION is not set | 1542 | # CONFIG_FAULT_INJECTION is not set |
| 1543 | # CONFIG_LATENCYTOP is not set | ||
| 1544 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1545 | CONFIG_HAVE_FTRACE=y | ||
| 1546 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1547 | # CONFIG_FTRACE is not set | ||
| 1548 | # CONFIG_SCHED_TRACER is not set | ||
| 1549 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1532 | # CONFIG_SAMPLES is not set | 1550 | # CONFIG_SAMPLES is not set |
| 1551 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1552 | # CONFIG_KGDB is not set | ||
| 1533 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1553 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1534 | # CONFIG_DEBUG_STACK_USAGE is not set | 1554 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1535 | # CONFIG_DEBUG_PAGEALLOC is not set | 1555 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1536 | # CONFIG_DEBUGGER is not set | 1556 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1557 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1558 | # CONFIG_XMON is not set | ||
| 1537 | # CONFIG_IRQSTACKS is not set | 1559 | # CONFIG_IRQSTACKS is not set |
| 1538 | # CONFIG_BDI_SWITCH is not set | 1560 | # CONFIG_BDI_SWITCH is not set |
| 1539 | # CONFIG_PPC_EARLY_DEBUG is not set | 1561 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -1550,13 +1572,14 @@ CONFIG_CRYPTO=y | |||
| 1550 | # Crypto core or helper | 1572 | # Crypto core or helper |
| 1551 | # | 1573 | # |
| 1552 | CONFIG_CRYPTO_ALGAPI=y | 1574 | CONFIG_CRYPTO_ALGAPI=y |
| 1575 | CONFIG_CRYPTO_AEAD=y | ||
| 1553 | CONFIG_CRYPTO_BLKCIPHER=y | 1576 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1554 | CONFIG_CRYPTO_HASH=y | 1577 | CONFIG_CRYPTO_HASH=y |
| 1555 | CONFIG_CRYPTO_MANAGER=y | 1578 | CONFIG_CRYPTO_MANAGER=y |
| 1556 | # CONFIG_CRYPTO_GF128MUL is not set | 1579 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1557 | # CONFIG_CRYPTO_NULL is not set | 1580 | # CONFIG_CRYPTO_NULL is not set |
| 1558 | # CONFIG_CRYPTO_CRYPTD is not set | 1581 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1559 | # CONFIG_CRYPTO_AUTHENC is not set | 1582 | CONFIG_CRYPTO_AUTHENC=y |
| 1560 | # CONFIG_CRYPTO_TEST is not set | 1583 | # CONFIG_CRYPTO_TEST is not set |
| 1561 | 1584 | ||
| 1562 | # | 1585 | # |
| @@ -1590,6 +1613,10 @@ CONFIG_CRYPTO_HMAC=y | |||
| 1590 | # CONFIG_CRYPTO_MD4 is not set | 1613 | # CONFIG_CRYPTO_MD4 is not set |
| 1591 | CONFIG_CRYPTO_MD5=y | 1614 | CONFIG_CRYPTO_MD5=y |
| 1592 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1615 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1616 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1617 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1618 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1619 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1593 | CONFIG_CRYPTO_SHA1=m | 1620 | CONFIG_CRYPTO_SHA1=m |
| 1594 | # CONFIG_CRYPTO_SHA256 is not set | 1621 | # CONFIG_CRYPTO_SHA256 is not set |
| 1595 | # CONFIG_CRYPTO_SHA512 is not set | 1622 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1622,5 +1649,6 @@ CONFIG_CRYPTO_DES=y | |||
| 1622 | # CONFIG_CRYPTO_LZO is not set | 1649 | # CONFIG_CRYPTO_LZO is not set |
| 1623 | CONFIG_CRYPTO_HW=y | 1650 | CONFIG_CRYPTO_HW=y |
| 1624 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1651 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1652 | CONFIG_CRYPTO_DEV_TALITOS=y | ||
| 1625 | # CONFIG_PPC_CLOCK is not set | 1653 | # CONFIG_PPC_CLOCK is not set |
| 1626 | # CONFIG_VIRTUALIZATION is not set | 1654 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8560_ads_defconfig b/arch/powerpc/configs/85xx/mpc8560_ads_defconfig index e19592b42043..06e26d906f65 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:33 2008 | 4 | # Thu Aug 21 00:52:32 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,12 +34,14 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 39 | CONFIG_GENERIC_HWEIGHT=y | 41 | CONFIG_GENERIC_HWEIGHT=y |
| 40 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 42 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 41 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 43 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 44 | CONFIG_GENERIC_GPIO=y | ||
| 42 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 45 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
| 43 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
| 44 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
| @@ -89,7 +92,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | CONFIG_KALLSYMS=y | 95 | CONFIG_KALLSYMS=y |
| 94 | # CONFIG_KALLSYMS_ALL is not set | 96 | # CONFIG_KALLSYMS_ALL is not set |
| 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 97 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -114,10 +116,16 @@ CONFIG_SLUB=y | |||
| 114 | # CONFIG_PROFILING is not set | 116 | # CONFIG_PROFILING is not set |
| 115 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 116 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 117 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 118 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 119 | # CONFIG_HAVE_DMA_ATTRS is not set | 124 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 125 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 126 | CONFIG_HAVE_CLK=y | ||
| 120 | CONFIG_PROC_PAGE_MONITOR=y | 127 | CONFIG_PROC_PAGE_MONITOR=y |
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 121 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
| 122 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
| 123 | # CONFIG_TINY_SHMEM is not set | 131 | # CONFIG_TINY_SHMEM is not set |
| @@ -128,6 +136,7 @@ CONFIG_BLOCK=y | |||
| 128 | # CONFIG_BLK_DEV_IO_TRACE is not set | 136 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 129 | # CONFIG_LSF is not set | 137 | # CONFIG_LSF is not set |
| 130 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
| 139 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 131 | 140 | ||
| 132 | # | 141 | # |
| 133 | # IO Schedulers | 142 | # IO Schedulers |
| @@ -146,8 +155,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 146 | # | 155 | # |
| 147 | # Platform support | 156 | # Platform support |
| 148 | # | 157 | # |
| 149 | # CONFIG_PPC_MPC512x is not set | ||
| 150 | # CONFIG_PPC_MPC5121 is not set | ||
| 151 | # CONFIG_PPC_CELL is not set | 158 | # CONFIG_PPC_CELL is not set |
| 152 | # CONFIG_PPC_CELL_NATIVE is not set | 159 | # CONFIG_PPC_CELL_NATIVE is not set |
| 153 | # CONFIG_PQ2ADS is not set | 160 | # CONFIG_PQ2ADS is not set |
| @@ -156,11 +163,13 @@ CONFIG_MPC85xx=y | |||
| 156 | CONFIG_MPC8560_ADS=y | 163 | CONFIG_MPC8560_ADS=y |
| 157 | # CONFIG_MPC85xx_CDS is not set | 164 | # CONFIG_MPC85xx_CDS is not set |
| 158 | # CONFIG_MPC85xx_MDS is not set | 165 | # CONFIG_MPC85xx_MDS is not set |
| 166 | # CONFIG_MPC8536_DS is not set | ||
| 159 | # CONFIG_MPC85xx_DS is not set | 167 | # CONFIG_MPC85xx_DS is not set |
| 160 | # CONFIG_KSI8560 is not set | 168 | # CONFIG_KSI8560 is not set |
| 161 | # CONFIG_STX_GP3 is not set | 169 | # CONFIG_STX_GP3 is not set |
| 162 | # CONFIG_TQM8540 is not set | 170 | # CONFIG_TQM8540 is not set |
| 163 | # CONFIG_TQM8541 is not set | 171 | # CONFIG_TQM8541 is not set |
| 172 | # CONFIG_TQM8548 is not set | ||
| 164 | # CONFIG_TQM8555 is not set | 173 | # CONFIG_TQM8555 is not set |
| 165 | # CONFIG_TQM8560 is not set | 174 | # CONFIG_TQM8560 is not set |
| 166 | # CONFIG_SBC8548 is not set | 175 | # CONFIG_SBC8548 is not set |
| @@ -177,7 +186,6 @@ CONFIG_MPIC=y | |||
| 177 | # CONFIG_GENERIC_IOMAP is not set | 186 | # CONFIG_GENERIC_IOMAP is not set |
| 178 | # CONFIG_CPU_FREQ is not set | 187 | # CONFIG_CPU_FREQ is not set |
| 179 | CONFIG_CPM2=y | 188 | CONFIG_CPM2=y |
| 180 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 181 | # CONFIG_FSL_ULI1575 is not set | 189 | # CONFIG_FSL_ULI1575 is not set |
| 182 | CONFIG_CPM=y | 190 | CONFIG_CPM=y |
| 183 | 191 | ||
| @@ -217,6 +225,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 225 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | 226 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 228 | CONFIG_MIGRATION=y | ||
| 220 | # CONFIG_RESOURCES_64BIT is not set | 229 | # CONFIG_RESOURCES_64BIT is not set |
| 221 | CONFIG_ZONE_DMA_FLAG=1 | 230 | CONFIG_ZONE_DMA_FLAG=1 |
| 222 | CONFIG_BOUNCE=y | 231 | CONFIG_BOUNCE=y |
| @@ -224,6 +233,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | 233 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 225 | # CONFIG_PROC_DEVICETREE is not set | 234 | # CONFIG_PROC_DEVICETREE is not set |
| 226 | # CONFIG_CMDLINE_BOOL is not set | 235 | # CONFIG_CMDLINE_BOOL is not set |
| 236 | CONFIG_EXTRA_TARGETS="" | ||
| 227 | # CONFIG_PM is not set | 237 | # CONFIG_PM is not set |
| 228 | # CONFIG_SECCOMP is not set | 238 | # CONFIG_SECCOMP is not set |
| 229 | CONFIG_ISA_DMA_API=y | 239 | CONFIG_ISA_DMA_API=y |
| @@ -235,6 +245,7 @@ CONFIG_ZONE_DMA=y | |||
| 235 | CONFIG_PPC_INDIRECT_PCI=y | 245 | CONFIG_PPC_INDIRECT_PCI=y |
| 236 | CONFIG_FSL_SOC=y | 246 | CONFIG_FSL_SOC=y |
| 237 | CONFIG_FSL_PCI=y | 247 | CONFIG_FSL_PCI=y |
| 248 | CONFIG_PPC_PCI_CHOICE=y | ||
| 238 | CONFIG_PCI=y | 249 | CONFIG_PCI=y |
| 239 | CONFIG_PCI_DOMAINS=y | 250 | CONFIG_PCI_DOMAINS=y |
| 240 | CONFIG_PCI_SYSCALL=y | 251 | CONFIG_PCI_SYSCALL=y |
| @@ -261,10 +272,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 261 | CONFIG_PHYSICAL_START=0x00000000 | 272 | CONFIG_PHYSICAL_START=0x00000000 |
| 262 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 273 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 263 | CONFIG_TASK_SIZE=0xc0000000 | 274 | CONFIG_TASK_SIZE=0xc0000000 |
| 264 | |||
| 265 | # | ||
| 266 | # Networking | ||
| 267 | # | ||
| 268 | CONFIG_NET=y | 275 | CONFIG_NET=y |
| 269 | 276 | ||
| 270 | # | 277 | # |
| @@ -363,6 +370,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 363 | # CONFIG_CONNECTOR is not set | 370 | # CONFIG_CONNECTOR is not set |
| 364 | # CONFIG_MTD is not set | 371 | # CONFIG_MTD is not set |
| 365 | CONFIG_OF_DEVICE=y | 372 | CONFIG_OF_DEVICE=y |
| 373 | CONFIG_OF_GPIO=y | ||
| 366 | # CONFIG_PARPORT is not set | 374 | # CONFIG_PARPORT is not set |
| 367 | CONFIG_BLK_DEV=y | 375 | CONFIG_BLK_DEV=y |
| 368 | # CONFIG_BLK_DEV_FD is not set | 376 | # CONFIG_BLK_DEV_FD is not set |
| @@ -381,12 +389,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 381 | # CONFIG_BLK_DEV_XIP is not set | 389 | # CONFIG_BLK_DEV_XIP is not set |
| 382 | # CONFIG_CDROM_PKTCDVD is not set | 390 | # CONFIG_CDROM_PKTCDVD is not set |
| 383 | # CONFIG_ATA_OVER_ETH is not set | 391 | # CONFIG_ATA_OVER_ETH is not set |
| 392 | # CONFIG_BLK_DEV_HD is not set | ||
| 384 | CONFIG_MISC_DEVICES=y | 393 | CONFIG_MISC_DEVICES=y |
| 385 | # CONFIG_PHANTOM is not set | 394 | # CONFIG_PHANTOM is not set |
| 386 | # CONFIG_EEPROM_93CX6 is not set | 395 | # CONFIG_EEPROM_93CX6 is not set |
| 387 | # CONFIG_SGI_IOC4 is not set | 396 | # CONFIG_SGI_IOC4 is not set |
| 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 |
| 399 | # CONFIG_HP_ILO is not set | ||
| 390 | CONFIG_HAVE_IDE=y | 400 | CONFIG_HAVE_IDE=y |
| 391 | # CONFIG_IDE is not set | 401 | # CONFIG_IDE is not set |
| 392 | 402 | ||
| @@ -404,12 +414,15 @@ CONFIG_HAVE_IDE=y | |||
| 404 | # | 414 | # |
| 405 | # IEEE 1394 (FireWire) support | 415 | # IEEE 1394 (FireWire) support |
| 406 | # | 416 | # |
| 417 | |||
| 418 | # | ||
| 419 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 420 | # | ||
| 407 | # CONFIG_FIREWIRE is not set | 421 | # CONFIG_FIREWIRE is not set |
| 408 | # CONFIG_IEEE1394 is not set | 422 | # CONFIG_IEEE1394 is not set |
| 409 | # CONFIG_I2O is not set | 423 | # CONFIG_I2O is not set |
| 410 | # CONFIG_MACINTOSH_DRIVERS is not set | 424 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 411 | CONFIG_NETDEVICES=y | 425 | CONFIG_NETDEVICES=y |
| 412 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 413 | # CONFIG_DUMMY is not set | 426 | # CONFIG_DUMMY is not set |
| 414 | # CONFIG_BONDING is not set | 427 | # CONFIG_BONDING is not set |
| 415 | # CONFIG_MACVLAN is not set | 428 | # CONFIG_MACVLAN is not set |
| @@ -456,10 +469,8 @@ CONFIG_NETDEV_1000=y | |||
| 456 | # CONFIG_ACENIC is not set | 469 | # CONFIG_ACENIC is not set |
| 457 | # CONFIG_DL2K is not set | 470 | # CONFIG_DL2K is not set |
| 458 | CONFIG_E1000=y | 471 | CONFIG_E1000=y |
| 459 | CONFIG_E1000_NAPI=y | ||
| 460 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 472 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
| 461 | # CONFIG_E1000E is not set | 473 | # CONFIG_E1000E is not set |
| 462 | # CONFIG_E1000E_ENABLED is not set | ||
| 463 | # CONFIG_IP1000 is not set | 474 | # CONFIG_IP1000 is not set |
| 464 | # CONFIG_IGB is not set | 475 | # CONFIG_IGB is not set |
| 465 | # CONFIG_NS83820 is not set | 476 | # CONFIG_NS83820 is not set |
| @@ -473,9 +484,9 @@ CONFIG_E1000_NAPI=y | |||
| 473 | # CONFIG_TIGON3 is not set | 484 | # CONFIG_TIGON3 is not set |
| 474 | # CONFIG_BNX2 is not set | 485 | # CONFIG_BNX2 is not set |
| 475 | CONFIG_GIANFAR=y | 486 | CONFIG_GIANFAR=y |
| 476 | CONFIG_GFAR_NAPI=y | ||
| 477 | # CONFIG_QLA3XXX is not set | 487 | # CONFIG_QLA3XXX is not set |
| 478 | # CONFIG_ATL1 is not set | 488 | # CONFIG_ATL1 is not set |
| 489 | # CONFIG_ATL1E is not set | ||
| 479 | CONFIG_NETDEV_10000=y | 490 | CONFIG_NETDEV_10000=y |
| 480 | # CONFIG_CHELSIO_T1 is not set | 491 | # CONFIG_CHELSIO_T1 is not set |
| 481 | # CONFIG_CHELSIO_T3 is not set | 492 | # CONFIG_CHELSIO_T3 is not set |
| @@ -582,6 +593,24 @@ CONFIG_GEN_RTC=y | |||
| 582 | CONFIG_DEVPORT=y | 593 | CONFIG_DEVPORT=y |
| 583 | # CONFIG_I2C is not set | 594 | # CONFIG_I2C is not set |
| 584 | # CONFIG_SPI is not set | 595 | # CONFIG_SPI is not set |
| 596 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 597 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | ||
| 598 | CONFIG_GPIOLIB=y | ||
| 599 | # CONFIG_DEBUG_GPIO is not set | ||
| 600 | # CONFIG_GPIO_SYSFS is not set | ||
| 601 | |||
| 602 | # | ||
| 603 | # I2C GPIO expanders: | ||
| 604 | # | ||
| 605 | |||
| 606 | # | ||
| 607 | # PCI GPIO expanders: | ||
| 608 | # | ||
| 609 | # CONFIG_GPIO_BT8XX is not set | ||
| 610 | |||
| 611 | # | ||
| 612 | # SPI GPIO expanders: | ||
| 613 | # | ||
| 585 | # CONFIG_W1 is not set | 614 | # CONFIG_W1 is not set |
| 586 | # CONFIG_POWER_SUPPLY is not set | 615 | # CONFIG_POWER_SUPPLY is not set |
| 587 | CONFIG_HWMON=y | 616 | CONFIG_HWMON=y |
| @@ -602,6 +631,7 @@ CONFIG_HWMON=y | |||
| 602 | # CONFIG_SENSORS_W83627EHF is not set | 631 | # CONFIG_SENSORS_W83627EHF is not set |
| 603 | # CONFIG_HWMON_DEBUG_CHIP is not set | 632 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 604 | # CONFIG_THERMAL is not set | 633 | # CONFIG_THERMAL is not set |
| 634 | # CONFIG_THERMAL_HWMON is not set | ||
| 605 | # CONFIG_WATCHDOG is not set | 635 | # CONFIG_WATCHDOG is not set |
| 606 | 636 | ||
| 607 | # | 637 | # |
| @@ -613,8 +643,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 613 | # | 643 | # |
| 614 | # Multifunction device drivers | 644 | # Multifunction device drivers |
| 615 | # | 645 | # |
| 646 | # CONFIG_MFD_CORE is not set | ||
| 616 | # CONFIG_MFD_SM501 is not set | 647 | # CONFIG_MFD_SM501 is not set |
| 617 | # CONFIG_HTC_PASIC3 is not set | 648 | # CONFIG_HTC_PASIC3 is not set |
| 649 | # CONFIG_MFD_TMIO is not set | ||
| 618 | 650 | ||
| 619 | # | 651 | # |
| 620 | # Multimedia devices | 652 | # Multimedia devices |
| @@ -646,10 +678,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 646 | # Display device support | 678 | # Display device support |
| 647 | # | 679 | # |
| 648 | # CONFIG_DISPLAY_SUPPORT is not set | 680 | # CONFIG_DISPLAY_SUPPORT is not set |
| 649 | |||
| 650 | # | ||
| 651 | # Sound | ||
| 652 | # | ||
| 653 | # CONFIG_SOUND is not set | 681 | # CONFIG_SOUND is not set |
| 654 | CONFIG_HID_SUPPORT=y | 682 | CONFIG_HID_SUPPORT=y |
| 655 | CONFIG_HID=y | 683 | CONFIG_HID=y |
| @@ -664,6 +692,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 664 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 692 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 665 | 693 | ||
| 666 | # | 694 | # |
| 695 | # Enable Host or Gadget support to see Inventra options | ||
| 696 | # | ||
| 697 | |||
| 698 | # | ||
| 667 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 699 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 668 | # | 700 | # |
| 669 | # CONFIG_USB_GADGET is not set | 701 | # CONFIG_USB_GADGET is not set |
| @@ -741,6 +773,7 @@ CONFIG_TMPFS=y | |||
| 741 | # CONFIG_CRAMFS is not set | 773 | # CONFIG_CRAMFS is not set |
| 742 | # CONFIG_VXFS_FS is not set | 774 | # CONFIG_VXFS_FS is not set |
| 743 | # CONFIG_MINIX_FS is not set | 775 | # CONFIG_MINIX_FS is not set |
| 776 | # CONFIG_OMFS_FS is not set | ||
| 744 | # CONFIG_HPFS_FS is not set | 777 | # CONFIG_HPFS_FS is not set |
| 745 | # CONFIG_QNX4FS_FS is not set | 778 | # CONFIG_QNX4FS_FS is not set |
| 746 | # CONFIG_ROMFS_FS is not set | 779 | # CONFIG_ROMFS_FS is not set |
| @@ -750,12 +783,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 750 | CONFIG_NFS_FS=y | 783 | CONFIG_NFS_FS=y |
| 751 | # CONFIG_NFS_V3 is not set | 784 | # CONFIG_NFS_V3 is not set |
| 752 | # CONFIG_NFS_V4 is not set | 785 | # CONFIG_NFS_V4 is not set |
| 753 | # CONFIG_NFSD is not set | ||
| 754 | CONFIG_ROOT_NFS=y | 786 | CONFIG_ROOT_NFS=y |
| 787 | # CONFIG_NFSD is not set | ||
| 755 | CONFIG_LOCKD=y | 788 | CONFIG_LOCKD=y |
| 756 | CONFIG_NFS_COMMON=y | 789 | CONFIG_NFS_COMMON=y |
| 757 | CONFIG_SUNRPC=y | 790 | CONFIG_SUNRPC=y |
| 758 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 759 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 791 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 760 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 792 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 761 | # CONFIG_SMB_FS is not set | 793 | # CONFIG_SMB_FS is not set |
| @@ -791,6 +823,7 @@ CONFIG_BITREVERSE=y | |||
| 791 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 823 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 792 | # CONFIG_CRC_CCITT is not set | 824 | # CONFIG_CRC_CCITT is not set |
| 793 | # CONFIG_CRC16 is not set | 825 | # CONFIG_CRC16 is not set |
| 826 | # CONFIG_CRC_T10DIF is not set | ||
| 794 | # CONFIG_CRC_ITU_T is not set | 827 | # CONFIG_CRC_ITU_T is not set |
| 795 | CONFIG_CRC32=y | 828 | CONFIG_CRC32=y |
| 796 | # CONFIG_CRC7 is not set | 829 | # CONFIG_CRC7 is not set |
| @@ -815,6 +848,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 815 | CONFIG_DEBUG_KERNEL=y | 848 | CONFIG_DEBUG_KERNEL=y |
| 816 | # CONFIG_DEBUG_SHIRQ is not set | 849 | # CONFIG_DEBUG_SHIRQ is not set |
| 817 | CONFIG_DETECT_SOFTLOCKUP=y | 850 | CONFIG_DETECT_SOFTLOCKUP=y |
| 851 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 852 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 818 | CONFIG_SCHED_DEBUG=y | 853 | CONFIG_SCHED_DEBUG=y |
| 819 | # CONFIG_SCHEDSTATS is not set | 854 | # CONFIG_SCHEDSTATS is not set |
| 820 | # CONFIG_TIMER_STATS is not set | 855 | # CONFIG_TIMER_STATS is not set |
| @@ -832,17 +867,29 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 832 | # CONFIG_DEBUG_INFO is not set | 867 | # CONFIG_DEBUG_INFO is not set |
| 833 | # CONFIG_DEBUG_VM is not set | 868 | # CONFIG_DEBUG_VM is not set |
| 834 | # CONFIG_DEBUG_WRITECOUNT is not set | 869 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 870 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 835 | # CONFIG_DEBUG_LIST is not set | 871 | # CONFIG_DEBUG_LIST is not set |
| 836 | # CONFIG_DEBUG_SG is not set | 872 | # CONFIG_DEBUG_SG is not set |
| 837 | # CONFIG_BOOT_PRINTK_DELAY is not set | 873 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 874 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 838 | # CONFIG_BACKTRACE_SELF_TEST is not set | 875 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 839 | # CONFIG_FAULT_INJECTION is not set | 876 | # CONFIG_FAULT_INJECTION is not set |
| 877 | # CONFIG_LATENCYTOP is not set | ||
| 878 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 879 | CONFIG_HAVE_FTRACE=y | ||
| 880 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 881 | # CONFIG_FTRACE is not set | ||
| 882 | # CONFIG_SCHED_TRACER is not set | ||
| 883 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 840 | # CONFIG_SAMPLES is not set | 884 | # CONFIG_SAMPLES is not set |
| 885 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 886 | # CONFIG_KGDB is not set | ||
| 841 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 887 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 842 | # CONFIG_DEBUG_STACK_USAGE is not set | 888 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 843 | # CONFIG_DEBUG_PAGEALLOC is not set | 889 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 844 | # CONFIG_DEBUGGER is not set | 890 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 845 | # CONFIG_KGDB_CONSOLE is not set | 891 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 892 | # CONFIG_XMON is not set | ||
| 846 | # CONFIG_IRQSTACKS is not set | 893 | # CONFIG_IRQSTACKS is not set |
| 847 | # CONFIG_BDI_SWITCH is not set | 894 | # CONFIG_BDI_SWITCH is not set |
| 848 | # CONFIG_PPC_EARLY_DEBUG is not set | 895 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -895,6 +942,10 @@ CONFIG_CRYPTO=y | |||
| 895 | # CONFIG_CRYPTO_MD4 is not set | 942 | # CONFIG_CRYPTO_MD4 is not set |
| 896 | # CONFIG_CRYPTO_MD5 is not set | 943 | # CONFIG_CRYPTO_MD5 is not set |
| 897 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 944 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 945 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 946 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 947 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 948 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 898 | # CONFIG_CRYPTO_SHA1 is not set | 949 | # CONFIG_CRYPTO_SHA1 is not set |
| 899 | # CONFIG_CRYPTO_SHA256 is not set | 950 | # CONFIG_CRYPTO_SHA256 is not set |
| 900 | # CONFIG_CRYPTO_SHA512 is not set | 951 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -927,6 +978,7 @@ CONFIG_CRYPTO=y | |||
| 927 | # CONFIG_CRYPTO_LZO is not set | 978 | # CONFIG_CRYPTO_LZO is not set |
| 928 | CONFIG_CRYPTO_HW=y | 979 | CONFIG_CRYPTO_HW=y |
| 929 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 980 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 930 | # CONFIG_PPC_CLOCK is not set | 981 | # CONFIG_CRYPTO_DEV_TALITOS is not set |
| 982 | CONFIG_PPC_CLOCK=y | ||
| 931 | CONFIG_PPC_LIB_RHEAP=y | 983 | CONFIG_PPC_LIB_RHEAP=y |
| 932 | # CONFIG_VIRTUALIZATION is not set | 984 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8568mds_defconfig b/arch/powerpc/configs/85xx/mpc8568mds_defconfig index 28004e93aeee..dc27c74955fa 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:34 2008 | 4 | # Thu Aug 21 00:52:33 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -89,7 +91,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 91 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 92 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 93 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | # CONFIG_KALLSYMS is not set | 94 | # CONFIG_KALLSYMS is not set |
| 94 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
| 95 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
| @@ -112,10 +113,16 @@ CONFIG_SLUB=y | |||
| 112 | # CONFIG_PROFILING is not set | 113 | # CONFIG_PROFILING is not set |
| 113 | # CONFIG_MARKERS is not set | 114 | # CONFIG_MARKERS is not set |
| 114 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
| 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 117 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 118 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 119 | CONFIG_HAVE_KRETPROBES=y |
| 120 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 121 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 122 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 123 | # CONFIG_HAVE_CLK is not set | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 124 | CONFIG_PROC_PAGE_MONITOR=y |
| 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | 128 | # CONFIG_TINY_SHMEM is not set |
| @@ -126,12 +133,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 133 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 127 | # CONFIG_MODVERSIONS is not set | 134 | # CONFIG_MODVERSIONS is not set |
| 128 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 135 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 129 | # CONFIG_KMOD is not set | 136 | CONFIG_KMOD=y |
| 130 | CONFIG_BLOCK=y | 137 | CONFIG_BLOCK=y |
| 131 | # CONFIG_LBD is not set | 138 | # CONFIG_LBD is not set |
| 132 | # CONFIG_BLK_DEV_IO_TRACE is not set | 139 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 133 | # CONFIG_LSF is not set | 140 | # CONFIG_LSF is not set |
| 134 | # CONFIG_BLK_DEV_BSG is not set | 141 | # CONFIG_BLK_DEV_BSG is not set |
| 142 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 135 | 143 | ||
| 136 | # | 144 | # |
| 137 | # IO Schedulers | 145 | # IO Schedulers |
| @@ -150,8 +158,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 150 | # | 158 | # |
| 151 | # Platform support | 159 | # Platform support |
| 152 | # | 160 | # |
| 153 | # CONFIG_PPC_MPC512x is not set | ||
| 154 | # CONFIG_PPC_MPC5121 is not set | ||
| 155 | # CONFIG_PPC_CELL is not set | 161 | # CONFIG_PPC_CELL is not set |
| 156 | # CONFIG_PPC_CELL_NATIVE is not set | 162 | # CONFIG_PPC_CELL_NATIVE is not set |
| 157 | # CONFIG_PQ2ADS is not set | 163 | # CONFIG_PQ2ADS is not set |
| @@ -160,11 +166,13 @@ CONFIG_MPC85xx=y | |||
| 160 | # CONFIG_MPC8560_ADS is not set | 166 | # CONFIG_MPC8560_ADS is not set |
| 161 | # CONFIG_MPC85xx_CDS is not set | 167 | # CONFIG_MPC85xx_CDS is not set |
| 162 | CONFIG_MPC85xx_MDS=y | 168 | CONFIG_MPC85xx_MDS=y |
| 169 | # CONFIG_MPC8536_DS is not set | ||
| 163 | # CONFIG_MPC85xx_DS is not set | 170 | # CONFIG_MPC85xx_DS is not set |
| 164 | # CONFIG_KSI8560 is not set | 171 | # CONFIG_KSI8560 is not set |
| 165 | # CONFIG_STX_GP3 is not set | 172 | # CONFIG_STX_GP3 is not set |
| 166 | # CONFIG_TQM8540 is not set | 173 | # CONFIG_TQM8540 is not set |
| 167 | # CONFIG_TQM8541 is not set | 174 | # CONFIG_TQM8541 is not set |
| 175 | # CONFIG_TQM8548 is not set | ||
| 168 | # CONFIG_TQM8555 is not set | 176 | # CONFIG_TQM8555 is not set |
| 169 | # CONFIG_TQM8560 is not set | 177 | # CONFIG_TQM8560 is not set |
| 170 | # CONFIG_SBC8548 is not set | 178 | # CONFIG_SBC8548 is not set |
| @@ -197,7 +205,7 @@ CONFIG_HZ_250=y | |||
| 197 | # CONFIG_HZ_300 is not set | 205 | # CONFIG_HZ_300 is not set |
| 198 | # CONFIG_HZ_1000 is not set | 206 | # CONFIG_HZ_1000 is not set |
| 199 | CONFIG_HZ=250 | 207 | CONFIG_HZ=250 |
| 200 | # CONFIG_SCHED_HRTICK is not set | 208 | CONFIG_SCHED_HRTICK=y |
| 201 | CONFIG_PREEMPT_NONE=y | 209 | CONFIG_PREEMPT_NONE=y |
| 202 | # CONFIG_PREEMPT_VOLUNTARY is not set | 210 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 203 | # CONFIG_PREEMPT is not set | 211 | # CONFIG_PREEMPT is not set |
| @@ -220,6 +228,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 220 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 228 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 221 | CONFIG_PAGEFLAGS_EXTENDED=y | 229 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 222 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 230 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 231 | CONFIG_MIGRATION=y | ||
| 223 | # CONFIG_RESOURCES_64BIT is not set | 232 | # CONFIG_RESOURCES_64BIT is not set |
| 224 | CONFIG_ZONE_DMA_FLAG=1 | 233 | CONFIG_ZONE_DMA_FLAG=1 |
| 225 | CONFIG_BOUNCE=y | 234 | CONFIG_BOUNCE=y |
| @@ -227,6 +236,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 227 | CONFIG_FORCE_MAX_ZONEORDER=11 | 236 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 228 | CONFIG_PROC_DEVICETREE=y | 237 | CONFIG_PROC_DEVICETREE=y |
| 229 | # CONFIG_CMDLINE_BOOL is not set | 238 | # CONFIG_CMDLINE_BOOL is not set |
| 239 | CONFIG_EXTRA_TARGETS="" | ||
| 230 | # CONFIG_PM is not set | 240 | # CONFIG_PM is not set |
| 231 | CONFIG_SECCOMP=y | 241 | CONFIG_SECCOMP=y |
| 232 | CONFIG_ISA_DMA_API=y | 242 | CONFIG_ISA_DMA_API=y |
| @@ -238,6 +248,7 @@ CONFIG_ZONE_DMA=y | |||
| 238 | CONFIG_PPC_INDIRECT_PCI=y | 248 | CONFIG_PPC_INDIRECT_PCI=y |
| 239 | CONFIG_FSL_SOC=y | 249 | CONFIG_FSL_SOC=y |
| 240 | CONFIG_FSL_PCI=y | 250 | CONFIG_FSL_PCI=y |
| 251 | CONFIG_PPC_PCI_CHOICE=y | ||
| 241 | CONFIG_PCI=y | 252 | CONFIG_PCI=y |
| 242 | CONFIG_PCI_DOMAINS=y | 253 | CONFIG_PCI_DOMAINS=y |
| 243 | CONFIG_PCI_SYSCALL=y | 254 | CONFIG_PCI_SYSCALL=y |
| @@ -264,10 +275,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 264 | CONFIG_PHYSICAL_START=0x00000000 | 275 | CONFIG_PHYSICAL_START=0x00000000 |
| 265 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 276 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 266 | CONFIG_TASK_SIZE=0xc0000000 | 277 | CONFIG_TASK_SIZE=0xc0000000 |
| 267 | |||
| 268 | # | ||
| 269 | # Networking | ||
| 270 | # | ||
| 271 | CONFIG_NET=y | 278 | CONFIG_NET=y |
| 272 | 279 | ||
| 273 | # | 280 | # |
| @@ -385,12 +392,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 385 | # CONFIG_BLK_DEV_XIP is not set | 392 | # CONFIG_BLK_DEV_XIP is not set |
| 386 | # CONFIG_CDROM_PKTCDVD is not set | 393 | # CONFIG_CDROM_PKTCDVD is not set |
| 387 | # CONFIG_ATA_OVER_ETH is not set | 394 | # CONFIG_ATA_OVER_ETH is not set |
| 395 | # CONFIG_BLK_DEV_HD is not set | ||
| 388 | CONFIG_MISC_DEVICES=y | 396 | CONFIG_MISC_DEVICES=y |
| 389 | # CONFIG_PHANTOM is not set | 397 | # CONFIG_PHANTOM is not set |
| 390 | # CONFIG_EEPROM_93CX6 is not set | 398 | # CONFIG_EEPROM_93CX6 is not set |
| 391 | # CONFIG_SGI_IOC4 is not set | 399 | # CONFIG_SGI_IOC4 is not set |
| 392 | # CONFIG_TIFM_CORE is not set | 400 | # CONFIG_TIFM_CORE is not set |
| 393 | # CONFIG_ENCLOSURE_SERVICES is not set | 401 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 402 | # CONFIG_HP_ILO is not set | ||
| 394 | CONFIG_HAVE_IDE=y | 403 | CONFIG_HAVE_IDE=y |
| 395 | # CONFIG_IDE is not set | 404 | # CONFIG_IDE is not set |
| 396 | 405 | ||
| @@ -468,6 +477,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 468 | # CONFIG_SCSI_NSP32 is not set | 477 | # CONFIG_SCSI_NSP32 is not set |
| 469 | # CONFIG_SCSI_DEBUG is not set | 478 | # CONFIG_SCSI_DEBUG is not set |
| 470 | # CONFIG_SCSI_SRP is not set | 479 | # CONFIG_SCSI_SRP is not set |
| 480 | # CONFIG_SCSI_DH is not set | ||
| 471 | # CONFIG_ATA is not set | 481 | # CONFIG_ATA is not set |
| 472 | # CONFIG_MD is not set | 482 | # CONFIG_MD is not set |
| 473 | # CONFIG_FUSION is not set | 483 | # CONFIG_FUSION is not set |
| @@ -475,12 +485,15 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 475 | # | 485 | # |
| 476 | # IEEE 1394 (FireWire) support | 486 | # IEEE 1394 (FireWire) support |
| 477 | # | 487 | # |
| 488 | |||
| 489 | # | ||
| 490 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 491 | # | ||
| 478 | # CONFIG_FIREWIRE is not set | 492 | # CONFIG_FIREWIRE is not set |
| 479 | # CONFIG_IEEE1394 is not set | 493 | # CONFIG_IEEE1394 is not set |
| 480 | # CONFIG_I2O is not set | 494 | # CONFIG_I2O is not set |
| 481 | # CONFIG_MACINTOSH_DRIVERS is not set | 495 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 482 | CONFIG_NETDEVICES=y | 496 | CONFIG_NETDEVICES=y |
| 483 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 484 | # CONFIG_DUMMY is not set | 497 | # CONFIG_DUMMY is not set |
| 485 | # CONFIG_BONDING is not set | 498 | # CONFIG_BONDING is not set |
| 486 | # CONFIG_MACVLAN is not set | 499 | # CONFIG_MACVLAN is not set |
| @@ -524,7 +537,6 @@ CONFIG_NETDEV_1000=y | |||
| 524 | # CONFIG_DL2K is not set | 537 | # CONFIG_DL2K is not set |
| 525 | # CONFIG_E1000 is not set | 538 | # CONFIG_E1000 is not set |
| 526 | # CONFIG_E1000E is not set | 539 | # CONFIG_E1000E is not set |
| 527 | # CONFIG_E1000E_ENABLED is not set | ||
| 528 | # CONFIG_IP1000 is not set | 540 | # CONFIG_IP1000 is not set |
| 529 | # CONFIG_IGB is not set | 541 | # CONFIG_IGB is not set |
| 530 | # CONFIG_NS83820 is not set | 542 | # CONFIG_NS83820 is not set |
| @@ -538,10 +550,10 @@ CONFIG_NETDEV_1000=y | |||
| 538 | # CONFIG_TIGON3 is not set | 550 | # CONFIG_TIGON3 is not set |
| 539 | # CONFIG_BNX2 is not set | 551 | # CONFIG_BNX2 is not set |
| 540 | CONFIG_GIANFAR=y | 552 | CONFIG_GIANFAR=y |
| 541 | CONFIG_GFAR_NAPI=y | ||
| 542 | # CONFIG_UCC_GETH is not set | 553 | # CONFIG_UCC_GETH is not set |
| 543 | # CONFIG_QLA3XXX is not set | 554 | # CONFIG_QLA3XXX is not set |
| 544 | # CONFIG_ATL1 is not set | 555 | # CONFIG_ATL1 is not set |
| 556 | # CONFIG_ATL1E is not set | ||
| 545 | CONFIG_NETDEV_10000=y | 557 | CONFIG_NETDEV_10000=y |
| 546 | # CONFIG_CHELSIO_T1 is not set | 558 | # CONFIG_CHELSIO_T1 is not set |
| 547 | # CONFIG_CHELSIO_T3 is not set | 559 | # CONFIG_CHELSIO_T3 is not set |
| @@ -648,42 +660,63 @@ CONFIG_DEVPORT=y | |||
| 648 | CONFIG_I2C=y | 660 | CONFIG_I2C=y |
| 649 | CONFIG_I2C_BOARDINFO=y | 661 | CONFIG_I2C_BOARDINFO=y |
| 650 | CONFIG_I2C_CHARDEV=y | 662 | CONFIG_I2C_CHARDEV=y |
| 663 | CONFIG_I2C_HELPER_AUTO=y | ||
| 651 | 664 | ||
| 652 | # | 665 | # |
| 653 | # I2C Hardware Bus support | 666 | # I2C Hardware Bus support |
| 654 | # | 667 | # |
| 668 | |||
| 669 | # | ||
| 670 | # PC SMBus host controller drivers | ||
| 671 | # | ||
| 655 | # CONFIG_I2C_ALI1535 is not set | 672 | # CONFIG_I2C_ALI1535 is not set |
| 656 | # CONFIG_I2C_ALI1563 is not set | 673 | # CONFIG_I2C_ALI1563 is not set |
| 657 | # CONFIG_I2C_ALI15X3 is not set | 674 | # CONFIG_I2C_ALI15X3 is not set |
| 658 | # CONFIG_I2C_AMD756 is not set | 675 | # CONFIG_I2C_AMD756 is not set |
| 659 | # CONFIG_I2C_AMD8111 is not set | 676 | # CONFIG_I2C_AMD8111 is not set |
| 660 | # CONFIG_I2C_I801 is not set | 677 | # CONFIG_I2C_I801 is not set |
| 661 | # CONFIG_I2C_I810 is not set | 678 | # CONFIG_I2C_ISCH is not set |
| 662 | # CONFIG_I2C_PIIX4 is not set | 679 | # CONFIG_I2C_PIIX4 is not set |
| 663 | CONFIG_I2C_MPC=y | ||
| 664 | # CONFIG_I2C_NFORCE2 is not set | 680 | # CONFIG_I2C_NFORCE2 is not set |
| 665 | # CONFIG_I2C_OCORES is not set | ||
| 666 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 667 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 668 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 669 | # CONFIG_I2C_SIMTEC is not set | ||
| 670 | # CONFIG_I2C_SIS5595 is not set | 681 | # CONFIG_I2C_SIS5595 is not set |
| 671 | # CONFIG_I2C_SIS630 is not set | 682 | # CONFIG_I2C_SIS630 is not set |
| 672 | # CONFIG_I2C_SIS96X is not set | 683 | # CONFIG_I2C_SIS96X is not set |
| 673 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 674 | # CONFIG_I2C_STUB is not set | ||
| 675 | # CONFIG_I2C_VIA is not set | 684 | # CONFIG_I2C_VIA is not set |
| 676 | # CONFIG_I2C_VIAPRO is not set | 685 | # CONFIG_I2C_VIAPRO is not set |
| 686 | |||
| 687 | # | ||
| 688 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 689 | # | ||
| 690 | CONFIG_I2C_MPC=y | ||
| 691 | # CONFIG_I2C_OCORES is not set | ||
| 692 | # CONFIG_I2C_SIMTEC is not set | ||
| 693 | |||
| 694 | # | ||
| 695 | # External I2C/SMBus adapter drivers | ||
| 696 | # | ||
| 697 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 698 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 699 | |||
| 700 | # | ||
| 701 | # Graphics adapter I2C/DDC channel drivers | ||
| 702 | # | ||
| 677 | # CONFIG_I2C_VOODOO3 is not set | 703 | # CONFIG_I2C_VOODOO3 is not set |
| 704 | |||
| 705 | # | ||
| 706 | # Other I2C/SMBus bus drivers | ||
| 707 | # | ||
| 678 | # CONFIG_I2C_PCA_PLATFORM is not set | 708 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 709 | # CONFIG_I2C_STUB is not set | ||
| 679 | 710 | ||
| 680 | # | 711 | # |
| 681 | # Miscellaneous I2C Chip support | 712 | # Miscellaneous I2C Chip support |
| 682 | # | 713 | # |
| 683 | # CONFIG_DS1682 is not set | 714 | # CONFIG_DS1682 is not set |
| 715 | # CONFIG_AT24 is not set | ||
| 684 | # CONFIG_SENSORS_EEPROM is not set | 716 | # CONFIG_SENSORS_EEPROM is not set |
| 685 | # CONFIG_SENSORS_PCF8574 is not set | 717 | # CONFIG_SENSORS_PCF8574 is not set |
| 686 | # CONFIG_PCF8575 is not set | 718 | # CONFIG_PCF8575 is not set |
| 719 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 687 | # CONFIG_SENSORS_PCF8591 is not set | 720 | # CONFIG_SENSORS_PCF8591 is not set |
| 688 | # CONFIG_SENSORS_MAX6875 is not set | 721 | # CONFIG_SENSORS_MAX6875 is not set |
| 689 | # CONFIG_SENSORS_TSL2550 is not set | 722 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -692,10 +725,13 @@ CONFIG_I2C_MPC=y | |||
| 692 | # CONFIG_I2C_DEBUG_BUS is not set | 725 | # CONFIG_I2C_DEBUG_BUS is not set |
| 693 | # CONFIG_I2C_DEBUG_CHIP is not set | 726 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 694 | # CONFIG_SPI is not set | 727 | # CONFIG_SPI is not set |
| 728 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 729 | # CONFIG_GPIOLIB is not set | ||
| 695 | # CONFIG_W1 is not set | 730 | # CONFIG_W1 is not set |
| 696 | # CONFIG_POWER_SUPPLY is not set | 731 | # CONFIG_POWER_SUPPLY is not set |
| 697 | CONFIG_HWMON=y | 732 | CONFIG_HWMON=y |
| 698 | # CONFIG_HWMON_VID is not set | 733 | # CONFIG_HWMON_VID is not set |
| 734 | # CONFIG_SENSORS_AD7414 is not set | ||
| 699 | # CONFIG_SENSORS_AD7418 is not set | 735 | # CONFIG_SENSORS_AD7418 is not set |
| 700 | # CONFIG_SENSORS_ADM1021 is not set | 736 | # CONFIG_SENSORS_ADM1021 is not set |
| 701 | # CONFIG_SENSORS_ADM1025 is not set | 737 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -749,6 +785,7 @@ CONFIG_HWMON=y | |||
| 749 | # CONFIG_SENSORS_W83627EHF is not set | 785 | # CONFIG_SENSORS_W83627EHF is not set |
| 750 | # CONFIG_HWMON_DEBUG_CHIP is not set | 786 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 751 | # CONFIG_THERMAL is not set | 787 | # CONFIG_THERMAL is not set |
| 788 | # CONFIG_THERMAL_HWMON is not set | ||
| 752 | CONFIG_WATCHDOG=y | 789 | CONFIG_WATCHDOG=y |
| 753 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 790 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 754 | 791 | ||
| @@ -756,6 +793,7 @@ CONFIG_WATCHDOG=y | |||
| 756 | # Watchdog Device Drivers | 793 | # Watchdog Device Drivers |
| 757 | # | 794 | # |
| 758 | # CONFIG_SOFT_WATCHDOG is not set | 795 | # CONFIG_SOFT_WATCHDOG is not set |
| 796 | # CONFIG_ALIM7101_WDT is not set | ||
| 759 | # CONFIG_BOOKE_WDT is not set | 797 | # CONFIG_BOOKE_WDT is not set |
| 760 | 798 | ||
| 761 | # | 799 | # |
| @@ -773,8 +811,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 773 | # | 811 | # |
| 774 | # Multifunction device drivers | 812 | # Multifunction device drivers |
| 775 | # | 813 | # |
| 814 | # CONFIG_MFD_CORE is not set | ||
| 776 | # CONFIG_MFD_SM501 is not set | 815 | # CONFIG_MFD_SM501 is not set |
| 777 | # CONFIG_HTC_PASIC3 is not set | 816 | # CONFIG_HTC_PASIC3 is not set |
| 817 | # CONFIG_MFD_TMIO is not set | ||
| 778 | 818 | ||
| 779 | # | 819 | # |
| 780 | # Multimedia devices | 820 | # Multimedia devices |
| @@ -806,10 +846,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 806 | # Display device support | 846 | # Display device support |
| 807 | # | 847 | # |
| 808 | # CONFIG_DISPLAY_SUPPORT is not set | 848 | # CONFIG_DISPLAY_SUPPORT is not set |
| 809 | |||
| 810 | # | ||
| 811 | # Sound | ||
| 812 | # | ||
| 813 | # CONFIG_SOUND is not set | 849 | # CONFIG_SOUND is not set |
| 814 | CONFIG_HID_SUPPORT=y | 850 | CONFIG_HID_SUPPORT=y |
| 815 | CONFIG_HID=y | 851 | CONFIG_HID=y |
| @@ -824,6 +860,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 824 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 860 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 825 | 861 | ||
| 826 | # | 862 | # |
| 863 | # Enable Host or Gadget support to see Inventra options | ||
| 864 | # | ||
| 865 | |||
| 866 | # | ||
| 827 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 867 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 828 | # | 868 | # |
| 829 | # CONFIG_USB_GADGET is not set | 869 | # CONFIG_USB_GADGET is not set |
| @@ -862,6 +902,7 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 862 | # CONFIG_RTC_DRV_PCF8583 is not set | 902 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 863 | # CONFIG_RTC_DRV_M41T80 is not set | 903 | # CONFIG_RTC_DRV_M41T80 is not set |
| 864 | # CONFIG_RTC_DRV_S35390A is not set | 904 | # CONFIG_RTC_DRV_S35390A is not set |
| 905 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 865 | 906 | ||
| 866 | # | 907 | # |
| 867 | # SPI RTC drivers | 908 | # SPI RTC drivers |
| @@ -950,6 +991,7 @@ CONFIG_TMPFS=y | |||
| 950 | # CONFIG_CRAMFS is not set | 991 | # CONFIG_CRAMFS is not set |
| 951 | # CONFIG_VXFS_FS is not set | 992 | # CONFIG_VXFS_FS is not set |
| 952 | # CONFIG_MINIX_FS is not set | 993 | # CONFIG_MINIX_FS is not set |
| 994 | # CONFIG_OMFS_FS is not set | ||
| 953 | # CONFIG_HPFS_FS is not set | 995 | # CONFIG_HPFS_FS is not set |
| 954 | # CONFIG_QNX4FS_FS is not set | 996 | # CONFIG_QNX4FS_FS is not set |
| 955 | # CONFIG_ROMFS_FS is not set | 997 | # CONFIG_ROMFS_FS is not set |
| @@ -960,14 +1002,13 @@ CONFIG_NFS_FS=y | |||
| 960 | CONFIG_NFS_V3=y | 1002 | CONFIG_NFS_V3=y |
| 961 | # CONFIG_NFS_V3_ACL is not set | 1003 | # CONFIG_NFS_V3_ACL is not set |
| 962 | CONFIG_NFS_V4=y | 1004 | CONFIG_NFS_V4=y |
| 963 | # CONFIG_NFSD is not set | ||
| 964 | CONFIG_ROOT_NFS=y | 1005 | CONFIG_ROOT_NFS=y |
| 1006 | # CONFIG_NFSD is not set | ||
| 965 | CONFIG_LOCKD=y | 1007 | CONFIG_LOCKD=y |
| 966 | CONFIG_LOCKD_V4=y | 1008 | CONFIG_LOCKD_V4=y |
| 967 | CONFIG_NFS_COMMON=y | 1009 | CONFIG_NFS_COMMON=y |
| 968 | CONFIG_SUNRPC=y | 1010 | CONFIG_SUNRPC=y |
| 969 | CONFIG_SUNRPC_GSS=y | 1011 | CONFIG_SUNRPC_GSS=y |
| 970 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 971 | CONFIG_RPCSEC_GSS_KRB5=y | 1012 | CONFIG_RPCSEC_GSS_KRB5=y |
| 972 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1013 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 973 | # CONFIG_SMB_FS is not set | 1014 | # CONFIG_SMB_FS is not set |
| @@ -995,6 +1036,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 995 | # CONFIG_SYSV68_PARTITION is not set | 1036 | # CONFIG_SYSV68_PARTITION is not set |
| 996 | # CONFIG_NLS is not set | 1037 | # CONFIG_NLS is not set |
| 997 | # CONFIG_DLM is not set | 1038 | # CONFIG_DLM is not set |
| 1039 | # CONFIG_QE_GPIO is not set | ||
| 998 | 1040 | ||
| 999 | # | 1041 | # |
| 1000 | # Library routines | 1042 | # Library routines |
| @@ -1003,6 +1045,7 @@ CONFIG_BITREVERSE=y | |||
| 1003 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1045 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1004 | # CONFIG_CRC_CCITT is not set | 1046 | # CONFIG_CRC_CCITT is not set |
| 1005 | # CONFIG_CRC16 is not set | 1047 | # CONFIG_CRC16 is not set |
| 1048 | # CONFIG_CRC_T10DIF is not set | ||
| 1006 | # CONFIG_CRC_ITU_T is not set | 1049 | # CONFIG_CRC_ITU_T is not set |
| 1007 | CONFIG_CRC32=y | 1050 | CONFIG_CRC32=y |
| 1008 | # CONFIG_CRC7 is not set | 1051 | # CONFIG_CRC7 is not set |
| @@ -1027,6 +1070,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 1027 | CONFIG_DEBUG_KERNEL=y | 1070 | CONFIG_DEBUG_KERNEL=y |
| 1028 | # CONFIG_DEBUG_SHIRQ is not set | 1071 | # CONFIG_DEBUG_SHIRQ is not set |
| 1029 | CONFIG_DETECT_SOFTLOCKUP=y | 1072 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1073 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1074 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1030 | CONFIG_SCHED_DEBUG=y | 1075 | CONFIG_SCHED_DEBUG=y |
| 1031 | # CONFIG_SCHEDSTATS is not set | 1076 | # CONFIG_SCHEDSTATS is not set |
| 1032 | # CONFIG_TIMER_STATS is not set | 1077 | # CONFIG_TIMER_STATS is not set |
| @@ -1044,17 +1089,28 @@ CONFIG_SCHED_DEBUG=y | |||
| 1044 | # CONFIG_DEBUG_INFO is not set | 1089 | # CONFIG_DEBUG_INFO is not set |
| 1045 | # CONFIG_DEBUG_VM is not set | 1090 | # CONFIG_DEBUG_VM is not set |
| 1046 | # CONFIG_DEBUG_WRITECOUNT is not set | 1091 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1092 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1047 | # CONFIG_DEBUG_LIST is not set | 1093 | # CONFIG_DEBUG_LIST is not set |
| 1048 | # CONFIG_DEBUG_SG is not set | 1094 | # CONFIG_DEBUG_SG is not set |
| 1049 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1095 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1050 | # CONFIG_RCU_TORTURE_TEST is not set | 1096 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1051 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1097 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1052 | # CONFIG_FAULT_INJECTION is not set | 1098 | # CONFIG_FAULT_INJECTION is not set |
| 1099 | # CONFIG_LATENCYTOP is not set | ||
| 1100 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1101 | CONFIG_HAVE_FTRACE=y | ||
| 1102 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1103 | # CONFIG_FTRACE is not set | ||
| 1104 | # CONFIG_SCHED_TRACER is not set | ||
| 1105 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1053 | # CONFIG_SAMPLES is not set | 1106 | # CONFIG_SAMPLES is not set |
| 1107 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1108 | # CONFIG_KGDB is not set | ||
| 1054 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1109 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1055 | # CONFIG_DEBUG_STACK_USAGE is not set | 1110 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1056 | # CONFIG_DEBUG_PAGEALLOC is not set | 1111 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1057 | CONFIG_DEBUGGER=y | 1112 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1113 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1058 | # CONFIG_XMON is not set | 1114 | # CONFIG_XMON is not set |
| 1059 | # CONFIG_IRQSTACKS is not set | 1115 | # CONFIG_IRQSTACKS is not set |
| 1060 | # CONFIG_BDI_SWITCH is not set | 1116 | # CONFIG_BDI_SWITCH is not set |
| @@ -1122,6 +1178,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1122 | # CONFIG_CRYPTO_MD4 is not set | 1178 | # CONFIG_CRYPTO_MD4 is not set |
| 1123 | CONFIG_CRYPTO_MD5=y | 1179 | CONFIG_CRYPTO_MD5=y |
| 1124 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1180 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1181 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1182 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1183 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1184 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1125 | # CONFIG_CRYPTO_SHA1 is not set | 1185 | # CONFIG_CRYPTO_SHA1 is not set |
| 1126 | # CONFIG_CRYPTO_SHA256 is not set | 1186 | # CONFIG_CRYPTO_SHA256 is not set |
| 1127 | # CONFIG_CRYPTO_SHA512 is not set | 1187 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1154,6 +1214,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1154 | # CONFIG_CRYPTO_LZO is not set | 1214 | # CONFIG_CRYPTO_LZO is not set |
| 1155 | CONFIG_CRYPTO_HW=y | 1215 | CONFIG_CRYPTO_HW=y |
| 1156 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1216 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1217 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1157 | # CONFIG_PPC_CLOCK is not set | 1218 | # CONFIG_PPC_CLOCK is not set |
| 1158 | CONFIG_PPC_LIB_RHEAP=y | 1219 | CONFIG_PPC_LIB_RHEAP=y |
| 1159 | # CONFIG_VIRTUALIZATION is not set | 1220 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8572_ds_defconfig b/arch/powerpc/configs/85xx/mpc8572_ds_defconfig index 164fd9606ee6..eda45bb8a13f 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:35 2008 | 4 | # Thu Aug 21 07:21:42 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -92,7 +94,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 92 | CONFIG_SYSCTL=y | 94 | CONFIG_SYSCTL=y |
| 93 | CONFIG_EMBEDDED=y | 95 | CONFIG_EMBEDDED=y |
| 94 | CONFIG_SYSCTL_SYSCALL=y | 96 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 96 | CONFIG_KALLSYMS=y | 97 | CONFIG_KALLSYMS=y |
| 97 | CONFIG_KALLSYMS_ALL=y | 98 | CONFIG_KALLSYMS_ALL=y |
| 98 | CONFIG_KALLSYMS_EXTRA_PASS=y | 99 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -118,10 +119,16 @@ CONFIG_SLUB=y | |||
| 118 | # CONFIG_MARKERS is not set | 119 | # 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 |
| 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 123 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 121 | CONFIG_HAVE_KPROBES=y | 124 | CONFIG_HAVE_KPROBES=y |
| 122 | CONFIG_HAVE_KRETPROBES=y | 125 | CONFIG_HAVE_KRETPROBES=y |
| 126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 123 | # CONFIG_HAVE_DMA_ATTRS is not set | 127 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 128 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 129 | # CONFIG_HAVE_CLK is not set | ||
| 124 | CONFIG_PROC_PAGE_MONITOR=y | 130 | CONFIG_PROC_PAGE_MONITOR=y |
| 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 125 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
| 126 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
| 127 | # CONFIG_TINY_SHMEM is not set | 134 | # CONFIG_TINY_SHMEM is not set |
| @@ -138,6 +145,7 @@ CONFIG_LBD=y | |||
| 138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 145 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 139 | # CONFIG_LSF is not set | 146 | # CONFIG_LSF is not set |
| 140 | # CONFIG_BLK_DEV_BSG is not set | 147 | # CONFIG_BLK_DEV_BSG is not set |
| 148 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 141 | 149 | ||
| 142 | # | 150 | # |
| 143 | # IO Schedulers | 151 | # IO Schedulers |
| @@ -156,8 +164,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 156 | # | 164 | # |
| 157 | # Platform support | 165 | # Platform support |
| 158 | # | 166 | # |
| 159 | # CONFIG_PPC_MPC512x is not set | ||
| 160 | # CONFIG_PPC_MPC5121 is not set | ||
| 161 | # CONFIG_PPC_CELL is not set | 167 | # CONFIG_PPC_CELL is not set |
| 162 | # CONFIG_PPC_CELL_NATIVE is not set | 168 | # CONFIG_PPC_CELL_NATIVE is not set |
| 163 | # CONFIG_PQ2ADS is not set | 169 | # CONFIG_PQ2ADS is not set |
| @@ -166,11 +172,13 @@ CONFIG_MPC85xx=y | |||
| 166 | # CONFIG_MPC8560_ADS is not set | 172 | # CONFIG_MPC8560_ADS is not set |
| 167 | # CONFIG_MPC85xx_CDS is not set | 173 | # CONFIG_MPC85xx_CDS is not set |
| 168 | # CONFIG_MPC85xx_MDS is not set | 174 | # CONFIG_MPC85xx_MDS is not set |
| 175 | # CONFIG_MPC8536_DS is not set | ||
| 169 | CONFIG_MPC85xx_DS=y | 176 | CONFIG_MPC85xx_DS=y |
| 170 | # CONFIG_KSI8560 is not set | 177 | # CONFIG_KSI8560 is not set |
| 171 | # CONFIG_STX_GP3 is not set | 178 | # CONFIG_STX_GP3 is not set |
| 172 | # CONFIG_TQM8540 is not set | 179 | # CONFIG_TQM8540 is not set |
| 173 | # CONFIG_TQM8541 is not set | 180 | # CONFIG_TQM8541 is not set |
| 181 | # CONFIG_TQM8548 is not set | ||
| 174 | # CONFIG_TQM8555 is not set | 182 | # CONFIG_TQM8555 is not set |
| 175 | # CONFIG_TQM8560 is not set | 183 | # CONFIG_TQM8560 is not set |
| 176 | # CONFIG_SBC8548 is not set | 184 | # CONFIG_SBC8548 is not set |
| @@ -202,7 +210,7 @@ CONFIG_HZ_250=y | |||
| 202 | # CONFIG_HZ_300 is not set | 210 | # CONFIG_HZ_300 is not set |
| 203 | # CONFIG_HZ_1000 is not set | 211 | # CONFIG_HZ_1000 is not set |
| 204 | CONFIG_HZ=250 | 212 | CONFIG_HZ=250 |
| 205 | # CONFIG_SCHED_HRTICK is not set | 213 | CONFIG_SCHED_HRTICK=y |
| 206 | CONFIG_PREEMPT_NONE=y | 214 | CONFIG_PREEMPT_NONE=y |
| 207 | # CONFIG_PREEMPT_VOLUNTARY is not set | 215 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 208 | # CONFIG_PREEMPT is not set | 216 | # CONFIG_PREEMPT is not set |
| @@ -225,6 +233,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 225 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 233 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 226 | CONFIG_PAGEFLAGS_EXTENDED=y | 234 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 235 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 236 | CONFIG_MIGRATION=y | ||
| 228 | # CONFIG_RESOURCES_64BIT is not set | 237 | # CONFIG_RESOURCES_64BIT is not set |
| 229 | CONFIG_ZONE_DMA_FLAG=1 | 238 | CONFIG_ZONE_DMA_FLAG=1 |
| 230 | CONFIG_BOUNCE=y | 239 | CONFIG_BOUNCE=y |
| @@ -232,6 +241,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 232 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 233 | CONFIG_PROC_DEVICETREE=y | 242 | CONFIG_PROC_DEVICETREE=y |
| 234 | # CONFIG_CMDLINE_BOOL is not set | 243 | # CONFIG_CMDLINE_BOOL is not set |
| 244 | CONFIG_EXTRA_TARGETS="" | ||
| 235 | # CONFIG_PM is not set | 245 | # CONFIG_PM is not set |
| 236 | CONFIG_SECCOMP=y | 246 | CONFIG_SECCOMP=y |
| 237 | CONFIG_ISA_DMA_API=y | 247 | CONFIG_ISA_DMA_API=y |
| @@ -244,6 +254,7 @@ CONFIG_GENERIC_ISA_DMA=y | |||
| 244 | CONFIG_PPC_INDIRECT_PCI=y | 254 | CONFIG_PPC_INDIRECT_PCI=y |
| 245 | CONFIG_FSL_SOC=y | 255 | CONFIG_FSL_SOC=y |
| 246 | CONFIG_FSL_PCI=y | 256 | CONFIG_FSL_PCI=y |
| 257 | CONFIG_PPC_PCI_CHOICE=y | ||
| 247 | CONFIG_PCI=y | 258 | CONFIG_PCI=y |
| 248 | CONFIG_PCI_DOMAINS=y | 259 | CONFIG_PCI_DOMAINS=y |
| 249 | CONFIG_PCI_SYSCALL=y | 260 | CONFIG_PCI_SYSCALL=y |
| @@ -270,10 +281,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 270 | CONFIG_PHYSICAL_START=0x00000000 | 281 | CONFIG_PHYSICAL_START=0x00000000 |
| 271 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 282 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 272 | CONFIG_TASK_SIZE=0xc0000000 | 283 | CONFIG_TASK_SIZE=0xc0000000 |
| 273 | |||
| 274 | # | ||
| 275 | # Networking | ||
| 276 | # | ||
| 277 | CONFIG_NET=y | 284 | CONFIG_NET=y |
| 278 | 285 | ||
| 279 | # | 286 | # |
| @@ -399,6 +406,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 399 | CONFIG_STANDALONE=y | 406 | CONFIG_STANDALONE=y |
| 400 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 407 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 401 | CONFIG_FW_LOADER=y | 408 | CONFIG_FW_LOADER=y |
| 409 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 410 | CONFIG_EXTRA_FIRMWARE="" | ||
| 402 | # CONFIG_DEBUG_DRIVER is not set | 411 | # CONFIG_DEBUG_DRIVER is not set |
| 403 | # CONFIG_DEBUG_DEVRES is not set | 412 | # CONFIG_DEBUG_DEVRES is not set |
| 404 | # CONFIG_SYS_HYPERVISOR is not set | 413 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -425,12 +434,14 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 425 | # CONFIG_BLK_DEV_XIP is not set | 434 | # CONFIG_BLK_DEV_XIP is not set |
| 426 | # CONFIG_CDROM_PKTCDVD is not set | 435 | # CONFIG_CDROM_PKTCDVD is not set |
| 427 | # CONFIG_ATA_OVER_ETH is not set | 436 | # CONFIG_ATA_OVER_ETH is not set |
| 437 | # CONFIG_BLK_DEV_HD is not set | ||
| 428 | CONFIG_MISC_DEVICES=y | 438 | CONFIG_MISC_DEVICES=y |
| 429 | # CONFIG_PHANTOM is not set | 439 | # CONFIG_PHANTOM is not set |
| 430 | # CONFIG_EEPROM_93CX6 is not set | 440 | # CONFIG_EEPROM_93CX6 is not set |
| 431 | # CONFIG_SGI_IOC4 is not set | 441 | # CONFIG_SGI_IOC4 is not set |
| 432 | # CONFIG_TIFM_CORE is not set | 442 | # CONFIG_TIFM_CORE is not set |
| 433 | # CONFIG_ENCLOSURE_SERVICES is not set | 443 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 444 | # CONFIG_HP_ILO is not set | ||
| 434 | CONFIG_HAVE_IDE=y | 445 | CONFIG_HAVE_IDE=y |
| 435 | # CONFIG_IDE is not set | 446 | # CONFIG_IDE is not set |
| 436 | 447 | ||
| @@ -510,6 +521,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 510 | # CONFIG_SCSI_NSP32 is not set | 521 | # CONFIG_SCSI_NSP32 is not set |
| 511 | # CONFIG_SCSI_DEBUG is not set | 522 | # CONFIG_SCSI_DEBUG is not set |
| 512 | # CONFIG_SCSI_SRP is not set | 523 | # CONFIG_SCSI_SRP is not set |
| 524 | # CONFIG_SCSI_DH is not set | ||
| 513 | CONFIG_ATA=y | 525 | CONFIG_ATA=y |
| 514 | # CONFIG_ATA_NONSTANDARD is not set | 526 | # CONFIG_ATA_NONSTANDARD is not set |
| 515 | CONFIG_SATA_PMP=y | 527 | CONFIG_SATA_PMP=y |
| @@ -577,12 +589,15 @@ CONFIG_PATA_ALI=y | |||
| 577 | # | 589 | # |
| 578 | # IEEE 1394 (FireWire) support | 590 | # IEEE 1394 (FireWire) support |
| 579 | # | 591 | # |
| 592 | |||
| 593 | # | ||
| 594 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 595 | # | ||
| 580 | # CONFIG_FIREWIRE is not set | 596 | # CONFIG_FIREWIRE is not set |
| 581 | # CONFIG_IEEE1394 is not set | 597 | # CONFIG_IEEE1394 is not set |
| 582 | # CONFIG_I2O is not set | 598 | # CONFIG_I2O is not set |
| 583 | # CONFIG_MACINTOSH_DRIVERS is not set | 599 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 584 | CONFIG_NETDEVICES=y | 600 | CONFIG_NETDEVICES=y |
| 585 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 586 | CONFIG_DUMMY=y | 601 | CONFIG_DUMMY=y |
| 587 | # CONFIG_BONDING is not set | 602 | # CONFIG_BONDING is not set |
| 588 | # CONFIG_MACVLAN is not set | 603 | # CONFIG_MACVLAN is not set |
| @@ -626,7 +641,6 @@ CONFIG_NETDEV_1000=y | |||
| 626 | # CONFIG_DL2K is not set | 641 | # CONFIG_DL2K is not set |
| 627 | # CONFIG_E1000 is not set | 642 | # CONFIG_E1000 is not set |
| 628 | # CONFIG_E1000E is not set | 643 | # CONFIG_E1000E is not set |
| 629 | # CONFIG_E1000E_ENABLED is not set | ||
| 630 | # CONFIG_IP1000 is not set | 644 | # CONFIG_IP1000 is not set |
| 631 | # CONFIG_IGB is not set | 645 | # CONFIG_IGB is not set |
| 632 | # CONFIG_NS83820 is not set | 646 | # CONFIG_NS83820 is not set |
| @@ -640,9 +654,9 @@ CONFIG_NETDEV_1000=y | |||
| 640 | # CONFIG_TIGON3 is not set | 654 | # CONFIG_TIGON3 is not set |
| 641 | # CONFIG_BNX2 is not set | 655 | # CONFIG_BNX2 is not set |
| 642 | CONFIG_GIANFAR=y | 656 | CONFIG_GIANFAR=y |
| 643 | CONFIG_GFAR_NAPI=y | ||
| 644 | # CONFIG_QLA3XXX is not set | 657 | # CONFIG_QLA3XXX is not set |
| 645 | # CONFIG_ATL1 is not set | 658 | # CONFIG_ATL1 is not set |
| 659 | # CONFIG_ATL1E is not set | ||
| 646 | CONFIG_NETDEV_10000=y | 660 | CONFIG_NETDEV_10000=y |
| 647 | # CONFIG_CHELSIO_T1 is not set | 661 | # CONFIG_CHELSIO_T1 is not set |
| 648 | # CONFIG_CHELSIO_T3 is not set | 662 | # CONFIG_CHELSIO_T3 is not set |
| @@ -719,12 +733,14 @@ CONFIG_SERIO_SERPORT=y | |||
| 719 | # CONFIG_SERIO_PCIPS2 is not set | 733 | # CONFIG_SERIO_PCIPS2 is not set |
| 720 | CONFIG_SERIO_LIBPS2=y | 734 | CONFIG_SERIO_LIBPS2=y |
| 721 | # CONFIG_SERIO_RAW is not set | 735 | # CONFIG_SERIO_RAW is not set |
| 736 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 722 | # CONFIG_GAMEPORT is not set | 737 | # CONFIG_GAMEPORT is not set |
| 723 | 738 | ||
| 724 | # | 739 | # |
| 725 | # Character devices | 740 | # Character devices |
| 726 | # | 741 | # |
| 727 | CONFIG_VT=y | 742 | CONFIG_VT=y |
| 743 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 728 | CONFIG_VT_CONSOLE=y | 744 | CONFIG_VT_CONSOLE=y |
| 729 | CONFIG_HW_CONSOLE=y | 745 | CONFIG_HW_CONSOLE=y |
| 730 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 746 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -758,7 +774,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 758 | CONFIG_LEGACY_PTYS=y | 774 | CONFIG_LEGACY_PTYS=y |
| 759 | CONFIG_LEGACY_PTY_COUNT=256 | 775 | CONFIG_LEGACY_PTY_COUNT=256 |
| 760 | # CONFIG_IPMI_HANDLER is not set | 776 | # CONFIG_IPMI_HANDLER is not set |
| 761 | # CONFIG_HW_RANDOM is not set | 777 | CONFIG_HW_RANDOM=y |
| 762 | CONFIG_NVRAM=y | 778 | CONFIG_NVRAM=y |
| 763 | # CONFIG_R3964 is not set | 779 | # CONFIG_R3964 is not set |
| 764 | # CONFIG_APPLICOM is not set | 780 | # CONFIG_APPLICOM is not set |
| @@ -768,43 +784,64 @@ CONFIG_DEVPORT=y | |||
| 768 | CONFIG_I2C=y | 784 | CONFIG_I2C=y |
| 769 | CONFIG_I2C_BOARDINFO=y | 785 | CONFIG_I2C_BOARDINFO=y |
| 770 | # CONFIG_I2C_CHARDEV is not set | 786 | # CONFIG_I2C_CHARDEV is not set |
| 787 | CONFIG_I2C_HELPER_AUTO=y | ||
| 771 | 788 | ||
| 772 | # | 789 | # |
| 773 | # I2C Hardware Bus support | 790 | # I2C Hardware Bus support |
| 774 | # | 791 | # |
| 792 | |||
| 793 | # | ||
| 794 | # PC SMBus host controller drivers | ||
| 795 | # | ||
| 775 | # CONFIG_I2C_ALI1535 is not set | 796 | # CONFIG_I2C_ALI1535 is not set |
| 776 | # CONFIG_I2C_ALI1563 is not set | 797 | # CONFIG_I2C_ALI1563 is not set |
| 777 | # CONFIG_I2C_ALI15X3 is not set | 798 | # CONFIG_I2C_ALI15X3 is not set |
| 778 | # CONFIG_I2C_AMD756 is not set | 799 | # CONFIG_I2C_AMD756 is not set |
| 779 | # CONFIG_I2C_AMD8111 is not set | 800 | # CONFIG_I2C_AMD8111 is not set |
| 780 | # CONFIG_I2C_I801 is not set | 801 | # CONFIG_I2C_I801 is not set |
| 781 | # CONFIG_I2C_I810 is not set | 802 | # CONFIG_I2C_ISCH is not set |
| 782 | # CONFIG_I2C_PIIX4 is not set | 803 | # CONFIG_I2C_PIIX4 is not set |
| 783 | CONFIG_I2C_MPC=y | ||
| 784 | # CONFIG_I2C_NFORCE2 is not set | 804 | # CONFIG_I2C_NFORCE2 is not set |
| 785 | # CONFIG_I2C_OCORES is not set | ||
| 786 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 787 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 788 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 789 | # CONFIG_I2C_SIMTEC is not set | ||
| 790 | # CONFIG_I2C_SIS5595 is not set | 805 | # CONFIG_I2C_SIS5595 is not set |
| 791 | # CONFIG_I2C_SIS630 is not set | 806 | # CONFIG_I2C_SIS630 is not set |
| 792 | # CONFIG_I2C_SIS96X is not set | 807 | # CONFIG_I2C_SIS96X is not set |
| 793 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 794 | # CONFIG_I2C_STUB is not set | ||
| 795 | # CONFIG_I2C_TINY_USB is not set | ||
| 796 | # CONFIG_I2C_VIA is not set | 808 | # CONFIG_I2C_VIA is not set |
| 797 | # CONFIG_I2C_VIAPRO is not set | 809 | # CONFIG_I2C_VIAPRO is not set |
| 810 | |||
| 811 | # | ||
| 812 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 813 | # | ||
| 814 | CONFIG_I2C_MPC=y | ||
| 815 | # CONFIG_I2C_OCORES is not set | ||
| 816 | # CONFIG_I2C_SIMTEC is not set | ||
| 817 | |||
| 818 | # | ||
| 819 | # External I2C/SMBus adapter drivers | ||
| 820 | # | ||
| 821 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 822 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 823 | # CONFIG_I2C_TINY_USB is not set | ||
| 824 | |||
| 825 | # | ||
| 826 | # Graphics adapter I2C/DDC channel drivers | ||
| 827 | # | ||
| 798 | # CONFIG_I2C_VOODOO3 is not set | 828 | # CONFIG_I2C_VOODOO3 is not set |
| 829 | |||
| 830 | # | ||
| 831 | # Other I2C/SMBus bus drivers | ||
| 832 | # | ||
| 799 | # CONFIG_I2C_PCA_PLATFORM is not set | 833 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 834 | # CONFIG_I2C_STUB is not set | ||
| 800 | 835 | ||
| 801 | # | 836 | # |
| 802 | # Miscellaneous I2C Chip support | 837 | # Miscellaneous I2C Chip support |
| 803 | # | 838 | # |
| 804 | # CONFIG_DS1682 is not set | 839 | # CONFIG_DS1682 is not set |
| 840 | # CONFIG_AT24 is not set | ||
| 805 | CONFIG_SENSORS_EEPROM=y | 841 | CONFIG_SENSORS_EEPROM=y |
| 806 | # CONFIG_SENSORS_PCF8574 is not set | 842 | # CONFIG_SENSORS_PCF8574 is not set |
| 807 | # CONFIG_PCF8575 is not set | 843 | # CONFIG_PCF8575 is not set |
| 844 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 808 | # CONFIG_SENSORS_PCF8591 is not set | 845 | # CONFIG_SENSORS_PCF8591 is not set |
| 809 | # CONFIG_SENSORS_MAX6875 is not set | 846 | # CONFIG_SENSORS_MAX6875 is not set |
| 810 | # CONFIG_SENSORS_TSL2550 is not set | 847 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -813,10 +850,13 @@ CONFIG_SENSORS_EEPROM=y | |||
| 813 | # CONFIG_I2C_DEBUG_BUS is not set | 850 | # CONFIG_I2C_DEBUG_BUS is not set |
| 814 | # CONFIG_I2C_DEBUG_CHIP is not set | 851 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 815 | # CONFIG_SPI is not set | 852 | # CONFIG_SPI is not set |
| 853 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 854 | # CONFIG_GPIOLIB is not set | ||
| 816 | # CONFIG_W1 is not set | 855 | # CONFIG_W1 is not set |
| 817 | # CONFIG_POWER_SUPPLY is not set | 856 | # CONFIG_POWER_SUPPLY is not set |
| 818 | # CONFIG_HWMON is not set | 857 | # CONFIG_HWMON is not set |
| 819 | # CONFIG_THERMAL is not set | 858 | # CONFIG_THERMAL is not set |
| 859 | # CONFIG_THERMAL_HWMON is not set | ||
| 820 | # CONFIG_WATCHDOG is not set | 860 | # CONFIG_WATCHDOG is not set |
| 821 | 861 | ||
| 822 | # | 862 | # |
| @@ -828,8 +868,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 828 | # | 868 | # |
| 829 | # Multifunction device drivers | 869 | # Multifunction device drivers |
| 830 | # | 870 | # |
| 871 | # CONFIG_MFD_CORE is not set | ||
| 831 | # CONFIG_MFD_SM501 is not set | 872 | # CONFIG_MFD_SM501 is not set |
| 832 | # CONFIG_HTC_PASIC3 is not set | 873 | # CONFIG_HTC_PASIC3 is not set |
| 874 | # CONFIG_MFD_TMIO is not set | ||
| 833 | 875 | ||
| 834 | # | 876 | # |
| 835 | # Multimedia devices | 877 | # Multimedia devices |
| @@ -871,6 +913,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 871 | # CONFIG_DVB_TTUSB_BUDGET is not set | 913 | # CONFIG_DVB_TTUSB_BUDGET is not set |
| 872 | # CONFIG_DVB_TTUSB_DEC is not set | 914 | # CONFIG_DVB_TTUSB_DEC is not set |
| 873 | # CONFIG_DVB_CINERGYT2 is not set | 915 | # CONFIG_DVB_CINERGYT2 is not set |
| 916 | # CONFIG_DVB_SIANO_SMS1XXX is not set | ||
| 874 | 917 | ||
| 875 | # | 918 | # |
| 876 | # Supported FlexCopII (B2C2) Adapters | 919 | # Supported FlexCopII (B2C2) Adapters |
| @@ -917,6 +960,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 917 | # CONFIG_DVB_SP887X is not set | 960 | # CONFIG_DVB_SP887X is not set |
| 918 | # CONFIG_DVB_CX22700 is not set | 961 | # CONFIG_DVB_CX22700 is not set |
| 919 | # CONFIG_DVB_CX22702 is not set | 962 | # CONFIG_DVB_CX22702 is not set |
| 963 | # CONFIG_DVB_DRX397XD is not set | ||
| 920 | # CONFIG_DVB_L64781 is not set | 964 | # CONFIG_DVB_L64781 is not set |
| 921 | # CONFIG_DVB_TDA1004X is not set | 965 | # CONFIG_DVB_TDA1004X is not set |
| 922 | # CONFIG_DVB_NXT6000 is not set | 966 | # CONFIG_DVB_NXT6000 is not set |
| @@ -984,15 +1028,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 984 | CONFIG_VGA_CONSOLE=y | 1028 | CONFIG_VGA_CONSOLE=y |
| 985 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | 1029 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set |
| 986 | CONFIG_DUMMY_CONSOLE=y | 1030 | CONFIG_DUMMY_CONSOLE=y |
| 987 | |||
| 988 | # | ||
| 989 | # Sound | ||
| 990 | # | ||
| 991 | CONFIG_SOUND=y | 1031 | CONFIG_SOUND=y |
| 992 | |||
| 993 | # | ||
| 994 | # Advanced Linux Sound Architecture | ||
| 995 | # | ||
| 996 | CONFIG_SND=y | 1032 | CONFIG_SND=y |
| 997 | CONFIG_SND_TIMER=y | 1033 | CONFIG_SND_TIMER=y |
| 998 | CONFIG_SND_PCM=y | 1034 | CONFIG_SND_PCM=y |
| @@ -1006,19 +1042,15 @@ CONFIG_SND_PCM_OSS_PLUGINS=y | |||
| 1006 | CONFIG_SND_VERBOSE_PROCFS=y | 1042 | CONFIG_SND_VERBOSE_PROCFS=y |
| 1007 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1043 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 1008 | # CONFIG_SND_DEBUG is not set | 1044 | # CONFIG_SND_DEBUG is not set |
| 1009 | 1045 | CONFIG_SND_VMASTER=y | |
| 1010 | # | ||
| 1011 | # Generic devices | ||
| 1012 | # | ||
| 1013 | CONFIG_SND_AC97_CODEC=y | 1046 | CONFIG_SND_AC97_CODEC=y |
| 1047 | CONFIG_SND_DRIVERS=y | ||
| 1014 | # CONFIG_SND_DUMMY is not set | 1048 | # CONFIG_SND_DUMMY is not set |
| 1015 | # CONFIG_SND_MTPAV is not set | 1049 | # CONFIG_SND_MTPAV is not set |
| 1016 | # CONFIG_SND_SERIAL_U16550 is not set | 1050 | # CONFIG_SND_SERIAL_U16550 is not set |
| 1017 | # CONFIG_SND_MPU401 is not set | 1051 | # CONFIG_SND_MPU401 is not set |
| 1018 | 1052 | # CONFIG_SND_AC97_POWER_SAVE is not set | |
| 1019 | # | 1053 | CONFIG_SND_PCI=y |
| 1020 | # PCI devices | ||
| 1021 | # | ||
| 1022 | # CONFIG_SND_AD1889 is not set | 1054 | # CONFIG_SND_AD1889 is not set |
| 1023 | # CONFIG_SND_ALS300 is not set | 1055 | # CONFIG_SND_ALS300 is not set |
| 1024 | # CONFIG_SND_ALS4000 is not set | 1056 | # CONFIG_SND_ALS4000 is not set |
| @@ -1080,39 +1112,12 @@ CONFIG_SND_INTEL8X0=y | |||
| 1080 | # CONFIG_SND_VIRTUOSO is not set | 1112 | # CONFIG_SND_VIRTUOSO is not set |
| 1081 | # CONFIG_SND_VX222 is not set | 1113 | # CONFIG_SND_VX222 is not set |
| 1082 | # CONFIG_SND_YMFPCI is not set | 1114 | # CONFIG_SND_YMFPCI is not set |
| 1083 | # CONFIG_SND_AC97_POWER_SAVE is not set | 1115 | CONFIG_SND_PPC=y |
| 1084 | 1116 | CONFIG_SND_USB=y | |
| 1085 | # | ||
| 1086 | # ALSA PowerMac devices | ||
| 1087 | # | ||
| 1088 | |||
| 1089 | # | ||
| 1090 | # ALSA PowerPC devices | ||
| 1091 | # | ||
| 1092 | |||
| 1093 | # | ||
| 1094 | # USB devices | ||
| 1095 | # | ||
| 1096 | # CONFIG_SND_USB_AUDIO is not set | 1117 | # CONFIG_SND_USB_AUDIO is not set |
| 1097 | # CONFIG_SND_USB_USX2Y is not set | 1118 | # CONFIG_SND_USB_USX2Y is not set |
| 1098 | # CONFIG_SND_USB_CAIAQ is not set | 1119 | # CONFIG_SND_USB_CAIAQ is not set |
| 1099 | |||
| 1100 | # | ||
| 1101 | # System on Chip audio support | ||
| 1102 | # | ||
| 1103 | # CONFIG_SND_SOC is not set | 1120 | # CONFIG_SND_SOC is not set |
| 1104 | |||
| 1105 | # | ||
| 1106 | # ALSA SoC audio for Freescale SOCs | ||
| 1107 | # | ||
| 1108 | |||
| 1109 | # | ||
| 1110 | # SoC Audio for the Texas Instruments OMAP | ||
| 1111 | # | ||
| 1112 | |||
| 1113 | # | ||
| 1114 | # Open Sound System | ||
| 1115 | # | ||
| 1116 | # CONFIG_SOUND_PRIME is not set | 1121 | # CONFIG_SOUND_PRIME is not set |
| 1117 | CONFIG_AC97_BUS=y | 1122 | CONFIG_AC97_BUS=y |
| 1118 | CONFIG_HID_SUPPORT=y | 1123 | CONFIG_HID_SUPPORT=y |
| @@ -1144,6 +1149,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 1144 | # CONFIG_USB_OTG is not set | 1149 | # CONFIG_USB_OTG is not set |
| 1145 | # CONFIG_USB_OTG_WHITELIST is not set | 1150 | # CONFIG_USB_OTG_WHITELIST is not set |
| 1146 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1151 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1152 | CONFIG_USB_MON=y | ||
| 1147 | 1153 | ||
| 1148 | # | 1154 | # |
| 1149 | # USB Host Controller Drivers | 1155 | # USB Host Controller Drivers |
| @@ -1195,6 +1201,7 @@ CONFIG_USB_STORAGE=y | |||
| 1195 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1201 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1196 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1202 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1197 | # CONFIG_USB_STORAGE_KARMA is not set | 1203 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1204 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1198 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1205 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1199 | # CONFIG_USB_LIBUSUAL is not set | 1206 | # CONFIG_USB_LIBUSUAL is not set |
| 1200 | 1207 | ||
| @@ -1203,7 +1210,6 @@ CONFIG_USB_STORAGE=y | |||
| 1203 | # | 1210 | # |
| 1204 | # CONFIG_USB_MDC800 is not set | 1211 | # CONFIG_USB_MDC800 is not set |
| 1205 | # CONFIG_USB_MICROTEK is not set | 1212 | # CONFIG_USB_MICROTEK is not set |
| 1206 | CONFIG_USB_MON=y | ||
| 1207 | 1213 | ||
| 1208 | # | 1214 | # |
| 1209 | # USB port drivers | 1215 | # USB port drivers |
| @@ -1216,7 +1222,6 @@ CONFIG_USB_MON=y | |||
| 1216 | # CONFIG_USB_EMI62 is not set | 1222 | # CONFIG_USB_EMI62 is not set |
| 1217 | # CONFIG_USB_EMI26 is not set | 1223 | # CONFIG_USB_EMI26 is not set |
| 1218 | # CONFIG_USB_ADUTUX is not set | 1224 | # CONFIG_USB_ADUTUX is not set |
| 1219 | # CONFIG_USB_AUERSWALD is not set | ||
| 1220 | # CONFIG_USB_RIO500 is not set | 1225 | # CONFIG_USB_RIO500 is not set |
| 1221 | # CONFIG_USB_LEGOTOWER is not set | 1226 | # CONFIG_USB_LEGOTOWER is not set |
| 1222 | # CONFIG_USB_LCD is not set | 1227 | # CONFIG_USB_LCD is not set |
| @@ -1270,6 +1275,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 1270 | # CONFIG_RTC_DRV_PCF8583 is not set | 1275 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 1271 | # CONFIG_RTC_DRV_M41T80 is not set | 1276 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1272 | # CONFIG_RTC_DRV_S35390A is not set | 1277 | # CONFIG_RTC_DRV_S35390A is not set |
| 1278 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1273 | 1279 | ||
| 1274 | # | 1280 | # |
| 1275 | # SPI RTC drivers | 1281 | # SPI RTC drivers |
| @@ -1368,6 +1374,7 @@ CONFIG_EFS_FS=m | |||
| 1368 | CONFIG_CRAMFS=y | 1374 | CONFIG_CRAMFS=y |
| 1369 | CONFIG_VXFS_FS=m | 1375 | CONFIG_VXFS_FS=m |
| 1370 | # CONFIG_MINIX_FS is not set | 1376 | # CONFIG_MINIX_FS is not set |
| 1377 | # CONFIG_OMFS_FS is not set | ||
| 1371 | CONFIG_HPFS_FS=m | 1378 | CONFIG_HPFS_FS=m |
| 1372 | CONFIG_QNX4FS_FS=m | 1379 | CONFIG_QNX4FS_FS=m |
| 1373 | # CONFIG_ROMFS_FS is not set | 1380 | # CONFIG_ROMFS_FS is not set |
| @@ -1380,17 +1387,16 @@ CONFIG_NFS_FS=y | |||
| 1380 | CONFIG_NFS_V3=y | 1387 | CONFIG_NFS_V3=y |
| 1381 | # CONFIG_NFS_V3_ACL is not set | 1388 | # CONFIG_NFS_V3_ACL is not set |
| 1382 | CONFIG_NFS_V4=y | 1389 | CONFIG_NFS_V4=y |
| 1390 | CONFIG_ROOT_NFS=y | ||
| 1383 | CONFIG_NFSD=y | 1391 | CONFIG_NFSD=y |
| 1384 | # CONFIG_NFSD_V3 is not set | 1392 | # CONFIG_NFSD_V3 is not set |
| 1385 | # CONFIG_NFSD_V4 is not set | 1393 | # CONFIG_NFSD_V4 is not set |
| 1386 | CONFIG_ROOT_NFS=y | ||
| 1387 | CONFIG_LOCKD=y | 1394 | CONFIG_LOCKD=y |
| 1388 | CONFIG_LOCKD_V4=y | 1395 | CONFIG_LOCKD_V4=y |
| 1389 | CONFIG_EXPORTFS=y | 1396 | CONFIG_EXPORTFS=y |
| 1390 | CONFIG_NFS_COMMON=y | 1397 | CONFIG_NFS_COMMON=y |
| 1391 | CONFIG_SUNRPC=y | 1398 | CONFIG_SUNRPC=y |
| 1392 | CONFIG_SUNRPC_GSS=y | 1399 | CONFIG_SUNRPC_GSS=y |
| 1393 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1394 | CONFIG_RPCSEC_GSS_KRB5=y | 1400 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1395 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1401 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1396 | # CONFIG_SMB_FS is not set | 1402 | # CONFIG_SMB_FS is not set |
| @@ -1469,6 +1475,7 @@ CONFIG_BITREVERSE=y | |||
| 1469 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1475 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1470 | # CONFIG_CRC_CCITT is not set | 1476 | # CONFIG_CRC_CCITT is not set |
| 1471 | # CONFIG_CRC16 is not set | 1477 | # CONFIG_CRC16 is not set |
| 1478 | CONFIG_CRC_T10DIF=y | ||
| 1472 | CONFIG_CRC_ITU_T=m | 1479 | CONFIG_CRC_ITU_T=m |
| 1473 | CONFIG_CRC32=y | 1480 | CONFIG_CRC32=y |
| 1474 | # CONFIG_CRC7 is not set | 1481 | # CONFIG_CRC7 is not set |
| @@ -1494,6 +1501,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 1494 | CONFIG_DEBUG_KERNEL=y | 1501 | CONFIG_DEBUG_KERNEL=y |
| 1495 | # CONFIG_DEBUG_SHIRQ is not set | 1502 | # CONFIG_DEBUG_SHIRQ is not set |
| 1496 | CONFIG_DETECT_SOFTLOCKUP=y | 1503 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1504 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1505 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1497 | CONFIG_SCHED_DEBUG=y | 1506 | CONFIG_SCHED_DEBUG=y |
| 1498 | # CONFIG_SCHEDSTATS is not set | 1507 | # CONFIG_SCHEDSTATS is not set |
| 1499 | # CONFIG_TIMER_STATS is not set | 1508 | # CONFIG_TIMER_STATS is not set |
| @@ -1512,17 +1521,29 @@ CONFIG_SCHED_DEBUG=y | |||
| 1512 | CONFIG_DEBUG_INFO=y | 1521 | CONFIG_DEBUG_INFO=y |
| 1513 | # CONFIG_DEBUG_VM is not set | 1522 | # CONFIG_DEBUG_VM is not set |
| 1514 | # CONFIG_DEBUG_WRITECOUNT is not set | 1523 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1524 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1515 | # CONFIG_DEBUG_LIST is not set | 1525 | # CONFIG_DEBUG_LIST is not set |
| 1516 | # CONFIG_DEBUG_SG is not set | 1526 | # CONFIG_DEBUG_SG is not set |
| 1517 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1527 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1518 | # CONFIG_RCU_TORTURE_TEST is not set | 1528 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1519 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1529 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1520 | # CONFIG_FAULT_INJECTION is not set | 1530 | # CONFIG_FAULT_INJECTION is not set |
| 1531 | # CONFIG_LATENCYTOP is not set | ||
| 1532 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1533 | CONFIG_HAVE_FTRACE=y | ||
| 1534 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1535 | # CONFIG_FTRACE is not set | ||
| 1536 | # CONFIG_SCHED_TRACER is not set | ||
| 1537 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1521 | # CONFIG_SAMPLES is not set | 1538 | # CONFIG_SAMPLES is not set |
| 1539 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1540 | # CONFIG_KGDB is not set | ||
| 1522 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1541 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1523 | # CONFIG_DEBUG_STACK_USAGE is not set | 1542 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1524 | # CONFIG_DEBUG_PAGEALLOC is not set | 1543 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1525 | # CONFIG_DEBUGGER is not set | 1544 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1545 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1546 | # CONFIG_XMON is not set | ||
| 1526 | # CONFIG_IRQSTACKS is not set | 1547 | # CONFIG_IRQSTACKS is not set |
| 1527 | # CONFIG_BDI_SWITCH is not set | 1548 | # CONFIG_BDI_SWITCH is not set |
| 1528 | # CONFIG_PPC_EARLY_DEBUG is not set | 1549 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -1539,13 +1560,14 @@ CONFIG_CRYPTO=y | |||
| 1539 | # Crypto core or helper | 1560 | # Crypto core or helper |
| 1540 | # | 1561 | # |
| 1541 | CONFIG_CRYPTO_ALGAPI=y | 1562 | CONFIG_CRYPTO_ALGAPI=y |
| 1563 | CONFIG_CRYPTO_AEAD=y | ||
| 1542 | CONFIG_CRYPTO_BLKCIPHER=y | 1564 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1543 | CONFIG_CRYPTO_HASH=y | 1565 | CONFIG_CRYPTO_HASH=y |
| 1544 | CONFIG_CRYPTO_MANAGER=y | 1566 | CONFIG_CRYPTO_MANAGER=y |
| 1545 | # CONFIG_CRYPTO_GF128MUL is not set | 1567 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1546 | # CONFIG_CRYPTO_NULL is not set | 1568 | # CONFIG_CRYPTO_NULL is not set |
| 1547 | # CONFIG_CRYPTO_CRYPTD is not set | 1569 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1548 | # CONFIG_CRYPTO_AUTHENC is not set | 1570 | CONFIG_CRYPTO_AUTHENC=y |
| 1549 | # CONFIG_CRYPTO_TEST is not set | 1571 | # CONFIG_CRYPTO_TEST is not set |
| 1550 | 1572 | ||
| 1551 | # | 1573 | # |
| @@ -1579,6 +1601,10 @@ CONFIG_CRYPTO_HMAC=y | |||
| 1579 | # CONFIG_CRYPTO_MD4 is not set | 1601 | # CONFIG_CRYPTO_MD4 is not set |
| 1580 | CONFIG_CRYPTO_MD5=y | 1602 | CONFIG_CRYPTO_MD5=y |
| 1581 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1603 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1604 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1605 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1606 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1607 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1582 | CONFIG_CRYPTO_SHA1=m | 1608 | CONFIG_CRYPTO_SHA1=m |
| 1583 | # CONFIG_CRYPTO_SHA256 is not set | 1609 | # CONFIG_CRYPTO_SHA256 is not set |
| 1584 | # CONFIG_CRYPTO_SHA512 is not set | 1610 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1611,5 +1637,6 @@ CONFIG_CRYPTO_DES=y | |||
| 1611 | # CONFIG_CRYPTO_LZO is not set | 1637 | # CONFIG_CRYPTO_LZO is not set |
| 1612 | CONFIG_CRYPTO_HW=y | 1638 | CONFIG_CRYPTO_HW=y |
| 1613 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1639 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1640 | CONFIG_CRYPTO_DEV_TALITOS=y | ||
| 1614 | # CONFIG_PPC_CLOCK is not set | 1641 | # CONFIG_PPC_CLOCK is not set |
| 1615 | # CONFIG_VIRTUALIZATION is not set | 1642 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig b/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig index b09f0032a10b..97f3c4fe440b 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:36 2008 | 4 | # Thu Aug 21 00:52:34 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -89,7 +91,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 91 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 92 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 93 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | CONFIG_KALLSYMS=y | 94 | CONFIG_KALLSYMS=y |
| 94 | # CONFIG_KALLSYMS_ALL is not set | 95 | # CONFIG_KALLSYMS_ALL is not set |
| 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 96 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -114,10 +115,16 @@ CONFIG_SLUB=y | |||
| 114 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
| 115 | # CONFIG_MARKERS is not set | 116 | # CONFIG_MARKERS is not set |
| 116 | CONFIG_HAVE_OPROFILE=y | 117 | CONFIG_HAVE_OPROFILE=y |
| 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 119 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 117 | CONFIG_HAVE_KPROBES=y | 120 | CONFIG_HAVE_KPROBES=y |
| 118 | CONFIG_HAVE_KRETPROBES=y | 121 | CONFIG_HAVE_KRETPROBES=y |
| 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 119 | # CONFIG_HAVE_DMA_ATTRS is not set | 123 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 124 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 125 | # CONFIG_HAVE_CLK is not set | ||
| 120 | CONFIG_PROC_PAGE_MONITOR=y | 126 | CONFIG_PROC_PAGE_MONITOR=y |
| 127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 121 | CONFIG_SLABINFO=y | 128 | CONFIG_SLABINFO=y |
| 122 | CONFIG_RT_MUTEXES=y | 129 | CONFIG_RT_MUTEXES=y |
| 123 | # CONFIG_TINY_SHMEM is not set | 130 | # CONFIG_TINY_SHMEM is not set |
| @@ -128,6 +135,7 @@ CONFIG_BLOCK=y | |||
| 128 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 129 | # CONFIG_LSF is not set | 136 | # CONFIG_LSF is not set |
| 130 | # CONFIG_BLK_DEV_BSG is not set | 137 | # CONFIG_BLK_DEV_BSG is not set |
| 138 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 131 | 139 | ||
| 132 | # | 140 | # |
| 133 | # IO Schedulers | 141 | # IO Schedulers |
| @@ -146,8 +154,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 146 | # | 154 | # |
| 147 | # Platform support | 155 | # Platform support |
| 148 | # | 156 | # |
| 149 | # CONFIG_PPC_MPC512x is not set | ||
| 150 | # CONFIG_PPC_MPC5121 is not set | ||
| 151 | # CONFIG_PPC_CELL is not set | 157 | # CONFIG_PPC_CELL is not set |
| 152 | # CONFIG_PPC_CELL_NATIVE is not set | 158 | # CONFIG_PPC_CELL_NATIVE is not set |
| 153 | # CONFIG_PQ2ADS is not set | 159 | # CONFIG_PQ2ADS is not set |
| @@ -156,11 +162,13 @@ CONFIG_MPC85xx=y | |||
| 156 | # CONFIG_MPC8560_ADS is not set | 162 | # CONFIG_MPC8560_ADS is not set |
| 157 | CONFIG_MPC85xx_CDS=y | 163 | CONFIG_MPC85xx_CDS=y |
| 158 | # CONFIG_MPC85xx_MDS is not set | 164 | # CONFIG_MPC85xx_MDS is not set |
| 165 | # CONFIG_MPC8536_DS is not set | ||
| 159 | # CONFIG_MPC85xx_DS is not set | 166 | # CONFIG_MPC85xx_DS is not set |
| 160 | # CONFIG_KSI8560 is not set | 167 | # CONFIG_KSI8560 is not set |
| 161 | # CONFIG_STX_GP3 is not set | 168 | # CONFIG_STX_GP3 is not set |
| 162 | # CONFIG_TQM8540 is not set | 169 | # CONFIG_TQM8540 is not set |
| 163 | # CONFIG_TQM8541 is not set | 170 | # CONFIG_TQM8541 is not set |
| 171 | # CONFIG_TQM8548 is not set | ||
| 164 | # CONFIG_TQM8555 is not set | 172 | # CONFIG_TQM8555 is not set |
| 165 | # CONFIG_TQM8560 is not set | 173 | # CONFIG_TQM8560 is not set |
| 166 | # CONFIG_SBC8548 is not set | 174 | # CONFIG_SBC8548 is not set |
| @@ -192,7 +200,7 @@ CONFIG_HZ_250=y | |||
| 192 | # CONFIG_HZ_300 is not set | 200 | # CONFIG_HZ_300 is not set |
| 193 | # CONFIG_HZ_1000 is not set | 201 | # CONFIG_HZ_1000 is not set |
| 194 | CONFIG_HZ=250 | 202 | CONFIG_HZ=250 |
| 195 | # CONFIG_SCHED_HRTICK is not set | 203 | CONFIG_SCHED_HRTICK=y |
| 196 | CONFIG_PREEMPT_NONE=y | 204 | CONFIG_PREEMPT_NONE=y |
| 197 | # CONFIG_PREEMPT_VOLUNTARY is not set | 205 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 198 | # CONFIG_PREEMPT is not set | 206 | # CONFIG_PREEMPT is not set |
| @@ -215,6 +223,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 215 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 223 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 216 | CONFIG_PAGEFLAGS_EXTENDED=y | 224 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 217 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 225 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 226 | CONFIG_MIGRATION=y | ||
| 218 | # CONFIG_RESOURCES_64BIT is not set | 227 | # CONFIG_RESOURCES_64BIT is not set |
| 219 | CONFIG_ZONE_DMA_FLAG=1 | 228 | CONFIG_ZONE_DMA_FLAG=1 |
| 220 | CONFIG_BOUNCE=y | 229 | CONFIG_BOUNCE=y |
| @@ -222,6 +231,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 222 | CONFIG_FORCE_MAX_ZONEORDER=11 | 231 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 223 | CONFIG_PROC_DEVICETREE=y | 232 | CONFIG_PROC_DEVICETREE=y |
| 224 | # CONFIG_CMDLINE_BOOL is not set | 233 | # CONFIG_CMDLINE_BOOL is not set |
| 234 | CONFIG_EXTRA_TARGETS="" | ||
| 225 | # CONFIG_PM is not set | 235 | # CONFIG_PM is not set |
| 226 | # CONFIG_SECCOMP is not set | 236 | # CONFIG_SECCOMP is not set |
| 227 | CONFIG_ISA_DMA_API=y | 237 | CONFIG_ISA_DMA_API=y |
| @@ -233,6 +243,7 @@ CONFIG_ZONE_DMA=y | |||
| 233 | CONFIG_PPC_INDIRECT_PCI=y | 243 | CONFIG_PPC_INDIRECT_PCI=y |
| 234 | CONFIG_FSL_SOC=y | 244 | CONFIG_FSL_SOC=y |
| 235 | CONFIG_FSL_PCI=y | 245 | CONFIG_FSL_PCI=y |
| 246 | CONFIG_PPC_PCI_CHOICE=y | ||
| 236 | CONFIG_PCI=y | 247 | CONFIG_PCI=y |
| 237 | CONFIG_PCI_DOMAINS=y | 248 | CONFIG_PCI_DOMAINS=y |
| 238 | CONFIG_PCI_SYSCALL=y | 249 | CONFIG_PCI_SYSCALL=y |
| @@ -259,10 +270,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 259 | CONFIG_PHYSICAL_START=0x00000000 | 270 | CONFIG_PHYSICAL_START=0x00000000 |
| 260 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 271 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 261 | CONFIG_TASK_SIZE=0xc0000000 | 272 | CONFIG_TASK_SIZE=0xc0000000 |
| 262 | |||
| 263 | # | ||
| 264 | # Networking | ||
| 265 | # | ||
| 266 | CONFIG_NET=y | 273 | CONFIG_NET=y |
| 267 | 274 | ||
| 268 | # | 275 | # |
| @@ -379,20 +386,22 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 379 | # CONFIG_BLK_DEV_XIP is not set | 386 | # CONFIG_BLK_DEV_XIP is not set |
| 380 | # CONFIG_CDROM_PKTCDVD is not set | 387 | # CONFIG_CDROM_PKTCDVD is not set |
| 381 | # CONFIG_ATA_OVER_ETH is not set | 388 | # CONFIG_ATA_OVER_ETH is not set |
| 389 | # CONFIG_BLK_DEV_HD is not set | ||
| 382 | CONFIG_MISC_DEVICES=y | 390 | CONFIG_MISC_DEVICES=y |
| 383 | # CONFIG_PHANTOM is not set | 391 | # CONFIG_PHANTOM is not set |
| 384 | # CONFIG_EEPROM_93CX6 is not set | 392 | # CONFIG_EEPROM_93CX6 is not set |
| 385 | # CONFIG_SGI_IOC4 is not set | 393 | # CONFIG_SGI_IOC4 is not set |
| 386 | # CONFIG_TIFM_CORE is not set | 394 | # CONFIG_TIFM_CORE is not set |
| 387 | # CONFIG_ENCLOSURE_SERVICES is not set | 395 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 396 | # CONFIG_HP_ILO is not set | ||
| 388 | CONFIG_HAVE_IDE=y | 397 | CONFIG_HAVE_IDE=y |
| 389 | CONFIG_IDE=y | 398 | CONFIG_IDE=y |
| 390 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 391 | CONFIG_BLK_DEV_IDE=y | 399 | CONFIG_BLK_DEV_IDE=y |
| 392 | 400 | ||
| 393 | # | 401 | # |
| 394 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 402 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 395 | # | 403 | # |
| 404 | CONFIG_IDE_TIMINGS=y | ||
| 396 | # CONFIG_BLK_DEV_IDE_SATA is not set | 405 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 397 | # CONFIG_BLK_DEV_IDEDISK is not set | 406 | # CONFIG_BLK_DEV_IDEDISK is not set |
| 398 | # CONFIG_IDEDISK_MULTI_MODE is not set | 407 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| @@ -405,7 +414,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 405 | # | 414 | # |
| 406 | # IDE chipset support/bugfixes | 415 | # IDE chipset support/bugfixes |
| 407 | # | 416 | # |
| 408 | CONFIG_IDE_GENERIC=y | ||
| 409 | # CONFIG_BLK_DEV_PLATFORM is not set | 417 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 410 | CONFIG_BLK_DEV_IDEDMA_SFF=y | 418 | CONFIG_BLK_DEV_IDEDMA_SFF=y |
| 411 | 419 | ||
| @@ -423,10 +431,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 423 | # CONFIG_BLK_DEV_AMD74XX is not set | 431 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 424 | # CONFIG_BLK_DEV_CMD64X is not set | 432 | # CONFIG_BLK_DEV_CMD64X is not set |
| 425 | # CONFIG_BLK_DEV_TRIFLEX is not set | 433 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 426 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 427 | # CONFIG_BLK_DEV_CS5520 is not set | 434 | # CONFIG_BLK_DEV_CS5520 is not set |
| 428 | # CONFIG_BLK_DEV_CS5530 is not set | 435 | # CONFIG_BLK_DEV_CS5530 is not set |
| 429 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 430 | # CONFIG_BLK_DEV_HPT366 is not set | 436 | # CONFIG_BLK_DEV_HPT366 is not set |
| 431 | # CONFIG_BLK_DEV_JMICRON is not set | 437 | # CONFIG_BLK_DEV_JMICRON is not set |
| 432 | # CONFIG_BLK_DEV_SC1200 is not set | 438 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -444,8 +450,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 444 | CONFIG_BLK_DEV_VIA82CXXX=y | 450 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 445 | # CONFIG_BLK_DEV_TC86C001 is not set | 451 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 446 | CONFIG_BLK_DEV_IDEDMA=y | 452 | CONFIG_BLK_DEV_IDEDMA=y |
| 447 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 448 | # CONFIG_BLK_DEV_HD is not set | ||
| 449 | 453 | ||
| 450 | # | 454 | # |
| 451 | # SCSI device support | 455 | # SCSI device support |
| @@ -461,12 +465,15 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 461 | # | 465 | # |
| 462 | # IEEE 1394 (FireWire) support | 466 | # IEEE 1394 (FireWire) support |
| 463 | # | 467 | # |
| 468 | |||
| 469 | # | ||
| 470 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 471 | # | ||
| 464 | # CONFIG_FIREWIRE is not set | 472 | # CONFIG_FIREWIRE is not set |
| 465 | # CONFIG_IEEE1394 is not set | 473 | # CONFIG_IEEE1394 is not set |
| 466 | # CONFIG_I2O is not set | 474 | # CONFIG_I2O is not set |
| 467 | # CONFIG_MACINTOSH_DRIVERS is not set | 475 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 468 | CONFIG_NETDEVICES=y | 476 | CONFIG_NETDEVICES=y |
| 469 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 470 | # CONFIG_DUMMY is not set | 477 | # CONFIG_DUMMY is not set |
| 471 | # CONFIG_BONDING is not set | 478 | # CONFIG_BONDING is not set |
| 472 | # CONFIG_MACVLAN is not set | 479 | # CONFIG_MACVLAN is not set |
| @@ -509,10 +516,8 @@ CONFIG_NETDEV_1000=y | |||
| 509 | # CONFIG_ACENIC is not set | 516 | # CONFIG_ACENIC is not set |
| 510 | # CONFIG_DL2K is not set | 517 | # CONFIG_DL2K is not set |
| 511 | CONFIG_E1000=y | 518 | CONFIG_E1000=y |
| 512 | CONFIG_E1000_NAPI=y | ||
| 513 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 519 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
| 514 | # CONFIG_E1000E is not set | 520 | # CONFIG_E1000E is not set |
| 515 | # CONFIG_E1000E_ENABLED is not set | ||
| 516 | # CONFIG_IP1000 is not set | 521 | # CONFIG_IP1000 is not set |
| 517 | # CONFIG_IGB is not set | 522 | # CONFIG_IGB is not set |
| 518 | # CONFIG_NS83820 is not set | 523 | # CONFIG_NS83820 is not set |
| @@ -526,9 +531,9 @@ CONFIG_E1000_NAPI=y | |||
| 526 | # CONFIG_TIGON3 is not set | 531 | # CONFIG_TIGON3 is not set |
| 527 | # CONFIG_BNX2 is not set | 532 | # CONFIG_BNX2 is not set |
| 528 | CONFIG_GIANFAR=y | 533 | CONFIG_GIANFAR=y |
| 529 | CONFIG_GFAR_NAPI=y | ||
| 530 | # CONFIG_QLA3XXX is not set | 534 | # CONFIG_QLA3XXX is not set |
| 531 | # CONFIG_ATL1 is not set | 535 | # CONFIG_ATL1 is not set |
| 536 | # CONFIG_ATL1E is not set | ||
| 532 | CONFIG_NETDEV_10000=y | 537 | CONFIG_NETDEV_10000=y |
| 533 | # CONFIG_CHELSIO_T1 is not set | 538 | # CONFIG_CHELSIO_T1 is not set |
| 534 | # CONFIG_CHELSIO_T3 is not set | 539 | # CONFIG_CHELSIO_T3 is not set |
| @@ -634,6 +639,8 @@ CONFIG_GEN_RTC=y | |||
| 634 | CONFIG_DEVPORT=y | 639 | CONFIG_DEVPORT=y |
| 635 | # CONFIG_I2C is not set | 640 | # CONFIG_I2C is not set |
| 636 | # CONFIG_SPI is not set | 641 | # CONFIG_SPI is not set |
| 642 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 643 | # CONFIG_GPIOLIB is not set | ||
| 637 | # CONFIG_W1 is not set | 644 | # CONFIG_W1 is not set |
| 638 | # CONFIG_POWER_SUPPLY is not set | 645 | # CONFIG_POWER_SUPPLY is not set |
| 639 | CONFIG_HWMON=y | 646 | CONFIG_HWMON=y |
| @@ -654,6 +661,7 @@ CONFIG_HWMON=y | |||
| 654 | # CONFIG_SENSORS_W83627EHF is not set | 661 | # CONFIG_SENSORS_W83627EHF is not set |
| 655 | # CONFIG_HWMON_DEBUG_CHIP is not set | 662 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 656 | # CONFIG_THERMAL is not set | 663 | # CONFIG_THERMAL is not set |
| 664 | # CONFIG_THERMAL_HWMON is not set | ||
| 657 | # CONFIG_WATCHDOG is not set | 665 | # CONFIG_WATCHDOG is not set |
| 658 | 666 | ||
| 659 | # | 667 | # |
| @@ -665,8 +673,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 665 | # | 673 | # |
| 666 | # Multifunction device drivers | 674 | # Multifunction device drivers |
| 667 | # | 675 | # |
| 676 | # CONFIG_MFD_CORE is not set | ||
| 668 | # CONFIG_MFD_SM501 is not set | 677 | # CONFIG_MFD_SM501 is not set |
| 669 | # CONFIG_HTC_PASIC3 is not set | 678 | # CONFIG_HTC_PASIC3 is not set |
| 679 | # CONFIG_MFD_TMIO is not set | ||
| 670 | 680 | ||
| 671 | # | 681 | # |
| 672 | # Multimedia devices | 682 | # Multimedia devices |
| @@ -698,10 +708,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 698 | # Display device support | 708 | # Display device support |
| 699 | # | 709 | # |
| 700 | # CONFIG_DISPLAY_SUPPORT is not set | 710 | # CONFIG_DISPLAY_SUPPORT is not set |
| 701 | |||
| 702 | # | ||
| 703 | # Sound | ||
| 704 | # | ||
| 705 | # CONFIG_SOUND is not set | 711 | # CONFIG_SOUND is not set |
| 706 | CONFIG_HID_SUPPORT=y | 712 | CONFIG_HID_SUPPORT=y |
| 707 | CONFIG_HID=y | 713 | CONFIG_HID=y |
| @@ -716,6 +722,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 716 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 722 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 717 | 723 | ||
| 718 | # | 724 | # |
| 725 | # Enable Host or Gadget support to see Inventra options | ||
| 726 | # | ||
| 727 | |||
| 728 | # | ||
| 719 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 729 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 720 | # | 730 | # |
| 721 | # CONFIG_USB_GADGET is not set | 731 | # CONFIG_USB_GADGET is not set |
| @@ -793,6 +803,7 @@ CONFIG_TMPFS=y | |||
| 793 | # CONFIG_CRAMFS is not set | 803 | # CONFIG_CRAMFS is not set |
| 794 | # CONFIG_VXFS_FS is not set | 804 | # CONFIG_VXFS_FS is not set |
| 795 | # CONFIG_MINIX_FS is not set | 805 | # CONFIG_MINIX_FS is not set |
| 806 | # CONFIG_OMFS_FS is not set | ||
| 796 | # CONFIG_HPFS_FS is not set | 807 | # CONFIG_HPFS_FS is not set |
| 797 | # CONFIG_QNX4FS_FS is not set | 808 | # CONFIG_QNX4FS_FS is not set |
| 798 | # CONFIG_ROMFS_FS is not set | 809 | # CONFIG_ROMFS_FS is not set |
| @@ -802,12 +813,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 802 | CONFIG_NFS_FS=y | 813 | CONFIG_NFS_FS=y |
| 803 | # CONFIG_NFS_V3 is not set | 814 | # CONFIG_NFS_V3 is not set |
| 804 | # CONFIG_NFS_V4 is not set | 815 | # CONFIG_NFS_V4 is not set |
| 805 | # CONFIG_NFSD is not set | ||
| 806 | CONFIG_ROOT_NFS=y | 816 | CONFIG_ROOT_NFS=y |
| 817 | # CONFIG_NFSD is not set | ||
| 807 | CONFIG_LOCKD=y | 818 | CONFIG_LOCKD=y |
| 808 | CONFIG_NFS_COMMON=y | 819 | CONFIG_NFS_COMMON=y |
| 809 | CONFIG_SUNRPC=y | 820 | CONFIG_SUNRPC=y |
| 810 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 811 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 821 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 812 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 822 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 813 | # CONFIG_SMB_FS is not set | 823 | # CONFIG_SMB_FS is not set |
| @@ -843,6 +853,7 @@ CONFIG_BITREVERSE=y | |||
| 843 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 853 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 844 | # CONFIG_CRC_CCITT is not set | 854 | # CONFIG_CRC_CCITT is not set |
| 845 | # CONFIG_CRC16 is not set | 855 | # CONFIG_CRC16 is not set |
| 856 | # CONFIG_CRC_T10DIF is not set | ||
| 846 | # CONFIG_CRC_ITU_T is not set | 857 | # CONFIG_CRC_ITU_T is not set |
| 847 | CONFIG_CRC32=y | 858 | CONFIG_CRC32=y |
| 848 | # CONFIG_CRC7 is not set | 859 | # CONFIG_CRC7 is not set |
| @@ -867,6 +878,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 867 | CONFIG_DEBUG_KERNEL=y | 878 | CONFIG_DEBUG_KERNEL=y |
| 868 | # CONFIG_DEBUG_SHIRQ is not set | 879 | # CONFIG_DEBUG_SHIRQ is not set |
| 869 | CONFIG_DETECT_SOFTLOCKUP=y | 880 | CONFIG_DETECT_SOFTLOCKUP=y |
| 881 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 882 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 870 | CONFIG_SCHED_DEBUG=y | 883 | CONFIG_SCHED_DEBUG=y |
| 871 | # CONFIG_SCHEDSTATS is not set | 884 | # CONFIG_SCHEDSTATS is not set |
| 872 | # CONFIG_TIMER_STATS is not set | 885 | # CONFIG_TIMER_STATS is not set |
| @@ -884,16 +897,29 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 884 | # CONFIG_DEBUG_INFO is not set | 897 | # CONFIG_DEBUG_INFO is not set |
| 885 | # CONFIG_DEBUG_VM is not set | 898 | # CONFIG_DEBUG_VM is not set |
| 886 | # CONFIG_DEBUG_WRITECOUNT is not set | 899 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 900 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 887 | # CONFIG_DEBUG_LIST is not set | 901 | # CONFIG_DEBUG_LIST is not set |
| 888 | # CONFIG_DEBUG_SG is not set | 902 | # CONFIG_DEBUG_SG is not set |
| 889 | # CONFIG_BOOT_PRINTK_DELAY is not set | 903 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 904 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 890 | # CONFIG_BACKTRACE_SELF_TEST is not set | 905 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 891 | # CONFIG_FAULT_INJECTION is not set | 906 | # CONFIG_FAULT_INJECTION is not set |
| 907 | # CONFIG_LATENCYTOP is not set | ||
| 908 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 909 | CONFIG_HAVE_FTRACE=y | ||
| 910 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 911 | # CONFIG_FTRACE is not set | ||
| 912 | # CONFIG_SCHED_TRACER is not set | ||
| 913 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 892 | # CONFIG_SAMPLES is not set | 914 | # CONFIG_SAMPLES is not set |
| 915 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 916 | # CONFIG_KGDB is not set | ||
| 893 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 917 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 894 | # CONFIG_DEBUG_STACK_USAGE is not set | 918 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 895 | # CONFIG_DEBUG_PAGEALLOC is not set | 919 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 896 | # CONFIG_DEBUGGER is not set | 920 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 921 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 922 | # CONFIG_XMON is not set | ||
| 897 | # CONFIG_IRQSTACKS is not set | 923 | # CONFIG_IRQSTACKS is not set |
| 898 | # CONFIG_BDI_SWITCH is not set | 924 | # CONFIG_BDI_SWITCH is not set |
| 899 | # CONFIG_PPC_EARLY_DEBUG is not set | 925 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -946,6 +972,10 @@ CONFIG_CRYPTO=y | |||
| 946 | # CONFIG_CRYPTO_MD4 is not set | 972 | # CONFIG_CRYPTO_MD4 is not set |
| 947 | # CONFIG_CRYPTO_MD5 is not set | 973 | # CONFIG_CRYPTO_MD5 is not set |
| 948 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 974 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 975 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 976 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 977 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 978 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 949 | # CONFIG_CRYPTO_SHA1 is not set | 979 | # CONFIG_CRYPTO_SHA1 is not set |
| 950 | # CONFIG_CRYPTO_SHA256 is not set | 980 | # CONFIG_CRYPTO_SHA256 is not set |
| 951 | # CONFIG_CRYPTO_SHA512 is not set | 981 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -978,5 +1008,6 @@ CONFIG_CRYPTO=y | |||
| 978 | # CONFIG_CRYPTO_LZO is not set | 1008 | # CONFIG_CRYPTO_LZO is not set |
| 979 | CONFIG_CRYPTO_HW=y | 1009 | CONFIG_CRYPTO_HW=y |
| 980 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1010 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1011 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 981 | # CONFIG_PPC_CLOCK is not set | 1012 | # CONFIG_PPC_CLOCK is not set |
| 982 | # CONFIG_VIRTUALIZATION is not set | 1013 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/sbc8548_defconfig b/arch/powerpc/configs/85xx/sbc8548_defconfig index 24f7f44b4821..41cedc4b63f6 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:37 2008 | 4 | # Thu Aug 21 00:52:35 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -89,7 +91,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 91 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 92 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 93 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | CONFIG_KALLSYMS=y | 94 | CONFIG_KALLSYMS=y |
| 94 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 95 | CONFIG_HOTPLUG=y | 96 | CONFIG_HOTPLUG=y |
| @@ -112,10 +113,16 @@ CONFIG_SLAB=y | |||
| 112 | # CONFIG_PROFILING is not set | 113 | # CONFIG_PROFILING is not set |
| 113 | # CONFIG_MARKERS is not set | 114 | # CONFIG_MARKERS is not set |
| 114 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
| 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 117 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 118 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 119 | CONFIG_HAVE_KRETPROBES=y |
| 120 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 121 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 122 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 123 | # CONFIG_HAVE_CLK is not set | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 124 | CONFIG_PROC_PAGE_MONITOR=y |
| 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | 128 | # CONFIG_TINY_SHMEM is not set |
| @@ -126,6 +133,7 @@ CONFIG_BLOCK=y | |||
| 126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 127 | # CONFIG_LSF is not set | 134 | # CONFIG_LSF is not set |
| 128 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
| 136 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 129 | 137 | ||
| 130 | # | 138 | # |
| 131 | # IO Schedulers | 139 | # IO Schedulers |
| @@ -144,8 +152,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 144 | # | 152 | # |
| 145 | # Platform support | 153 | # Platform support |
| 146 | # | 154 | # |
| 147 | # CONFIG_PPC_MPC512x is not set | ||
| 148 | # CONFIG_PPC_MPC5121 is not set | ||
| 149 | # CONFIG_PPC_CELL is not set | 155 | # CONFIG_PPC_CELL is not set |
| 150 | # CONFIG_PPC_CELL_NATIVE is not set | 156 | # CONFIG_PPC_CELL_NATIVE is not set |
| 151 | # CONFIG_PQ2ADS is not set | 157 | # CONFIG_PQ2ADS is not set |
| @@ -154,11 +160,13 @@ CONFIG_MPC85xx=y | |||
| 154 | # CONFIG_MPC8560_ADS is not set | 160 | # CONFIG_MPC8560_ADS is not set |
| 155 | # CONFIG_MPC85xx_CDS is not set | 161 | # CONFIG_MPC85xx_CDS is not set |
| 156 | # CONFIG_MPC85xx_MDS is not set | 162 | # CONFIG_MPC85xx_MDS is not set |
| 163 | # CONFIG_MPC8536_DS is not set | ||
| 157 | # CONFIG_MPC85xx_DS is not set | 164 | # CONFIG_MPC85xx_DS is not set |
| 158 | # CONFIG_KSI8560 is not set | 165 | # CONFIG_KSI8560 is not set |
| 159 | # CONFIG_STX_GP3 is not set | 166 | # CONFIG_STX_GP3 is not set |
| 160 | # CONFIG_TQM8540 is not set | 167 | # CONFIG_TQM8540 is not set |
| 161 | # CONFIG_TQM8541 is not set | 168 | # CONFIG_TQM8541 is not set |
| 169 | # CONFIG_TQM8548 is not set | ||
| 162 | # CONFIG_TQM8555 is not set | 170 | # CONFIG_TQM8555 is not set |
| 163 | # CONFIG_TQM8560 is not set | 171 | # CONFIG_TQM8560 is not set |
| 164 | CONFIG_SBC8548=y | 172 | CONFIG_SBC8548=y |
| @@ -213,6 +221,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 213 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 221 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 214 | CONFIG_PAGEFLAGS_EXTENDED=y | 222 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 215 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 223 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 224 | CONFIG_MIGRATION=y | ||
| 216 | # CONFIG_RESOURCES_64BIT is not set | 225 | # CONFIG_RESOURCES_64BIT is not set |
| 217 | CONFIG_ZONE_DMA_FLAG=1 | 226 | CONFIG_ZONE_DMA_FLAG=1 |
| 218 | CONFIG_BOUNCE=y | 227 | CONFIG_BOUNCE=y |
| @@ -220,6 +229,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 220 | CONFIG_FORCE_MAX_ZONEORDER=11 | 229 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 221 | CONFIG_PROC_DEVICETREE=y | 230 | CONFIG_PROC_DEVICETREE=y |
| 222 | # CONFIG_CMDLINE_BOOL is not set | 231 | # CONFIG_CMDLINE_BOOL is not set |
| 232 | CONFIG_EXTRA_TARGETS="" | ||
| 223 | # CONFIG_PM is not set | 233 | # CONFIG_PM is not set |
| 224 | # CONFIG_SECCOMP is not set | 234 | # CONFIG_SECCOMP is not set |
| 225 | CONFIG_ISA_DMA_API=y | 235 | CONFIG_ISA_DMA_API=y |
| @@ -231,6 +241,7 @@ CONFIG_ZONE_DMA=y | |||
| 231 | CONFIG_PPC_INDIRECT_PCI=y | 241 | CONFIG_PPC_INDIRECT_PCI=y |
| 232 | CONFIG_FSL_SOC=y | 242 | CONFIG_FSL_SOC=y |
| 233 | CONFIG_FSL_PCI=y | 243 | CONFIG_FSL_PCI=y |
| 244 | CONFIG_PPC_PCI_CHOICE=y | ||
| 234 | CONFIG_PCI=y | 245 | CONFIG_PCI=y |
| 235 | CONFIG_PCI_DOMAINS=y | 246 | CONFIG_PCI_DOMAINS=y |
| 236 | CONFIG_PCI_SYSCALL=y | 247 | CONFIG_PCI_SYSCALL=y |
| @@ -256,10 +267,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 256 | CONFIG_PHYSICAL_START=0x00000000 | 267 | CONFIG_PHYSICAL_START=0x00000000 |
| 257 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 268 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 258 | CONFIG_TASK_SIZE=0xc0000000 | 269 | CONFIG_TASK_SIZE=0xc0000000 |
| 259 | |||
| 260 | # | ||
| 261 | # Networking | ||
| 262 | # | ||
| 263 | CONFIG_NET=y | 270 | CONFIG_NET=y |
| 264 | 271 | ||
| 265 | # | 272 | # |
| @@ -374,12 +381,14 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 374 | # CONFIG_BLK_DEV_XIP is not set | 381 | # CONFIG_BLK_DEV_XIP is not set |
| 375 | # CONFIG_CDROM_PKTCDVD is not set | 382 | # CONFIG_CDROM_PKTCDVD is not set |
| 376 | # CONFIG_ATA_OVER_ETH is not set | 383 | # CONFIG_ATA_OVER_ETH is not set |
| 384 | # CONFIG_BLK_DEV_HD is not set | ||
| 377 | CONFIG_MISC_DEVICES=y | 385 | CONFIG_MISC_DEVICES=y |
| 378 | # CONFIG_PHANTOM is not set | 386 | # CONFIG_PHANTOM is not set |
| 379 | # CONFIG_EEPROM_93CX6 is not set | 387 | # CONFIG_EEPROM_93CX6 is not set |
| 380 | # CONFIG_SGI_IOC4 is not set | 388 | # CONFIG_SGI_IOC4 is not set |
| 381 | # CONFIG_TIFM_CORE is not set | 389 | # CONFIG_TIFM_CORE is not set |
| 382 | # CONFIG_ENCLOSURE_SERVICES is not set | 390 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 391 | # CONFIG_HP_ILO is not set | ||
| 383 | CONFIG_HAVE_IDE=y | 392 | CONFIG_HAVE_IDE=y |
| 384 | # CONFIG_IDE is not set | 393 | # CONFIG_IDE is not set |
| 385 | 394 | ||
| @@ -397,12 +406,15 @@ CONFIG_HAVE_IDE=y | |||
| 397 | # | 406 | # |
| 398 | # IEEE 1394 (FireWire) support | 407 | # IEEE 1394 (FireWire) support |
| 399 | # | 408 | # |
| 409 | |||
| 410 | # | ||
| 411 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 412 | # | ||
| 400 | # CONFIG_FIREWIRE is not set | 413 | # CONFIG_FIREWIRE is not set |
| 401 | # CONFIG_IEEE1394 is not set | 414 | # CONFIG_IEEE1394 is not set |
| 402 | # CONFIG_I2O is not set | 415 | # CONFIG_I2O is not set |
| 403 | # CONFIG_MACINTOSH_DRIVERS is not set | 416 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 404 | CONFIG_NETDEVICES=y | 417 | CONFIG_NETDEVICES=y |
| 405 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 406 | # CONFIG_DUMMY is not set | 418 | # CONFIG_DUMMY is not set |
| 407 | # CONFIG_BONDING is not set | 419 | # CONFIG_BONDING is not set |
| 408 | # CONFIG_MACVLAN is not set | 420 | # CONFIG_MACVLAN is not set |
| @@ -446,7 +458,6 @@ CONFIG_NETDEV_1000=y | |||
| 446 | # CONFIG_DL2K is not set | 458 | # CONFIG_DL2K is not set |
| 447 | # CONFIG_E1000 is not set | 459 | # CONFIG_E1000 is not set |
| 448 | # CONFIG_E1000E is not set | 460 | # CONFIG_E1000E is not set |
| 449 | # CONFIG_E1000E_ENABLED is not set | ||
| 450 | # CONFIG_IP1000 is not set | 461 | # CONFIG_IP1000 is not set |
| 451 | # CONFIG_IGB is not set | 462 | # CONFIG_IGB is not set |
| 452 | # CONFIG_NS83820 is not set | 463 | # CONFIG_NS83820 is not set |
| @@ -460,9 +471,9 @@ CONFIG_NETDEV_1000=y | |||
| 460 | # CONFIG_TIGON3 is not set | 471 | # CONFIG_TIGON3 is not set |
| 461 | # CONFIG_BNX2 is not set | 472 | # CONFIG_BNX2 is not set |
| 462 | CONFIG_GIANFAR=y | 473 | CONFIG_GIANFAR=y |
| 463 | CONFIG_GFAR_NAPI=y | ||
| 464 | # CONFIG_QLA3XXX is not set | 474 | # CONFIG_QLA3XXX is not set |
| 465 | # CONFIG_ATL1 is not set | 475 | # CONFIG_ATL1 is not set |
| 476 | # CONFIG_ATL1E is not set | ||
| 466 | CONFIG_NETDEV_10000=y | 477 | CONFIG_NETDEV_10000=y |
| 467 | # CONFIG_CHELSIO_T1 is not set | 478 | # CONFIG_CHELSIO_T1 is not set |
| 468 | # CONFIG_CHELSIO_T3 is not set | 479 | # CONFIG_CHELSIO_T3 is not set |
| @@ -568,6 +579,8 @@ CONFIG_GEN_RTC=y | |||
| 568 | CONFIG_DEVPORT=y | 579 | CONFIG_DEVPORT=y |
| 569 | # CONFIG_I2C is not set | 580 | # CONFIG_I2C is not set |
| 570 | # CONFIG_SPI is not set | 581 | # CONFIG_SPI is not set |
| 582 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 583 | # CONFIG_GPIOLIB is not set | ||
| 571 | # CONFIG_W1 is not set | 584 | # CONFIG_W1 is not set |
| 572 | # CONFIG_POWER_SUPPLY is not set | 585 | # CONFIG_POWER_SUPPLY is not set |
| 573 | CONFIG_HWMON=y | 586 | CONFIG_HWMON=y |
| @@ -588,6 +601,7 @@ CONFIG_HWMON=y | |||
| 588 | # CONFIG_SENSORS_W83627EHF is not set | 601 | # CONFIG_SENSORS_W83627EHF is not set |
| 589 | # CONFIG_HWMON_DEBUG_CHIP is not set | 602 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 590 | # CONFIG_THERMAL is not set | 603 | # CONFIG_THERMAL is not set |
| 604 | # CONFIG_THERMAL_HWMON is not set | ||
| 591 | # CONFIG_WATCHDOG is not set | 605 | # CONFIG_WATCHDOG is not set |
| 592 | 606 | ||
| 593 | # | 607 | # |
| @@ -599,8 +613,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 599 | # | 613 | # |
| 600 | # Multifunction device drivers | 614 | # Multifunction device drivers |
| 601 | # | 615 | # |
| 616 | # CONFIG_MFD_CORE is not set | ||
| 602 | # CONFIG_MFD_SM501 is not set | 617 | # CONFIG_MFD_SM501 is not set |
| 603 | # CONFIG_HTC_PASIC3 is not set | 618 | # CONFIG_HTC_PASIC3 is not set |
| 619 | # CONFIG_MFD_TMIO is not set | ||
| 604 | 620 | ||
| 605 | # | 621 | # |
| 606 | # Multimedia devices | 622 | # Multimedia devices |
| @@ -632,10 +648,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 632 | # Display device support | 648 | # Display device support |
| 633 | # | 649 | # |
| 634 | # CONFIG_DISPLAY_SUPPORT is not set | 650 | # CONFIG_DISPLAY_SUPPORT is not set |
| 635 | |||
| 636 | # | ||
| 637 | # Sound | ||
| 638 | # | ||
| 639 | # CONFIG_SOUND is not set | 651 | # CONFIG_SOUND is not set |
| 640 | # CONFIG_HID_SUPPORT is not set | 652 | # CONFIG_HID_SUPPORT is not set |
| 641 | # CONFIG_USB_SUPPORT is not set | 653 | # CONFIG_USB_SUPPORT is not set |
| @@ -706,6 +718,7 @@ CONFIG_TMPFS=y | |||
| 706 | # CONFIG_CRAMFS is not set | 718 | # CONFIG_CRAMFS is not set |
| 707 | # CONFIG_VXFS_FS is not set | 719 | # CONFIG_VXFS_FS is not set |
| 708 | # CONFIG_MINIX_FS is not set | 720 | # CONFIG_MINIX_FS is not set |
| 721 | # CONFIG_OMFS_FS is not set | ||
| 709 | # CONFIG_HPFS_FS is not set | 722 | # CONFIG_HPFS_FS is not set |
| 710 | # CONFIG_QNX4FS_FS is not set | 723 | # CONFIG_QNX4FS_FS is not set |
| 711 | # CONFIG_ROMFS_FS is not set | 724 | # CONFIG_ROMFS_FS is not set |
| @@ -715,12 +728,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 715 | CONFIG_NFS_FS=y | 728 | CONFIG_NFS_FS=y |
| 716 | # CONFIG_NFS_V3 is not set | 729 | # CONFIG_NFS_V3 is not set |
| 717 | # CONFIG_NFS_V4 is not set | 730 | # CONFIG_NFS_V4 is not set |
| 718 | # CONFIG_NFSD is not set | ||
| 719 | CONFIG_ROOT_NFS=y | 731 | CONFIG_ROOT_NFS=y |
| 732 | # CONFIG_NFSD is not set | ||
| 720 | CONFIG_LOCKD=y | 733 | CONFIG_LOCKD=y |
| 721 | CONFIG_NFS_COMMON=y | 734 | CONFIG_NFS_COMMON=y |
| 722 | CONFIG_SUNRPC=y | 735 | CONFIG_SUNRPC=y |
| 723 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 724 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 736 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 725 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 737 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 726 | # CONFIG_SMB_FS is not set | 738 | # CONFIG_SMB_FS is not set |
| @@ -744,6 +756,7 @@ CONFIG_BITREVERSE=y | |||
| 744 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 756 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 745 | # CONFIG_CRC_CCITT is not set | 757 | # CONFIG_CRC_CCITT is not set |
| 746 | # CONFIG_CRC16 is not set | 758 | # CONFIG_CRC16 is not set |
| 759 | # CONFIG_CRC_T10DIF is not set | ||
| 747 | # CONFIG_CRC_ITU_T is not set | 760 | # CONFIG_CRC_ITU_T is not set |
| 748 | CONFIG_CRC32=y | 761 | CONFIG_CRC32=y |
| 749 | # CONFIG_CRC7 is not set | 762 | # CONFIG_CRC7 is not set |
| @@ -767,7 +780,16 @@ CONFIG_FRAME_WARN=1024 | |||
| 767 | # CONFIG_HEADERS_CHECK is not set | 780 | # CONFIG_HEADERS_CHECK is not set |
| 768 | # CONFIG_DEBUG_KERNEL is not set | 781 | # CONFIG_DEBUG_KERNEL is not set |
| 769 | # CONFIG_DEBUG_BUGVERBOSE is not set | 782 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 783 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 784 | # CONFIG_LATENCYTOP is not set | ||
| 785 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 786 | CONFIG_HAVE_FTRACE=y | ||
| 787 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 788 | # CONFIG_FTRACE is not set | ||
| 789 | # CONFIG_SCHED_TRACER is not set | ||
| 790 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 770 | # CONFIG_SAMPLES is not set | 791 | # CONFIG_SAMPLES is not set |
| 792 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 771 | # CONFIG_IRQSTACKS is not set | 793 | # CONFIG_IRQSTACKS is not set |
| 772 | # CONFIG_PPC_EARLY_DEBUG is not set | 794 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 773 | 795 | ||
| @@ -819,6 +841,10 @@ CONFIG_CRYPTO=y | |||
| 819 | # CONFIG_CRYPTO_MD4 is not set | 841 | # CONFIG_CRYPTO_MD4 is not set |
| 820 | # CONFIG_CRYPTO_MD5 is not set | 842 | # CONFIG_CRYPTO_MD5 is not set |
| 821 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 843 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 844 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 845 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 846 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 847 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 822 | # CONFIG_CRYPTO_SHA1 is not set | 848 | # CONFIG_CRYPTO_SHA1 is not set |
| 823 | # CONFIG_CRYPTO_SHA256 is not set | 849 | # CONFIG_CRYPTO_SHA256 is not set |
| 824 | # CONFIG_CRYPTO_SHA512 is not set | 850 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -851,5 +877,6 @@ CONFIG_CRYPTO=y | |||
| 851 | # CONFIG_CRYPTO_LZO is not set | 877 | # CONFIG_CRYPTO_LZO is not set |
| 852 | CONFIG_CRYPTO_HW=y | 878 | CONFIG_CRYPTO_HW=y |
| 853 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 879 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 880 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 854 | # CONFIG_PPC_CLOCK is not set | 881 | # CONFIG_PPC_CLOCK is not set |
| 855 | # CONFIG_VIRTUALIZATION is not set | 882 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/sbc8560_defconfig b/arch/powerpc/configs/85xx/sbc8560_defconfig index 655518dcd73f..daef36f41b42 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:38 2008 | 4 | # Thu Aug 21 00:52:36 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -89,7 +91,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 91 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 92 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 93 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | CONFIG_KALLSYMS=y | 94 | CONFIG_KALLSYMS=y |
| 94 | # CONFIG_KALLSYMS_ALL is not set | 95 | # CONFIG_KALLSYMS_ALL is not set |
| 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 96 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -113,10 +114,16 @@ CONFIG_SLAB=y | |||
| 113 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
| 114 | # CONFIG_MARKERS is not set | 115 | # CONFIG_MARKERS is not set |
| 115 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 116 | CONFIG_HAVE_KPROBES=y | 119 | CONFIG_HAVE_KPROBES=y |
| 117 | CONFIG_HAVE_KRETPROBES=y | 120 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 118 | # CONFIG_HAVE_DMA_ATTRS is not set | 122 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 123 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 124 | # CONFIG_HAVE_CLK is not set | ||
| 119 | CONFIG_PROC_PAGE_MONITOR=y | 125 | CONFIG_PROC_PAGE_MONITOR=y |
| 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 120 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
| 121 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
| 122 | # CONFIG_TINY_SHMEM is not set | 129 | # CONFIG_TINY_SHMEM is not set |
| @@ -127,6 +134,7 @@ CONFIG_BLOCK=y | |||
| 127 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 128 | # CONFIG_LSF is not set | 135 | # CONFIG_LSF is not set |
| 129 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
| 137 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 130 | 138 | ||
| 131 | # | 139 | # |
| 132 | # IO Schedulers | 140 | # IO Schedulers |
| @@ -145,8 +153,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 145 | # | 153 | # |
| 146 | # Platform support | 154 | # Platform support |
| 147 | # | 155 | # |
| 148 | # CONFIG_PPC_MPC512x is not set | ||
| 149 | # CONFIG_PPC_MPC5121 is not set | ||
| 150 | # CONFIG_PPC_CELL is not set | 156 | # CONFIG_PPC_CELL is not set |
| 151 | # CONFIG_PPC_CELL_NATIVE is not set | 157 | # CONFIG_PPC_CELL_NATIVE is not set |
| 152 | # CONFIG_PQ2ADS is not set | 158 | # CONFIG_PQ2ADS is not set |
| @@ -155,11 +161,13 @@ CONFIG_MPC85xx=y | |||
| 155 | # CONFIG_MPC8560_ADS is not set | 161 | # CONFIG_MPC8560_ADS is not set |
| 156 | # CONFIG_MPC85xx_CDS is not set | 162 | # CONFIG_MPC85xx_CDS is not set |
| 157 | # CONFIG_MPC85xx_MDS is not set | 163 | # CONFIG_MPC85xx_MDS is not set |
| 164 | # CONFIG_MPC8536_DS is not set | ||
| 158 | # CONFIG_MPC85xx_DS is not set | 165 | # CONFIG_MPC85xx_DS is not set |
| 159 | # CONFIG_KSI8560 is not set | 166 | # CONFIG_KSI8560 is not set |
| 160 | # CONFIG_STX_GP3 is not set | 167 | # CONFIG_STX_GP3 is not set |
| 161 | # CONFIG_TQM8540 is not set | 168 | # CONFIG_TQM8540 is not set |
| 162 | # CONFIG_TQM8541 is not set | 169 | # CONFIG_TQM8541 is not set |
| 170 | # CONFIG_TQM8548 is not set | ||
| 163 | # CONFIG_TQM8555 is not set | 171 | # CONFIG_TQM8555 is not set |
| 164 | # CONFIG_TQM8560 is not set | 172 | # CONFIG_TQM8560 is not set |
| 165 | # CONFIG_SBC8548 is not set | 173 | # CONFIG_SBC8548 is not set |
| @@ -214,6 +222,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 214 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 222 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 215 | CONFIG_PAGEFLAGS_EXTENDED=y | 223 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 216 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 225 | CONFIG_MIGRATION=y | ||
| 217 | # CONFIG_RESOURCES_64BIT is not set | 226 | # CONFIG_RESOURCES_64BIT is not set |
| 218 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
| 219 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
| @@ -221,6 +230,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 221 | CONFIG_FORCE_MAX_ZONEORDER=11 | 230 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 222 | CONFIG_PROC_DEVICETREE=y | 231 | CONFIG_PROC_DEVICETREE=y |
| 223 | # CONFIG_CMDLINE_BOOL is not set | 232 | # CONFIG_CMDLINE_BOOL is not set |
| 233 | CONFIG_EXTRA_TARGETS="" | ||
| 224 | # CONFIG_PM is not set | 234 | # CONFIG_PM is not set |
| 225 | # CONFIG_SECCOMP is not set | 235 | # CONFIG_SECCOMP is not set |
| 226 | CONFIG_ISA_DMA_API=y | 236 | CONFIG_ISA_DMA_API=y |
| @@ -230,6 +240,7 @@ CONFIG_ISA_DMA_API=y | |||
| 230 | # | 240 | # |
| 231 | CONFIG_ZONE_DMA=y | 241 | CONFIG_ZONE_DMA=y |
| 232 | CONFIG_FSL_SOC=y | 242 | CONFIG_FSL_SOC=y |
| 243 | CONFIG_PPC_PCI_CHOICE=y | ||
| 233 | # CONFIG_PCI is not set | 244 | # CONFIG_PCI is not set |
| 234 | # CONFIG_PCI_DOMAINS is not set | 245 | # CONFIG_PCI_DOMAINS is not set |
| 235 | # CONFIG_PCI_SYSCALL is not set | 246 | # CONFIG_PCI_SYSCALL is not set |
| @@ -251,10 +262,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 251 | CONFIG_PHYSICAL_START=0x00000000 | 262 | CONFIG_PHYSICAL_START=0x00000000 |
| 252 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 263 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 253 | CONFIG_TASK_SIZE=0xc0000000 | 264 | CONFIG_TASK_SIZE=0xc0000000 |
| 254 | |||
| 255 | # | ||
| 256 | # Networking | ||
| 257 | # | ||
| 258 | CONFIG_NET=y | 265 | CONFIG_NET=y |
| 259 | 266 | ||
| 260 | # | 267 | # |
| @@ -366,6 +373,7 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 366 | # CONFIG_BLK_DEV_XIP is not set | 373 | # CONFIG_BLK_DEV_XIP is not set |
| 367 | # CONFIG_CDROM_PKTCDVD is not set | 374 | # CONFIG_CDROM_PKTCDVD is not set |
| 368 | # CONFIG_ATA_OVER_ETH is not set | 375 | # CONFIG_ATA_OVER_ETH is not set |
| 376 | # CONFIG_BLK_DEV_HD is not set | ||
| 369 | CONFIG_MISC_DEVICES=y | 377 | CONFIG_MISC_DEVICES=y |
| 370 | # CONFIG_EEPROM_93CX6 is not set | 378 | # CONFIG_EEPROM_93CX6 is not set |
| 371 | # CONFIG_ENCLOSURE_SERVICES is not set | 379 | # CONFIG_ENCLOSURE_SERVICES is not set |
| @@ -383,7 +391,6 @@ CONFIG_HAVE_IDE=y | |||
| 383 | # CONFIG_MD is not set | 391 | # CONFIG_MD is not set |
| 384 | # CONFIG_MACINTOSH_DRIVERS is not set | 392 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 385 | CONFIG_NETDEVICES=y | 393 | CONFIG_NETDEVICES=y |
| 386 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 387 | # CONFIG_DUMMY is not set | 394 | # CONFIG_DUMMY is not set |
| 388 | # CONFIG_BONDING is not set | 395 | # CONFIG_BONDING is not set |
| 389 | # CONFIG_MACVLAN is not set | 396 | # CONFIG_MACVLAN is not set |
| @@ -415,9 +422,7 @@ CONFIG_MII=y | |||
| 415 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 422 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 416 | # CONFIG_B44 is not set | 423 | # CONFIG_B44 is not set |
| 417 | CONFIG_NETDEV_1000=y | 424 | CONFIG_NETDEV_1000=y |
| 418 | # CONFIG_E1000E_ENABLED is not set | ||
| 419 | CONFIG_GIANFAR=y | 425 | CONFIG_GIANFAR=y |
| 420 | CONFIG_GFAR_NAPI=y | ||
| 421 | CONFIG_NETDEV_10000=y | 426 | CONFIG_NETDEV_10000=y |
| 422 | 427 | ||
| 423 | # | 428 | # |
| @@ -501,6 +506,8 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 501 | # CONFIG_TCG_TPM is not set | 506 | # CONFIG_TCG_TPM is not set |
| 502 | # CONFIG_I2C is not set | 507 | # CONFIG_I2C is not set |
| 503 | # CONFIG_SPI is not set | 508 | # CONFIG_SPI is not set |
| 509 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 510 | # CONFIG_GPIOLIB is not set | ||
| 504 | # CONFIG_W1 is not set | 511 | # CONFIG_W1 is not set |
| 505 | # CONFIG_POWER_SUPPLY is not set | 512 | # CONFIG_POWER_SUPPLY is not set |
| 506 | CONFIG_HWMON=y | 513 | CONFIG_HWMON=y |
| @@ -517,6 +524,7 @@ CONFIG_HWMON=y | |||
| 517 | # CONFIG_SENSORS_W83627EHF is not set | 524 | # CONFIG_SENSORS_W83627EHF is not set |
| 518 | # CONFIG_HWMON_DEBUG_CHIP is not set | 525 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 519 | # CONFIG_THERMAL is not set | 526 | # CONFIG_THERMAL is not set |
| 527 | # CONFIG_THERMAL_HWMON is not set | ||
| 520 | # CONFIG_WATCHDOG is not set | 528 | # CONFIG_WATCHDOG is not set |
| 521 | 529 | ||
| 522 | # | 530 | # |
| @@ -528,8 +536,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 528 | # | 536 | # |
| 529 | # Multifunction device drivers | 537 | # Multifunction device drivers |
| 530 | # | 538 | # |
| 539 | # CONFIG_MFD_CORE is not set | ||
| 531 | # CONFIG_MFD_SM501 is not set | 540 | # CONFIG_MFD_SM501 is not set |
| 532 | # CONFIG_HTC_PASIC3 is not set | 541 | # CONFIG_HTC_PASIC3 is not set |
| 542 | # CONFIG_MFD_TMIO is not set | ||
| 533 | 543 | ||
| 534 | # | 544 | # |
| 535 | # Multimedia devices | 545 | # Multimedia devices |
| @@ -559,10 +569,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 559 | # Display device support | 569 | # Display device support |
| 560 | # | 570 | # |
| 561 | # CONFIG_DISPLAY_SUPPORT is not set | 571 | # CONFIG_DISPLAY_SUPPORT is not set |
| 562 | |||
| 563 | # | ||
| 564 | # Sound | ||
| 565 | # | ||
| 566 | # CONFIG_SOUND is not set | 572 | # CONFIG_SOUND is not set |
| 567 | CONFIG_HID_SUPPORT=y | 573 | CONFIG_HID_SUPPORT=y |
| 568 | CONFIG_HID=y | 574 | CONFIG_HID=y |
| @@ -576,6 +582,10 @@ CONFIG_USB_SUPPORT=y | |||
| 576 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 582 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 577 | 583 | ||
| 578 | # | 584 | # |
| 585 | # Enable Host or Gadget support to see Inventra options | ||
| 586 | # | ||
| 587 | |||
| 588 | # | ||
| 579 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 589 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 580 | # | 590 | # |
| 581 | # CONFIG_USB_GADGET is not set | 591 | # CONFIG_USB_GADGET is not set |
| @@ -679,6 +689,7 @@ CONFIG_TMPFS=y | |||
| 679 | # CONFIG_CRAMFS is not set | 689 | # CONFIG_CRAMFS is not set |
| 680 | # CONFIG_VXFS_FS is not set | 690 | # CONFIG_VXFS_FS is not set |
| 681 | # CONFIG_MINIX_FS is not set | 691 | # CONFIG_MINIX_FS is not set |
| 692 | # CONFIG_OMFS_FS is not set | ||
| 682 | # CONFIG_HPFS_FS is not set | 693 | # CONFIG_HPFS_FS is not set |
| 683 | # CONFIG_QNX4FS_FS is not set | 694 | # CONFIG_QNX4FS_FS is not set |
| 684 | # CONFIG_ROMFS_FS is not set | 695 | # CONFIG_ROMFS_FS is not set |
| @@ -688,12 +699,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 688 | CONFIG_NFS_FS=y | 699 | CONFIG_NFS_FS=y |
| 689 | # CONFIG_NFS_V3 is not set | 700 | # CONFIG_NFS_V3 is not set |
| 690 | # CONFIG_NFS_V4 is not set | 701 | # CONFIG_NFS_V4 is not set |
| 691 | # CONFIG_NFSD is not set | ||
| 692 | CONFIG_ROOT_NFS=y | 702 | CONFIG_ROOT_NFS=y |
| 703 | # CONFIG_NFSD is not set | ||
| 693 | CONFIG_LOCKD=y | 704 | CONFIG_LOCKD=y |
| 694 | CONFIG_NFS_COMMON=y | 705 | CONFIG_NFS_COMMON=y |
| 695 | CONFIG_SUNRPC=y | 706 | CONFIG_SUNRPC=y |
| 696 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 697 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 707 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 698 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 708 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 699 | # CONFIG_SMB_FS is not set | 709 | # CONFIG_SMB_FS is not set |
| @@ -729,6 +739,7 @@ CONFIG_BITREVERSE=y | |||
| 729 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 739 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 730 | # CONFIG_CRC_CCITT is not set | 740 | # CONFIG_CRC_CCITT is not set |
| 731 | # CONFIG_CRC16 is not set | 741 | # CONFIG_CRC16 is not set |
| 742 | # CONFIG_CRC_T10DIF is not set | ||
| 732 | # CONFIG_CRC_ITU_T is not set | 743 | # CONFIG_CRC_ITU_T is not set |
| 733 | CONFIG_CRC32=y | 744 | CONFIG_CRC32=y |
| 734 | # CONFIG_CRC7 is not set | 745 | # CONFIG_CRC7 is not set |
| @@ -753,6 +764,8 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 753 | CONFIG_DEBUG_KERNEL=y | 764 | CONFIG_DEBUG_KERNEL=y |
| 754 | # CONFIG_DEBUG_SHIRQ is not set | 765 | # CONFIG_DEBUG_SHIRQ is not set |
| 755 | CONFIG_DETECT_SOFTLOCKUP=y | 766 | CONFIG_DETECT_SOFTLOCKUP=y |
| 767 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 768 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 756 | CONFIG_SCHED_DEBUG=y | 769 | CONFIG_SCHED_DEBUG=y |
| 757 | # CONFIG_SCHEDSTATS is not set | 770 | # CONFIG_SCHEDSTATS is not set |
| 758 | # CONFIG_TIMER_STATS is not set | 771 | # CONFIG_TIMER_STATS is not set |
| @@ -769,16 +782,29 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 769 | # CONFIG_DEBUG_INFO is not set | 782 | # CONFIG_DEBUG_INFO is not set |
| 770 | # CONFIG_DEBUG_VM is not set | 783 | # CONFIG_DEBUG_VM is not set |
| 771 | # CONFIG_DEBUG_WRITECOUNT is not set | 784 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 785 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 772 | # CONFIG_DEBUG_LIST is not set | 786 | # CONFIG_DEBUG_LIST is not set |
| 773 | # CONFIG_DEBUG_SG is not set | 787 | # CONFIG_DEBUG_SG is not set |
| 774 | # CONFIG_BOOT_PRINTK_DELAY is not set | 788 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 789 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 775 | # CONFIG_BACKTRACE_SELF_TEST is not set | 790 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 776 | # CONFIG_FAULT_INJECTION is not set | 791 | # CONFIG_FAULT_INJECTION is not set |
| 792 | # CONFIG_LATENCYTOP is not set | ||
| 793 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 794 | CONFIG_HAVE_FTRACE=y | ||
| 795 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 796 | # CONFIG_FTRACE is not set | ||
| 797 | # CONFIG_SCHED_TRACER is not set | ||
| 798 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 777 | # CONFIG_SAMPLES is not set | 799 | # CONFIG_SAMPLES is not set |
| 800 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 801 | # CONFIG_KGDB is not set | ||
| 778 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 802 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 779 | # CONFIG_DEBUG_STACK_USAGE is not set | 803 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 780 | # CONFIG_DEBUG_PAGEALLOC is not set | 804 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 781 | # CONFIG_DEBUGGER is not set | 805 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 806 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 807 | # CONFIG_XMON is not set | ||
| 782 | # CONFIG_IRQSTACKS is not set | 808 | # CONFIG_IRQSTACKS is not set |
| 783 | # CONFIG_BDI_SWITCH is not set | 809 | # CONFIG_BDI_SWITCH is not set |
| 784 | CONFIG_PPC_EARLY_DEBUG=y | 810 | CONFIG_PPC_EARLY_DEBUG=y |
| @@ -842,6 +868,10 @@ CONFIG_CRYPTO=y | |||
| 842 | # CONFIG_CRYPTO_MD4 is not set | 868 | # CONFIG_CRYPTO_MD4 is not set |
| 843 | # CONFIG_CRYPTO_MD5 is not set | 869 | # CONFIG_CRYPTO_MD5 is not set |
| 844 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 870 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 871 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 872 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 873 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 874 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 845 | # CONFIG_CRYPTO_SHA1 is not set | 875 | # CONFIG_CRYPTO_SHA1 is not set |
| 846 | # CONFIG_CRYPTO_SHA256 is not set | 876 | # CONFIG_CRYPTO_SHA256 is not set |
| 847 | # CONFIG_CRYPTO_SHA512 is not set | 877 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -873,5 +903,6 @@ CONFIG_CRYPTO=y | |||
| 873 | # CONFIG_CRYPTO_DEFLATE is not set | 903 | # CONFIG_CRYPTO_DEFLATE is not set |
| 874 | # CONFIG_CRYPTO_LZO is not set | 904 | # CONFIG_CRYPTO_LZO is not set |
| 875 | CONFIG_CRYPTO_HW=y | 905 | CONFIG_CRYPTO_HW=y |
| 906 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 876 | # CONFIG_PPC_CLOCK is not set | 907 | # CONFIG_PPC_CLOCK is not set |
| 877 | # CONFIG_VIRTUALIZATION is not set | 908 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/stx_gp3_defconfig b/arch/powerpc/configs/85xx/stx_gp3_defconfig index 7804ca1ecc94..2b05d43f8f7e 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:38 2008 | 4 | # Thu Aug 21 00:52:37 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,12 +34,14 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 39 | CONFIG_GENERIC_HWEIGHT=y | 41 | CONFIG_GENERIC_HWEIGHT=y |
| 40 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 42 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 41 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 43 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 44 | CONFIG_GENERIC_GPIO=y | ||
| 42 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 45 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
| 43 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
| 44 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
| @@ -89,7 +92,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | CONFIG_KALLSYMS=y | 95 | CONFIG_KALLSYMS=y |
| 94 | # CONFIG_KALLSYMS_ALL is not set | 96 | # CONFIG_KALLSYMS_ALL is not set |
| 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 97 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -115,10 +117,16 @@ CONFIG_SLUB=y | |||
| 115 | # CONFIG_MARKERS is not set | 117 | # CONFIG_MARKERS is not set |
| 116 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 117 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 121 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 118 | CONFIG_HAVE_KPROBES=y | 122 | CONFIG_HAVE_KPROBES=y |
| 119 | CONFIG_HAVE_KRETPROBES=y | 123 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 120 | # CONFIG_HAVE_DMA_ATTRS is not set | 125 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 126 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 127 | CONFIG_HAVE_CLK=y | ||
| 121 | CONFIG_PROC_PAGE_MONITOR=y | 128 | CONFIG_PROC_PAGE_MONITOR=y |
| 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 122 | CONFIG_SLABINFO=y | 130 | CONFIG_SLABINFO=y |
| 123 | CONFIG_RT_MUTEXES=y | 131 | CONFIG_RT_MUTEXES=y |
| 124 | # CONFIG_TINY_SHMEM is not set | 132 | # CONFIG_TINY_SHMEM is not set |
| @@ -134,6 +142,7 @@ CONFIG_BLOCK=y | |||
| 134 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 135 | # CONFIG_LSF is not set | 143 | # CONFIG_LSF is not set |
| 136 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
| 145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 137 | 146 | ||
| 138 | # | 147 | # |
| 139 | # IO Schedulers | 148 | # IO Schedulers |
| @@ -152,8 +161,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 152 | # | 161 | # |
| 153 | # Platform support | 162 | # Platform support |
| 154 | # | 163 | # |
| 155 | # CONFIG_PPC_MPC512x is not set | ||
| 156 | # CONFIG_PPC_MPC5121 is not set | ||
| 157 | # CONFIG_PPC_CELL is not set | 164 | # CONFIG_PPC_CELL is not set |
| 158 | # CONFIG_PPC_CELL_NATIVE is not set | 165 | # CONFIG_PPC_CELL_NATIVE is not set |
| 159 | # CONFIG_PQ2ADS is not set | 166 | # CONFIG_PQ2ADS is not set |
| @@ -162,11 +169,13 @@ CONFIG_MPC85xx=y | |||
| 162 | # CONFIG_MPC8560_ADS is not set | 169 | # CONFIG_MPC8560_ADS is not set |
| 163 | # CONFIG_MPC85xx_CDS is not set | 170 | # CONFIG_MPC85xx_CDS is not set |
| 164 | # CONFIG_MPC85xx_MDS is not set | 171 | # CONFIG_MPC85xx_MDS is not set |
| 172 | # CONFIG_MPC8536_DS is not set | ||
| 165 | # CONFIG_MPC85xx_DS is not set | 173 | # CONFIG_MPC85xx_DS is not set |
| 166 | # CONFIG_KSI8560 is not set | 174 | # CONFIG_KSI8560 is not set |
| 167 | CONFIG_STX_GP3=y | 175 | CONFIG_STX_GP3=y |
| 168 | # CONFIG_TQM8540 is not set | 176 | # CONFIG_TQM8540 is not set |
| 169 | # CONFIG_TQM8541 is not set | 177 | # CONFIG_TQM8541 is not set |
| 178 | # CONFIG_TQM8548 is not set | ||
| 170 | # CONFIG_TQM8555 is not set | 179 | # CONFIG_TQM8555 is not set |
| 171 | # CONFIG_TQM8560 is not set | 180 | # CONFIG_TQM8560 is not set |
| 172 | # CONFIG_SBC8548 is not set | 181 | # CONFIG_SBC8548 is not set |
| @@ -183,7 +192,6 @@ CONFIG_MPIC=y | |||
| 183 | # CONFIG_GENERIC_IOMAP is not set | 192 | # CONFIG_GENERIC_IOMAP is not set |
| 184 | # CONFIG_CPU_FREQ is not set | 193 | # CONFIG_CPU_FREQ is not set |
| 185 | CONFIG_CPM2=y | 194 | CONFIG_CPM2=y |
| 186 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 187 | # CONFIG_FSL_ULI1575 is not set | 195 | # CONFIG_FSL_ULI1575 is not set |
| 188 | CONFIG_CPM=y | 196 | CONFIG_CPM=y |
| 189 | 197 | ||
| @@ -223,6 +231,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 223 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 231 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 224 | CONFIG_PAGEFLAGS_EXTENDED=y | 232 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 225 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 233 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 234 | CONFIG_MIGRATION=y | ||
| 226 | # CONFIG_RESOURCES_64BIT is not set | 235 | # CONFIG_RESOURCES_64BIT is not set |
| 227 | CONFIG_ZONE_DMA_FLAG=1 | 236 | CONFIG_ZONE_DMA_FLAG=1 |
| 228 | CONFIG_BOUNCE=y | 237 | CONFIG_BOUNCE=y |
| @@ -230,6 +239,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 230 | CONFIG_FORCE_MAX_ZONEORDER=11 | 239 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 231 | CONFIG_PROC_DEVICETREE=y | 240 | CONFIG_PROC_DEVICETREE=y |
| 232 | # CONFIG_CMDLINE_BOOL is not set | 241 | # CONFIG_CMDLINE_BOOL is not set |
| 242 | CONFIG_EXTRA_TARGETS="" | ||
| 233 | # CONFIG_PM is not set | 243 | # CONFIG_PM is not set |
| 234 | CONFIG_SECCOMP=y | 244 | CONFIG_SECCOMP=y |
| 235 | CONFIG_ISA_DMA_API=y | 245 | CONFIG_ISA_DMA_API=y |
| @@ -241,6 +251,7 @@ CONFIG_ZONE_DMA=y | |||
| 241 | CONFIG_PPC_INDIRECT_PCI=y | 251 | CONFIG_PPC_INDIRECT_PCI=y |
| 242 | CONFIG_FSL_SOC=y | 252 | CONFIG_FSL_SOC=y |
| 243 | CONFIG_FSL_PCI=y | 253 | CONFIG_FSL_PCI=y |
| 254 | CONFIG_PPC_PCI_CHOICE=y | ||
| 244 | CONFIG_PCI=y | 255 | CONFIG_PCI=y |
| 245 | CONFIG_PCI_DOMAINS=y | 256 | CONFIG_PCI_DOMAINS=y |
| 246 | CONFIG_PCI_SYSCALL=y | 257 | CONFIG_PCI_SYSCALL=y |
| @@ -267,10 +278,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 267 | CONFIG_PHYSICAL_START=0x00000000 | 278 | CONFIG_PHYSICAL_START=0x00000000 |
| 268 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 279 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 269 | CONFIG_TASK_SIZE=0xc0000000 | 280 | CONFIG_TASK_SIZE=0xc0000000 |
| 270 | |||
| 271 | # | ||
| 272 | # Networking | ||
| 273 | # | ||
| 274 | CONFIG_NET=y | 281 | CONFIG_NET=y |
| 275 | 282 | ||
| 276 | # | 283 | # |
| @@ -426,6 +433,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 426 | # CONFIG_CONNECTOR is not set | 433 | # CONFIG_CONNECTOR is not set |
| 427 | # CONFIG_MTD is not set | 434 | # CONFIG_MTD is not set |
| 428 | CONFIG_OF_DEVICE=y | 435 | CONFIG_OF_DEVICE=y |
| 436 | CONFIG_OF_GPIO=y | ||
| 429 | CONFIG_OF_I2C=m | 437 | CONFIG_OF_I2C=m |
| 430 | CONFIG_PARPORT=m | 438 | CONFIG_PARPORT=m |
| 431 | CONFIG_PARPORT_PC=m | 439 | CONFIG_PARPORT_PC=m |
| @@ -452,15 +460,16 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 452 | # CONFIG_BLK_DEV_XIP is not set | 460 | # CONFIG_BLK_DEV_XIP is not set |
| 453 | # CONFIG_CDROM_PKTCDVD is not set | 461 | # CONFIG_CDROM_PKTCDVD is not set |
| 454 | # CONFIG_ATA_OVER_ETH is not set | 462 | # CONFIG_ATA_OVER_ETH is not set |
| 463 | # CONFIG_BLK_DEV_HD is not set | ||
| 455 | CONFIG_MISC_DEVICES=y | 464 | CONFIG_MISC_DEVICES=y |
| 456 | # CONFIG_PHANTOM is not set | 465 | # CONFIG_PHANTOM is not set |
| 457 | # CONFIG_EEPROM_93CX6 is not set | 466 | # CONFIG_EEPROM_93CX6 is not set |
| 458 | # CONFIG_SGI_IOC4 is not set | 467 | # CONFIG_SGI_IOC4 is not set |
| 459 | # CONFIG_TIFM_CORE is not set | 468 | # CONFIG_TIFM_CORE is not set |
| 460 | # CONFIG_ENCLOSURE_SERVICES is not set | 469 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 470 | # CONFIG_HP_ILO is not set | ||
| 461 | CONFIG_HAVE_IDE=y | 471 | CONFIG_HAVE_IDE=y |
| 462 | CONFIG_IDE=y | 472 | CONFIG_IDE=y |
| 463 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 464 | CONFIG_BLK_DEV_IDE=y | 473 | CONFIG_BLK_DEV_IDE=y |
| 465 | 474 | ||
| 466 | # | 475 | # |
| @@ -480,7 +489,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 480 | # | 489 | # |
| 481 | # IDE chipset support/bugfixes | 490 | # IDE chipset support/bugfixes |
| 482 | # | 491 | # |
| 483 | CONFIG_IDE_GENERIC=y | ||
| 484 | # CONFIG_BLK_DEV_PLATFORM is not set | 492 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 485 | 493 | ||
| 486 | # | 494 | # |
| @@ -493,10 +501,8 @@ CONFIG_IDE_GENERIC=y | |||
| 493 | # CONFIG_BLK_DEV_AMD74XX is not set | 501 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 494 | # CONFIG_BLK_DEV_CMD64X is not set | 502 | # CONFIG_BLK_DEV_CMD64X is not set |
| 495 | # CONFIG_BLK_DEV_TRIFLEX is not set | 503 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 496 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 497 | # CONFIG_BLK_DEV_CS5520 is not set | 504 | # CONFIG_BLK_DEV_CS5520 is not set |
| 498 | # CONFIG_BLK_DEV_CS5530 is not set | 505 | # CONFIG_BLK_DEV_CS5530 is not set |
| 499 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 500 | # CONFIG_BLK_DEV_HPT366 is not set | 506 | # CONFIG_BLK_DEV_HPT366 is not set |
| 501 | # CONFIG_BLK_DEV_JMICRON is not set | 507 | # CONFIG_BLK_DEV_JMICRON is not set |
| 502 | # CONFIG_BLK_DEV_SC1200 is not set | 508 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -514,8 +520,6 @@ CONFIG_IDE_GENERIC=y | |||
| 514 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 520 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
| 515 | # CONFIG_BLK_DEV_TC86C001 is not set | 521 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 516 | # CONFIG_BLK_DEV_IDEDMA is not set | 522 | # CONFIG_BLK_DEV_IDEDMA is not set |
| 517 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 518 | # CONFIG_BLK_DEV_HD is not set | ||
| 519 | 523 | ||
| 520 | # | 524 | # |
| 521 | # SCSI device support | 525 | # SCSI device support |
| @@ -594,6 +598,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 594 | # CONFIG_SCSI_NSP32 is not set | 598 | # CONFIG_SCSI_NSP32 is not set |
| 595 | # CONFIG_SCSI_DEBUG is not set | 599 | # CONFIG_SCSI_DEBUG is not set |
| 596 | # CONFIG_SCSI_SRP is not set | 600 | # CONFIG_SCSI_SRP is not set |
| 601 | # CONFIG_SCSI_DH is not set | ||
| 597 | # CONFIG_ATA is not set | 602 | # CONFIG_ATA is not set |
| 598 | # CONFIG_MD is not set | 603 | # CONFIG_MD is not set |
| 599 | # CONFIG_FUSION is not set | 604 | # CONFIG_FUSION is not set |
| @@ -601,12 +606,15 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 601 | # | 606 | # |
| 602 | # IEEE 1394 (FireWire) support | 607 | # IEEE 1394 (FireWire) support |
| 603 | # | 608 | # |
| 609 | |||
| 610 | # | ||
| 611 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 612 | # | ||
| 604 | # CONFIG_FIREWIRE is not set | 613 | # CONFIG_FIREWIRE is not set |
| 605 | # CONFIG_IEEE1394 is not set | 614 | # CONFIG_IEEE1394 is not set |
| 606 | # CONFIG_I2O is not set | 615 | # CONFIG_I2O is not set |
| 607 | # CONFIG_MACINTOSH_DRIVERS is not set | 616 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 608 | CONFIG_NETDEVICES=y | 617 | CONFIG_NETDEVICES=y |
| 609 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 610 | # CONFIG_DUMMY is not set | 618 | # CONFIG_DUMMY is not set |
| 611 | # CONFIG_BONDING is not set | 619 | # CONFIG_BONDING is not set |
| 612 | # CONFIG_MACVLAN is not set | 620 | # CONFIG_MACVLAN is not set |
| @@ -652,7 +660,6 @@ CONFIG_NETDEV_1000=y | |||
| 652 | # CONFIG_DL2K is not set | 660 | # CONFIG_DL2K is not set |
| 653 | # CONFIG_E1000 is not set | 661 | # CONFIG_E1000 is not set |
| 654 | # CONFIG_E1000E is not set | 662 | # CONFIG_E1000E is not set |
| 655 | # CONFIG_E1000E_ENABLED is not set | ||
| 656 | # CONFIG_IP1000 is not set | 663 | # CONFIG_IP1000 is not set |
| 657 | # CONFIG_IGB is not set | 664 | # CONFIG_IGB is not set |
| 658 | # CONFIG_NS83820 is not set | 665 | # CONFIG_NS83820 is not set |
| @@ -666,9 +673,9 @@ CONFIG_NETDEV_1000=y | |||
| 666 | # CONFIG_TIGON3 is not set | 673 | # CONFIG_TIGON3 is not set |
| 667 | # CONFIG_BNX2 is not set | 674 | # CONFIG_BNX2 is not set |
| 668 | CONFIG_GIANFAR=y | 675 | CONFIG_GIANFAR=y |
| 669 | CONFIG_GFAR_NAPI=y | ||
| 670 | # CONFIG_QLA3XXX is not set | 676 | # CONFIG_QLA3XXX is not set |
| 671 | # CONFIG_ATL1 is not set | 677 | # CONFIG_ATL1 is not set |
| 678 | # CONFIG_ATL1E is not set | ||
| 672 | CONFIG_NETDEV_10000=y | 679 | CONFIG_NETDEV_10000=y |
| 673 | # CONFIG_CHELSIO_T1 is not set | 680 | # CONFIG_CHELSIO_T1 is not set |
| 674 | # CONFIG_CHELSIO_T3 is not set | 681 | # CONFIG_CHELSIO_T3 is not set |
| @@ -731,6 +738,7 @@ CONFIG_KEYBOARD_ATKBD=y | |||
| 731 | # CONFIG_KEYBOARD_XTKBD is not set | 738 | # CONFIG_KEYBOARD_XTKBD is not set |
| 732 | # CONFIG_KEYBOARD_NEWTON is not set | 739 | # CONFIG_KEYBOARD_NEWTON is not set |
| 733 | # CONFIG_KEYBOARD_STOWAWAY is not set | 740 | # CONFIG_KEYBOARD_STOWAWAY is not set |
| 741 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 734 | CONFIG_INPUT_MOUSE=y | 742 | CONFIG_INPUT_MOUSE=y |
| 735 | CONFIG_MOUSE_PS2=y | 743 | CONFIG_MOUSE_PS2=y |
| 736 | CONFIG_MOUSE_PS2_ALPS=y | 744 | CONFIG_MOUSE_PS2_ALPS=y |
| @@ -741,7 +749,9 @@ CONFIG_MOUSE_PS2_TRACKPOINT=y | |||
| 741 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 749 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| 742 | # CONFIG_MOUSE_SERIAL is not set | 750 | # CONFIG_MOUSE_SERIAL is not set |
| 743 | # CONFIG_MOUSE_APPLETOUCH is not set | 751 | # CONFIG_MOUSE_APPLETOUCH is not set |
| 752 | # CONFIG_MOUSE_BCM5974 is not set | ||
| 744 | # CONFIG_MOUSE_VSXXXAA is not set | 753 | # CONFIG_MOUSE_VSXXXAA is not set |
| 754 | # CONFIG_MOUSE_GPIO is not set | ||
| 745 | # CONFIG_INPUT_JOYSTICK is not set | 755 | # CONFIG_INPUT_JOYSTICK is not set |
| 746 | # CONFIG_INPUT_TABLET is not set | 756 | # CONFIG_INPUT_TABLET is not set |
| 747 | # CONFIG_INPUT_TOUCHSCREEN is not set | 757 | # CONFIG_INPUT_TOUCHSCREEN is not set |
| @@ -757,6 +767,7 @@ CONFIG_SERIO_SERPORT=y | |||
| 757 | # CONFIG_SERIO_PCIPS2 is not set | 767 | # CONFIG_SERIO_PCIPS2 is not set |
| 758 | CONFIG_SERIO_LIBPS2=y | 768 | CONFIG_SERIO_LIBPS2=y |
| 759 | # CONFIG_SERIO_RAW is not set | 769 | # CONFIG_SERIO_RAW is not set |
| 770 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 760 | # CONFIG_GAMEPORT is not set | 771 | # CONFIG_GAMEPORT is not set |
| 761 | 772 | ||
| 762 | # | 773 | # |
| @@ -805,44 +816,68 @@ CONFIG_DEVPORT=y | |||
| 805 | CONFIG_I2C=m | 816 | CONFIG_I2C=m |
| 806 | CONFIG_I2C_BOARDINFO=y | 817 | CONFIG_I2C_BOARDINFO=y |
| 807 | CONFIG_I2C_CHARDEV=m | 818 | CONFIG_I2C_CHARDEV=m |
| 819 | CONFIG_I2C_HELPER_AUTO=y | ||
| 808 | 820 | ||
| 809 | # | 821 | # |
| 810 | # I2C Hardware Bus support | 822 | # I2C Hardware Bus support |
| 811 | # | 823 | # |
| 824 | |||
| 825 | # | ||
| 826 | # PC SMBus host controller drivers | ||
| 827 | # | ||
| 812 | # CONFIG_I2C_ALI1535 is not set | 828 | # CONFIG_I2C_ALI1535 is not set |
| 813 | # CONFIG_I2C_ALI1563 is not set | 829 | # CONFIG_I2C_ALI1563 is not set |
| 814 | # CONFIG_I2C_ALI15X3 is not set | 830 | # CONFIG_I2C_ALI15X3 is not set |
| 815 | # CONFIG_I2C_AMD756 is not set | 831 | # CONFIG_I2C_AMD756 is not set |
| 816 | # CONFIG_I2C_AMD8111 is not set | 832 | # CONFIG_I2C_AMD8111 is not set |
| 817 | # CONFIG_I2C_I801 is not set | 833 | # CONFIG_I2C_I801 is not set |
| 818 | # CONFIG_I2C_I810 is not set | 834 | # CONFIG_I2C_ISCH is not set |
| 819 | # CONFIG_I2C_PIIX4 is not set | 835 | # CONFIG_I2C_PIIX4 is not set |
| 820 | # CONFIG_I2C_MPC is not set | ||
| 821 | # CONFIG_I2C_NFORCE2 is not set | 836 | # CONFIG_I2C_NFORCE2 is not set |
| 822 | # CONFIG_I2C_OCORES is not set | ||
| 823 | # CONFIG_I2C_PARPORT is not set | ||
| 824 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 825 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 826 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 827 | # CONFIG_I2C_SIMTEC is not set | ||
| 828 | # CONFIG_I2C_SIS5595 is not set | 837 | # CONFIG_I2C_SIS5595 is not set |
| 829 | # CONFIG_I2C_SIS630 is not set | 838 | # CONFIG_I2C_SIS630 is not set |
| 830 | # CONFIG_I2C_SIS96X is not set | 839 | # CONFIG_I2C_SIS96X is not set |
| 831 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 832 | # CONFIG_I2C_STUB is not set | ||
| 833 | # CONFIG_I2C_VIA is not set | 840 | # CONFIG_I2C_VIA is not set |
| 834 | # CONFIG_I2C_VIAPRO is not set | 841 | # CONFIG_I2C_VIAPRO is not set |
| 842 | |||
| 843 | # | ||
| 844 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 845 | # | ||
| 846 | # CONFIG_I2C_CPM is not set | ||
| 847 | # CONFIG_I2C_GPIO is not set | ||
| 848 | # CONFIG_I2C_MPC is not set | ||
| 849 | # CONFIG_I2C_OCORES is not set | ||
| 850 | # CONFIG_I2C_SIMTEC is not set | ||
| 851 | |||
| 852 | # | ||
| 853 | # External I2C/SMBus adapter drivers | ||
| 854 | # | ||
| 855 | # CONFIG_I2C_PARPORT is not set | ||
| 856 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 857 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 858 | |||
| 859 | # | ||
| 860 | # Graphics adapter I2C/DDC channel drivers | ||
| 861 | # | ||
| 835 | # CONFIG_I2C_VOODOO3 is not set | 862 | # CONFIG_I2C_VOODOO3 is not set |
| 863 | |||
| 864 | # | ||
| 865 | # Other I2C/SMBus bus drivers | ||
| 866 | # | ||
| 836 | # CONFIG_I2C_PCA_PLATFORM is not set | 867 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 868 | # CONFIG_I2C_STUB is not set | ||
| 837 | 869 | ||
| 838 | # | 870 | # |
| 839 | # Miscellaneous I2C Chip support | 871 | # Miscellaneous I2C Chip support |
| 840 | # | 872 | # |
| 841 | # CONFIG_DS1682 is not set | 873 | # CONFIG_DS1682 is not set |
| 874 | # CONFIG_AT24 is not set | ||
| 842 | # CONFIG_SENSORS_EEPROM is not set | 875 | # CONFIG_SENSORS_EEPROM is not set |
| 843 | # CONFIG_SENSORS_PCF8574 is not set | 876 | # CONFIG_SENSORS_PCF8574 is not set |
| 844 | # CONFIG_PCF8575 is not set | 877 | # CONFIG_PCF8575 is not set |
| 878 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 845 | # CONFIG_SENSORS_PCF8591 is not set | 879 | # CONFIG_SENSORS_PCF8591 is not set |
| 880 | # CONFIG_TPS65010 is not set | ||
| 846 | # CONFIG_SENSORS_MAX6875 is not set | 881 | # CONFIG_SENSORS_MAX6875 is not set |
| 847 | # CONFIG_SENSORS_TSL2550 is not set | 882 | # CONFIG_SENSORS_TSL2550 is not set |
| 848 | # CONFIG_I2C_DEBUG_CORE is not set | 883 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -850,10 +885,32 @@ CONFIG_I2C_CHARDEV=m | |||
| 850 | # CONFIG_I2C_DEBUG_BUS is not set | 885 | # CONFIG_I2C_DEBUG_BUS is not set |
| 851 | # CONFIG_I2C_DEBUG_CHIP is not set | 886 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 852 | # CONFIG_SPI is not set | 887 | # CONFIG_SPI is not set |
| 888 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 889 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | ||
| 890 | CONFIG_GPIOLIB=y | ||
| 891 | # CONFIG_DEBUG_GPIO is not set | ||
| 892 | # CONFIG_GPIO_SYSFS is not set | ||
| 893 | |||
| 894 | # | ||
| 895 | # I2C GPIO expanders: | ||
| 896 | # | ||
| 897 | # CONFIG_GPIO_MAX732X is not set | ||
| 898 | # CONFIG_GPIO_PCA953X is not set | ||
| 899 | # CONFIG_GPIO_PCF857X is not set | ||
| 900 | |||
| 901 | # | ||
| 902 | # PCI GPIO expanders: | ||
| 903 | # | ||
| 904 | # CONFIG_GPIO_BT8XX is not set | ||
| 905 | |||
| 906 | # | ||
| 907 | # SPI GPIO expanders: | ||
| 908 | # | ||
| 853 | # CONFIG_W1 is not set | 909 | # CONFIG_W1 is not set |
| 854 | # CONFIG_POWER_SUPPLY is not set | 910 | # CONFIG_POWER_SUPPLY is not set |
| 855 | CONFIG_HWMON=y | 911 | CONFIG_HWMON=y |
| 856 | # CONFIG_HWMON_VID is not set | 912 | # CONFIG_HWMON_VID is not set |
| 913 | # CONFIG_SENSORS_AD7414 is not set | ||
| 857 | # CONFIG_SENSORS_AD7418 is not set | 914 | # CONFIG_SENSORS_AD7418 is not set |
| 858 | # CONFIG_SENSORS_ADM1021 is not set | 915 | # CONFIG_SENSORS_ADM1021 is not set |
| 859 | # CONFIG_SENSORS_ADM1025 is not set | 916 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -907,6 +964,7 @@ CONFIG_HWMON=y | |||
| 907 | # CONFIG_SENSORS_W83627EHF is not set | 964 | # CONFIG_SENSORS_W83627EHF is not set |
| 908 | # CONFIG_HWMON_DEBUG_CHIP is not set | 965 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 909 | # CONFIG_THERMAL is not set | 966 | # CONFIG_THERMAL is not set |
| 967 | # CONFIG_THERMAL_HWMON is not set | ||
| 910 | # CONFIG_WATCHDOG is not set | 968 | # CONFIG_WATCHDOG is not set |
| 911 | 969 | ||
| 912 | # | 970 | # |
| @@ -918,8 +976,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 918 | # | 976 | # |
| 919 | # Multifunction device drivers | 977 | # Multifunction device drivers |
| 920 | # | 978 | # |
| 979 | # CONFIG_MFD_CORE is not set | ||
| 921 | # CONFIG_MFD_SM501 is not set | 980 | # CONFIG_MFD_SM501 is not set |
| 922 | # CONFIG_HTC_PASIC3 is not set | 981 | # CONFIG_HTC_PASIC3 is not set |
| 982 | # CONFIG_MFD_TMIO is not set | ||
| 923 | 983 | ||
| 924 | # | 984 | # |
| 925 | # Multimedia devices | 985 | # Multimedia devices |
| @@ -958,20 +1018,8 @@ CONFIG_DRM=m | |||
| 958 | # Display device support | 1018 | # Display device support |
| 959 | # | 1019 | # |
| 960 | # CONFIG_DISPLAY_SUPPORT is not set | 1020 | # CONFIG_DISPLAY_SUPPORT is not set |
| 961 | |||
| 962 | # | ||
| 963 | # Sound | ||
| 964 | # | ||
| 965 | CONFIG_SOUND=m | 1021 | CONFIG_SOUND=m |
| 966 | |||
| 967 | # | ||
| 968 | # Advanced Linux Sound Architecture | ||
| 969 | # | ||
| 970 | # CONFIG_SND is not set | 1022 | # CONFIG_SND is not set |
| 971 | |||
| 972 | # | ||
| 973 | # Open Sound System | ||
| 974 | # | ||
| 975 | # CONFIG_SOUND_PRIME is not set | 1023 | # CONFIG_SOUND_PRIME is not set |
| 976 | CONFIG_HID_SUPPORT=y | 1024 | CONFIG_HID_SUPPORT=y |
| 977 | CONFIG_HID=y | 1025 | CONFIG_HID=y |
| @@ -986,6 +1034,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 986 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1034 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 987 | 1035 | ||
| 988 | # | 1036 | # |
| 1037 | # Enable Host or Gadget support to see Inventra options | ||
| 1038 | # | ||
| 1039 | |||
| 1040 | # | ||
| 989 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1041 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 990 | # | 1042 | # |
| 991 | # CONFIG_USB_GADGET is not set | 1043 | # CONFIG_USB_GADGET is not set |
| @@ -1070,6 +1122,7 @@ CONFIG_TMPFS=y | |||
| 1070 | CONFIG_CRAMFS=m | 1122 | CONFIG_CRAMFS=m |
| 1071 | # CONFIG_VXFS_FS is not set | 1123 | # CONFIG_VXFS_FS is not set |
| 1072 | # CONFIG_MINIX_FS is not set | 1124 | # CONFIG_MINIX_FS is not set |
| 1125 | # CONFIG_OMFS_FS is not set | ||
| 1073 | # CONFIG_HPFS_FS is not set | 1126 | # CONFIG_HPFS_FS is not set |
| 1074 | # CONFIG_QNX4FS_FS is not set | 1127 | # CONFIG_QNX4FS_FS is not set |
| 1075 | # CONFIG_ROMFS_FS is not set | 1128 | # CONFIG_ROMFS_FS is not set |
| @@ -1080,13 +1133,12 @@ CONFIG_NFS_FS=y | |||
| 1080 | CONFIG_NFS_V3=y | 1133 | CONFIG_NFS_V3=y |
| 1081 | # CONFIG_NFS_V3_ACL is not set | 1134 | # CONFIG_NFS_V3_ACL is not set |
| 1082 | # CONFIG_NFS_V4 is not set | 1135 | # CONFIG_NFS_V4 is not set |
| 1083 | # CONFIG_NFSD is not set | ||
| 1084 | CONFIG_ROOT_NFS=y | 1136 | CONFIG_ROOT_NFS=y |
| 1137 | # CONFIG_NFSD is not set | ||
| 1085 | CONFIG_LOCKD=y | 1138 | CONFIG_LOCKD=y |
| 1086 | CONFIG_LOCKD_V4=y | 1139 | CONFIG_LOCKD_V4=y |
| 1087 | CONFIG_NFS_COMMON=y | 1140 | CONFIG_NFS_COMMON=y |
| 1088 | CONFIG_SUNRPC=y | 1141 | CONFIG_SUNRPC=y |
| 1089 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1090 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1142 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1091 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1143 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1092 | CONFIG_SMB_FS=m | 1144 | CONFIG_SMB_FS=m |
| @@ -1150,6 +1202,7 @@ CONFIG_BITREVERSE=y | |||
| 1150 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1202 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1151 | CONFIG_CRC_CCITT=y | 1203 | CONFIG_CRC_CCITT=y |
| 1152 | # CONFIG_CRC16 is not set | 1204 | # CONFIG_CRC16 is not set |
| 1205 | CONFIG_CRC_T10DIF=m | ||
| 1153 | CONFIG_CRC_ITU_T=m | 1206 | CONFIG_CRC_ITU_T=m |
| 1154 | CONFIG_CRC32=y | 1207 | CONFIG_CRC32=y |
| 1155 | # CONFIG_CRC7 is not set | 1208 | # CONFIG_CRC7 is not set |
| @@ -1175,6 +1228,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 1175 | CONFIG_DEBUG_KERNEL=y | 1228 | CONFIG_DEBUG_KERNEL=y |
| 1176 | # CONFIG_DEBUG_SHIRQ is not set | 1229 | # CONFIG_DEBUG_SHIRQ is not set |
| 1177 | CONFIG_DETECT_SOFTLOCKUP=y | 1230 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1231 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1232 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1178 | CONFIG_SCHED_DEBUG=y | 1233 | CONFIG_SCHED_DEBUG=y |
| 1179 | # CONFIG_SCHEDSTATS is not set | 1234 | # CONFIG_SCHEDSTATS is not set |
| 1180 | # CONFIG_TIMER_STATS is not set | 1235 | # CONFIG_TIMER_STATS is not set |
| @@ -1193,18 +1248,29 @@ CONFIG_SCHED_DEBUG=y | |||
| 1193 | # CONFIG_DEBUG_INFO is not set | 1248 | # CONFIG_DEBUG_INFO is not set |
| 1194 | # CONFIG_DEBUG_VM is not set | 1249 | # CONFIG_DEBUG_VM is not set |
| 1195 | # CONFIG_DEBUG_WRITECOUNT is not set | 1250 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1251 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1196 | # CONFIG_DEBUG_LIST is not set | 1252 | # CONFIG_DEBUG_LIST is not set |
| 1197 | # CONFIG_DEBUG_SG is not set | 1253 | # CONFIG_DEBUG_SG is not set |
| 1198 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1254 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1199 | # CONFIG_RCU_TORTURE_TEST is not set | 1255 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1200 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1256 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1201 | # CONFIG_FAULT_INJECTION is not set | 1257 | # CONFIG_FAULT_INJECTION is not set |
| 1258 | # CONFIG_LATENCYTOP is not set | ||
| 1259 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1260 | CONFIG_HAVE_FTRACE=y | ||
| 1261 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1262 | # CONFIG_FTRACE is not set | ||
| 1263 | # CONFIG_SCHED_TRACER is not set | ||
| 1264 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1202 | # CONFIG_SAMPLES is not set | 1265 | # CONFIG_SAMPLES is not set |
| 1266 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1267 | # CONFIG_KGDB is not set | ||
| 1203 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1268 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1204 | # CONFIG_DEBUG_STACK_USAGE is not set | 1269 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1205 | # CONFIG_DEBUG_PAGEALLOC is not set | 1270 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1206 | # CONFIG_DEBUGGER is not set | 1271 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1207 | # CONFIG_KGDB_CONSOLE is not set | 1272 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1273 | # CONFIG_XMON is not set | ||
| 1208 | # CONFIG_IRQSTACKS is not set | 1274 | # CONFIG_IRQSTACKS is not set |
| 1209 | CONFIG_BDI_SWITCH=y | 1275 | CONFIG_BDI_SWITCH=y |
| 1210 | # CONFIG_PPC_EARLY_DEBUG is not set | 1276 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -1258,6 +1324,10 @@ CONFIG_CRYPTO=y | |||
| 1258 | # CONFIG_CRYPTO_MD4 is not set | 1324 | # CONFIG_CRYPTO_MD4 is not set |
| 1259 | # CONFIG_CRYPTO_MD5 is not set | 1325 | # CONFIG_CRYPTO_MD5 is not set |
| 1260 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1326 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1327 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1328 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1329 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1330 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1261 | # CONFIG_CRYPTO_SHA1 is not set | 1331 | # CONFIG_CRYPTO_SHA1 is not set |
| 1262 | # CONFIG_CRYPTO_SHA256 is not set | 1332 | # CONFIG_CRYPTO_SHA256 is not set |
| 1263 | # CONFIG_CRYPTO_SHA512 is not set | 1333 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1290,6 +1360,7 @@ CONFIG_CRYPTO=y | |||
| 1290 | # CONFIG_CRYPTO_LZO is not set | 1360 | # CONFIG_CRYPTO_LZO is not set |
| 1291 | CONFIG_CRYPTO_HW=y | 1361 | CONFIG_CRYPTO_HW=y |
| 1292 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1362 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1293 | # CONFIG_PPC_CLOCK is not set | 1363 | # CONFIG_CRYPTO_DEV_TALITOS is not set |
| 1364 | CONFIG_PPC_CLOCK=y | ||
| 1294 | CONFIG_PPC_LIB_RHEAP=y | 1365 | CONFIG_PPC_LIB_RHEAP=y |
| 1295 | # CONFIG_VIRTUALIZATION is not set | 1366 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8540_defconfig b/arch/powerpc/configs/85xx/tqm8540_defconfig index e0b5559e84aa..1b2d5d577915 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:39 2008 | 4 | # Thu Aug 21 00:52:37 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -89,7 +91,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 91 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 92 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 93 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | # CONFIG_KALLSYMS is not set | 94 | # CONFIG_KALLSYMS is not set |
| 94 | # CONFIG_HOTPLUG is not set | 95 | # CONFIG_HOTPLUG is not set |
| 95 | CONFIG_PRINTK=y | 96 | CONFIG_PRINTK=y |
| @@ -112,10 +113,16 @@ CONFIG_SLUB=y | |||
| 112 | # CONFIG_PROFILING is not set | 113 | # CONFIG_PROFILING is not set |
| 113 | # CONFIG_MARKERS is not set | 114 | # CONFIG_MARKERS is not set |
| 114 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
| 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 117 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 118 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 119 | CONFIG_HAVE_KRETPROBES=y |
| 120 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 121 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 122 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 123 | # CONFIG_HAVE_CLK is not set | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 124 | CONFIG_PROC_PAGE_MONITOR=y |
| 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | 128 | # CONFIG_TINY_SHMEM is not set |
| @@ -126,6 +133,7 @@ CONFIG_BLOCK=y | |||
| 126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 133 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 127 | # CONFIG_LSF is not set | 134 | # CONFIG_LSF is not set |
| 128 | # CONFIG_BLK_DEV_BSG is not set | 135 | # CONFIG_BLK_DEV_BSG is not set |
| 136 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 129 | 137 | ||
| 130 | # | 138 | # |
| 131 | # IO Schedulers | 139 | # IO Schedulers |
| @@ -144,8 +152,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 144 | # | 152 | # |
| 145 | # Platform support | 153 | # Platform support |
| 146 | # | 154 | # |
| 147 | # CONFIG_PPC_MPC512x is not set | ||
| 148 | # CONFIG_PPC_MPC5121 is not set | ||
| 149 | # CONFIG_PPC_CELL is not set | 155 | # CONFIG_PPC_CELL is not set |
| 150 | # CONFIG_PPC_CELL_NATIVE is not set | 156 | # CONFIG_PPC_CELL_NATIVE is not set |
| 151 | # CONFIG_PQ2ADS is not set | 157 | # CONFIG_PQ2ADS is not set |
| @@ -154,11 +160,13 @@ CONFIG_MPC85xx=y | |||
| 154 | # CONFIG_MPC8560_ADS is not set | 160 | # CONFIG_MPC8560_ADS is not set |
| 155 | # CONFIG_MPC85xx_CDS is not set | 161 | # CONFIG_MPC85xx_CDS is not set |
| 156 | # CONFIG_MPC85xx_MDS is not set | 162 | # CONFIG_MPC85xx_MDS is not set |
| 163 | # CONFIG_MPC8536_DS is not set | ||
| 157 | # CONFIG_MPC85xx_DS is not set | 164 | # CONFIG_MPC85xx_DS is not set |
| 158 | # CONFIG_KSI8560 is not set | 165 | # CONFIG_KSI8560 is not set |
| 159 | # CONFIG_STX_GP3 is not set | 166 | # CONFIG_STX_GP3 is not set |
| 160 | CONFIG_TQM8540=y | 167 | CONFIG_TQM8540=y |
| 161 | # CONFIG_TQM8541 is not set | 168 | # CONFIG_TQM8541 is not set |
| 169 | # CONFIG_TQM8548 is not set | ||
| 162 | # CONFIG_TQM8555 is not set | 170 | # CONFIG_TQM8555 is not set |
| 163 | # CONFIG_TQM8560 is not set | 171 | # CONFIG_TQM8560 is not set |
| 164 | # CONFIG_SBC8548 is not set | 172 | # CONFIG_SBC8548 is not set |
| @@ -214,6 +222,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 214 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 222 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 215 | CONFIG_PAGEFLAGS_EXTENDED=y | 223 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 216 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 225 | CONFIG_MIGRATION=y | ||
| 217 | # CONFIG_RESOURCES_64BIT is not set | 226 | # CONFIG_RESOURCES_64BIT is not set |
| 218 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
| 219 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
| @@ -221,6 +230,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 221 | CONFIG_FORCE_MAX_ZONEORDER=11 | 230 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 222 | # CONFIG_PROC_DEVICETREE is not set | 231 | # CONFIG_PROC_DEVICETREE is not set |
| 223 | # CONFIG_CMDLINE_BOOL is not set | 232 | # CONFIG_CMDLINE_BOOL is not set |
| 233 | CONFIG_EXTRA_TARGETS="" | ||
| 224 | # CONFIG_PM is not set | 234 | # CONFIG_PM is not set |
| 225 | CONFIG_SECCOMP=y | 235 | CONFIG_SECCOMP=y |
| 226 | CONFIG_ISA_DMA_API=y | 236 | CONFIG_ISA_DMA_API=y |
| @@ -232,6 +242,7 @@ CONFIG_ZONE_DMA=y | |||
| 232 | CONFIG_PPC_INDIRECT_PCI=y | 242 | CONFIG_PPC_INDIRECT_PCI=y |
| 233 | CONFIG_FSL_SOC=y | 243 | CONFIG_FSL_SOC=y |
| 234 | CONFIG_FSL_PCI=y | 244 | CONFIG_FSL_PCI=y |
| 245 | CONFIG_PPC_PCI_CHOICE=y | ||
| 235 | CONFIG_PCI=y | 246 | CONFIG_PCI=y |
| 236 | CONFIG_PCI_DOMAINS=y | 247 | CONFIG_PCI_DOMAINS=y |
| 237 | CONFIG_PCI_SYSCALL=y | 248 | CONFIG_PCI_SYSCALL=y |
| @@ -255,10 +266,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 255 | CONFIG_PHYSICAL_START=0x00000000 | 266 | CONFIG_PHYSICAL_START=0x00000000 |
| 256 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 267 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 257 | CONFIG_TASK_SIZE=0xc0000000 | 268 | CONFIG_TASK_SIZE=0xc0000000 |
| 258 | |||
| 259 | # | ||
| 260 | # Networking | ||
| 261 | # | ||
| 262 | CONFIG_NET=y | 269 | CONFIG_NET=y |
| 263 | 270 | ||
| 264 | # | 271 | # |
| @@ -449,20 +456,22 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 449 | # CONFIG_BLK_DEV_XIP is not set | 456 | # CONFIG_BLK_DEV_XIP is not set |
| 450 | # CONFIG_CDROM_PKTCDVD is not set | 457 | # CONFIG_CDROM_PKTCDVD is not set |
| 451 | # CONFIG_ATA_OVER_ETH is not set | 458 | # CONFIG_ATA_OVER_ETH is not set |
| 459 | # CONFIG_BLK_DEV_HD is not set | ||
| 452 | CONFIG_MISC_DEVICES=y | 460 | CONFIG_MISC_DEVICES=y |
| 453 | # CONFIG_PHANTOM is not set | 461 | # CONFIG_PHANTOM is not set |
| 454 | # CONFIG_EEPROM_93CX6 is not set | 462 | # CONFIG_EEPROM_93CX6 is not set |
| 455 | # CONFIG_SGI_IOC4 is not set | 463 | # CONFIG_SGI_IOC4 is not set |
| 456 | # CONFIG_TIFM_CORE is not set | 464 | # CONFIG_TIFM_CORE is not set |
| 457 | # CONFIG_ENCLOSURE_SERVICES is not set | 465 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 466 | # CONFIG_HP_ILO is not set | ||
| 458 | CONFIG_HAVE_IDE=y | 467 | CONFIG_HAVE_IDE=y |
| 459 | CONFIG_IDE=y | 468 | CONFIG_IDE=y |
| 460 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 461 | CONFIG_BLK_DEV_IDE=y | 469 | CONFIG_BLK_DEV_IDE=y |
| 462 | 470 | ||
| 463 | # | 471 | # |
| 464 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 472 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 465 | # | 473 | # |
| 474 | CONFIG_IDE_TIMINGS=y | ||
| 466 | # CONFIG_BLK_DEV_IDE_SATA is not set | 475 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 467 | CONFIG_BLK_DEV_IDEDISK=y | 476 | CONFIG_BLK_DEV_IDEDISK=y |
| 468 | # CONFIG_IDEDISK_MULTI_MODE is not set | 477 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| @@ -475,7 +484,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 475 | # | 484 | # |
| 476 | # IDE chipset support/bugfixes | 485 | # IDE chipset support/bugfixes |
| 477 | # | 486 | # |
| 478 | CONFIG_IDE_GENERIC=y | ||
| 479 | # CONFIG_BLK_DEV_PLATFORM is not set | 487 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 480 | CONFIG_BLK_DEV_IDEDMA_SFF=y | 488 | CONFIG_BLK_DEV_IDEDMA_SFF=y |
| 481 | 489 | ||
| @@ -493,10 +501,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 493 | # CONFIG_BLK_DEV_AMD74XX is not set | 501 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 494 | # CONFIG_BLK_DEV_CMD64X is not set | 502 | # CONFIG_BLK_DEV_CMD64X is not set |
| 495 | # CONFIG_BLK_DEV_TRIFLEX is not set | 503 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 496 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 497 | # CONFIG_BLK_DEV_CS5520 is not set | 504 | # CONFIG_BLK_DEV_CS5520 is not set |
| 498 | # CONFIG_BLK_DEV_CS5530 is not set | 505 | # CONFIG_BLK_DEV_CS5530 is not set |
| 499 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 500 | # CONFIG_BLK_DEV_HPT366 is not set | 506 | # CONFIG_BLK_DEV_HPT366 is not set |
| 501 | # CONFIG_BLK_DEV_JMICRON is not set | 507 | # CONFIG_BLK_DEV_JMICRON is not set |
| 502 | # CONFIG_BLK_DEV_SC1200 is not set | 508 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -514,8 +520,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 514 | CONFIG_BLK_DEV_VIA82CXXX=y | 520 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 515 | # CONFIG_BLK_DEV_TC86C001 is not set | 521 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 516 | CONFIG_BLK_DEV_IDEDMA=y | 522 | CONFIG_BLK_DEV_IDEDMA=y |
| 517 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 518 | # CONFIG_BLK_DEV_HD is not set | ||
| 519 | 523 | ||
| 520 | # | 524 | # |
| 521 | # SCSI device support | 525 | # SCSI device support |
| @@ -531,12 +535,15 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 531 | # | 535 | # |
| 532 | # IEEE 1394 (FireWire) support | 536 | # IEEE 1394 (FireWire) support |
| 533 | # | 537 | # |
| 538 | |||
| 539 | # | ||
| 540 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 541 | # | ||
| 534 | # CONFIG_FIREWIRE is not set | 542 | # CONFIG_FIREWIRE is not set |
| 535 | # CONFIG_IEEE1394 is not set | 543 | # CONFIG_IEEE1394 is not set |
| 536 | # CONFIG_I2O is not set | 544 | # CONFIG_I2O is not set |
| 537 | # CONFIG_MACINTOSH_DRIVERS is not set | 545 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 538 | CONFIG_NETDEVICES=y | 546 | CONFIG_NETDEVICES=y |
| 539 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 540 | # CONFIG_DUMMY is not set | 547 | # CONFIG_DUMMY is not set |
| 541 | # CONFIG_BONDING is not set | 548 | # CONFIG_BONDING is not set |
| 542 | # CONFIG_MACVLAN is not set | 549 | # CONFIG_MACVLAN is not set |
| @@ -598,7 +605,6 @@ CONFIG_NETDEV_1000=y | |||
| 598 | # CONFIG_DL2K is not set | 605 | # CONFIG_DL2K is not set |
| 599 | # CONFIG_E1000 is not set | 606 | # CONFIG_E1000 is not set |
| 600 | # CONFIG_E1000E is not set | 607 | # CONFIG_E1000E is not set |
| 601 | # CONFIG_E1000E_ENABLED is not set | ||
| 602 | # CONFIG_IP1000 is not set | 608 | # CONFIG_IP1000 is not set |
| 603 | # CONFIG_IGB is not set | 609 | # CONFIG_IGB is not set |
| 604 | # CONFIG_NS83820 is not set | 610 | # CONFIG_NS83820 is not set |
| @@ -612,9 +618,9 @@ CONFIG_NETDEV_1000=y | |||
| 612 | # CONFIG_TIGON3 is not set | 618 | # CONFIG_TIGON3 is not set |
| 613 | # CONFIG_BNX2 is not set | 619 | # CONFIG_BNX2 is not set |
| 614 | CONFIG_GIANFAR=y | 620 | CONFIG_GIANFAR=y |
| 615 | CONFIG_GFAR_NAPI=y | ||
| 616 | # CONFIG_QLA3XXX is not set | 621 | # CONFIG_QLA3XXX is not set |
| 617 | # CONFIG_ATL1 is not set | 622 | # CONFIG_ATL1 is not set |
| 623 | # CONFIG_ATL1E is not set | ||
| 618 | CONFIG_NETDEV_10000=y | 624 | CONFIG_NETDEV_10000=y |
| 619 | # CONFIG_CHELSIO_T1 is not set | 625 | # CONFIG_CHELSIO_T1 is not set |
| 620 | # CONFIG_CHELSIO_T3 is not set | 626 | # CONFIG_CHELSIO_T3 is not set |
| @@ -721,41 +727,62 @@ CONFIG_DEVPORT=y | |||
| 721 | CONFIG_I2C=y | 727 | CONFIG_I2C=y |
| 722 | CONFIG_I2C_BOARDINFO=y | 728 | CONFIG_I2C_BOARDINFO=y |
| 723 | CONFIG_I2C_CHARDEV=y | 729 | CONFIG_I2C_CHARDEV=y |
| 730 | CONFIG_I2C_HELPER_AUTO=y | ||
| 724 | 731 | ||
| 725 | # | 732 | # |
| 726 | # I2C Hardware Bus support | 733 | # I2C Hardware Bus support |
| 727 | # | 734 | # |
| 735 | |||
| 736 | # | ||
| 737 | # PC SMBus host controller drivers | ||
| 738 | # | ||
| 728 | # CONFIG_I2C_ALI1535 is not set | 739 | # CONFIG_I2C_ALI1535 is not set |
| 729 | # CONFIG_I2C_ALI1563 is not set | 740 | # CONFIG_I2C_ALI1563 is not set |
| 730 | # CONFIG_I2C_ALI15X3 is not set | 741 | # CONFIG_I2C_ALI15X3 is not set |
| 731 | # CONFIG_I2C_AMD756 is not set | 742 | # CONFIG_I2C_AMD756 is not set |
| 732 | # CONFIG_I2C_AMD8111 is not set | 743 | # CONFIG_I2C_AMD8111 is not set |
| 733 | # CONFIG_I2C_I801 is not set | 744 | # CONFIG_I2C_I801 is not set |
| 734 | # CONFIG_I2C_I810 is not set | 745 | # CONFIG_I2C_ISCH is not set |
| 735 | # CONFIG_I2C_PIIX4 is not set | 746 | # CONFIG_I2C_PIIX4 is not set |
| 736 | CONFIG_I2C_MPC=y | ||
| 737 | # CONFIG_I2C_NFORCE2 is not set | 747 | # CONFIG_I2C_NFORCE2 is not set |
| 738 | # CONFIG_I2C_OCORES is not set | ||
| 739 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 740 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 741 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 742 | # CONFIG_I2C_SIMTEC is not set | ||
| 743 | # CONFIG_I2C_SIS5595 is not set | 748 | # CONFIG_I2C_SIS5595 is not set |
| 744 | # CONFIG_I2C_SIS630 is not set | 749 | # CONFIG_I2C_SIS630 is not set |
| 745 | # CONFIG_I2C_SIS96X is not set | 750 | # CONFIG_I2C_SIS96X is not set |
| 746 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 747 | # CONFIG_I2C_VIA is not set | 751 | # CONFIG_I2C_VIA is not set |
| 748 | # CONFIG_I2C_VIAPRO is not set | 752 | # CONFIG_I2C_VIAPRO is not set |
| 753 | |||
| 754 | # | ||
| 755 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 756 | # | ||
| 757 | CONFIG_I2C_MPC=y | ||
| 758 | # CONFIG_I2C_OCORES is not set | ||
| 759 | # CONFIG_I2C_SIMTEC is not set | ||
| 760 | |||
| 761 | # | ||
| 762 | # External I2C/SMBus adapter drivers | ||
| 763 | # | ||
| 764 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 765 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 766 | |||
| 767 | # | ||
| 768 | # Graphics adapter I2C/DDC channel drivers | ||
| 769 | # | ||
| 749 | # CONFIG_I2C_VOODOO3 is not set | 770 | # CONFIG_I2C_VOODOO3 is not set |
| 771 | |||
| 772 | # | ||
| 773 | # Other I2C/SMBus bus drivers | ||
| 774 | # | ||
| 750 | # CONFIG_I2C_PCA_PLATFORM is not set | 775 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 751 | 776 | ||
| 752 | # | 777 | # |
| 753 | # Miscellaneous I2C Chip support | 778 | # Miscellaneous I2C Chip support |
| 754 | # | 779 | # |
| 755 | # CONFIG_DS1682 is not set | 780 | # CONFIG_DS1682 is not set |
| 781 | # CONFIG_AT24 is not set | ||
| 756 | # CONFIG_SENSORS_EEPROM is not set | 782 | # CONFIG_SENSORS_EEPROM is not set |
| 757 | # CONFIG_SENSORS_PCF8574 is not set | 783 | # CONFIG_SENSORS_PCF8574 is not set |
| 758 | # CONFIG_PCF8575 is not set | 784 | # CONFIG_PCF8575 is not set |
| 785 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 759 | # CONFIG_SENSORS_PCF8591 is not set | 786 | # CONFIG_SENSORS_PCF8591 is not set |
| 760 | # CONFIG_SENSORS_MAX6875 is not set | 787 | # CONFIG_SENSORS_MAX6875 is not set |
| 761 | # CONFIG_SENSORS_TSL2550 is not set | 788 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -764,10 +791,13 @@ CONFIG_I2C_MPC=y | |||
| 764 | # CONFIG_I2C_DEBUG_BUS is not set | 791 | # CONFIG_I2C_DEBUG_BUS is not set |
| 765 | # CONFIG_I2C_DEBUG_CHIP is not set | 792 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 766 | # CONFIG_SPI is not set | 793 | # CONFIG_SPI is not set |
| 794 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 795 | # CONFIG_GPIOLIB is not set | ||
| 767 | # CONFIG_W1 is not set | 796 | # CONFIG_W1 is not set |
| 768 | # CONFIG_POWER_SUPPLY is not set | 797 | # CONFIG_POWER_SUPPLY is not set |
| 769 | CONFIG_HWMON=y | 798 | CONFIG_HWMON=y |
| 770 | # CONFIG_HWMON_VID is not set | 799 | # CONFIG_HWMON_VID is not set |
| 800 | # CONFIG_SENSORS_AD7414 is not set | ||
| 771 | # CONFIG_SENSORS_AD7418 is not set | 801 | # CONFIG_SENSORS_AD7418 is not set |
| 772 | # CONFIG_SENSORS_ADM1021 is not set | 802 | # CONFIG_SENSORS_ADM1021 is not set |
| 773 | # CONFIG_SENSORS_ADM1025 is not set | 803 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -821,6 +851,7 @@ CONFIG_SENSORS_LM75=y | |||
| 821 | # CONFIG_SENSORS_W83627EHF is not set | 851 | # CONFIG_SENSORS_W83627EHF is not set |
| 822 | CONFIG_HWMON_DEBUG_CHIP=y | 852 | CONFIG_HWMON_DEBUG_CHIP=y |
| 823 | # CONFIG_THERMAL is not set | 853 | # CONFIG_THERMAL is not set |
| 854 | # CONFIG_THERMAL_HWMON is not set | ||
| 824 | # CONFIG_WATCHDOG is not set | 855 | # CONFIG_WATCHDOG is not set |
| 825 | 856 | ||
| 826 | # | 857 | # |
| @@ -832,8 +863,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 832 | # | 863 | # |
| 833 | # Multifunction device drivers | 864 | # Multifunction device drivers |
| 834 | # | 865 | # |
| 866 | # CONFIG_MFD_CORE is not set | ||
| 835 | # CONFIG_MFD_SM501 is not set | 867 | # CONFIG_MFD_SM501 is not set |
| 836 | # CONFIG_HTC_PASIC3 is not set | 868 | # CONFIG_HTC_PASIC3 is not set |
| 869 | # CONFIG_MFD_TMIO is not set | ||
| 837 | 870 | ||
| 838 | # | 871 | # |
| 839 | # Multimedia devices | 872 | # Multimedia devices |
| @@ -865,10 +898,6 @@ CONFIG_DAB=y | |||
| 865 | # Display device support | 898 | # Display device support |
| 866 | # | 899 | # |
| 867 | # CONFIG_DISPLAY_SUPPORT is not set | 900 | # CONFIG_DISPLAY_SUPPORT is not set |
| 868 | |||
| 869 | # | ||
| 870 | # Sound | ||
| 871 | # | ||
| 872 | # CONFIG_SOUND is not set | 901 | # CONFIG_SOUND is not set |
| 873 | CONFIG_HID_SUPPORT=y | 902 | CONFIG_HID_SUPPORT=y |
| 874 | CONFIG_HID=y | 903 | CONFIG_HID=y |
| @@ -883,6 +912,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 883 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 912 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 884 | 913 | ||
| 885 | # | 914 | # |
| 915 | # Enable Host or Gadget support to see Inventra options | ||
| 916 | # | ||
| 917 | |||
| 918 | # | ||
| 886 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 919 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 887 | # | 920 | # |
| 888 | # CONFIG_USB_GADGET is not set | 921 | # CONFIG_USB_GADGET is not set |
| @@ -971,6 +1004,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 971 | CONFIG_CRAMFS=y | 1004 | CONFIG_CRAMFS=y |
| 972 | # CONFIG_VXFS_FS is not set | 1005 | # CONFIG_VXFS_FS is not set |
| 973 | # CONFIG_MINIX_FS is not set | 1006 | # CONFIG_MINIX_FS is not set |
| 1007 | # CONFIG_OMFS_FS is not set | ||
| 974 | # CONFIG_HPFS_FS is not set | 1008 | # CONFIG_HPFS_FS is not set |
| 975 | # CONFIG_QNX4FS_FS is not set | 1009 | # CONFIG_QNX4FS_FS is not set |
| 976 | # CONFIG_ROMFS_FS is not set | 1010 | # CONFIG_ROMFS_FS is not set |
| @@ -980,12 +1014,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 980 | CONFIG_NFS_FS=y | 1014 | CONFIG_NFS_FS=y |
| 981 | # CONFIG_NFS_V3 is not set | 1015 | # CONFIG_NFS_V3 is not set |
| 982 | # CONFIG_NFS_V4 is not set | 1016 | # CONFIG_NFS_V4 is not set |
| 983 | # CONFIG_NFSD is not set | ||
| 984 | CONFIG_ROOT_NFS=y | 1017 | CONFIG_ROOT_NFS=y |
| 1018 | # CONFIG_NFSD is not set | ||
| 985 | CONFIG_LOCKD=y | 1019 | CONFIG_LOCKD=y |
| 986 | CONFIG_NFS_COMMON=y | 1020 | CONFIG_NFS_COMMON=y |
| 987 | CONFIG_SUNRPC=y | 1021 | CONFIG_SUNRPC=y |
| 988 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 989 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1022 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 990 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1023 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 991 | # CONFIG_SMB_FS is not set | 1024 | # CONFIG_SMB_FS is not set |
| @@ -1021,6 +1054,7 @@ CONFIG_BITREVERSE=y | |||
| 1021 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1054 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1022 | # CONFIG_CRC_CCITT is not set | 1055 | # CONFIG_CRC_CCITT is not set |
| 1023 | # CONFIG_CRC16 is not set | 1056 | # CONFIG_CRC16 is not set |
| 1057 | # CONFIG_CRC_T10DIF is not set | ||
| 1024 | # CONFIG_CRC_ITU_T is not set | 1058 | # CONFIG_CRC_ITU_T is not set |
| 1025 | CONFIG_CRC32=y | 1059 | CONFIG_CRC32=y |
| 1026 | # CONFIG_CRC7 is not set | 1060 | # CONFIG_CRC7 is not set |
| @@ -1048,7 +1082,16 @@ CONFIG_FRAME_WARN=1024 | |||
| 1048 | # CONFIG_SLUB_DEBUG_ON is not set | 1082 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1049 | # CONFIG_SLUB_STATS is not set | 1083 | # CONFIG_SLUB_STATS is not set |
| 1050 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1084 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1085 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1086 | # CONFIG_LATENCYTOP is not set | ||
| 1087 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1088 | CONFIG_HAVE_FTRACE=y | ||
| 1089 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1090 | # CONFIG_FTRACE is not set | ||
| 1091 | # CONFIG_SCHED_TRACER is not set | ||
| 1092 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1051 | # CONFIG_SAMPLES is not set | 1093 | # CONFIG_SAMPLES is not set |
| 1094 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1052 | # CONFIG_IRQSTACKS is not set | 1095 | # CONFIG_IRQSTACKS is not set |
| 1053 | # CONFIG_PPC_EARLY_DEBUG is not set | 1096 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1054 | 1097 | ||
| @@ -1100,6 +1143,10 @@ CONFIG_CRYPTO=y | |||
| 1100 | # CONFIG_CRYPTO_MD4 is not set | 1143 | # CONFIG_CRYPTO_MD4 is not set |
| 1101 | # CONFIG_CRYPTO_MD5 is not set | 1144 | # CONFIG_CRYPTO_MD5 is not set |
| 1102 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1145 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1146 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1147 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1148 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1149 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1103 | # CONFIG_CRYPTO_SHA1 is not set | 1150 | # CONFIG_CRYPTO_SHA1 is not set |
| 1104 | # CONFIG_CRYPTO_SHA256 is not set | 1151 | # CONFIG_CRYPTO_SHA256 is not set |
| 1105 | # CONFIG_CRYPTO_SHA512 is not set | 1152 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1132,5 +1179,6 @@ CONFIG_CRYPTO=y | |||
| 1132 | # CONFIG_CRYPTO_LZO is not set | 1179 | # CONFIG_CRYPTO_LZO is not set |
| 1133 | CONFIG_CRYPTO_HW=y | 1180 | CONFIG_CRYPTO_HW=y |
| 1134 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1181 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1182 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1135 | # CONFIG_PPC_CLOCK is not set | 1183 | # CONFIG_PPC_CLOCK is not set |
| 1136 | # CONFIG_VIRTUALIZATION is not set | 1184 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8541_defconfig b/arch/powerpc/configs/85xx/tqm8541_defconfig index 6f9067b49e07..da841a09755c 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:40 2008 | 4 | # Thu Aug 21 00:52:39 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,12 +34,14 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 39 | CONFIG_GENERIC_HWEIGHT=y | 41 | CONFIG_GENERIC_HWEIGHT=y |
| 40 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 42 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 41 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 43 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 44 | CONFIG_GENERIC_GPIO=y | ||
| 42 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 45 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
| 43 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
| 44 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
| @@ -89,7 +92,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | # CONFIG_KALLSYMS is not set | 95 | # CONFIG_KALLSYMS is not set |
| 94 | # CONFIG_HOTPLUG is not set | 96 | # CONFIG_HOTPLUG is not set |
| 95 | CONFIG_PRINTK=y | 97 | CONFIG_PRINTK=y |
| @@ -112,10 +114,16 @@ CONFIG_SLUB=y | |||
| 112 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
| 113 | # CONFIG_MARKERS is not set | 115 | # CONFIG_MARKERS is not set |
| 114 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 119 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 120 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 122 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 123 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 124 | CONFIG_HAVE_CLK=y | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 125 | CONFIG_PROC_PAGE_MONITOR=y |
| 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | 129 | # CONFIG_TINY_SHMEM is not set |
| @@ -126,6 +134,7 @@ CONFIG_BLOCK=y | |||
| 126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 127 | # CONFIG_LSF is not set | 135 | # CONFIG_LSF is not set |
| 128 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
| 137 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 129 | 138 | ||
| 130 | # | 139 | # |
| 131 | # IO Schedulers | 140 | # IO Schedulers |
| @@ -144,8 +153,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 144 | # | 153 | # |
| 145 | # Platform support | 154 | # Platform support |
| 146 | # | 155 | # |
| 147 | # CONFIG_PPC_MPC512x is not set | ||
| 148 | # CONFIG_PPC_MPC5121 is not set | ||
| 149 | # CONFIG_PPC_CELL is not set | 156 | # CONFIG_PPC_CELL is not set |
| 150 | # CONFIG_PPC_CELL_NATIVE is not set | 157 | # CONFIG_PPC_CELL_NATIVE is not set |
| 151 | # CONFIG_PQ2ADS is not set | 158 | # CONFIG_PQ2ADS is not set |
| @@ -154,11 +161,13 @@ CONFIG_MPC85xx=y | |||
| 154 | # CONFIG_MPC8560_ADS is not set | 161 | # CONFIG_MPC8560_ADS is not set |
| 155 | # CONFIG_MPC85xx_CDS is not set | 162 | # CONFIG_MPC85xx_CDS is not set |
| 156 | # CONFIG_MPC85xx_MDS is not set | 163 | # CONFIG_MPC85xx_MDS is not set |
| 164 | # CONFIG_MPC8536_DS is not set | ||
| 157 | # CONFIG_MPC85xx_DS is not set | 165 | # CONFIG_MPC85xx_DS is not set |
| 158 | # CONFIG_KSI8560 is not set | 166 | # CONFIG_KSI8560 is not set |
| 159 | # CONFIG_STX_GP3 is not set | 167 | # CONFIG_STX_GP3 is not set |
| 160 | # CONFIG_TQM8540 is not set | 168 | # CONFIG_TQM8540 is not set |
| 161 | CONFIG_TQM8541=y | 169 | CONFIG_TQM8541=y |
| 170 | # CONFIG_TQM8548 is not set | ||
| 162 | # CONFIG_TQM8555 is not set | 171 | # CONFIG_TQM8555 is not set |
| 163 | # CONFIG_TQM8560 is not set | 172 | # CONFIG_TQM8560 is not set |
| 164 | # CONFIG_SBC8548 is not set | 173 | # CONFIG_SBC8548 is not set |
| @@ -176,7 +185,6 @@ CONFIG_MPIC=y | |||
| 176 | # CONFIG_GENERIC_IOMAP is not set | 185 | # CONFIG_GENERIC_IOMAP is not set |
| 177 | # CONFIG_CPU_FREQ is not set | 186 | # CONFIG_CPU_FREQ is not set |
| 178 | CONFIG_CPM2=y | 187 | CONFIG_CPM2=y |
| 179 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 180 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
| 181 | CONFIG_CPM=y | 189 | CONFIG_CPM=y |
| 182 | 190 | ||
| @@ -216,6 +224,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 216 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 224 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 217 | CONFIG_PAGEFLAGS_EXTENDED=y | 225 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 226 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 227 | CONFIG_MIGRATION=y | ||
| 219 | # CONFIG_RESOURCES_64BIT is not set | 228 | # CONFIG_RESOURCES_64BIT is not set |
| 220 | CONFIG_ZONE_DMA_FLAG=1 | 229 | CONFIG_ZONE_DMA_FLAG=1 |
| 221 | CONFIG_BOUNCE=y | 230 | CONFIG_BOUNCE=y |
| @@ -223,6 +232,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 223 | CONFIG_FORCE_MAX_ZONEORDER=11 | 232 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 224 | # CONFIG_PROC_DEVICETREE is not set | 233 | # CONFIG_PROC_DEVICETREE is not set |
| 225 | # CONFIG_CMDLINE_BOOL is not set | 234 | # CONFIG_CMDLINE_BOOL is not set |
| 235 | CONFIG_EXTRA_TARGETS="" | ||
| 226 | # CONFIG_PM is not set | 236 | # CONFIG_PM is not set |
| 227 | CONFIG_SECCOMP=y | 237 | CONFIG_SECCOMP=y |
| 228 | CONFIG_ISA_DMA_API=y | 238 | CONFIG_ISA_DMA_API=y |
| @@ -234,6 +244,7 @@ CONFIG_ZONE_DMA=y | |||
| 234 | CONFIG_PPC_INDIRECT_PCI=y | 244 | CONFIG_PPC_INDIRECT_PCI=y |
| 235 | CONFIG_FSL_SOC=y | 245 | CONFIG_FSL_SOC=y |
| 236 | CONFIG_FSL_PCI=y | 246 | CONFIG_FSL_PCI=y |
| 247 | CONFIG_PPC_PCI_CHOICE=y | ||
| 237 | CONFIG_PCI=y | 248 | CONFIG_PCI=y |
| 238 | CONFIG_PCI_DOMAINS=y | 249 | CONFIG_PCI_DOMAINS=y |
| 239 | CONFIG_PCI_SYSCALL=y | 250 | CONFIG_PCI_SYSCALL=y |
| @@ -257,10 +268,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 257 | CONFIG_PHYSICAL_START=0x00000000 | 268 | CONFIG_PHYSICAL_START=0x00000000 |
| 258 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 269 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 259 | CONFIG_TASK_SIZE=0xc0000000 | 270 | CONFIG_TASK_SIZE=0xc0000000 |
| 260 | |||
| 261 | # | ||
| 262 | # Networking | ||
| 263 | # | ||
| 264 | CONFIG_NET=y | 271 | CONFIG_NET=y |
| 265 | 272 | ||
| 266 | # | 273 | # |
| @@ -432,6 +439,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 432 | # | 439 | # |
| 433 | # CONFIG_MTD_UBI is not set | 440 | # CONFIG_MTD_UBI is not set |
| 434 | CONFIG_OF_DEVICE=y | 441 | CONFIG_OF_DEVICE=y |
| 442 | CONFIG_OF_GPIO=y | ||
| 435 | CONFIG_OF_I2C=y | 443 | CONFIG_OF_I2C=y |
| 436 | # CONFIG_PARPORT is not set | 444 | # CONFIG_PARPORT is not set |
| 437 | CONFIG_BLK_DEV=y | 445 | CONFIG_BLK_DEV=y |
| @@ -451,20 +459,22 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 451 | # CONFIG_BLK_DEV_XIP is not set | 459 | # CONFIG_BLK_DEV_XIP is not set |
| 452 | # CONFIG_CDROM_PKTCDVD is not set | 460 | # CONFIG_CDROM_PKTCDVD is not set |
| 453 | # CONFIG_ATA_OVER_ETH is not set | 461 | # CONFIG_ATA_OVER_ETH is not set |
| 462 | # CONFIG_BLK_DEV_HD is not set | ||
| 454 | CONFIG_MISC_DEVICES=y | 463 | CONFIG_MISC_DEVICES=y |
| 455 | # CONFIG_PHANTOM is not set | 464 | # CONFIG_PHANTOM is not set |
| 456 | # CONFIG_EEPROM_93CX6 is not set | 465 | # CONFIG_EEPROM_93CX6 is not set |
| 457 | # CONFIG_SGI_IOC4 is not set | 466 | # CONFIG_SGI_IOC4 is not set |
| 458 | # CONFIG_TIFM_CORE is not set | 467 | # CONFIG_TIFM_CORE is not set |
| 459 | # CONFIG_ENCLOSURE_SERVICES is not set | 468 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 469 | # CONFIG_HP_ILO is not set | ||
| 460 | CONFIG_HAVE_IDE=y | 470 | CONFIG_HAVE_IDE=y |
| 461 | CONFIG_IDE=y | 471 | CONFIG_IDE=y |
| 462 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 463 | CONFIG_BLK_DEV_IDE=y | 472 | CONFIG_BLK_DEV_IDE=y |
| 464 | 473 | ||
| 465 | # | 474 | # |
| 466 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 475 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 467 | # | 476 | # |
| 477 | CONFIG_IDE_TIMINGS=y | ||
| 468 | # CONFIG_BLK_DEV_IDE_SATA is not set | 478 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 469 | CONFIG_BLK_DEV_IDEDISK=y | 479 | CONFIG_BLK_DEV_IDEDISK=y |
| 470 | # CONFIG_IDEDISK_MULTI_MODE is not set | 480 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| @@ -477,7 +487,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 477 | # | 487 | # |
| 478 | # IDE chipset support/bugfixes | 488 | # IDE chipset support/bugfixes |
| 479 | # | 489 | # |
| 480 | CONFIG_IDE_GENERIC=y | ||
| 481 | # CONFIG_BLK_DEV_PLATFORM is not set | 490 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 482 | CONFIG_BLK_DEV_IDEDMA_SFF=y | 491 | CONFIG_BLK_DEV_IDEDMA_SFF=y |
| 483 | 492 | ||
| @@ -495,10 +504,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 495 | # CONFIG_BLK_DEV_AMD74XX is not set | 504 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 496 | # CONFIG_BLK_DEV_CMD64X is not set | 505 | # CONFIG_BLK_DEV_CMD64X is not set |
| 497 | # CONFIG_BLK_DEV_TRIFLEX is not set | 506 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 498 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 499 | # CONFIG_BLK_DEV_CS5520 is not set | 507 | # CONFIG_BLK_DEV_CS5520 is not set |
| 500 | # CONFIG_BLK_DEV_CS5530 is not set | 508 | # CONFIG_BLK_DEV_CS5530 is not set |
| 501 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 502 | # CONFIG_BLK_DEV_HPT366 is not set | 509 | # CONFIG_BLK_DEV_HPT366 is not set |
| 503 | # CONFIG_BLK_DEV_JMICRON is not set | 510 | # CONFIG_BLK_DEV_JMICRON is not set |
| 504 | # CONFIG_BLK_DEV_SC1200 is not set | 511 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -516,8 +523,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 516 | CONFIG_BLK_DEV_VIA82CXXX=y | 523 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 517 | # CONFIG_BLK_DEV_TC86C001 is not set | 524 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 518 | CONFIG_BLK_DEV_IDEDMA=y | 525 | CONFIG_BLK_DEV_IDEDMA=y |
| 519 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 520 | # CONFIG_BLK_DEV_HD is not set | ||
| 521 | 526 | ||
| 522 | # | 527 | # |
| 523 | # SCSI device support | 528 | # SCSI device support |
| @@ -533,12 +538,15 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 533 | # | 538 | # |
| 534 | # IEEE 1394 (FireWire) support | 539 | # IEEE 1394 (FireWire) support |
| 535 | # | 540 | # |
| 541 | |||
| 542 | # | ||
| 543 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 544 | # | ||
| 536 | # CONFIG_FIREWIRE is not set | 545 | # CONFIG_FIREWIRE is not set |
| 537 | # CONFIG_IEEE1394 is not set | 546 | # CONFIG_IEEE1394 is not set |
| 538 | # CONFIG_I2O is not set | 547 | # CONFIG_I2O is not set |
| 539 | # CONFIG_MACINTOSH_DRIVERS is not set | 548 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 540 | CONFIG_NETDEVICES=y | 549 | CONFIG_NETDEVICES=y |
| 541 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 542 | # CONFIG_DUMMY is not set | 550 | # CONFIG_DUMMY is not set |
| 543 | # CONFIG_BONDING is not set | 551 | # CONFIG_BONDING is not set |
| 544 | # CONFIG_MACVLAN is not set | 552 | # CONFIG_MACVLAN is not set |
| @@ -601,7 +609,6 @@ CONFIG_NETDEV_1000=y | |||
| 601 | # CONFIG_DL2K is not set | 609 | # CONFIG_DL2K is not set |
| 602 | # CONFIG_E1000 is not set | 610 | # CONFIG_E1000 is not set |
| 603 | # CONFIG_E1000E is not set | 611 | # CONFIG_E1000E is not set |
| 604 | # CONFIG_E1000E_ENABLED is not set | ||
| 605 | # CONFIG_IP1000 is not set | 612 | # CONFIG_IP1000 is not set |
| 606 | # CONFIG_IGB is not set | 613 | # CONFIG_IGB is not set |
| 607 | # CONFIG_NS83820 is not set | 614 | # CONFIG_NS83820 is not set |
| @@ -615,9 +622,9 @@ CONFIG_NETDEV_1000=y | |||
| 615 | # CONFIG_TIGON3 is not set | 622 | # CONFIG_TIGON3 is not set |
| 616 | # CONFIG_BNX2 is not set | 623 | # CONFIG_BNX2 is not set |
| 617 | CONFIG_GIANFAR=y | 624 | CONFIG_GIANFAR=y |
| 618 | CONFIG_GFAR_NAPI=y | ||
| 619 | # CONFIG_QLA3XXX is not set | 625 | # CONFIG_QLA3XXX is not set |
| 620 | # CONFIG_ATL1 is not set | 626 | # CONFIG_ATL1 is not set |
| 627 | # CONFIG_ATL1E is not set | ||
| 621 | CONFIG_NETDEV_10000=y | 628 | CONFIG_NETDEV_10000=y |
| 622 | # CONFIG_CHELSIO_T1 is not set | 629 | # CONFIG_CHELSIO_T1 is not set |
| 623 | # CONFIG_CHELSIO_T3 is not set | 630 | # CONFIG_CHELSIO_T3 is not set |
| @@ -732,42 +739,66 @@ CONFIG_DEVPORT=y | |||
| 732 | CONFIG_I2C=y | 739 | CONFIG_I2C=y |
| 733 | CONFIG_I2C_BOARDINFO=y | 740 | CONFIG_I2C_BOARDINFO=y |
| 734 | CONFIG_I2C_CHARDEV=y | 741 | CONFIG_I2C_CHARDEV=y |
| 742 | CONFIG_I2C_HELPER_AUTO=y | ||
| 735 | 743 | ||
| 736 | # | 744 | # |
| 737 | # I2C Hardware Bus support | 745 | # I2C Hardware Bus support |
| 738 | # | 746 | # |
| 747 | |||
| 748 | # | ||
| 749 | # PC SMBus host controller drivers | ||
| 750 | # | ||
| 739 | # CONFIG_I2C_ALI1535 is not set | 751 | # CONFIG_I2C_ALI1535 is not set |
| 740 | # CONFIG_I2C_ALI1563 is not set | 752 | # CONFIG_I2C_ALI1563 is not set |
| 741 | # CONFIG_I2C_ALI15X3 is not set | 753 | # CONFIG_I2C_ALI15X3 is not set |
| 742 | # CONFIG_I2C_AMD756 is not set | 754 | # CONFIG_I2C_AMD756 is not set |
| 743 | # CONFIG_I2C_AMD8111 is not set | 755 | # CONFIG_I2C_AMD8111 is not set |
| 744 | # CONFIG_I2C_I801 is not set | 756 | # CONFIG_I2C_I801 is not set |
| 745 | # CONFIG_I2C_I810 is not set | 757 | # CONFIG_I2C_ISCH is not set |
| 746 | # CONFIG_I2C_PIIX4 is not set | 758 | # CONFIG_I2C_PIIX4 is not set |
| 747 | CONFIG_I2C_MPC=y | ||
| 748 | # CONFIG_I2C_NFORCE2 is not set | 759 | # CONFIG_I2C_NFORCE2 is not set |
| 749 | # CONFIG_I2C_OCORES is not set | ||
| 750 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 751 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 752 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 753 | # CONFIG_I2C_SIMTEC is not set | ||
| 754 | # CONFIG_I2C_SIS5595 is not set | 760 | # CONFIG_I2C_SIS5595 is not set |
| 755 | # CONFIG_I2C_SIS630 is not set | 761 | # CONFIG_I2C_SIS630 is not set |
| 756 | # CONFIG_I2C_SIS96X is not set | 762 | # CONFIG_I2C_SIS96X is not set |
| 757 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 758 | # CONFIG_I2C_VIA is not set | 763 | # CONFIG_I2C_VIA is not set |
| 759 | # CONFIG_I2C_VIAPRO is not set | 764 | # CONFIG_I2C_VIAPRO is not set |
| 765 | |||
| 766 | # | ||
| 767 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 768 | # | ||
| 769 | # CONFIG_I2C_CPM is not set | ||
| 770 | # CONFIG_I2C_GPIO is not set | ||
| 771 | CONFIG_I2C_MPC=y | ||
| 772 | # CONFIG_I2C_OCORES is not set | ||
| 773 | # CONFIG_I2C_SIMTEC is not set | ||
| 774 | |||
| 775 | # | ||
| 776 | # External I2C/SMBus adapter drivers | ||
| 777 | # | ||
| 778 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 779 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 780 | |||
| 781 | # | ||
| 782 | # Graphics adapter I2C/DDC channel drivers | ||
| 783 | # | ||
| 760 | # CONFIG_I2C_VOODOO3 is not set | 784 | # CONFIG_I2C_VOODOO3 is not set |
| 785 | |||
| 786 | # | ||
| 787 | # Other I2C/SMBus bus drivers | ||
| 788 | # | ||
| 761 | # CONFIG_I2C_PCA_PLATFORM is not set | 789 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 762 | 790 | ||
| 763 | # | 791 | # |
| 764 | # Miscellaneous I2C Chip support | 792 | # Miscellaneous I2C Chip support |
| 765 | # | 793 | # |
| 766 | # CONFIG_DS1682 is not set | 794 | # CONFIG_DS1682 is not set |
| 795 | # CONFIG_AT24 is not set | ||
| 767 | # CONFIG_SENSORS_EEPROM is not set | 796 | # CONFIG_SENSORS_EEPROM is not set |
| 768 | # CONFIG_SENSORS_PCF8574 is not set | 797 | # CONFIG_SENSORS_PCF8574 is not set |
| 769 | # CONFIG_PCF8575 is not set | 798 | # CONFIG_PCF8575 is not set |
| 799 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 770 | # CONFIG_SENSORS_PCF8591 is not set | 800 | # CONFIG_SENSORS_PCF8591 is not set |
| 801 | # CONFIG_TPS65010 is not set | ||
| 771 | # CONFIG_SENSORS_MAX6875 is not set | 802 | # CONFIG_SENSORS_MAX6875 is not set |
| 772 | # CONFIG_SENSORS_TSL2550 is not set | 803 | # CONFIG_SENSORS_TSL2550 is not set |
| 773 | # CONFIG_I2C_DEBUG_CORE is not set | 804 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -775,10 +806,31 @@ CONFIG_I2C_MPC=y | |||
| 775 | # CONFIG_I2C_DEBUG_BUS is not set | 806 | # CONFIG_I2C_DEBUG_BUS is not set |
| 776 | # CONFIG_I2C_DEBUG_CHIP is not set | 807 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 777 | # CONFIG_SPI is not set | 808 | # CONFIG_SPI is not set |
| 809 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 810 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | ||
| 811 | CONFIG_GPIOLIB=y | ||
| 812 | # CONFIG_GPIO_SYSFS is not set | ||
| 813 | |||
| 814 | # | ||
| 815 | # I2C GPIO expanders: | ||
| 816 | # | ||
| 817 | # CONFIG_GPIO_MAX732X is not set | ||
| 818 | # CONFIG_GPIO_PCA953X is not set | ||
| 819 | # CONFIG_GPIO_PCF857X is not set | ||
| 820 | |||
| 821 | # | ||
| 822 | # PCI GPIO expanders: | ||
| 823 | # | ||
| 824 | # CONFIG_GPIO_BT8XX is not set | ||
| 825 | |||
| 826 | # | ||
| 827 | # SPI GPIO expanders: | ||
| 828 | # | ||
| 778 | # CONFIG_W1 is not set | 829 | # CONFIG_W1 is not set |
| 779 | # CONFIG_POWER_SUPPLY is not set | 830 | # CONFIG_POWER_SUPPLY is not set |
| 780 | CONFIG_HWMON=y | 831 | CONFIG_HWMON=y |
| 781 | # CONFIG_HWMON_VID is not set | 832 | # CONFIG_HWMON_VID is not set |
| 833 | # CONFIG_SENSORS_AD7414 is not set | ||
| 782 | # CONFIG_SENSORS_AD7418 is not set | 834 | # CONFIG_SENSORS_AD7418 is not set |
| 783 | # CONFIG_SENSORS_ADM1021 is not set | 835 | # CONFIG_SENSORS_ADM1021 is not set |
| 784 | # CONFIG_SENSORS_ADM1025 is not set | 836 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -832,6 +884,7 @@ CONFIG_SENSORS_LM75=y | |||
| 832 | # CONFIG_SENSORS_W83627EHF is not set | 884 | # CONFIG_SENSORS_W83627EHF is not set |
| 833 | CONFIG_HWMON_DEBUG_CHIP=y | 885 | CONFIG_HWMON_DEBUG_CHIP=y |
| 834 | # CONFIG_THERMAL is not set | 886 | # CONFIG_THERMAL is not set |
| 887 | # CONFIG_THERMAL_HWMON is not set | ||
| 835 | # CONFIG_WATCHDOG is not set | 888 | # CONFIG_WATCHDOG is not set |
| 836 | 889 | ||
| 837 | # | 890 | # |
| @@ -843,8 +896,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 843 | # | 896 | # |
| 844 | # Multifunction device drivers | 897 | # Multifunction device drivers |
| 845 | # | 898 | # |
| 899 | # CONFIG_MFD_CORE is not set | ||
| 846 | # CONFIG_MFD_SM501 is not set | 900 | # CONFIG_MFD_SM501 is not set |
| 847 | # CONFIG_HTC_PASIC3 is not set | 901 | # CONFIG_HTC_PASIC3 is not set |
| 902 | # CONFIG_MFD_TMIO is not set | ||
| 848 | 903 | ||
| 849 | # | 904 | # |
| 850 | # Multimedia devices | 905 | # Multimedia devices |
| @@ -876,10 +931,6 @@ CONFIG_DAB=y | |||
| 876 | # Display device support | 931 | # Display device support |
| 877 | # | 932 | # |
| 878 | # CONFIG_DISPLAY_SUPPORT is not set | 933 | # CONFIG_DISPLAY_SUPPORT is not set |
| 879 | |||
| 880 | # | ||
| 881 | # Sound | ||
| 882 | # | ||
| 883 | # CONFIG_SOUND is not set | 934 | # CONFIG_SOUND is not set |
| 884 | CONFIG_HID_SUPPORT=y | 935 | CONFIG_HID_SUPPORT=y |
| 885 | CONFIG_HID=y | 936 | CONFIG_HID=y |
| @@ -894,6 +945,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 894 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 945 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 895 | 946 | ||
| 896 | # | 947 | # |
| 948 | # Enable Host or Gadget support to see Inventra options | ||
| 949 | # | ||
| 950 | |||
| 951 | # | ||
| 897 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 952 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 898 | # | 953 | # |
| 899 | # CONFIG_USB_GADGET is not set | 954 | # CONFIG_USB_GADGET is not set |
| @@ -982,6 +1037,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 982 | CONFIG_CRAMFS=y | 1037 | CONFIG_CRAMFS=y |
| 983 | # CONFIG_VXFS_FS is not set | 1038 | # CONFIG_VXFS_FS is not set |
| 984 | # CONFIG_MINIX_FS is not set | 1039 | # CONFIG_MINIX_FS is not set |
| 1040 | # CONFIG_OMFS_FS is not set | ||
| 985 | # CONFIG_HPFS_FS is not set | 1041 | # CONFIG_HPFS_FS is not set |
| 986 | # CONFIG_QNX4FS_FS is not set | 1042 | # CONFIG_QNX4FS_FS is not set |
| 987 | # CONFIG_ROMFS_FS is not set | 1043 | # CONFIG_ROMFS_FS is not set |
| @@ -991,12 +1047,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 991 | CONFIG_NFS_FS=y | 1047 | CONFIG_NFS_FS=y |
| 992 | # CONFIG_NFS_V3 is not set | 1048 | # CONFIG_NFS_V3 is not set |
| 993 | # CONFIG_NFS_V4 is not set | 1049 | # CONFIG_NFS_V4 is not set |
| 994 | # CONFIG_NFSD is not set | ||
| 995 | CONFIG_ROOT_NFS=y | 1050 | CONFIG_ROOT_NFS=y |
| 1051 | # CONFIG_NFSD is not set | ||
| 996 | CONFIG_LOCKD=y | 1052 | CONFIG_LOCKD=y |
| 997 | CONFIG_NFS_COMMON=y | 1053 | CONFIG_NFS_COMMON=y |
| 998 | CONFIG_SUNRPC=y | 1054 | CONFIG_SUNRPC=y |
| 999 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1000 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1055 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1001 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1056 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1002 | # CONFIG_SMB_FS is not set | 1057 | # CONFIG_SMB_FS is not set |
| @@ -1032,6 +1087,7 @@ CONFIG_BITREVERSE=y | |||
| 1032 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1087 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1033 | # CONFIG_CRC_CCITT is not set | 1088 | # CONFIG_CRC_CCITT is not set |
| 1034 | # CONFIG_CRC16 is not set | 1089 | # CONFIG_CRC16 is not set |
| 1090 | # CONFIG_CRC_T10DIF is not set | ||
| 1035 | # CONFIG_CRC_ITU_T is not set | 1091 | # CONFIG_CRC_ITU_T is not set |
| 1036 | CONFIG_CRC32=y | 1092 | CONFIG_CRC32=y |
| 1037 | # CONFIG_CRC7 is not set | 1093 | # CONFIG_CRC7 is not set |
| @@ -1059,8 +1115,16 @@ CONFIG_FRAME_WARN=1024 | |||
| 1059 | # CONFIG_SLUB_DEBUG_ON is not set | 1115 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1060 | # CONFIG_SLUB_STATS is not set | 1116 | # CONFIG_SLUB_STATS is not set |
| 1061 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1117 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1118 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1119 | # CONFIG_LATENCYTOP is not set | ||
| 1120 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1121 | CONFIG_HAVE_FTRACE=y | ||
| 1122 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1123 | # CONFIG_FTRACE is not set | ||
| 1124 | # CONFIG_SCHED_TRACER is not set | ||
| 1125 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1062 | # CONFIG_SAMPLES is not set | 1126 | # CONFIG_SAMPLES is not set |
| 1063 | # CONFIG_KGDB_CONSOLE is not set | 1127 | CONFIG_HAVE_ARCH_KGDB=y |
| 1064 | # CONFIG_IRQSTACKS is not set | 1128 | # CONFIG_IRQSTACKS is not set |
| 1065 | # CONFIG_PPC_EARLY_DEBUG is not set | 1129 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1066 | 1130 | ||
| @@ -1112,6 +1176,10 @@ CONFIG_CRYPTO=y | |||
| 1112 | # CONFIG_CRYPTO_MD4 is not set | 1176 | # CONFIG_CRYPTO_MD4 is not set |
| 1113 | # CONFIG_CRYPTO_MD5 is not set | 1177 | # CONFIG_CRYPTO_MD5 is not set |
| 1114 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1178 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1179 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1180 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1181 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1182 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1115 | # CONFIG_CRYPTO_SHA1 is not set | 1183 | # CONFIG_CRYPTO_SHA1 is not set |
| 1116 | # CONFIG_CRYPTO_SHA256 is not set | 1184 | # CONFIG_CRYPTO_SHA256 is not set |
| 1117 | # CONFIG_CRYPTO_SHA512 is not set | 1185 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1144,6 +1212,7 @@ CONFIG_CRYPTO=y | |||
| 1144 | # CONFIG_CRYPTO_LZO is not set | 1212 | # CONFIG_CRYPTO_LZO is not set |
| 1145 | CONFIG_CRYPTO_HW=y | 1213 | CONFIG_CRYPTO_HW=y |
| 1146 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1214 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1147 | # CONFIG_PPC_CLOCK is not set | 1215 | # CONFIG_CRYPTO_DEV_TALITOS is not set |
| 1216 | CONFIG_PPC_CLOCK=y | ||
| 1148 | CONFIG_PPC_LIB_RHEAP=y | 1217 | CONFIG_PPC_LIB_RHEAP=y |
| 1149 | # CONFIG_VIRTUALIZATION is not set | 1218 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8548_defconfig b/arch/powerpc/configs/85xx/tqm8548_defconfig index b3b770be3cc9..ca1234d26855 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Thu Jun 26 14:40:02 2008 | 4 | # Thu Aug 21 00:52:40 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -34,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 35 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 36 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 37 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 39 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -90,7 +91,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 90 | CONFIG_SYSCTL=y | 91 | CONFIG_SYSCTL=y |
| 91 | CONFIG_EMBEDDED=y | 92 | CONFIG_EMBEDDED=y |
| 92 | CONFIG_SYSCTL_SYSCALL=y | 93 | CONFIG_SYSCTL_SYSCALL=y |
| 93 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 94 | CONFIG_KALLSYMS=y | 94 | CONFIG_KALLSYMS=y |
| 95 | # CONFIG_KALLSYMS_ALL is not set | 95 | # CONFIG_KALLSYMS_ALL is not set |
| 96 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 96 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -116,10 +116,16 @@ CONFIG_SLUB=y | |||
| 116 | # CONFIG_MARKERS 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 | ||
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 119 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 120 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 121 | # CONFIG_HAVE_DMA_ATTRS is not set | 124 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 125 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 126 | # CONFIG_HAVE_CLK is not set | ||
| 122 | CONFIG_PROC_PAGE_MONITOR=y | 127 | CONFIG_PROC_PAGE_MONITOR=y |
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 123 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
| 124 | CONFIG_RT_MUTEXES=y | 130 | CONFIG_RT_MUTEXES=y |
| 125 | # CONFIG_TINY_SHMEM is not set | 131 | # CONFIG_TINY_SHMEM is not set |
| @@ -130,12 +136,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 136 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 131 | # CONFIG_MODVERSIONS is not set | 137 | # CONFIG_MODVERSIONS is not set |
| 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 138 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 133 | # CONFIG_KMOD is not set | 139 | CONFIG_KMOD=y |
| 134 | CONFIG_BLOCK=y | 140 | CONFIG_BLOCK=y |
| 135 | # CONFIG_LBD is not set | 141 | # CONFIG_LBD is not set |
| 136 | # CONFIG_BLK_DEV_IO_TRACE is not set | 142 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 137 | # CONFIG_LSF is not set | 143 | # CONFIG_LSF is not set |
| 138 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
| 145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 139 | 146 | ||
| 140 | # | 147 | # |
| 141 | # IO Schedulers | 148 | # IO Schedulers |
| @@ -154,8 +161,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 154 | # | 161 | # |
| 155 | # Platform support | 162 | # Platform support |
| 156 | # | 163 | # |
| 157 | # CONFIG_PPC_MPC512x is not set | ||
| 158 | # CONFIG_PPC_MPC5121 is not set | ||
| 159 | # CONFIG_PPC_CELL is not set | 164 | # CONFIG_PPC_CELL is not set |
| 160 | # CONFIG_PPC_CELL_NATIVE is not set | 165 | # CONFIG_PPC_CELL_NATIVE is not set |
| 161 | # CONFIG_PQ2ADS is not set | 166 | # CONFIG_PQ2ADS is not set |
| @@ -164,6 +169,7 @@ CONFIG_MPC85xx=y | |||
| 164 | # CONFIG_MPC8560_ADS is not set | 169 | # CONFIG_MPC8560_ADS is not set |
| 165 | # CONFIG_MPC85xx_CDS is not set | 170 | # CONFIG_MPC85xx_CDS is not set |
| 166 | # CONFIG_MPC85xx_MDS is not set | 171 | # CONFIG_MPC85xx_MDS is not set |
| 172 | # CONFIG_MPC8536_DS is not set | ||
| 167 | # CONFIG_MPC85xx_DS is not set | 173 | # CONFIG_MPC85xx_DS is not set |
| 168 | # CONFIG_KSI8560 is not set | 174 | # CONFIG_KSI8560 is not set |
| 169 | # CONFIG_STX_GP3 is not set | 175 | # CONFIG_STX_GP3 is not set |
| @@ -187,7 +193,6 @@ CONFIG_MPIC=y | |||
| 187 | # CONFIG_GENERIC_IOMAP is not set | 193 | # CONFIG_GENERIC_IOMAP is not set |
| 188 | # CONFIG_CPU_FREQ is not set | 194 | # CONFIG_CPU_FREQ is not set |
| 189 | # CONFIG_CPM2 is not set | 195 | # CONFIG_CPM2 is not set |
| 190 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 191 | # CONFIG_FSL_ULI1575 is not set | 196 | # CONFIG_FSL_ULI1575 is not set |
| 192 | 197 | ||
| 193 | # | 198 | # |
| @@ -203,7 +208,7 @@ CONFIG_HZ_250=y | |||
| 203 | # CONFIG_HZ_300 is not set | 208 | # CONFIG_HZ_300 is not set |
| 204 | # CONFIG_HZ_1000 is not set | 209 | # CONFIG_HZ_1000 is not set |
| 205 | CONFIG_HZ=250 | 210 | CONFIG_HZ=250 |
| 206 | # CONFIG_SCHED_HRTICK is not set | 211 | CONFIG_SCHED_HRTICK=y |
| 207 | CONFIG_PREEMPT_NONE=y | 212 | CONFIG_PREEMPT_NONE=y |
| 208 | # CONFIG_PREEMPT_VOLUNTARY is not set | 213 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 209 | # CONFIG_PREEMPT is not set | 214 | # CONFIG_PREEMPT is not set |
| @@ -226,6 +231,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 226 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 231 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 227 | CONFIG_PAGEFLAGS_EXTENDED=y | 232 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 228 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 233 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 234 | CONFIG_MIGRATION=y | ||
| 229 | # CONFIG_RESOURCES_64BIT is not set | 235 | # CONFIG_RESOURCES_64BIT is not set |
| 230 | CONFIG_ZONE_DMA_FLAG=1 | 236 | CONFIG_ZONE_DMA_FLAG=1 |
| 231 | CONFIG_BOUNCE=y | 237 | CONFIG_BOUNCE=y |
| @@ -233,6 +239,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 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 |
| 242 | CONFIG_EXTRA_TARGETS="" | ||
| 236 | # CONFIG_PM is not set | 243 | # CONFIG_PM is not set |
| 237 | # CONFIG_SECCOMP is not set | 244 | # CONFIG_SECCOMP is not set |
| 238 | CONFIG_ISA_DMA_API=y | 245 | CONFIG_ISA_DMA_API=y |
| @@ -244,7 +251,7 @@ CONFIG_ZONE_DMA=y | |||
| 244 | CONFIG_PPC_INDIRECT_PCI=y | 251 | CONFIG_PPC_INDIRECT_PCI=y |
| 245 | CONFIG_FSL_SOC=y | 252 | CONFIG_FSL_SOC=y |
| 246 | CONFIG_FSL_PCI=y | 253 | CONFIG_FSL_PCI=y |
| 247 | CONFIG_FSL_LBC=y | 254 | CONFIG_PPC_PCI_CHOICE=y |
| 248 | CONFIG_PCI=y | 255 | CONFIG_PCI=y |
| 249 | CONFIG_PCI_DOMAINS=y | 256 | CONFIG_PCI_DOMAINS=y |
| 250 | CONFIG_PCI_SYSCALL=y | 257 | CONFIG_PCI_SYSCALL=y |
| @@ -273,10 +280,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 273 | CONFIG_PHYSICAL_START=0x00000000 | 280 | CONFIG_PHYSICAL_START=0x00000000 |
| 274 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 281 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 275 | CONFIG_TASK_SIZE=0xc0000000 | 282 | CONFIG_TASK_SIZE=0xc0000000 |
| 276 | |||
| 277 | # | ||
| 278 | # Networking | ||
| 279 | # | ||
| 280 | CONFIG_NET=y | 283 | CONFIG_NET=y |
| 281 | 284 | ||
| 282 | # | 285 | # |
| @@ -455,7 +458,6 @@ CONFIG_MTD_NAND_IDS=y | |||
| 455 | # CONFIG_MTD_NAND_NANDSIM is not set | 458 | # CONFIG_MTD_NAND_NANDSIM is not set |
| 456 | # CONFIG_MTD_NAND_PLATFORM is not set | 459 | # CONFIG_MTD_NAND_PLATFORM is not set |
| 457 | # CONFIG_MTD_NAND_FSL_ELBC is not set | 460 | # CONFIG_MTD_NAND_FSL_ELBC is not set |
| 458 | CONFIG_MTD_NAND_FSL_UPM=y | ||
| 459 | # CONFIG_MTD_ONENAND is not set | 461 | # CONFIG_MTD_ONENAND is not set |
| 460 | 462 | ||
| 461 | # | 463 | # |
| @@ -490,20 +492,22 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 490 | # CONFIG_BLK_DEV_XIP is not set | 492 | # CONFIG_BLK_DEV_XIP is not set |
| 491 | # CONFIG_CDROM_PKTCDVD is not set | 493 | # CONFIG_CDROM_PKTCDVD is not set |
| 492 | # CONFIG_ATA_OVER_ETH is not set | 494 | # CONFIG_ATA_OVER_ETH is not set |
| 495 | # CONFIG_BLK_DEV_HD is not set | ||
| 493 | CONFIG_MISC_DEVICES=y | 496 | CONFIG_MISC_DEVICES=y |
| 494 | # CONFIG_PHANTOM is not set | 497 | # CONFIG_PHANTOM is not set |
| 495 | # CONFIG_EEPROM_93CX6 is not set | 498 | # CONFIG_EEPROM_93CX6 is not set |
| 496 | # CONFIG_SGI_IOC4 is not set | 499 | # CONFIG_SGI_IOC4 is not set |
| 497 | # CONFIG_TIFM_CORE is not set | 500 | # CONFIG_TIFM_CORE is not set |
| 498 | # CONFIG_ENCLOSURE_SERVICES is not set | 501 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 502 | # CONFIG_HP_ILO is not set | ||
| 499 | CONFIG_HAVE_IDE=y | 503 | CONFIG_HAVE_IDE=y |
| 500 | CONFIG_IDE=y | 504 | CONFIG_IDE=y |
| 501 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 502 | CONFIG_BLK_DEV_IDE=y | 505 | CONFIG_BLK_DEV_IDE=y |
| 503 | 506 | ||
| 504 | # | 507 | # |
| 505 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 508 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 506 | # | 509 | # |
| 510 | CONFIG_IDE_TIMINGS=y | ||
| 507 | # CONFIG_BLK_DEV_IDE_SATA is not set | 511 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 508 | # CONFIG_BLK_DEV_IDEDISK is not set | 512 | # CONFIG_BLK_DEV_IDEDISK is not set |
| 509 | # CONFIG_IDEDISK_MULTI_MODE is not set | 513 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| @@ -516,7 +520,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 516 | # | 520 | # |
| 517 | # IDE chipset support/bugfixes | 521 | # IDE chipset support/bugfixes |
| 518 | # | 522 | # |
| 519 | CONFIG_IDE_GENERIC=y | ||
| 520 | # CONFIG_BLK_DEV_PLATFORM is not set | 523 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 521 | CONFIG_BLK_DEV_IDEDMA_SFF=y | 524 | CONFIG_BLK_DEV_IDEDMA_SFF=y |
| 522 | 525 | ||
| @@ -534,10 +537,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 534 | # CONFIG_BLK_DEV_AMD74XX is not set | 537 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 535 | # CONFIG_BLK_DEV_CMD64X is not set | 538 | # CONFIG_BLK_DEV_CMD64X is not set |
| 536 | # CONFIG_BLK_DEV_TRIFLEX is not set | 539 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 537 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 538 | # CONFIG_BLK_DEV_CS5520 is not set | 540 | # CONFIG_BLK_DEV_CS5520 is not set |
| 539 | # CONFIG_BLK_DEV_CS5530 is not set | 541 | # CONFIG_BLK_DEV_CS5530 is not set |
| 540 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 541 | # CONFIG_BLK_DEV_HPT366 is not set | 542 | # CONFIG_BLK_DEV_HPT366 is not set |
| 542 | # CONFIG_BLK_DEV_JMICRON is not set | 543 | # CONFIG_BLK_DEV_JMICRON is not set |
| 543 | # CONFIG_BLK_DEV_SC1200 is not set | 544 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -555,8 +556,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 555 | CONFIG_BLK_DEV_VIA82CXXX=y | 556 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 556 | # CONFIG_BLK_DEV_TC86C001 is not set | 557 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 557 | CONFIG_BLK_DEV_IDEDMA=y | 558 | CONFIG_BLK_DEV_IDEDMA=y |
| 558 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 559 | # CONFIG_BLK_DEV_HD is not set | ||
| 560 | 559 | ||
| 561 | # | 560 | # |
| 562 | # SCSI device support | 561 | # SCSI device support |
| @@ -572,12 +571,15 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 572 | # | 571 | # |
| 573 | # IEEE 1394 (FireWire) support | 572 | # IEEE 1394 (FireWire) support |
| 574 | # | 573 | # |
| 574 | |||
| 575 | # | ||
| 576 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 577 | # | ||
| 575 | # CONFIG_FIREWIRE is not set | 578 | # CONFIG_FIREWIRE is not set |
| 576 | # CONFIG_IEEE1394 is not set | 579 | # CONFIG_IEEE1394 is not set |
| 577 | # CONFIG_I2O is not set | 580 | # CONFIG_I2O is not set |
| 578 | # CONFIG_MACINTOSH_DRIVERS is not set | 581 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 579 | CONFIG_NETDEVICES=y | 582 | CONFIG_NETDEVICES=y |
| 580 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 581 | # CONFIG_DUMMY is not set | 583 | # CONFIG_DUMMY is not set |
| 582 | # CONFIG_BONDING is not set | 584 | # CONFIG_BONDING is not set |
| 583 | # CONFIG_MACVLAN is not set | 585 | # CONFIG_MACVLAN is not set |
| @@ -620,10 +622,8 @@ CONFIG_NETDEV_1000=y | |||
| 620 | # CONFIG_ACENIC is not set | 622 | # CONFIG_ACENIC is not set |
| 621 | # CONFIG_DL2K is not set | 623 | # CONFIG_DL2K is not set |
| 622 | CONFIG_E1000=y | 624 | CONFIG_E1000=y |
| 623 | CONFIG_E1000_NAPI=y | ||
| 624 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 625 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
| 625 | # CONFIG_E1000E is not set | 626 | # CONFIG_E1000E is not set |
| 626 | # CONFIG_E1000E_ENABLED is not set | ||
| 627 | # CONFIG_IP1000 is not set | 627 | # CONFIG_IP1000 is not set |
| 628 | # CONFIG_IGB is not set | 628 | # CONFIG_IGB is not set |
| 629 | # CONFIG_NS83820 is not set | 629 | # CONFIG_NS83820 is not set |
| @@ -637,9 +637,9 @@ CONFIG_E1000_NAPI=y | |||
| 637 | # CONFIG_TIGON3 is not set | 637 | # CONFIG_TIGON3 is not set |
| 638 | # CONFIG_BNX2 is not set | 638 | # CONFIG_BNX2 is not set |
| 639 | CONFIG_GIANFAR=y | 639 | CONFIG_GIANFAR=y |
| 640 | CONFIG_GFAR_NAPI=y | ||
| 641 | # CONFIG_QLA3XXX is not set | 640 | # CONFIG_QLA3XXX is not set |
| 642 | # CONFIG_ATL1 is not set | 641 | # CONFIG_ATL1 is not set |
| 642 | # CONFIG_ATL1E is not set | ||
| 643 | CONFIG_NETDEV_10000=y | 643 | CONFIG_NETDEV_10000=y |
| 644 | # CONFIG_CHELSIO_T1 is not set | 644 | # CONFIG_CHELSIO_T1 is not set |
| 645 | # CONFIG_CHELSIO_T3 is not set | 645 | # CONFIG_CHELSIO_T3 is not set |
| @@ -744,42 +744,63 @@ CONFIG_DEVPORT=y | |||
| 744 | CONFIG_I2C=y | 744 | CONFIG_I2C=y |
| 745 | CONFIG_I2C_BOARDINFO=y | 745 | CONFIG_I2C_BOARDINFO=y |
| 746 | CONFIG_I2C_CHARDEV=y | 746 | CONFIG_I2C_CHARDEV=y |
| 747 | CONFIG_I2C_HELPER_AUTO=y | ||
| 747 | 748 | ||
| 748 | # | 749 | # |
| 749 | # I2C Hardware Bus support | 750 | # I2C Hardware Bus support |
| 750 | # | 751 | # |
| 752 | |||
| 753 | # | ||
| 754 | # PC SMBus host controller drivers | ||
| 755 | # | ||
| 751 | # CONFIG_I2C_ALI1535 is not set | 756 | # CONFIG_I2C_ALI1535 is not set |
| 752 | # CONFIG_I2C_ALI1563 is not set | 757 | # CONFIG_I2C_ALI1563 is not set |
| 753 | # CONFIG_I2C_ALI15X3 is not set | 758 | # CONFIG_I2C_ALI15X3 is not set |
| 754 | # CONFIG_I2C_AMD756 is not set | 759 | # CONFIG_I2C_AMD756 is not set |
| 755 | # CONFIG_I2C_AMD8111 is not set | 760 | # CONFIG_I2C_AMD8111 is not set |
| 756 | # CONFIG_I2C_I801 is not set | 761 | # CONFIG_I2C_I801 is not set |
| 757 | # CONFIG_I2C_I810 is not set | 762 | # CONFIG_I2C_ISCH is not set |
| 758 | # CONFIG_I2C_PIIX4 is not set | 763 | # CONFIG_I2C_PIIX4 is not set |
| 759 | CONFIG_I2C_MPC=y | ||
| 760 | # CONFIG_I2C_NFORCE2 is not set | 764 | # CONFIG_I2C_NFORCE2 is not set |
| 761 | # CONFIG_I2C_OCORES is not set | ||
| 762 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 763 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 764 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 765 | # CONFIG_I2C_SIMTEC is not set | ||
| 766 | # CONFIG_I2C_SIS5595 is not set | 765 | # CONFIG_I2C_SIS5595 is not set |
| 767 | # CONFIG_I2C_SIS630 is not set | 766 | # CONFIG_I2C_SIS630 is not set |
| 768 | # CONFIG_I2C_SIS96X is not set | 767 | # CONFIG_I2C_SIS96X is not set |
| 769 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 770 | # CONFIG_I2C_STUB is not set | ||
| 771 | # CONFIG_I2C_VIA is not set | 768 | # CONFIG_I2C_VIA is not set |
| 772 | # CONFIG_I2C_VIAPRO is not set | 769 | # CONFIG_I2C_VIAPRO is not set |
| 770 | |||
| 771 | # | ||
| 772 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 773 | # | ||
| 774 | CONFIG_I2C_MPC=y | ||
| 775 | # CONFIG_I2C_OCORES is not set | ||
| 776 | # CONFIG_I2C_SIMTEC is not set | ||
| 777 | |||
| 778 | # | ||
| 779 | # External I2C/SMBus adapter drivers | ||
| 780 | # | ||
| 781 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 782 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 783 | |||
| 784 | # | ||
| 785 | # Graphics adapter I2C/DDC channel drivers | ||
| 786 | # | ||
| 773 | # CONFIG_I2C_VOODOO3 is not set | 787 | # CONFIG_I2C_VOODOO3 is not set |
| 788 | |||
| 789 | # | ||
| 790 | # Other I2C/SMBus bus drivers | ||
| 791 | # | ||
| 774 | # CONFIG_I2C_PCA_PLATFORM is not set | 792 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 793 | # CONFIG_I2C_STUB is not set | ||
| 775 | 794 | ||
| 776 | # | 795 | # |
| 777 | # Miscellaneous I2C Chip support | 796 | # Miscellaneous I2C Chip support |
| 778 | # | 797 | # |
| 779 | # CONFIG_DS1682 is not set | 798 | # CONFIG_DS1682 is not set |
| 799 | # CONFIG_AT24 is not set | ||
| 780 | # CONFIG_SENSORS_EEPROM is not set | 800 | # CONFIG_SENSORS_EEPROM is not set |
| 781 | # CONFIG_SENSORS_PCF8574 is not set | 801 | # CONFIG_SENSORS_PCF8574 is not set |
| 782 | # CONFIG_PCF8575 is not set | 802 | # CONFIG_PCF8575 is not set |
| 803 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 783 | # CONFIG_SENSORS_PCF8591 is not set | 804 | # CONFIG_SENSORS_PCF8591 is not set |
| 784 | # CONFIG_SENSORS_MAX6875 is not set | 805 | # CONFIG_SENSORS_MAX6875 is not set |
| 785 | # CONFIG_SENSORS_TSL2550 is not set | 806 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -788,10 +809,13 @@ CONFIG_I2C_MPC=y | |||
| 788 | # CONFIG_I2C_DEBUG_BUS is not set | 809 | # CONFIG_I2C_DEBUG_BUS is not set |
| 789 | # CONFIG_I2C_DEBUG_CHIP is not set | 810 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 790 | # CONFIG_SPI is not set | 811 | # CONFIG_SPI is not set |
| 812 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 813 | # CONFIG_GPIOLIB is not set | ||
| 791 | # CONFIG_W1 is not set | 814 | # CONFIG_W1 is not set |
| 792 | # CONFIG_POWER_SUPPLY is not set | 815 | # CONFIG_POWER_SUPPLY is not set |
| 793 | CONFIG_HWMON=y | 816 | CONFIG_HWMON=y |
| 794 | # CONFIG_HWMON_VID is not set | 817 | # CONFIG_HWMON_VID is not set |
| 818 | # CONFIG_SENSORS_AD7414 is not set | ||
| 795 | # CONFIG_SENSORS_AD7418 is not set | 819 | # CONFIG_SENSORS_AD7418 is not set |
| 796 | # CONFIG_SENSORS_ADM1021 is not set | 820 | # CONFIG_SENSORS_ADM1021 is not set |
| 797 | # CONFIG_SENSORS_ADM1025 is not set | 821 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -845,6 +869,7 @@ CONFIG_SENSORS_LM75=y | |||
| 845 | # CONFIG_SENSORS_W83627EHF is not set | 869 | # CONFIG_SENSORS_W83627EHF is not set |
| 846 | # CONFIG_HWMON_DEBUG_CHIP is not set | 870 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 847 | # CONFIG_THERMAL is not set | 871 | # CONFIG_THERMAL is not set |
| 872 | # CONFIG_THERMAL_HWMON is not set | ||
| 848 | # CONFIG_WATCHDOG is not set | 873 | # CONFIG_WATCHDOG is not set |
| 849 | 874 | ||
| 850 | # | 875 | # |
| @@ -856,8 +881,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 856 | # | 881 | # |
| 857 | # Multifunction device drivers | 882 | # Multifunction device drivers |
| 858 | # | 883 | # |
| 884 | # CONFIG_MFD_CORE is not set | ||
| 859 | # CONFIG_MFD_SM501 is not set | 885 | # CONFIG_MFD_SM501 is not set |
| 860 | # CONFIG_HTC_PASIC3 is not set | 886 | # CONFIG_HTC_PASIC3 is not set |
| 887 | # CONFIG_MFD_TMIO is not set | ||
| 861 | 888 | ||
| 862 | # | 889 | # |
| 863 | # Multimedia devices | 890 | # Multimedia devices |
| @@ -889,10 +916,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 889 | # Display device support | 916 | # Display device support |
| 890 | # | 917 | # |
| 891 | # CONFIG_DISPLAY_SUPPORT is not set | 918 | # CONFIG_DISPLAY_SUPPORT is not set |
| 892 | |||
| 893 | # | ||
| 894 | # Sound | ||
| 895 | # | ||
| 896 | # CONFIG_SOUND is not set | 919 | # CONFIG_SOUND is not set |
| 897 | CONFIG_HID_SUPPORT=y | 920 | CONFIG_HID_SUPPORT=y |
| 898 | CONFIG_HID=y | 921 | CONFIG_HID=y |
| @@ -907,6 +930,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 907 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 930 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 908 | 931 | ||
| 909 | # | 932 | # |
| 933 | # Enable Host or Gadget support to see Inventra options | ||
| 934 | # | ||
| 935 | |||
| 936 | # | ||
| 910 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 937 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 911 | # | 938 | # |
| 912 | # CONFIG_USB_GADGET is not set | 939 | # CONFIG_USB_GADGET is not set |
| @@ -945,6 +972,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 945 | # CONFIG_RTC_DRV_PCF8583 is not set | 972 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 946 | # CONFIG_RTC_DRV_M41T80 is not set | 973 | # CONFIG_RTC_DRV_M41T80 is not set |
| 947 | # CONFIG_RTC_DRV_S35390A is not set | 974 | # CONFIG_RTC_DRV_S35390A is not set |
| 975 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 948 | 976 | ||
| 949 | # | 977 | # |
| 950 | # SPI RTC drivers | 978 | # SPI RTC drivers |
| @@ -1031,9 +1059,11 @@ CONFIG_TMPFS=y | |||
| 1031 | # CONFIG_BFS_FS is not set | 1059 | # CONFIG_BFS_FS is not set |
| 1032 | # CONFIG_EFS_FS is not set | 1060 | # CONFIG_EFS_FS is not set |
| 1033 | # CONFIG_JFFS2_FS is not set | 1061 | # CONFIG_JFFS2_FS is not set |
| 1062 | # CONFIG_UBIFS_FS is not set | ||
| 1034 | # CONFIG_CRAMFS is not set | 1063 | # CONFIG_CRAMFS is not set |
| 1035 | # CONFIG_VXFS_FS is not set | 1064 | # CONFIG_VXFS_FS is not set |
| 1036 | # CONFIG_MINIX_FS is not set | 1065 | # CONFIG_MINIX_FS is not set |
| 1066 | # CONFIG_OMFS_FS is not set | ||
| 1037 | # CONFIG_HPFS_FS is not set | 1067 | # CONFIG_HPFS_FS is not set |
| 1038 | # CONFIG_QNX4FS_FS is not set | 1068 | # CONFIG_QNX4FS_FS is not set |
| 1039 | # CONFIG_ROMFS_FS is not set | 1069 | # CONFIG_ROMFS_FS is not set |
| @@ -1043,12 +1073,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 1043 | CONFIG_NFS_FS=y | 1073 | CONFIG_NFS_FS=y |
| 1044 | # CONFIG_NFS_V3 is not set | 1074 | # CONFIG_NFS_V3 is not set |
| 1045 | # CONFIG_NFS_V4 is not set | 1075 | # CONFIG_NFS_V4 is not set |
| 1046 | # CONFIG_NFSD is not set | ||
| 1047 | CONFIG_ROOT_NFS=y | 1076 | CONFIG_ROOT_NFS=y |
| 1077 | # CONFIG_NFSD is not set | ||
| 1048 | CONFIG_LOCKD=y | 1078 | CONFIG_LOCKD=y |
| 1049 | CONFIG_NFS_COMMON=y | 1079 | CONFIG_NFS_COMMON=y |
| 1050 | CONFIG_SUNRPC=y | 1080 | CONFIG_SUNRPC=y |
| 1051 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1052 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1081 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1053 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1082 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1054 | # CONFIG_SMB_FS is not set | 1083 | # CONFIG_SMB_FS is not set |
| @@ -1084,6 +1113,7 @@ CONFIG_BITREVERSE=y | |||
| 1084 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1113 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1085 | # CONFIG_CRC_CCITT is not set | 1114 | # CONFIG_CRC_CCITT is not set |
| 1086 | # CONFIG_CRC16 is not set | 1115 | # CONFIG_CRC16 is not set |
| 1116 | # CONFIG_CRC_T10DIF is not set | ||
| 1087 | # CONFIG_CRC_ITU_T is not set | 1117 | # CONFIG_CRC_ITU_T is not set |
| 1088 | CONFIG_CRC32=y | 1118 | CONFIG_CRC32=y |
| 1089 | # CONFIG_CRC7 is not set | 1119 | # CONFIG_CRC7 is not set |
| @@ -1108,6 +1138,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 1108 | CONFIG_DEBUG_KERNEL=y | 1138 | CONFIG_DEBUG_KERNEL=y |
| 1109 | # CONFIG_DEBUG_SHIRQ is not set | 1139 | # CONFIG_DEBUG_SHIRQ is not set |
| 1110 | CONFIG_DETECT_SOFTLOCKUP=y | 1140 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1141 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1142 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1111 | CONFIG_SCHED_DEBUG=y | 1143 | CONFIG_SCHED_DEBUG=y |
| 1112 | # CONFIG_SCHEDSTATS is not set | 1144 | # CONFIG_SCHEDSTATS is not set |
| 1113 | # CONFIG_TIMER_STATS is not set | 1145 | # CONFIG_TIMER_STATS is not set |
| @@ -1125,17 +1157,29 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 1125 | # CONFIG_DEBUG_INFO is not set | 1157 | # CONFIG_DEBUG_INFO is not set |
| 1126 | # CONFIG_DEBUG_VM is not set | 1158 | # CONFIG_DEBUG_VM is not set |
| 1127 | # CONFIG_DEBUG_WRITECOUNT is not set | 1159 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1160 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1128 | # CONFIG_DEBUG_LIST is not set | 1161 | # CONFIG_DEBUG_LIST is not set |
| 1129 | # CONFIG_DEBUG_SG is not set | 1162 | # CONFIG_DEBUG_SG is not set |
| 1130 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1163 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1131 | # CONFIG_RCU_TORTURE_TEST is not set | 1164 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1132 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1165 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1133 | # CONFIG_FAULT_INJECTION is not set | 1166 | # CONFIG_FAULT_INJECTION is not set |
| 1167 | # CONFIG_LATENCYTOP is not set | ||
| 1168 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1169 | CONFIG_HAVE_FTRACE=y | ||
| 1170 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1171 | # CONFIG_FTRACE is not set | ||
| 1172 | # CONFIG_SCHED_TRACER is not set | ||
| 1173 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1134 | # CONFIG_SAMPLES is not set | 1174 | # CONFIG_SAMPLES is not set |
| 1175 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1176 | # CONFIG_KGDB is not set | ||
| 1135 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1177 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1136 | # CONFIG_DEBUG_STACK_USAGE is not set | 1178 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1137 | # CONFIG_DEBUG_PAGEALLOC is not set | 1179 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1138 | # CONFIG_DEBUGGER is not set | 1180 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1181 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1182 | # CONFIG_XMON is not set | ||
| 1139 | # CONFIG_IRQSTACKS is not set | 1183 | # CONFIG_IRQSTACKS is not set |
| 1140 | # CONFIG_BDI_SWITCH is not set | 1184 | # CONFIG_BDI_SWITCH is not set |
| 1141 | # CONFIG_PPC_EARLY_DEBUG is not set | 1185 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -1189,6 +1233,10 @@ CONFIG_CRYPTO=y | |||
| 1189 | # CONFIG_CRYPTO_MD4 is not set | 1233 | # CONFIG_CRYPTO_MD4 is not set |
| 1190 | # CONFIG_CRYPTO_MD5 is not set | 1234 | # CONFIG_CRYPTO_MD5 is not set |
| 1191 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1235 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1236 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1237 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1238 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1239 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1192 | # CONFIG_CRYPTO_SHA1 is not set | 1240 | # CONFIG_CRYPTO_SHA1 is not set |
| 1193 | # CONFIG_CRYPTO_SHA256 is not set | 1241 | # CONFIG_CRYPTO_SHA256 is not set |
| 1194 | # CONFIG_CRYPTO_SHA512 is not set | 1242 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1221,5 +1269,6 @@ CONFIG_CRYPTO=y | |||
| 1221 | # CONFIG_CRYPTO_LZO is not set | 1269 | # CONFIG_CRYPTO_LZO is not set |
| 1222 | CONFIG_CRYPTO_HW=y | 1270 | CONFIG_CRYPTO_HW=y |
| 1223 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1271 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1272 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1224 | # CONFIG_PPC_CLOCK is not set | 1273 | # CONFIG_PPC_CLOCK is not set |
| 1225 | # CONFIG_VIRTUALIZATION is not set | 1274 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8555_defconfig b/arch/powerpc/configs/85xx/tqm8555_defconfig index 03120b5b52fa..dcf9cfe28b55 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:41 2008 | 4 | # Thu Aug 21 00:52:42 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,12 +34,14 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 39 | CONFIG_GENERIC_HWEIGHT=y | 41 | CONFIG_GENERIC_HWEIGHT=y |
| 40 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 42 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 41 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 43 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 44 | CONFIG_GENERIC_GPIO=y | ||
| 42 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 45 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
| 43 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
| 44 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
| @@ -89,7 +92,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | # CONFIG_KALLSYMS is not set | 95 | # CONFIG_KALLSYMS is not set |
| 94 | # CONFIG_HOTPLUG is not set | 96 | # CONFIG_HOTPLUG is not set |
| 95 | CONFIG_PRINTK=y | 97 | CONFIG_PRINTK=y |
| @@ -112,10 +114,16 @@ CONFIG_SLUB=y | |||
| 112 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
| 113 | # CONFIG_MARKERS is not set | 115 | # CONFIG_MARKERS is not set |
| 114 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 119 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 120 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 122 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 123 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 124 | CONFIG_HAVE_CLK=y | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 125 | CONFIG_PROC_PAGE_MONITOR=y |
| 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | 129 | # CONFIG_TINY_SHMEM is not set |
| @@ -126,6 +134,7 @@ CONFIG_BLOCK=y | |||
| 126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 127 | # CONFIG_LSF is not set | 135 | # CONFIG_LSF is not set |
| 128 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
| 137 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 129 | 138 | ||
| 130 | # | 139 | # |
| 131 | # IO Schedulers | 140 | # IO Schedulers |
| @@ -144,8 +153,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 144 | # | 153 | # |
| 145 | # Platform support | 154 | # Platform support |
| 146 | # | 155 | # |
| 147 | # CONFIG_PPC_MPC512x is not set | ||
| 148 | # CONFIG_PPC_MPC5121 is not set | ||
| 149 | # CONFIG_PPC_CELL is not set | 156 | # CONFIG_PPC_CELL is not set |
| 150 | # CONFIG_PPC_CELL_NATIVE is not set | 157 | # CONFIG_PPC_CELL_NATIVE is not set |
| 151 | # CONFIG_PQ2ADS is not set | 158 | # CONFIG_PQ2ADS is not set |
| @@ -154,11 +161,13 @@ CONFIG_MPC85xx=y | |||
| 154 | # CONFIG_MPC8560_ADS is not set | 161 | # CONFIG_MPC8560_ADS is not set |
| 155 | # CONFIG_MPC85xx_CDS is not set | 162 | # CONFIG_MPC85xx_CDS is not set |
| 156 | # CONFIG_MPC85xx_MDS is not set | 163 | # CONFIG_MPC85xx_MDS is not set |
| 164 | # CONFIG_MPC8536_DS is not set | ||
| 157 | # CONFIG_MPC85xx_DS is not set | 165 | # CONFIG_MPC85xx_DS is not set |
| 158 | # CONFIG_KSI8560 is not set | 166 | # CONFIG_KSI8560 is not set |
| 159 | # CONFIG_STX_GP3 is not set | 167 | # CONFIG_STX_GP3 is not set |
| 160 | # CONFIG_TQM8540 is not set | 168 | # CONFIG_TQM8540 is not set |
| 161 | # CONFIG_TQM8541 is not set | 169 | # CONFIG_TQM8541 is not set |
| 170 | # CONFIG_TQM8548 is not set | ||
| 162 | CONFIG_TQM8555=y | 171 | CONFIG_TQM8555=y |
| 163 | # CONFIG_TQM8560 is not set | 172 | # CONFIG_TQM8560 is not set |
| 164 | # CONFIG_SBC8548 is not set | 173 | # CONFIG_SBC8548 is not set |
| @@ -176,7 +185,6 @@ CONFIG_MPIC=y | |||
| 176 | # CONFIG_GENERIC_IOMAP is not set | 185 | # CONFIG_GENERIC_IOMAP is not set |
| 177 | # CONFIG_CPU_FREQ is not set | 186 | # CONFIG_CPU_FREQ is not set |
| 178 | CONFIG_CPM2=y | 187 | CONFIG_CPM2=y |
| 179 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 180 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
| 181 | CONFIG_CPM=y | 189 | CONFIG_CPM=y |
| 182 | 190 | ||
| @@ -216,6 +224,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 216 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 224 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 217 | CONFIG_PAGEFLAGS_EXTENDED=y | 225 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 226 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 227 | CONFIG_MIGRATION=y | ||
| 219 | # CONFIG_RESOURCES_64BIT is not set | 228 | # CONFIG_RESOURCES_64BIT is not set |
| 220 | CONFIG_ZONE_DMA_FLAG=1 | 229 | CONFIG_ZONE_DMA_FLAG=1 |
| 221 | CONFIG_BOUNCE=y | 230 | CONFIG_BOUNCE=y |
| @@ -223,6 +232,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 223 | CONFIG_FORCE_MAX_ZONEORDER=11 | 232 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 224 | # CONFIG_PROC_DEVICETREE is not set | 233 | # CONFIG_PROC_DEVICETREE is not set |
| 225 | # CONFIG_CMDLINE_BOOL is not set | 234 | # CONFIG_CMDLINE_BOOL is not set |
| 235 | CONFIG_EXTRA_TARGETS="" | ||
| 226 | # CONFIG_PM is not set | 236 | # CONFIG_PM is not set |
| 227 | CONFIG_SECCOMP=y | 237 | CONFIG_SECCOMP=y |
| 228 | CONFIG_ISA_DMA_API=y | 238 | CONFIG_ISA_DMA_API=y |
| @@ -234,6 +244,7 @@ CONFIG_ZONE_DMA=y | |||
| 234 | CONFIG_PPC_INDIRECT_PCI=y | 244 | CONFIG_PPC_INDIRECT_PCI=y |
| 235 | CONFIG_FSL_SOC=y | 245 | CONFIG_FSL_SOC=y |
| 236 | CONFIG_FSL_PCI=y | 246 | CONFIG_FSL_PCI=y |
| 247 | CONFIG_PPC_PCI_CHOICE=y | ||
| 237 | CONFIG_PCI=y | 248 | CONFIG_PCI=y |
| 238 | CONFIG_PCI_DOMAINS=y | 249 | CONFIG_PCI_DOMAINS=y |
| 239 | CONFIG_PCI_SYSCALL=y | 250 | CONFIG_PCI_SYSCALL=y |
| @@ -257,10 +268,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 257 | CONFIG_PHYSICAL_START=0x00000000 | 268 | CONFIG_PHYSICAL_START=0x00000000 |
| 258 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 269 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 259 | CONFIG_TASK_SIZE=0xc0000000 | 270 | CONFIG_TASK_SIZE=0xc0000000 |
| 260 | |||
| 261 | # | ||
| 262 | # Networking | ||
| 263 | # | ||
| 264 | CONFIG_NET=y | 271 | CONFIG_NET=y |
| 265 | 272 | ||
| 266 | # | 273 | # |
| @@ -432,6 +439,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 432 | # | 439 | # |
| 433 | # CONFIG_MTD_UBI is not set | 440 | # CONFIG_MTD_UBI is not set |
| 434 | CONFIG_OF_DEVICE=y | 441 | CONFIG_OF_DEVICE=y |
| 442 | CONFIG_OF_GPIO=y | ||
| 435 | CONFIG_OF_I2C=y | 443 | CONFIG_OF_I2C=y |
| 436 | # CONFIG_PARPORT is not set | 444 | # CONFIG_PARPORT is not set |
| 437 | CONFIG_BLK_DEV=y | 445 | CONFIG_BLK_DEV=y |
| @@ -451,20 +459,22 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 451 | # CONFIG_BLK_DEV_XIP is not set | 459 | # CONFIG_BLK_DEV_XIP is not set |
| 452 | # CONFIG_CDROM_PKTCDVD is not set | 460 | # CONFIG_CDROM_PKTCDVD is not set |
| 453 | # CONFIG_ATA_OVER_ETH is not set | 461 | # CONFIG_ATA_OVER_ETH is not set |
| 462 | # CONFIG_BLK_DEV_HD is not set | ||
| 454 | CONFIG_MISC_DEVICES=y | 463 | CONFIG_MISC_DEVICES=y |
| 455 | # CONFIG_PHANTOM is not set | 464 | # CONFIG_PHANTOM is not set |
| 456 | # CONFIG_EEPROM_93CX6 is not set | 465 | # CONFIG_EEPROM_93CX6 is not set |
| 457 | # CONFIG_SGI_IOC4 is not set | 466 | # CONFIG_SGI_IOC4 is not set |
| 458 | # CONFIG_TIFM_CORE is not set | 467 | # CONFIG_TIFM_CORE is not set |
| 459 | # CONFIG_ENCLOSURE_SERVICES is not set | 468 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 469 | # CONFIG_HP_ILO is not set | ||
| 460 | CONFIG_HAVE_IDE=y | 470 | CONFIG_HAVE_IDE=y |
| 461 | CONFIG_IDE=y | 471 | CONFIG_IDE=y |
| 462 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 463 | CONFIG_BLK_DEV_IDE=y | 472 | CONFIG_BLK_DEV_IDE=y |
| 464 | 473 | ||
| 465 | # | 474 | # |
| 466 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 475 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 467 | # | 476 | # |
| 477 | CONFIG_IDE_TIMINGS=y | ||
| 468 | # CONFIG_BLK_DEV_IDE_SATA is not set | 478 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 469 | CONFIG_BLK_DEV_IDEDISK=y | 479 | CONFIG_BLK_DEV_IDEDISK=y |
| 470 | # CONFIG_IDEDISK_MULTI_MODE is not set | 480 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| @@ -477,7 +487,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 477 | # | 487 | # |
| 478 | # IDE chipset support/bugfixes | 488 | # IDE chipset support/bugfixes |
| 479 | # | 489 | # |
| 480 | CONFIG_IDE_GENERIC=y | ||
| 481 | # CONFIG_BLK_DEV_PLATFORM is not set | 490 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 482 | CONFIG_BLK_DEV_IDEDMA_SFF=y | 491 | CONFIG_BLK_DEV_IDEDMA_SFF=y |
| 483 | 492 | ||
| @@ -495,10 +504,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 495 | # CONFIG_BLK_DEV_AMD74XX is not set | 504 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 496 | # CONFIG_BLK_DEV_CMD64X is not set | 505 | # CONFIG_BLK_DEV_CMD64X is not set |
| 497 | # CONFIG_BLK_DEV_TRIFLEX is not set | 506 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 498 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 499 | # CONFIG_BLK_DEV_CS5520 is not set | 507 | # CONFIG_BLK_DEV_CS5520 is not set |
| 500 | # CONFIG_BLK_DEV_CS5530 is not set | 508 | # CONFIG_BLK_DEV_CS5530 is not set |
| 501 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 502 | # CONFIG_BLK_DEV_HPT366 is not set | 509 | # CONFIG_BLK_DEV_HPT366 is not set |
| 503 | # CONFIG_BLK_DEV_JMICRON is not set | 510 | # CONFIG_BLK_DEV_JMICRON is not set |
| 504 | # CONFIG_BLK_DEV_SC1200 is not set | 511 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -516,8 +523,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 516 | CONFIG_BLK_DEV_VIA82CXXX=y | 523 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 517 | # CONFIG_BLK_DEV_TC86C001 is not set | 524 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 518 | CONFIG_BLK_DEV_IDEDMA=y | 525 | CONFIG_BLK_DEV_IDEDMA=y |
| 519 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 520 | # CONFIG_BLK_DEV_HD is not set | ||
| 521 | 526 | ||
| 522 | # | 527 | # |
| 523 | # SCSI device support | 528 | # SCSI device support |
| @@ -533,12 +538,15 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 533 | # | 538 | # |
| 534 | # IEEE 1394 (FireWire) support | 539 | # IEEE 1394 (FireWire) support |
| 535 | # | 540 | # |
| 541 | |||
| 542 | # | ||
| 543 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 544 | # | ||
| 536 | # CONFIG_FIREWIRE is not set | 545 | # CONFIG_FIREWIRE is not set |
| 537 | # CONFIG_IEEE1394 is not set | 546 | # CONFIG_IEEE1394 is not set |
| 538 | # CONFIG_I2O is not set | 547 | # CONFIG_I2O is not set |
| 539 | # CONFIG_MACINTOSH_DRIVERS is not set | 548 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 540 | CONFIG_NETDEVICES=y | 549 | CONFIG_NETDEVICES=y |
| 541 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 542 | # CONFIG_DUMMY is not set | 550 | # CONFIG_DUMMY is not set |
| 543 | # CONFIG_BONDING is not set | 551 | # CONFIG_BONDING is not set |
| 544 | # CONFIG_MACVLAN is not set | 552 | # CONFIG_MACVLAN is not set |
| @@ -601,7 +609,6 @@ CONFIG_NETDEV_1000=y | |||
| 601 | # CONFIG_DL2K is not set | 609 | # CONFIG_DL2K is not set |
| 602 | # CONFIG_E1000 is not set | 610 | # CONFIG_E1000 is not set |
| 603 | # CONFIG_E1000E is not set | 611 | # CONFIG_E1000E is not set |
| 604 | # CONFIG_E1000E_ENABLED is not set | ||
| 605 | # CONFIG_IP1000 is not set | 612 | # CONFIG_IP1000 is not set |
| 606 | # CONFIG_IGB is not set | 613 | # CONFIG_IGB is not set |
| 607 | # CONFIG_NS83820 is not set | 614 | # CONFIG_NS83820 is not set |
| @@ -615,9 +622,9 @@ CONFIG_NETDEV_1000=y | |||
| 615 | # CONFIG_TIGON3 is not set | 622 | # CONFIG_TIGON3 is not set |
| 616 | # CONFIG_BNX2 is not set | 623 | # CONFIG_BNX2 is not set |
| 617 | CONFIG_GIANFAR=y | 624 | CONFIG_GIANFAR=y |
| 618 | CONFIG_GFAR_NAPI=y | ||
| 619 | # CONFIG_QLA3XXX is not set | 625 | # CONFIG_QLA3XXX is not set |
| 620 | # CONFIG_ATL1 is not set | 626 | # CONFIG_ATL1 is not set |
| 627 | # CONFIG_ATL1E is not set | ||
| 621 | CONFIG_NETDEV_10000=y | 628 | CONFIG_NETDEV_10000=y |
| 622 | # CONFIG_CHELSIO_T1 is not set | 629 | # CONFIG_CHELSIO_T1 is not set |
| 623 | # CONFIG_CHELSIO_T3 is not set | 630 | # CONFIG_CHELSIO_T3 is not set |
| @@ -732,42 +739,66 @@ CONFIG_DEVPORT=y | |||
| 732 | CONFIG_I2C=y | 739 | CONFIG_I2C=y |
| 733 | CONFIG_I2C_BOARDINFO=y | 740 | CONFIG_I2C_BOARDINFO=y |
| 734 | CONFIG_I2C_CHARDEV=y | 741 | CONFIG_I2C_CHARDEV=y |
| 742 | CONFIG_I2C_HELPER_AUTO=y | ||
| 735 | 743 | ||
| 736 | # | 744 | # |
| 737 | # I2C Hardware Bus support | 745 | # I2C Hardware Bus support |
| 738 | # | 746 | # |
| 747 | |||
| 748 | # | ||
| 749 | # PC SMBus host controller drivers | ||
| 750 | # | ||
| 739 | # CONFIG_I2C_ALI1535 is not set | 751 | # CONFIG_I2C_ALI1535 is not set |
| 740 | # CONFIG_I2C_ALI1563 is not set | 752 | # CONFIG_I2C_ALI1563 is not set |
| 741 | # CONFIG_I2C_ALI15X3 is not set | 753 | # CONFIG_I2C_ALI15X3 is not set |
| 742 | # CONFIG_I2C_AMD756 is not set | 754 | # CONFIG_I2C_AMD756 is not set |
| 743 | # CONFIG_I2C_AMD8111 is not set | 755 | # CONFIG_I2C_AMD8111 is not set |
| 744 | # CONFIG_I2C_I801 is not set | 756 | # CONFIG_I2C_I801 is not set |
| 745 | # CONFIG_I2C_I810 is not set | 757 | # CONFIG_I2C_ISCH is not set |
| 746 | # CONFIG_I2C_PIIX4 is not set | 758 | # CONFIG_I2C_PIIX4 is not set |
| 747 | CONFIG_I2C_MPC=y | ||
| 748 | # CONFIG_I2C_NFORCE2 is not set | 759 | # CONFIG_I2C_NFORCE2 is not set |
| 749 | # CONFIG_I2C_OCORES is not set | ||
| 750 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 751 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 752 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 753 | # CONFIG_I2C_SIMTEC is not set | ||
| 754 | # CONFIG_I2C_SIS5595 is not set | 760 | # CONFIG_I2C_SIS5595 is not set |
| 755 | # CONFIG_I2C_SIS630 is not set | 761 | # CONFIG_I2C_SIS630 is not set |
| 756 | # CONFIG_I2C_SIS96X is not set | 762 | # CONFIG_I2C_SIS96X is not set |
| 757 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 758 | # CONFIG_I2C_VIA is not set | 763 | # CONFIG_I2C_VIA is not set |
| 759 | # CONFIG_I2C_VIAPRO is not set | 764 | # CONFIG_I2C_VIAPRO is not set |
| 765 | |||
| 766 | # | ||
| 767 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 768 | # | ||
| 769 | # CONFIG_I2C_CPM is not set | ||
| 770 | # CONFIG_I2C_GPIO is not set | ||
| 771 | CONFIG_I2C_MPC=y | ||
| 772 | # CONFIG_I2C_OCORES is not set | ||
| 773 | # CONFIG_I2C_SIMTEC is not set | ||
| 774 | |||
| 775 | # | ||
| 776 | # External I2C/SMBus adapter drivers | ||
| 777 | # | ||
| 778 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 779 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 780 | |||
| 781 | # | ||
| 782 | # Graphics adapter I2C/DDC channel drivers | ||
| 783 | # | ||
| 760 | # CONFIG_I2C_VOODOO3 is not set | 784 | # CONFIG_I2C_VOODOO3 is not set |
| 785 | |||
| 786 | # | ||
| 787 | # Other I2C/SMBus bus drivers | ||
| 788 | # | ||
| 761 | # CONFIG_I2C_PCA_PLATFORM is not set | 789 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 762 | 790 | ||
| 763 | # | 791 | # |
| 764 | # Miscellaneous I2C Chip support | 792 | # Miscellaneous I2C Chip support |
| 765 | # | 793 | # |
| 766 | # CONFIG_DS1682 is not set | 794 | # CONFIG_DS1682 is not set |
| 795 | # CONFIG_AT24 is not set | ||
| 767 | # CONFIG_SENSORS_EEPROM is not set | 796 | # CONFIG_SENSORS_EEPROM is not set |
| 768 | # CONFIG_SENSORS_PCF8574 is not set | 797 | # CONFIG_SENSORS_PCF8574 is not set |
| 769 | # CONFIG_PCF8575 is not set | 798 | # CONFIG_PCF8575 is not set |
| 799 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 770 | # CONFIG_SENSORS_PCF8591 is not set | 800 | # CONFIG_SENSORS_PCF8591 is not set |
| 801 | # CONFIG_TPS65010 is not set | ||
| 771 | # CONFIG_SENSORS_MAX6875 is not set | 802 | # CONFIG_SENSORS_MAX6875 is not set |
| 772 | # CONFIG_SENSORS_TSL2550 is not set | 803 | # CONFIG_SENSORS_TSL2550 is not set |
| 773 | # CONFIG_I2C_DEBUG_CORE is not set | 804 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -775,10 +806,31 @@ CONFIG_I2C_MPC=y | |||
| 775 | # CONFIG_I2C_DEBUG_BUS is not set | 806 | # CONFIG_I2C_DEBUG_BUS is not set |
| 776 | # CONFIG_I2C_DEBUG_CHIP is not set | 807 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 777 | # CONFIG_SPI is not set | 808 | # CONFIG_SPI is not set |
| 809 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 810 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | ||
| 811 | CONFIG_GPIOLIB=y | ||
| 812 | # CONFIG_GPIO_SYSFS is not set | ||
| 813 | |||
| 814 | # | ||
| 815 | # I2C GPIO expanders: | ||
| 816 | # | ||
| 817 | # CONFIG_GPIO_MAX732X is not set | ||
| 818 | # CONFIG_GPIO_PCA953X is not set | ||
| 819 | # CONFIG_GPIO_PCF857X is not set | ||
| 820 | |||
| 821 | # | ||
| 822 | # PCI GPIO expanders: | ||
| 823 | # | ||
| 824 | # CONFIG_GPIO_BT8XX is not set | ||
| 825 | |||
| 826 | # | ||
| 827 | # SPI GPIO expanders: | ||
| 828 | # | ||
| 778 | # CONFIG_W1 is not set | 829 | # CONFIG_W1 is not set |
| 779 | # CONFIG_POWER_SUPPLY is not set | 830 | # CONFIG_POWER_SUPPLY is not set |
| 780 | CONFIG_HWMON=y | 831 | CONFIG_HWMON=y |
| 781 | # CONFIG_HWMON_VID is not set | 832 | # CONFIG_HWMON_VID is not set |
| 833 | # CONFIG_SENSORS_AD7414 is not set | ||
| 782 | # CONFIG_SENSORS_AD7418 is not set | 834 | # CONFIG_SENSORS_AD7418 is not set |
| 783 | # CONFIG_SENSORS_ADM1021 is not set | 835 | # CONFIG_SENSORS_ADM1021 is not set |
| 784 | # CONFIG_SENSORS_ADM1025 is not set | 836 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -832,6 +884,7 @@ CONFIG_SENSORS_LM75=y | |||
| 832 | # CONFIG_SENSORS_W83627EHF is not set | 884 | # CONFIG_SENSORS_W83627EHF is not set |
| 833 | CONFIG_HWMON_DEBUG_CHIP=y | 885 | CONFIG_HWMON_DEBUG_CHIP=y |
| 834 | # CONFIG_THERMAL is not set | 886 | # CONFIG_THERMAL is not set |
| 887 | # CONFIG_THERMAL_HWMON is not set | ||
| 835 | # CONFIG_WATCHDOG is not set | 888 | # CONFIG_WATCHDOG is not set |
| 836 | 889 | ||
| 837 | # | 890 | # |
| @@ -843,8 +896,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 843 | # | 896 | # |
| 844 | # Multifunction device drivers | 897 | # Multifunction device drivers |
| 845 | # | 898 | # |
| 899 | # CONFIG_MFD_CORE is not set | ||
| 846 | # CONFIG_MFD_SM501 is not set | 900 | # CONFIG_MFD_SM501 is not set |
| 847 | # CONFIG_HTC_PASIC3 is not set | 901 | # CONFIG_HTC_PASIC3 is not set |
| 902 | # CONFIG_MFD_TMIO is not set | ||
| 848 | 903 | ||
| 849 | # | 904 | # |
| 850 | # Multimedia devices | 905 | # Multimedia devices |
| @@ -876,10 +931,6 @@ CONFIG_DAB=y | |||
| 876 | # Display device support | 931 | # Display device support |
| 877 | # | 932 | # |
| 878 | # CONFIG_DISPLAY_SUPPORT is not set | 933 | # CONFIG_DISPLAY_SUPPORT is not set |
| 879 | |||
| 880 | # | ||
| 881 | # Sound | ||
| 882 | # | ||
| 883 | # CONFIG_SOUND is not set | 934 | # CONFIG_SOUND is not set |
| 884 | CONFIG_HID_SUPPORT=y | 935 | CONFIG_HID_SUPPORT=y |
| 885 | CONFIG_HID=y | 936 | CONFIG_HID=y |
| @@ -894,6 +945,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 894 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 945 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 895 | 946 | ||
| 896 | # | 947 | # |
| 948 | # Enable Host or Gadget support to see Inventra options | ||
| 949 | # | ||
| 950 | |||
| 951 | # | ||
| 897 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 952 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 898 | # | 953 | # |
| 899 | # CONFIG_USB_GADGET is not set | 954 | # CONFIG_USB_GADGET is not set |
| @@ -982,6 +1037,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 982 | CONFIG_CRAMFS=y | 1037 | CONFIG_CRAMFS=y |
| 983 | # CONFIG_VXFS_FS is not set | 1038 | # CONFIG_VXFS_FS is not set |
| 984 | # CONFIG_MINIX_FS is not set | 1039 | # CONFIG_MINIX_FS is not set |
| 1040 | # CONFIG_OMFS_FS is not set | ||
| 985 | # CONFIG_HPFS_FS is not set | 1041 | # CONFIG_HPFS_FS is not set |
| 986 | # CONFIG_QNX4FS_FS is not set | 1042 | # CONFIG_QNX4FS_FS is not set |
| 987 | # CONFIG_ROMFS_FS is not set | 1043 | # CONFIG_ROMFS_FS is not set |
| @@ -991,12 +1047,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 991 | CONFIG_NFS_FS=y | 1047 | CONFIG_NFS_FS=y |
| 992 | # CONFIG_NFS_V3 is not set | 1048 | # CONFIG_NFS_V3 is not set |
| 993 | # CONFIG_NFS_V4 is not set | 1049 | # CONFIG_NFS_V4 is not set |
| 994 | # CONFIG_NFSD is not set | ||
| 995 | CONFIG_ROOT_NFS=y | 1050 | CONFIG_ROOT_NFS=y |
| 1051 | # CONFIG_NFSD is not set | ||
| 996 | CONFIG_LOCKD=y | 1052 | CONFIG_LOCKD=y |
| 997 | CONFIG_NFS_COMMON=y | 1053 | CONFIG_NFS_COMMON=y |
| 998 | CONFIG_SUNRPC=y | 1054 | CONFIG_SUNRPC=y |
| 999 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1000 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1055 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1001 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1056 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1002 | # CONFIG_SMB_FS is not set | 1057 | # CONFIG_SMB_FS is not set |
| @@ -1032,6 +1087,7 @@ CONFIG_BITREVERSE=y | |||
| 1032 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1087 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1033 | # CONFIG_CRC_CCITT is not set | 1088 | # CONFIG_CRC_CCITT is not set |
| 1034 | # CONFIG_CRC16 is not set | 1089 | # CONFIG_CRC16 is not set |
| 1090 | # CONFIG_CRC_T10DIF is not set | ||
| 1035 | # CONFIG_CRC_ITU_T is not set | 1091 | # CONFIG_CRC_ITU_T is not set |
| 1036 | CONFIG_CRC32=y | 1092 | CONFIG_CRC32=y |
| 1037 | # CONFIG_CRC7 is not set | 1093 | # CONFIG_CRC7 is not set |
| @@ -1059,8 +1115,16 @@ CONFIG_FRAME_WARN=1024 | |||
| 1059 | # CONFIG_SLUB_DEBUG_ON is not set | 1115 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1060 | # CONFIG_SLUB_STATS is not set | 1116 | # CONFIG_SLUB_STATS is not set |
| 1061 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1117 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1118 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1119 | # CONFIG_LATENCYTOP is not set | ||
| 1120 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1121 | CONFIG_HAVE_FTRACE=y | ||
| 1122 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1123 | # CONFIG_FTRACE is not set | ||
| 1124 | # CONFIG_SCHED_TRACER is not set | ||
| 1125 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1062 | # CONFIG_SAMPLES is not set | 1126 | # CONFIG_SAMPLES is not set |
| 1063 | # CONFIG_KGDB_CONSOLE is not set | 1127 | CONFIG_HAVE_ARCH_KGDB=y |
| 1064 | # CONFIG_IRQSTACKS is not set | 1128 | # CONFIG_IRQSTACKS is not set |
| 1065 | # CONFIG_PPC_EARLY_DEBUG is not set | 1129 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1066 | 1130 | ||
| @@ -1112,6 +1176,10 @@ CONFIG_CRYPTO=y | |||
| 1112 | # CONFIG_CRYPTO_MD4 is not set | 1176 | # CONFIG_CRYPTO_MD4 is not set |
| 1113 | # CONFIG_CRYPTO_MD5 is not set | 1177 | # CONFIG_CRYPTO_MD5 is not set |
| 1114 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1178 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1179 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1180 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1181 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1182 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1115 | # CONFIG_CRYPTO_SHA1 is not set | 1183 | # CONFIG_CRYPTO_SHA1 is not set |
| 1116 | # CONFIG_CRYPTO_SHA256 is not set | 1184 | # CONFIG_CRYPTO_SHA256 is not set |
| 1117 | # CONFIG_CRYPTO_SHA512 is not set | 1185 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1144,6 +1212,7 @@ CONFIG_CRYPTO=y | |||
| 1144 | # CONFIG_CRYPTO_LZO is not set | 1212 | # CONFIG_CRYPTO_LZO is not set |
| 1145 | CONFIG_CRYPTO_HW=y | 1213 | CONFIG_CRYPTO_HW=y |
| 1146 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1214 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1147 | # CONFIG_PPC_CLOCK is not set | 1215 | # CONFIG_CRYPTO_DEV_TALITOS is not set |
| 1216 | CONFIG_PPC_CLOCK=y | ||
| 1148 | CONFIG_PPC_LIB_RHEAP=y | 1217 | CONFIG_PPC_LIB_RHEAP=y |
| 1149 | # CONFIG_VIRTUALIZATION is not set | 1218 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/tqm8560_defconfig b/arch/powerpc/configs/85xx/tqm8560_defconfig index 3113257edf5a..8d676629cdb1 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:42 2008 | 4 | # Thu Aug 21 00:52:43 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,12 +34,14 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 39 | CONFIG_GENERIC_HWEIGHT=y | 41 | CONFIG_GENERIC_HWEIGHT=y |
| 40 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 42 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 41 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 43 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 44 | CONFIG_GENERIC_GPIO=y | ||
| 42 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 45 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
| 43 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
| 44 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
| @@ -89,7 +92,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 89 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 90 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | # CONFIG_KALLSYMS is not set | 95 | # CONFIG_KALLSYMS is not set |
| 94 | # CONFIG_HOTPLUG is not set | 96 | # CONFIG_HOTPLUG is not set |
| 95 | CONFIG_PRINTK=y | 97 | CONFIG_PRINTK=y |
| @@ -112,10 +114,16 @@ CONFIG_SLUB=y | |||
| 112 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
| 113 | # CONFIG_MARKERS is not set | 115 | # CONFIG_MARKERS is not set |
| 114 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 119 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 120 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 122 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 123 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 124 | CONFIG_HAVE_CLK=y | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 125 | CONFIG_PROC_PAGE_MONITOR=y |
| 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 127 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 128 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | 129 | # CONFIG_TINY_SHMEM is not set |
| @@ -126,6 +134,7 @@ CONFIG_BLOCK=y | |||
| 126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 134 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 127 | # CONFIG_LSF is not set | 135 | # CONFIG_LSF is not set |
| 128 | # CONFIG_BLK_DEV_BSG is not set | 136 | # CONFIG_BLK_DEV_BSG is not set |
| 137 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 129 | 138 | ||
| 130 | # | 139 | # |
| 131 | # IO Schedulers | 140 | # IO Schedulers |
| @@ -144,8 +153,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 144 | # | 153 | # |
| 145 | # Platform support | 154 | # Platform support |
| 146 | # | 155 | # |
| 147 | # CONFIG_PPC_MPC512x is not set | ||
| 148 | # CONFIG_PPC_MPC5121 is not set | ||
| 149 | # CONFIG_PPC_CELL is not set | 156 | # CONFIG_PPC_CELL is not set |
| 150 | # CONFIG_PPC_CELL_NATIVE is not set | 157 | # CONFIG_PPC_CELL_NATIVE is not set |
| 151 | # CONFIG_PQ2ADS is not set | 158 | # CONFIG_PQ2ADS is not set |
| @@ -154,11 +161,13 @@ CONFIG_MPC85xx=y | |||
| 154 | # CONFIG_MPC8560_ADS is not set | 161 | # CONFIG_MPC8560_ADS is not set |
| 155 | # CONFIG_MPC85xx_CDS is not set | 162 | # CONFIG_MPC85xx_CDS is not set |
| 156 | # CONFIG_MPC85xx_MDS is not set | 163 | # CONFIG_MPC85xx_MDS is not set |
| 164 | # CONFIG_MPC8536_DS is not set | ||
| 157 | # CONFIG_MPC85xx_DS is not set | 165 | # CONFIG_MPC85xx_DS is not set |
| 158 | # CONFIG_KSI8560 is not set | 166 | # CONFIG_KSI8560 is not set |
| 159 | # CONFIG_STX_GP3 is not set | 167 | # CONFIG_STX_GP3 is not set |
| 160 | # CONFIG_TQM8540 is not set | 168 | # CONFIG_TQM8540 is not set |
| 161 | # CONFIG_TQM8541 is not set | 169 | # CONFIG_TQM8541 is not set |
| 170 | # CONFIG_TQM8548 is not set | ||
| 162 | # CONFIG_TQM8555 is not set | 171 | # CONFIG_TQM8555 is not set |
| 163 | CONFIG_TQM8560=y | 172 | CONFIG_TQM8560=y |
| 164 | # CONFIG_SBC8548 is not set | 173 | # CONFIG_SBC8548 is not set |
| @@ -176,7 +185,6 @@ CONFIG_MPIC=y | |||
| 176 | # CONFIG_GENERIC_IOMAP is not set | 185 | # CONFIG_GENERIC_IOMAP is not set |
| 177 | # CONFIG_CPU_FREQ is not set | 186 | # CONFIG_CPU_FREQ is not set |
| 178 | CONFIG_CPM2=y | 187 | CONFIG_CPM2=y |
| 179 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 180 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
| 181 | CONFIG_CPM=y | 189 | CONFIG_CPM=y |
| 182 | 190 | ||
| @@ -216,6 +224,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 216 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 224 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 217 | CONFIG_PAGEFLAGS_EXTENDED=y | 225 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 226 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 227 | CONFIG_MIGRATION=y | ||
| 219 | # CONFIG_RESOURCES_64BIT is not set | 228 | # CONFIG_RESOURCES_64BIT is not set |
| 220 | CONFIG_ZONE_DMA_FLAG=1 | 229 | CONFIG_ZONE_DMA_FLAG=1 |
| 221 | CONFIG_BOUNCE=y | 230 | CONFIG_BOUNCE=y |
| @@ -223,6 +232,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 223 | CONFIG_FORCE_MAX_ZONEORDER=11 | 232 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 224 | # CONFIG_PROC_DEVICETREE is not set | 233 | # CONFIG_PROC_DEVICETREE is not set |
| 225 | # CONFIG_CMDLINE_BOOL is not set | 234 | # CONFIG_CMDLINE_BOOL is not set |
| 235 | CONFIG_EXTRA_TARGETS="" | ||
| 226 | # CONFIG_PM is not set | 236 | # CONFIG_PM is not set |
| 227 | CONFIG_SECCOMP=y | 237 | CONFIG_SECCOMP=y |
| 228 | CONFIG_ISA_DMA_API=y | 238 | CONFIG_ISA_DMA_API=y |
| @@ -234,6 +244,7 @@ CONFIG_ZONE_DMA=y | |||
| 234 | CONFIG_PPC_INDIRECT_PCI=y | 244 | CONFIG_PPC_INDIRECT_PCI=y |
| 235 | CONFIG_FSL_SOC=y | 245 | CONFIG_FSL_SOC=y |
| 236 | CONFIG_FSL_PCI=y | 246 | CONFIG_FSL_PCI=y |
| 247 | CONFIG_PPC_PCI_CHOICE=y | ||
| 237 | CONFIG_PCI=y | 248 | CONFIG_PCI=y |
| 238 | CONFIG_PCI_DOMAINS=y | 249 | CONFIG_PCI_DOMAINS=y |
| 239 | CONFIG_PCI_SYSCALL=y | 250 | CONFIG_PCI_SYSCALL=y |
| @@ -257,10 +268,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 257 | CONFIG_PHYSICAL_START=0x00000000 | 268 | CONFIG_PHYSICAL_START=0x00000000 |
| 258 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 269 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 259 | CONFIG_TASK_SIZE=0xc0000000 | 270 | CONFIG_TASK_SIZE=0xc0000000 |
| 260 | |||
| 261 | # | ||
| 262 | # Networking | ||
| 263 | # | ||
| 264 | CONFIG_NET=y | 271 | CONFIG_NET=y |
| 265 | 272 | ||
| 266 | # | 273 | # |
| @@ -432,6 +439,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 432 | # | 439 | # |
| 433 | # CONFIG_MTD_UBI is not set | 440 | # CONFIG_MTD_UBI is not set |
| 434 | CONFIG_OF_DEVICE=y | 441 | CONFIG_OF_DEVICE=y |
| 442 | CONFIG_OF_GPIO=y | ||
| 435 | CONFIG_OF_I2C=y | 443 | CONFIG_OF_I2C=y |
| 436 | # CONFIG_PARPORT is not set | 444 | # CONFIG_PARPORT is not set |
| 437 | CONFIG_BLK_DEV=y | 445 | CONFIG_BLK_DEV=y |
| @@ -451,20 +459,22 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 451 | # CONFIG_BLK_DEV_XIP is not set | 459 | # CONFIG_BLK_DEV_XIP is not set |
| 452 | # CONFIG_CDROM_PKTCDVD is not set | 460 | # CONFIG_CDROM_PKTCDVD is not set |
| 453 | # CONFIG_ATA_OVER_ETH is not set | 461 | # CONFIG_ATA_OVER_ETH is not set |
| 462 | # CONFIG_BLK_DEV_HD is not set | ||
| 454 | CONFIG_MISC_DEVICES=y | 463 | CONFIG_MISC_DEVICES=y |
| 455 | # CONFIG_PHANTOM is not set | 464 | # CONFIG_PHANTOM is not set |
| 456 | # CONFIG_EEPROM_93CX6 is not set | 465 | # CONFIG_EEPROM_93CX6 is not set |
| 457 | # CONFIG_SGI_IOC4 is not set | 466 | # CONFIG_SGI_IOC4 is not set |
| 458 | # CONFIG_TIFM_CORE is not set | 467 | # CONFIG_TIFM_CORE is not set |
| 459 | # CONFIG_ENCLOSURE_SERVICES is not set | 468 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 469 | # CONFIG_HP_ILO is not set | ||
| 460 | CONFIG_HAVE_IDE=y | 470 | CONFIG_HAVE_IDE=y |
| 461 | CONFIG_IDE=y | 471 | CONFIG_IDE=y |
| 462 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 463 | CONFIG_BLK_DEV_IDE=y | 472 | CONFIG_BLK_DEV_IDE=y |
| 464 | 473 | ||
| 465 | # | 474 | # |
| 466 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 475 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 467 | # | 476 | # |
| 477 | CONFIG_IDE_TIMINGS=y | ||
| 468 | # CONFIG_BLK_DEV_IDE_SATA is not set | 478 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 469 | CONFIG_BLK_DEV_IDEDISK=y | 479 | CONFIG_BLK_DEV_IDEDISK=y |
| 470 | # CONFIG_IDEDISK_MULTI_MODE is not set | 480 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| @@ -477,7 +487,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 477 | # | 487 | # |
| 478 | # IDE chipset support/bugfixes | 488 | # IDE chipset support/bugfixes |
| 479 | # | 489 | # |
| 480 | CONFIG_IDE_GENERIC=y | ||
| 481 | # CONFIG_BLK_DEV_PLATFORM is not set | 490 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 482 | CONFIG_BLK_DEV_IDEDMA_SFF=y | 491 | CONFIG_BLK_DEV_IDEDMA_SFF=y |
| 483 | 492 | ||
| @@ -495,10 +504,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 495 | # CONFIG_BLK_DEV_AMD74XX is not set | 504 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 496 | # CONFIG_BLK_DEV_CMD64X is not set | 505 | # CONFIG_BLK_DEV_CMD64X is not set |
| 497 | # CONFIG_BLK_DEV_TRIFLEX is not set | 506 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 498 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 499 | # CONFIG_BLK_DEV_CS5520 is not set | 507 | # CONFIG_BLK_DEV_CS5520 is not set |
| 500 | # CONFIG_BLK_DEV_CS5530 is not set | 508 | # CONFIG_BLK_DEV_CS5530 is not set |
| 501 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 502 | # CONFIG_BLK_DEV_HPT366 is not set | 509 | # CONFIG_BLK_DEV_HPT366 is not set |
| 503 | # CONFIG_BLK_DEV_JMICRON is not set | 510 | # CONFIG_BLK_DEV_JMICRON is not set |
| 504 | # CONFIG_BLK_DEV_SC1200 is not set | 511 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -516,8 +523,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 516 | CONFIG_BLK_DEV_VIA82CXXX=y | 523 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 517 | # CONFIG_BLK_DEV_TC86C001 is not set | 524 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 518 | CONFIG_BLK_DEV_IDEDMA=y | 525 | CONFIG_BLK_DEV_IDEDMA=y |
| 519 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 520 | # CONFIG_BLK_DEV_HD is not set | ||
| 521 | 526 | ||
| 522 | # | 527 | # |
| 523 | # SCSI device support | 528 | # SCSI device support |
| @@ -533,12 +538,15 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 533 | # | 538 | # |
| 534 | # IEEE 1394 (FireWire) support | 539 | # IEEE 1394 (FireWire) support |
| 535 | # | 540 | # |
| 541 | |||
| 542 | # | ||
| 543 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 544 | # | ||
| 536 | # CONFIG_FIREWIRE is not set | 545 | # CONFIG_FIREWIRE is not set |
| 537 | # CONFIG_IEEE1394 is not set | 546 | # CONFIG_IEEE1394 is not set |
| 538 | # CONFIG_I2O is not set | 547 | # CONFIG_I2O is not set |
| 539 | # CONFIG_MACINTOSH_DRIVERS is not set | 548 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 540 | CONFIG_NETDEVICES=y | 549 | CONFIG_NETDEVICES=y |
| 541 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 542 | # CONFIG_DUMMY is not set | 550 | # CONFIG_DUMMY is not set |
| 543 | # CONFIG_BONDING is not set | 551 | # CONFIG_BONDING is not set |
| 544 | # CONFIG_MACVLAN is not set | 552 | # CONFIG_MACVLAN is not set |
| @@ -601,7 +609,6 @@ CONFIG_NETDEV_1000=y | |||
| 601 | # CONFIG_DL2K is not set | 609 | # CONFIG_DL2K is not set |
| 602 | # CONFIG_E1000 is not set | 610 | # CONFIG_E1000 is not set |
| 603 | # CONFIG_E1000E is not set | 611 | # CONFIG_E1000E is not set |
| 604 | # CONFIG_E1000E_ENABLED is not set | ||
| 605 | # CONFIG_IP1000 is not set | 612 | # CONFIG_IP1000 is not set |
| 606 | # CONFIG_IGB is not set | 613 | # CONFIG_IGB is not set |
| 607 | # CONFIG_NS83820 is not set | 614 | # CONFIG_NS83820 is not set |
| @@ -615,9 +622,9 @@ CONFIG_NETDEV_1000=y | |||
| 615 | # CONFIG_TIGON3 is not set | 622 | # CONFIG_TIGON3 is not set |
| 616 | # CONFIG_BNX2 is not set | 623 | # CONFIG_BNX2 is not set |
| 617 | CONFIG_GIANFAR=y | 624 | CONFIG_GIANFAR=y |
| 618 | CONFIG_GFAR_NAPI=y | ||
| 619 | # CONFIG_QLA3XXX is not set | 625 | # CONFIG_QLA3XXX is not set |
| 620 | # CONFIG_ATL1 is not set | 626 | # CONFIG_ATL1 is not set |
| 627 | # CONFIG_ATL1E is not set | ||
| 621 | CONFIG_NETDEV_10000=y | 628 | CONFIG_NETDEV_10000=y |
| 622 | # CONFIG_CHELSIO_T1 is not set | 629 | # CONFIG_CHELSIO_T1 is not set |
| 623 | # CONFIG_CHELSIO_T3 is not set | 630 | # CONFIG_CHELSIO_T3 is not set |
| @@ -732,42 +739,66 @@ CONFIG_DEVPORT=y | |||
| 732 | CONFIG_I2C=y | 739 | CONFIG_I2C=y |
| 733 | CONFIG_I2C_BOARDINFO=y | 740 | CONFIG_I2C_BOARDINFO=y |
| 734 | CONFIG_I2C_CHARDEV=y | 741 | CONFIG_I2C_CHARDEV=y |
| 742 | CONFIG_I2C_HELPER_AUTO=y | ||
| 735 | 743 | ||
| 736 | # | 744 | # |
| 737 | # I2C Hardware Bus support | 745 | # I2C Hardware Bus support |
| 738 | # | 746 | # |
| 747 | |||
| 748 | # | ||
| 749 | # PC SMBus host controller drivers | ||
| 750 | # | ||
| 739 | # CONFIG_I2C_ALI1535 is not set | 751 | # CONFIG_I2C_ALI1535 is not set |
| 740 | # CONFIG_I2C_ALI1563 is not set | 752 | # CONFIG_I2C_ALI1563 is not set |
| 741 | # CONFIG_I2C_ALI15X3 is not set | 753 | # CONFIG_I2C_ALI15X3 is not set |
| 742 | # CONFIG_I2C_AMD756 is not set | 754 | # CONFIG_I2C_AMD756 is not set |
| 743 | # CONFIG_I2C_AMD8111 is not set | 755 | # CONFIG_I2C_AMD8111 is not set |
| 744 | # CONFIG_I2C_I801 is not set | 756 | # CONFIG_I2C_I801 is not set |
| 745 | # CONFIG_I2C_I810 is not set | 757 | # CONFIG_I2C_ISCH is not set |
| 746 | # CONFIG_I2C_PIIX4 is not set | 758 | # CONFIG_I2C_PIIX4 is not set |
| 747 | CONFIG_I2C_MPC=y | ||
| 748 | # CONFIG_I2C_NFORCE2 is not set | 759 | # CONFIG_I2C_NFORCE2 is not set |
| 749 | # CONFIG_I2C_OCORES is not set | ||
| 750 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 751 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 752 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 753 | # CONFIG_I2C_SIMTEC is not set | ||
| 754 | # CONFIG_I2C_SIS5595 is not set | 760 | # CONFIG_I2C_SIS5595 is not set |
| 755 | # CONFIG_I2C_SIS630 is not set | 761 | # CONFIG_I2C_SIS630 is not set |
| 756 | # CONFIG_I2C_SIS96X is not set | 762 | # CONFIG_I2C_SIS96X is not set |
| 757 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 758 | # CONFIG_I2C_VIA is not set | 763 | # CONFIG_I2C_VIA is not set |
| 759 | # CONFIG_I2C_VIAPRO is not set | 764 | # CONFIG_I2C_VIAPRO is not set |
| 765 | |||
| 766 | # | ||
| 767 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 768 | # | ||
| 769 | # CONFIG_I2C_CPM is not set | ||
| 770 | # CONFIG_I2C_GPIO is not set | ||
| 771 | CONFIG_I2C_MPC=y | ||
| 772 | # CONFIG_I2C_OCORES is not set | ||
| 773 | # CONFIG_I2C_SIMTEC is not set | ||
| 774 | |||
| 775 | # | ||
| 776 | # External I2C/SMBus adapter drivers | ||
| 777 | # | ||
| 778 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 779 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 780 | |||
| 781 | # | ||
| 782 | # Graphics adapter I2C/DDC channel drivers | ||
| 783 | # | ||
| 760 | # CONFIG_I2C_VOODOO3 is not set | 784 | # CONFIG_I2C_VOODOO3 is not set |
| 785 | |||
| 786 | # | ||
| 787 | # Other I2C/SMBus bus drivers | ||
| 788 | # | ||
| 761 | # CONFIG_I2C_PCA_PLATFORM is not set | 789 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 762 | 790 | ||
| 763 | # | 791 | # |
| 764 | # Miscellaneous I2C Chip support | 792 | # Miscellaneous I2C Chip support |
| 765 | # | 793 | # |
| 766 | # CONFIG_DS1682 is not set | 794 | # CONFIG_DS1682 is not set |
| 795 | # CONFIG_AT24 is not set | ||
| 767 | # CONFIG_SENSORS_EEPROM is not set | 796 | # CONFIG_SENSORS_EEPROM is not set |
| 768 | # CONFIG_SENSORS_PCF8574 is not set | 797 | # CONFIG_SENSORS_PCF8574 is not set |
| 769 | # CONFIG_PCF8575 is not set | 798 | # CONFIG_PCF8575 is not set |
| 799 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 770 | # CONFIG_SENSORS_PCF8591 is not set | 800 | # CONFIG_SENSORS_PCF8591 is not set |
| 801 | # CONFIG_TPS65010 is not set | ||
| 771 | # CONFIG_SENSORS_MAX6875 is not set | 802 | # CONFIG_SENSORS_MAX6875 is not set |
| 772 | # CONFIG_SENSORS_TSL2550 is not set | 803 | # CONFIG_SENSORS_TSL2550 is not set |
| 773 | # CONFIG_I2C_DEBUG_CORE is not set | 804 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -775,10 +806,31 @@ CONFIG_I2C_MPC=y | |||
| 775 | # CONFIG_I2C_DEBUG_BUS is not set | 806 | # CONFIG_I2C_DEBUG_BUS is not set |
| 776 | # CONFIG_I2C_DEBUG_CHIP is not set | 807 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 777 | # CONFIG_SPI is not set | 808 | # CONFIG_SPI is not set |
| 809 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 810 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | ||
| 811 | CONFIG_GPIOLIB=y | ||
| 812 | # CONFIG_GPIO_SYSFS is not set | ||
| 813 | |||
| 814 | # | ||
| 815 | # I2C GPIO expanders: | ||
| 816 | # | ||
| 817 | # CONFIG_GPIO_MAX732X is not set | ||
| 818 | # CONFIG_GPIO_PCA953X is not set | ||
| 819 | # CONFIG_GPIO_PCF857X is not set | ||
| 820 | |||
| 821 | # | ||
| 822 | # PCI GPIO expanders: | ||
| 823 | # | ||
| 824 | # CONFIG_GPIO_BT8XX is not set | ||
| 825 | |||
| 826 | # | ||
| 827 | # SPI GPIO expanders: | ||
| 828 | # | ||
| 778 | # CONFIG_W1 is not set | 829 | # CONFIG_W1 is not set |
| 779 | # CONFIG_POWER_SUPPLY is not set | 830 | # CONFIG_POWER_SUPPLY is not set |
| 780 | CONFIG_HWMON=y | 831 | CONFIG_HWMON=y |
| 781 | # CONFIG_HWMON_VID is not set | 832 | # CONFIG_HWMON_VID is not set |
| 833 | # CONFIG_SENSORS_AD7414 is not set | ||
| 782 | # CONFIG_SENSORS_AD7418 is not set | 834 | # CONFIG_SENSORS_AD7418 is not set |
| 783 | # CONFIG_SENSORS_ADM1021 is not set | 835 | # CONFIG_SENSORS_ADM1021 is not set |
| 784 | # CONFIG_SENSORS_ADM1025 is not set | 836 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -832,6 +884,7 @@ CONFIG_SENSORS_LM75=y | |||
| 832 | # CONFIG_SENSORS_W83627EHF is not set | 884 | # CONFIG_SENSORS_W83627EHF is not set |
| 833 | CONFIG_HWMON_DEBUG_CHIP=y | 885 | CONFIG_HWMON_DEBUG_CHIP=y |
| 834 | # CONFIG_THERMAL is not set | 886 | # CONFIG_THERMAL is not set |
| 887 | # CONFIG_THERMAL_HWMON is not set | ||
| 835 | # CONFIG_WATCHDOG is not set | 888 | # CONFIG_WATCHDOG is not set |
| 836 | 889 | ||
| 837 | # | 890 | # |
| @@ -843,8 +896,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 843 | # | 896 | # |
| 844 | # Multifunction device drivers | 897 | # Multifunction device drivers |
| 845 | # | 898 | # |
| 899 | # CONFIG_MFD_CORE is not set | ||
| 846 | # CONFIG_MFD_SM501 is not set | 900 | # CONFIG_MFD_SM501 is not set |
| 847 | # CONFIG_HTC_PASIC3 is not set | 901 | # CONFIG_HTC_PASIC3 is not set |
| 902 | # CONFIG_MFD_TMIO is not set | ||
| 848 | 903 | ||
| 849 | # | 904 | # |
| 850 | # Multimedia devices | 905 | # Multimedia devices |
| @@ -876,10 +931,6 @@ CONFIG_DAB=y | |||
| 876 | # Display device support | 931 | # Display device support |
| 877 | # | 932 | # |
| 878 | # CONFIG_DISPLAY_SUPPORT is not set | 933 | # CONFIG_DISPLAY_SUPPORT is not set |
| 879 | |||
| 880 | # | ||
| 881 | # Sound | ||
| 882 | # | ||
| 883 | # CONFIG_SOUND is not set | 934 | # CONFIG_SOUND is not set |
| 884 | CONFIG_HID_SUPPORT=y | 935 | CONFIG_HID_SUPPORT=y |
| 885 | CONFIG_HID=y | 936 | CONFIG_HID=y |
| @@ -894,6 +945,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 894 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 945 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 895 | 946 | ||
| 896 | # | 947 | # |
| 948 | # Enable Host or Gadget support to see Inventra options | ||
| 949 | # | ||
| 950 | |||
| 951 | # | ||
| 897 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 952 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 898 | # | 953 | # |
| 899 | # CONFIG_USB_GADGET is not set | 954 | # CONFIG_USB_GADGET is not set |
| @@ -982,6 +1037,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 982 | CONFIG_CRAMFS=y | 1037 | CONFIG_CRAMFS=y |
| 983 | # CONFIG_VXFS_FS is not set | 1038 | # CONFIG_VXFS_FS is not set |
| 984 | # CONFIG_MINIX_FS is not set | 1039 | # CONFIG_MINIX_FS is not set |
| 1040 | # CONFIG_OMFS_FS is not set | ||
| 985 | # CONFIG_HPFS_FS is not set | 1041 | # CONFIG_HPFS_FS is not set |
| 986 | # CONFIG_QNX4FS_FS is not set | 1042 | # CONFIG_QNX4FS_FS is not set |
| 987 | # CONFIG_ROMFS_FS is not set | 1043 | # CONFIG_ROMFS_FS is not set |
| @@ -991,12 +1047,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 991 | CONFIG_NFS_FS=y | 1047 | CONFIG_NFS_FS=y |
| 992 | # CONFIG_NFS_V3 is not set | 1048 | # CONFIG_NFS_V3 is not set |
| 993 | # CONFIG_NFS_V4 is not set | 1049 | # CONFIG_NFS_V4 is not set |
| 994 | # CONFIG_NFSD is not set | ||
| 995 | CONFIG_ROOT_NFS=y | 1050 | CONFIG_ROOT_NFS=y |
| 1051 | # CONFIG_NFSD is not set | ||
| 996 | CONFIG_LOCKD=y | 1052 | CONFIG_LOCKD=y |
| 997 | CONFIG_NFS_COMMON=y | 1053 | CONFIG_NFS_COMMON=y |
| 998 | CONFIG_SUNRPC=y | 1054 | CONFIG_SUNRPC=y |
| 999 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1000 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1055 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1001 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1056 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1002 | # CONFIG_SMB_FS is not set | 1057 | # CONFIG_SMB_FS is not set |
| @@ -1032,6 +1087,7 @@ CONFIG_BITREVERSE=y | |||
| 1032 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1087 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1033 | # CONFIG_CRC_CCITT is not set | 1088 | # CONFIG_CRC_CCITT is not set |
| 1034 | # CONFIG_CRC16 is not set | 1089 | # CONFIG_CRC16 is not set |
| 1090 | # CONFIG_CRC_T10DIF is not set | ||
| 1035 | # CONFIG_CRC_ITU_T is not set | 1091 | # CONFIG_CRC_ITU_T is not set |
| 1036 | CONFIG_CRC32=y | 1092 | CONFIG_CRC32=y |
| 1037 | # CONFIG_CRC7 is not set | 1093 | # CONFIG_CRC7 is not set |
| @@ -1059,8 +1115,16 @@ CONFIG_FRAME_WARN=1024 | |||
| 1059 | # CONFIG_SLUB_DEBUG_ON is not set | 1115 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1060 | # CONFIG_SLUB_STATS is not set | 1116 | # CONFIG_SLUB_STATS is not set |
| 1061 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1117 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1118 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1119 | # CONFIG_LATENCYTOP is not set | ||
| 1120 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1121 | CONFIG_HAVE_FTRACE=y | ||
| 1122 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1123 | # CONFIG_FTRACE is not set | ||
| 1124 | # CONFIG_SCHED_TRACER is not set | ||
| 1125 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1062 | # CONFIG_SAMPLES is not set | 1126 | # CONFIG_SAMPLES is not set |
| 1063 | # CONFIG_KGDB_CONSOLE is not set | 1127 | CONFIG_HAVE_ARCH_KGDB=y |
| 1064 | # CONFIG_IRQSTACKS is not set | 1128 | # CONFIG_IRQSTACKS is not set |
| 1065 | # CONFIG_PPC_EARLY_DEBUG is not set | 1129 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1066 | 1130 | ||
| @@ -1112,6 +1176,10 @@ CONFIG_CRYPTO=y | |||
| 1112 | # CONFIG_CRYPTO_MD4 is not set | 1176 | # CONFIG_CRYPTO_MD4 is not set |
| 1113 | # CONFIG_CRYPTO_MD5 is not set | 1177 | # CONFIG_CRYPTO_MD5 is not set |
| 1114 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1178 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1179 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1180 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1181 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1182 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1115 | # CONFIG_CRYPTO_SHA1 is not set | 1183 | # CONFIG_CRYPTO_SHA1 is not set |
| 1116 | # CONFIG_CRYPTO_SHA256 is not set | 1184 | # CONFIG_CRYPTO_SHA256 is not set |
| 1117 | # CONFIG_CRYPTO_SHA512 is not set | 1185 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1144,6 +1212,7 @@ CONFIG_CRYPTO=y | |||
| 1144 | # CONFIG_CRYPTO_LZO is not set | 1212 | # CONFIG_CRYPTO_LZO is not set |
| 1145 | CONFIG_CRYPTO_HW=y | 1213 | CONFIG_CRYPTO_HW=y |
| 1146 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1214 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1147 | # CONFIG_PPC_CLOCK is not set | 1215 | # CONFIG_CRYPTO_DEV_TALITOS is not set |
| 1216 | CONFIG_PPC_CLOCK=y | ||
| 1148 | CONFIG_PPC_LIB_RHEAP=y | 1217 | CONFIG_PPC_LIB_RHEAP=y |
| 1149 | # CONFIG_VIRTUALIZATION is not set | 1218 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/adder875_defconfig b/arch/powerpc/configs/adder875_defconfig index 6740f2a3aa3d..63cd51fbb4b9 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:08 2008 | 4 | # Thu Aug 21 00:52:00 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -29,6 +29,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 30 | CONFIG_IRQ_PER_CPU=y | 30 | CONFIG_IRQ_PER_CPU=y |
| 31 | CONFIG_STACKTRACE_SUPPORT=y | 31 | CONFIG_STACKTRACE_SUPPORT=y |
| 32 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 32 | CONFIG_LOCKDEP_SUPPORT=y | 33 | CONFIG_LOCKDEP_SUPPORT=y |
| 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -109,10 +110,16 @@ CONFIG_SLUB=y | |||
| 109 | # CONFIG_PROFILING is not set | 110 | # CONFIG_PROFILING is not set |
| 110 | # CONFIG_MARKERS is not set | 111 | # CONFIG_MARKERS is not set |
| 111 | CONFIG_HAVE_OPROFILE=y | 112 | CONFIG_HAVE_OPROFILE=y |
| 113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 114 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 112 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 114 | # CONFIG_HAVE_DMA_ATTRS is not set | 118 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 119 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 120 | CONFIG_HAVE_CLK=y | ||
| 115 | CONFIG_PROC_PAGE_MONITOR=y | 121 | CONFIG_PROC_PAGE_MONITOR=y |
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 116 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
| 117 | # CONFIG_TINY_SHMEM is not set | 124 | # CONFIG_TINY_SHMEM is not set |
| 118 | CONFIG_BASE_SMALL=1 | 125 | CONFIG_BASE_SMALL=1 |
| @@ -122,6 +129,7 @@ CONFIG_BLOCK=y | |||
| 122 | # CONFIG_BLK_DEV_IO_TRACE is not set | 129 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 123 | # CONFIG_LSF is not set | 130 | # CONFIG_LSF is not set |
| 124 | # CONFIG_BLK_DEV_BSG is not set | 131 | # CONFIG_BLK_DEV_BSG is not set |
| 132 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 125 | 133 | ||
| 126 | # | 134 | # |
| 127 | # IO Schedulers | 135 | # IO Schedulers |
| @@ -140,8 +148,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 140 | # | 148 | # |
| 141 | # Platform support | 149 | # Platform support |
| 142 | # | 150 | # |
| 143 | # CONFIG_PPC_MPC512x is not set | ||
| 144 | # CONFIG_PPC_MPC5121 is not set | ||
| 145 | # CONFIG_PPC_CELL is not set | 151 | # CONFIG_PPC_CELL is not set |
| 146 | # CONFIG_PPC_CELL_NATIVE is not set | 152 | # CONFIG_PPC_CELL_NATIVE is not set |
| 147 | CONFIG_CPM1=y | 153 | CONFIG_CPM1=y |
| @@ -159,6 +165,7 @@ CONFIG_PPC_ADDER875=y | |||
| 159 | # Generic MPC8xx Options | 165 | # Generic MPC8xx Options |
| 160 | # | 166 | # |
| 161 | CONFIG_8xx_COPYBACK=y | 167 | CONFIG_8xx_COPYBACK=y |
| 168 | # CONFIG_8xx_GPIO is not set | ||
| 162 | # CONFIG_8xx_CPU6 is not set | 169 | # CONFIG_8xx_CPU6 is not set |
| 163 | CONFIG_8xx_CPU15=y | 170 | CONFIG_8xx_CPU15=y |
| 164 | CONFIG_NO_UCODE_PATCH=y | 171 | CONFIG_NO_UCODE_PATCH=y |
| @@ -177,7 +184,6 @@ CONFIG_NO_UCODE_PATCH=y | |||
| 177 | # CONFIG_PPC_INDIRECT_IO is not set | 184 | # CONFIG_PPC_INDIRECT_IO is not set |
| 178 | # CONFIG_GENERIC_IOMAP is not set | 185 | # CONFIG_GENERIC_IOMAP is not set |
| 179 | # CONFIG_CPU_FREQ is not set | 186 | # CONFIG_CPU_FREQ is not set |
| 180 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 181 | # CONFIG_FSL_ULI1575 is not set | 187 | # CONFIG_FSL_ULI1575 is not set |
| 182 | CONFIG_CPM=y | 188 | CONFIG_CPM=y |
| 183 | 189 | ||
| @@ -218,6 +224,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 218 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 224 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 219 | CONFIG_PAGEFLAGS_EXTENDED=y | 225 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 226 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 227 | CONFIG_MIGRATION=y | ||
| 221 | # CONFIG_RESOURCES_64BIT is not set | 228 | # CONFIG_RESOURCES_64BIT is not set |
| 222 | CONFIG_ZONE_DMA_FLAG=1 | 229 | CONFIG_ZONE_DMA_FLAG=1 |
| 223 | CONFIG_BOUNCE=y | 230 | CONFIG_BOUNCE=y |
| @@ -225,6 +232,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 225 | CONFIG_FORCE_MAX_ZONEORDER=11 | 232 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 226 | # CONFIG_PROC_DEVICETREE is not set | 233 | # CONFIG_PROC_DEVICETREE is not set |
| 227 | # CONFIG_CMDLINE_BOOL is not set | 234 | # CONFIG_CMDLINE_BOOL is not set |
| 235 | CONFIG_EXTRA_TARGETS="" | ||
| 228 | # CONFIG_PM is not set | 236 | # CONFIG_PM is not set |
| 229 | # CONFIG_SECCOMP is not set | 237 | # CONFIG_SECCOMP is not set |
| 230 | CONFIG_ISA_DMA_API=y | 238 | CONFIG_ISA_DMA_API=y |
| @@ -257,10 +265,6 @@ CONFIG_PHYSICAL_START=0x00000000 | |||
| 257 | CONFIG_TASK_SIZE=0x80000000 | 265 | CONFIG_TASK_SIZE=0x80000000 |
| 258 | CONFIG_CONSISTENT_START=0xfd000000 | 266 | CONFIG_CONSISTENT_START=0xfd000000 |
| 259 | CONFIG_CONSISTENT_SIZE=0x00200000 | 267 | CONFIG_CONSISTENT_SIZE=0x00200000 |
| 260 | |||
| 261 | # | ||
| 262 | # Networking | ||
| 263 | # | ||
| 264 | CONFIG_NET=y | 268 | CONFIG_NET=y |
| 265 | 269 | ||
| 266 | # | 270 | # |
| @@ -443,7 +447,6 @@ CONFIG_HAVE_IDE=y | |||
| 443 | # CONFIG_MD is not set | 447 | # CONFIG_MD is not set |
| 444 | # CONFIG_MACINTOSH_DRIVERS is not set | 448 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 445 | CONFIG_NETDEVICES=y | 449 | CONFIG_NETDEVICES=y |
| 446 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 447 | # CONFIG_DUMMY is not set | 450 | # CONFIG_DUMMY is not set |
| 448 | # CONFIG_BONDING is not set | 451 | # CONFIG_BONDING is not set |
| 449 | # CONFIG_MACVLAN is not set | 452 | # CONFIG_MACVLAN is not set |
| @@ -547,6 +550,7 @@ CONFIG_SERIO_I8042=y | |||
| 547 | CONFIG_SERIO_SERPORT=y | 550 | CONFIG_SERIO_SERPORT=y |
| 548 | CONFIG_SERIO_LIBPS2=y | 551 | CONFIG_SERIO_LIBPS2=y |
| 549 | # CONFIG_SERIO_RAW is not set | 552 | # CONFIG_SERIO_RAW is not set |
| 553 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 550 | # CONFIG_GAMEPORT is not set | 554 | # CONFIG_GAMEPORT is not set |
| 551 | 555 | ||
| 552 | # | 556 | # |
| @@ -587,6 +591,8 @@ CONFIG_GEN_RTC=y | |||
| 587 | # CONFIG_TCG_TPM is not set | 591 | # CONFIG_TCG_TPM is not set |
| 588 | # CONFIG_I2C is not set | 592 | # CONFIG_I2C is not set |
| 589 | # CONFIG_SPI is not set | 593 | # CONFIG_SPI is not set |
| 594 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 595 | # CONFIG_GPIOLIB is not set | ||
| 590 | # CONFIG_W1 is not set | 596 | # CONFIG_W1 is not set |
| 591 | # CONFIG_POWER_SUPPLY is not set | 597 | # CONFIG_POWER_SUPPLY is not set |
| 592 | # CONFIG_HWMON is not set | 598 | # CONFIG_HWMON is not set |
| @@ -602,8 +608,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 602 | # | 608 | # |
| 603 | # Multifunction device drivers | 609 | # Multifunction device drivers |
| 604 | # | 610 | # |
| 611 | # CONFIG_MFD_CORE is not set | ||
| 605 | # CONFIG_MFD_SM501 is not set | 612 | # CONFIG_MFD_SM501 is not set |
| 606 | # CONFIG_HTC_PASIC3 is not set | 613 | # CONFIG_HTC_PASIC3 is not set |
| 614 | # CONFIG_MFD_TMIO is not set | ||
| 607 | 615 | ||
| 608 | # | 616 | # |
| 609 | # Multimedia devices | 617 | # Multimedia devices |
| @@ -633,10 +641,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 633 | # Display device support | 641 | # Display device support |
| 634 | # | 642 | # |
| 635 | # CONFIG_DISPLAY_SUPPORT is not set | 643 | # CONFIG_DISPLAY_SUPPORT is not set |
| 636 | |||
| 637 | # | ||
| 638 | # Sound | ||
| 639 | # | ||
| 640 | # CONFIG_SOUND is not set | 644 | # CONFIG_SOUND is not set |
| 641 | # CONFIG_HID_SUPPORT is not set | 645 | # CONFIG_HID_SUPPORT is not set |
| 642 | # CONFIG_USB_SUPPORT is not set | 646 | # CONFIG_USB_SUPPORT is not set |
| @@ -706,6 +710,7 @@ CONFIG_TMPFS=y | |||
| 706 | CONFIG_CRAMFS=y | 710 | CONFIG_CRAMFS=y |
| 707 | # CONFIG_VXFS_FS is not set | 711 | # CONFIG_VXFS_FS is not set |
| 708 | # CONFIG_MINIX_FS is not set | 712 | # CONFIG_MINIX_FS is not set |
| 713 | # CONFIG_OMFS_FS is not set | ||
| 709 | # CONFIG_HPFS_FS is not set | 714 | # CONFIG_HPFS_FS is not set |
| 710 | # CONFIG_QNX4FS_FS is not set | 715 | # CONFIG_QNX4FS_FS is not set |
| 711 | # CONFIG_ROMFS_FS is not set | 716 | # CONFIG_ROMFS_FS is not set |
| @@ -716,13 +721,12 @@ CONFIG_NFS_FS=y | |||
| 716 | CONFIG_NFS_V3=y | 721 | CONFIG_NFS_V3=y |
| 717 | # CONFIG_NFS_V3_ACL is not set | 722 | # CONFIG_NFS_V3_ACL is not set |
| 718 | # CONFIG_NFS_V4 is not set | 723 | # CONFIG_NFS_V4 is not set |
| 719 | # CONFIG_NFSD is not set | ||
| 720 | CONFIG_ROOT_NFS=y | 724 | CONFIG_ROOT_NFS=y |
| 725 | # CONFIG_NFSD is not set | ||
| 721 | CONFIG_LOCKD=y | 726 | CONFIG_LOCKD=y |
| 722 | CONFIG_LOCKD_V4=y | 727 | CONFIG_LOCKD_V4=y |
| 723 | CONFIG_NFS_COMMON=y | 728 | CONFIG_NFS_COMMON=y |
| 724 | CONFIG_SUNRPC=y | 729 | CONFIG_SUNRPC=y |
| 725 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 726 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 730 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 727 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 731 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 728 | # CONFIG_SMB_FS is not set | 732 | # CONFIG_SMB_FS is not set |
| @@ -761,6 +765,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 761 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 765 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 762 | # CONFIG_CRC_CCITT is not set | 766 | # CONFIG_CRC_CCITT is not set |
| 763 | # CONFIG_CRC16 is not set | 767 | # CONFIG_CRC16 is not set |
| 768 | # CONFIG_CRC_T10DIF is not set | ||
| 764 | # CONFIG_CRC_ITU_T is not set | 769 | # CONFIG_CRC_ITU_T is not set |
| 765 | # CONFIG_CRC32 is not set | 770 | # CONFIG_CRC32 is not set |
| 766 | # CONFIG_CRC7 is not set | 771 | # CONFIG_CRC7 is not set |
| @@ -785,6 +790,8 @@ CONFIG_DEBUG_FS=y | |||
| 785 | CONFIG_DEBUG_KERNEL=y | 790 | CONFIG_DEBUG_KERNEL=y |
| 786 | # CONFIG_DEBUG_SHIRQ is not set | 791 | # CONFIG_DEBUG_SHIRQ is not set |
| 787 | CONFIG_DETECT_SOFTLOCKUP=y | 792 | CONFIG_DETECT_SOFTLOCKUP=y |
| 793 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 794 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 788 | CONFIG_SCHED_DEBUG=y | 795 | CONFIG_SCHED_DEBUG=y |
| 789 | # CONFIG_SCHEDSTATS is not set | 796 | # CONFIG_SCHEDSTATS is not set |
| 790 | # CONFIG_TIMER_STATS is not set | 797 | # CONFIG_TIMER_STATS is not set |
| @@ -800,16 +807,28 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 800 | CONFIG_DEBUG_INFO=y | 807 | CONFIG_DEBUG_INFO=y |
| 801 | # CONFIG_DEBUG_VM is not set | 808 | # CONFIG_DEBUG_VM is not set |
| 802 | # CONFIG_DEBUG_WRITECOUNT is not set | 809 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 810 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 803 | # CONFIG_DEBUG_LIST is not set | 811 | # CONFIG_DEBUG_LIST is not set |
| 804 | # CONFIG_DEBUG_SG is not set | 812 | # CONFIG_DEBUG_SG is not set |
| 805 | # CONFIG_BOOT_PRINTK_DELAY is not set | 813 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 814 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 806 | # CONFIG_BACKTRACE_SELF_TEST is not set | 815 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 807 | # CONFIG_FAULT_INJECTION is not set | 816 | # CONFIG_FAULT_INJECTION is not set |
| 817 | # CONFIG_LATENCYTOP is not set | ||
| 818 | CONFIG_HAVE_FTRACE=y | ||
| 819 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 820 | # CONFIG_FTRACE is not set | ||
| 821 | # CONFIG_SCHED_TRACER is not set | ||
| 822 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 808 | # CONFIG_SAMPLES is not set | 823 | # CONFIG_SAMPLES is not set |
| 824 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 825 | # CONFIG_KGDB is not set | ||
| 809 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 826 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 810 | # CONFIG_DEBUG_STACK_USAGE is not set | 827 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 811 | # CONFIG_DEBUG_PAGEALLOC is not set | 828 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 812 | # CONFIG_DEBUGGER is not set | 829 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 830 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 831 | # CONFIG_XMON is not set | ||
| 813 | # CONFIG_IRQSTACKS is not set | 832 | # CONFIG_IRQSTACKS is not set |
| 814 | # CONFIG_VIRQ_DEBUG is not set | 833 | # CONFIG_VIRQ_DEBUG is not set |
| 815 | # CONFIG_BDI_SWITCH is not set | 834 | # CONFIG_BDI_SWITCH is not set |
| @@ -822,6 +841,6 @@ CONFIG_DEBUG_INFO=y | |||
| 822 | # CONFIG_SECURITY is not set | 841 | # CONFIG_SECURITY is not set |
| 823 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 842 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 824 | # CONFIG_CRYPTO is not set | 843 | # CONFIG_CRYPTO is not set |
| 825 | # CONFIG_PPC_CLOCK is not set | 844 | CONFIG_PPC_CLOCK=y |
| 826 | CONFIG_PPC_LIB_RHEAP=y | 845 | CONFIG_PPC_LIB_RHEAP=y |
| 827 | # CONFIG_VIRTUALIZATION is not set | 846 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/c2k_defconfig b/arch/powerpc/configs/c2k_defconfig index dc599c7e97d5..c16521ffb477 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.26-rc2 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Thu May 15 11:00:14 2008 | 4 | # Thu Aug 21 00:52:02 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -34,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 35 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 36 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 37 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 39 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -97,7 +98,6 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 97 | CONFIG_SYSCTL=y | 98 | CONFIG_SYSCTL=y |
| 98 | # CONFIG_EMBEDDED is not set | 99 | # CONFIG_EMBEDDED is not set |
| 99 | CONFIG_SYSCTL_SYSCALL=y | 100 | CONFIG_SYSCTL_SYSCALL=y |
| 100 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 101 | CONFIG_KALLSYMS=y | 101 | CONFIG_KALLSYMS=y |
| 102 | # CONFIG_KALLSYMS_ALL is not set | 102 | # CONFIG_KALLSYMS_ALL is not set |
| 103 | CONFIG_KALLSYMS_EXTRA_PASS=y | 103 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -124,11 +124,17 @@ CONFIG_PROFILING=y | |||
| 124 | CONFIG_OPROFILE=m | 124 | CONFIG_OPROFILE=m |
| 125 | CONFIG_HAVE_OPROFILE=y | 125 | CONFIG_HAVE_OPROFILE=y |
| 126 | CONFIG_KPROBES=y | 126 | CONFIG_KPROBES=y |
| 127 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 127 | CONFIG_KRETPROBES=y | 128 | CONFIG_KRETPROBES=y |
| 129 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 128 | CONFIG_HAVE_KPROBES=y | 130 | CONFIG_HAVE_KPROBES=y |
| 129 | CONFIG_HAVE_KRETPROBES=y | 131 | CONFIG_HAVE_KRETPROBES=y |
| 132 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 130 | # CONFIG_HAVE_DMA_ATTRS is not set | 133 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 134 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 135 | # CONFIG_HAVE_CLK is not set | ||
| 131 | CONFIG_PROC_PAGE_MONITOR=y | 136 | CONFIG_PROC_PAGE_MONITOR=y |
| 137 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 132 | CONFIG_SLABINFO=y | 138 | CONFIG_SLABINFO=y |
| 133 | CONFIG_RT_MUTEXES=y | 139 | CONFIG_RT_MUTEXES=y |
| 134 | # CONFIG_TINY_SHMEM is not set | 140 | # CONFIG_TINY_SHMEM is not set |
| @@ -145,6 +151,7 @@ CONFIG_LBD=y | |||
| 145 | # CONFIG_BLK_DEV_IO_TRACE is not set | 151 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 146 | # CONFIG_LSF is not set | 152 | # CONFIG_LSF is not set |
| 147 | # CONFIG_BLK_DEV_BSG is not set | 153 | # CONFIG_BLK_DEV_BSG is not set |
| 154 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 148 | 155 | ||
| 149 | # | 156 | # |
| 150 | # IO Schedulers | 157 | # IO Schedulers |
| @@ -164,19 +171,18 @@ CONFIG_CLASSIC_RCU=y | |||
| 164 | # Platform support | 171 | # Platform support |
| 165 | # | 172 | # |
| 166 | CONFIG_PPC_MULTIPLATFORM=y | 173 | CONFIG_PPC_MULTIPLATFORM=y |
| 167 | # CONFIG_PPC_82xx is not set | ||
| 168 | # CONFIG_PPC_83xx is not set | ||
| 169 | # CONFIG_PPC_86xx is not set | ||
| 170 | CONFIG_CLASSIC32=y | 174 | CONFIG_CLASSIC32=y |
| 171 | # CONFIG_PPC_CHRP is not set | 175 | # CONFIG_PPC_CHRP is not set |
| 172 | # CONFIG_PPC_MPC512x is not set | ||
| 173 | # CONFIG_PPC_MPC5121 is not set | ||
| 174 | # CONFIG_MPC5121_ADS is not set | 176 | # CONFIG_MPC5121_ADS is not set |
| 177 | # CONFIG_MPC5121_GENERIC is not set | ||
| 175 | # CONFIG_PPC_MPC52xx is not set | 178 | # CONFIG_PPC_MPC52xx is not set |
| 176 | # CONFIG_PPC_PMAC is not set | 179 | # CONFIG_PPC_PMAC is not set |
| 177 | # CONFIG_PPC_CELL is not set | 180 | # CONFIG_PPC_CELL is not set |
| 178 | # CONFIG_PPC_CELL_NATIVE is not set | 181 | # CONFIG_PPC_CELL_NATIVE is not set |
| 182 | # CONFIG_PPC_82xx is not set | ||
| 179 | # CONFIG_PQ2ADS is not set | 183 | # CONFIG_PQ2ADS is not set |
| 184 | # CONFIG_PPC_83xx is not set | ||
| 185 | # CONFIG_PPC_86xx is not set | ||
| 180 | CONFIG_EMBEDDED6xx=y | 186 | CONFIG_EMBEDDED6xx=y |
| 181 | # CONFIG_LINKSTATION is not set | 187 | # CONFIG_LINKSTATION is not set |
| 182 | # CONFIG_STORCENTER is not set | 188 | # CONFIG_STORCENTER is not set |
| @@ -253,6 +259,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 253 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 259 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 254 | CONFIG_PAGEFLAGS_EXTENDED=y | 260 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 255 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 261 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 262 | CONFIG_MIGRATION=y | ||
| 256 | # CONFIG_RESOURCES_64BIT is not set | 263 | # CONFIG_RESOURCES_64BIT is not set |
| 257 | CONFIG_ZONE_DMA_FLAG=1 | 264 | CONFIG_ZONE_DMA_FLAG=1 |
| 258 | CONFIG_BOUNCE=y | 265 | CONFIG_BOUNCE=y |
| @@ -260,6 +267,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 260 | CONFIG_FORCE_MAX_ZONEORDER=11 | 267 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 261 | # CONFIG_PROC_DEVICETREE is not set | 268 | # CONFIG_PROC_DEVICETREE is not set |
| 262 | # CONFIG_CMDLINE_BOOL is not set | 269 | # CONFIG_CMDLINE_BOOL is not set |
| 270 | CONFIG_EXTRA_TARGETS="" | ||
| 263 | CONFIG_PM=y | 271 | CONFIG_PM=y |
| 264 | # CONFIG_PM_DEBUG is not set | 272 | # CONFIG_PM_DEBUG is not set |
| 265 | CONFIG_SECCOMP=y | 273 | CONFIG_SECCOMP=y |
| @@ -301,10 +309,6 @@ CONFIG_PHYSICAL_START=0x00000000 | |||
| 301 | CONFIG_TASK_SIZE=0xc0000000 | 309 | CONFIG_TASK_SIZE=0xc0000000 |
| 302 | CONFIG_CONSISTENT_START=0xff100000 | 310 | CONFIG_CONSISTENT_START=0xff100000 |
| 303 | CONFIG_CONSISTENT_SIZE=0x00200000 | 311 | CONFIG_CONSISTENT_SIZE=0x00200000 |
| 304 | |||
| 305 | # | ||
| 306 | # Networking | ||
| 307 | # | ||
| 308 | CONFIG_NET=y | 312 | CONFIG_NET=y |
| 309 | 313 | ||
| 310 | # | 314 | # |
| @@ -318,6 +322,7 @@ CONFIG_XFRM_USER=y | |||
| 318 | # CONFIG_XFRM_SUB_POLICY is not set | 322 | # CONFIG_XFRM_SUB_POLICY is not set |
| 319 | # CONFIG_XFRM_MIGRATE is not set | 323 | # CONFIG_XFRM_MIGRATE is not set |
| 320 | # CONFIG_XFRM_STATISTICS is not set | 324 | # CONFIG_XFRM_STATISTICS is not set |
| 325 | CONFIG_XFRM_IPCOMP=m | ||
| 321 | CONFIG_NET_KEY=m | 326 | CONFIG_NET_KEY=m |
| 322 | # CONFIG_NET_KEY_MIGRATE is not set | 327 | # CONFIG_NET_KEY_MIGRATE is not set |
| 323 | CONFIG_INET=y | 328 | CONFIG_INET=y |
| @@ -349,7 +354,7 @@ CONFIG_INET_TUNNEL=m | |||
| 349 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | 354 | CONFIG_INET_XFRM_MODE_TRANSPORT=y |
| 350 | CONFIG_INET_XFRM_MODE_TUNNEL=y | 355 | CONFIG_INET_XFRM_MODE_TUNNEL=y |
| 351 | CONFIG_INET_XFRM_MODE_BEET=y | 356 | CONFIG_INET_XFRM_MODE_BEET=y |
| 352 | # CONFIG_INET_LRO is not set | 357 | CONFIG_INET_LRO=m |
| 353 | CONFIG_INET_DIAG=y | 358 | CONFIG_INET_DIAG=y |
| 354 | CONFIG_INET_TCP_DIAG=y | 359 | CONFIG_INET_TCP_DIAG=y |
| 355 | # CONFIG_TCP_CONG_ADVANCED is not set | 360 | # CONFIG_TCP_CONG_ADVANCED is not set |
| @@ -472,6 +477,7 @@ CONFIG_IP_NF_MANGLE=m | |||
| 472 | CONFIG_IP_NF_TARGET_ECN=m | 477 | CONFIG_IP_NF_TARGET_ECN=m |
| 473 | # CONFIG_IP_NF_TARGET_TTL is not set | 478 | # CONFIG_IP_NF_TARGET_TTL is not set |
| 474 | CONFIG_IP_NF_RAW=m | 479 | CONFIG_IP_NF_RAW=m |
| 480 | # CONFIG_IP_NF_SECURITY is not set | ||
| 475 | CONFIG_IP_NF_ARPTABLES=m | 481 | CONFIG_IP_NF_ARPTABLES=m |
| 476 | CONFIG_IP_NF_ARPFILTER=m | 482 | CONFIG_IP_NF_ARPFILTER=m |
| 477 | CONFIG_IP_NF_ARP_MANGLE=m | 483 | CONFIG_IP_NF_ARP_MANGLE=m |
| @@ -495,6 +501,7 @@ CONFIG_IP6_NF_TARGET_LOG=m | |||
| 495 | CONFIG_IP6_NF_MANGLE=m | 501 | CONFIG_IP6_NF_MANGLE=m |
| 496 | # CONFIG_IP6_NF_TARGET_HL is not set | 502 | # CONFIG_IP6_NF_TARGET_HL is not set |
| 497 | CONFIG_IP6_NF_RAW=m | 503 | CONFIG_IP6_NF_RAW=m |
| 504 | # CONFIG_IP6_NF_SECURITY is not set | ||
| 498 | 505 | ||
| 499 | # | 506 | # |
| 500 | # Bridge: Netfilter Configuration | 507 | # Bridge: Netfilter Configuration |
| @@ -507,6 +514,7 @@ CONFIG_BRIDGE_EBT_802_3=m | |||
| 507 | CONFIG_BRIDGE_EBT_AMONG=m | 514 | CONFIG_BRIDGE_EBT_AMONG=m |
| 508 | CONFIG_BRIDGE_EBT_ARP=m | 515 | CONFIG_BRIDGE_EBT_ARP=m |
| 509 | CONFIG_BRIDGE_EBT_IP=m | 516 | CONFIG_BRIDGE_EBT_IP=m |
| 517 | # CONFIG_BRIDGE_EBT_IP6 is not set | ||
| 510 | CONFIG_BRIDGE_EBT_LIMIT=m | 518 | CONFIG_BRIDGE_EBT_LIMIT=m |
| 511 | CONFIG_BRIDGE_EBT_MARK=m | 519 | CONFIG_BRIDGE_EBT_MARK=m |
| 512 | CONFIG_BRIDGE_EBT_PKTTYPE=m | 520 | CONFIG_BRIDGE_EBT_PKTTYPE=m |
| @@ -535,8 +543,10 @@ CONFIG_ATM_LANE=m | |||
| 535 | # CONFIG_ATM_MPOA is not set | 543 | # CONFIG_ATM_MPOA is not set |
| 536 | CONFIG_ATM_BR2684=m | 544 | CONFIG_ATM_BR2684=m |
| 537 | # CONFIG_ATM_BR2684_IPFILTER is not set | 545 | # CONFIG_ATM_BR2684_IPFILTER is not set |
| 546 | CONFIG_STP=m | ||
| 538 | CONFIG_BRIDGE=m | 547 | CONFIG_BRIDGE=m |
| 539 | CONFIG_VLAN_8021Q=m | 548 | CONFIG_VLAN_8021Q=m |
| 549 | # CONFIG_VLAN_8021Q_GVRP is not set | ||
| 540 | # CONFIG_DECNET is not set | 550 | # CONFIG_DECNET is not set |
| 541 | CONFIG_LLC=m | 551 | CONFIG_LLC=m |
| 542 | # CONFIG_LLC2 is not set | 552 | # CONFIG_LLC2 is not set |
| @@ -556,7 +566,6 @@ CONFIG_NET_SCH_HTB=m | |||
| 556 | CONFIG_NET_SCH_HFSC=m | 566 | CONFIG_NET_SCH_HFSC=m |
| 557 | CONFIG_NET_SCH_ATM=m | 567 | CONFIG_NET_SCH_ATM=m |
| 558 | CONFIG_NET_SCH_PRIO=m | 568 | CONFIG_NET_SCH_PRIO=m |
| 559 | # CONFIG_NET_SCH_RR is not set | ||
| 560 | CONFIG_NET_SCH_RED=m | 569 | CONFIG_NET_SCH_RED=m |
| 561 | CONFIG_NET_SCH_SFQ=m | 570 | CONFIG_NET_SCH_SFQ=m |
| 562 | CONFIG_NET_SCH_TEQL=m | 571 | CONFIG_NET_SCH_TEQL=m |
| @@ -601,7 +610,6 @@ CONFIG_BT_RFCOMM_TTY=y | |||
| 601 | CONFIG_BT_BNEP=m | 610 | CONFIG_BT_BNEP=m |
| 602 | CONFIG_BT_BNEP_MC_FILTER=y | 611 | CONFIG_BT_BNEP_MC_FILTER=y |
| 603 | CONFIG_BT_BNEP_PROTO_FILTER=y | 612 | CONFIG_BT_BNEP_PROTO_FILTER=y |
| 604 | CONFIG_BT_CMTP=m | ||
| 605 | CONFIG_BT_HIDP=m | 613 | CONFIG_BT_HIDP=m |
| 606 | 614 | ||
| 607 | # | 615 | # |
| @@ -609,6 +617,7 @@ CONFIG_BT_HIDP=m | |||
| 609 | # | 617 | # |
| 610 | CONFIG_BT_HCIUSB=m | 618 | CONFIG_BT_HCIUSB=m |
| 611 | CONFIG_BT_HCIUSB_SCO=y | 619 | CONFIG_BT_HCIUSB_SCO=y |
| 620 | # CONFIG_BT_HCIBTUSB is not set | ||
| 612 | CONFIG_BT_HCIUART=m | 621 | CONFIG_BT_HCIUART=m |
| 613 | CONFIG_BT_HCIUART_H4=y | 622 | CONFIG_BT_HCIUART_H4=y |
| 614 | CONFIG_BT_HCIUART_BCSP=y | 623 | CONFIG_BT_HCIUART_BCSP=y |
| @@ -625,6 +634,7 @@ CONFIG_FIB_RULES=y | |||
| 625 | # | 634 | # |
| 626 | # CONFIG_CFG80211 is not set | 635 | # CONFIG_CFG80211 is not set |
| 627 | CONFIG_WIRELESS_EXT=y | 636 | CONFIG_WIRELESS_EXT=y |
| 637 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
| 628 | # CONFIG_MAC80211 is not set | 638 | # CONFIG_MAC80211 is not set |
| 629 | CONFIG_IEEE80211=m | 639 | CONFIG_IEEE80211=m |
| 630 | # CONFIG_IEEE80211_DEBUG is not set | 640 | # CONFIG_IEEE80211_DEBUG is not set |
| @@ -645,6 +655,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 645 | CONFIG_STANDALONE=y | 655 | CONFIG_STANDALONE=y |
| 646 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 656 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 647 | CONFIG_FW_LOADER=y | 657 | CONFIG_FW_LOADER=y |
| 658 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 659 | CONFIG_EXTRA_FIRMWARE="" | ||
| 648 | # CONFIG_DEBUG_DRIVER is not set | 660 | # CONFIG_DEBUG_DRIVER is not set |
| 649 | # CONFIG_DEBUG_DEVRES is not set | 661 | # CONFIG_DEBUG_DEVRES is not set |
| 650 | # CONFIG_SYS_HYPERVISOR is not set | 662 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -749,6 +761,7 @@ CONFIG_BLK_DEV_RAM_SIZE=16384 | |||
| 749 | # CONFIG_BLK_DEV_XIP is not set | 761 | # CONFIG_BLK_DEV_XIP is not set |
| 750 | # CONFIG_CDROM_PKTCDVD is not set | 762 | # CONFIG_CDROM_PKTCDVD is not set |
| 751 | # CONFIG_ATA_OVER_ETH is not set | 763 | # CONFIG_ATA_OVER_ETH is not set |
| 764 | # CONFIG_BLK_DEV_HD is not set | ||
| 752 | # CONFIG_MISC_DEVICES is not set | 765 | # CONFIG_MISC_DEVICES is not set |
| 753 | CONFIG_HAVE_IDE=y | 766 | CONFIG_HAVE_IDE=y |
| 754 | # CONFIG_IDE is not set | 767 | # CONFIG_IDE is not set |
| @@ -844,6 +857,7 @@ CONFIG_SCSI_LPFC=m | |||
| 844 | # CONFIG_SCSI_NSP32 is not set | 857 | # CONFIG_SCSI_NSP32 is not set |
| 845 | # CONFIG_SCSI_DEBUG is not set | 858 | # CONFIG_SCSI_DEBUG is not set |
| 846 | # CONFIG_SCSI_SRP is not set | 859 | # CONFIG_SCSI_SRP is not set |
| 860 | # CONFIG_SCSI_DH is not set | ||
| 847 | # CONFIG_ATA is not set | 861 | # CONFIG_ATA is not set |
| 848 | # CONFIG_MD is not set | 862 | # CONFIG_MD is not set |
| 849 | # CONFIG_FUSION is not set | 863 | # CONFIG_FUSION is not set |
| @@ -851,12 +865,15 @@ CONFIG_SCSI_LPFC=m | |||
| 851 | # | 865 | # |
| 852 | # IEEE 1394 (FireWire) support | 866 | # IEEE 1394 (FireWire) support |
| 853 | # | 867 | # |
| 868 | |||
| 869 | # | ||
| 870 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 871 | # | ||
| 854 | # CONFIG_FIREWIRE is not set | 872 | # CONFIG_FIREWIRE is not set |
| 855 | # CONFIG_IEEE1394 is not set | 873 | # CONFIG_IEEE1394 is not set |
| 856 | # CONFIG_I2O is not set | 874 | # CONFIG_I2O is not set |
| 857 | # CONFIG_MACINTOSH_DRIVERS is not set | 875 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 858 | CONFIG_NETDEVICES=y | 876 | CONFIG_NETDEVICES=y |
| 859 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 860 | CONFIG_DUMMY=m | 877 | CONFIG_DUMMY=m |
| 861 | CONFIG_BONDING=m | 878 | CONFIG_BONDING=m |
| 862 | # CONFIG_MACVLAN is not set | 879 | # CONFIG_MACVLAN is not set |
| @@ -900,7 +917,6 @@ CONFIG_NETDEV_1000=y | |||
| 900 | # CONFIG_DL2K is not set | 917 | # CONFIG_DL2K is not set |
| 901 | # CONFIG_E1000 is not set | 918 | # CONFIG_E1000 is not set |
| 902 | # CONFIG_E1000E is not set | 919 | # CONFIG_E1000E is not set |
| 903 | # CONFIG_E1000E_ENABLED is not set | ||
| 904 | # CONFIG_IP1000 is not set | 920 | # CONFIG_IP1000 is not set |
| 905 | # CONFIG_IGB is not set | 921 | # CONFIG_IGB is not set |
| 906 | # CONFIG_NS83820 is not set | 922 | # CONFIG_NS83820 is not set |
| @@ -916,6 +932,7 @@ CONFIG_NETDEV_1000=y | |||
| 916 | CONFIG_MV643XX_ETH=y | 932 | CONFIG_MV643XX_ETH=y |
| 917 | # CONFIG_QLA3XXX is not set | 933 | # CONFIG_QLA3XXX is not set |
| 918 | # CONFIG_ATL1 is not set | 934 | # CONFIG_ATL1 is not set |
| 935 | # CONFIG_ATL1E is not set | ||
| 919 | # CONFIG_NETDEV_10000 is not set | 936 | # CONFIG_NETDEV_10000 is not set |
| 920 | # CONFIG_TR is not set | 937 | # CONFIG_TR is not set |
| 921 | 938 | ||
| @@ -940,112 +957,13 @@ CONFIG_MV643XX_ETH=y | |||
| 940 | # CONFIG_HIPPI is not set | 957 | # CONFIG_HIPPI is not set |
| 941 | # CONFIG_PPP is not set | 958 | # CONFIG_PPP is not set |
| 942 | # CONFIG_SLIP is not set | 959 | # CONFIG_SLIP is not set |
| 943 | CONFIG_SLHC=m | ||
| 944 | # CONFIG_NET_FC is not set | 960 | # CONFIG_NET_FC is not set |
| 945 | CONFIG_NETCONSOLE=m | 961 | CONFIG_NETCONSOLE=m |
| 946 | # CONFIG_NETCONSOLE_DYNAMIC is not set | 962 | # CONFIG_NETCONSOLE_DYNAMIC is not set |
| 947 | CONFIG_NETPOLL=y | 963 | CONFIG_NETPOLL=y |
| 948 | CONFIG_NETPOLL_TRAP=y | 964 | CONFIG_NETPOLL_TRAP=y |
| 949 | CONFIG_NET_POLL_CONTROLLER=y | 965 | CONFIG_NET_POLL_CONTROLLER=y |
| 950 | CONFIG_ISDN=m | 966 | # CONFIG_ISDN is not set |
| 951 | CONFIG_ISDN_I4L=m | ||
| 952 | CONFIG_ISDN_PPP=y | ||
| 953 | CONFIG_ISDN_PPP_VJ=y | ||
| 954 | CONFIG_ISDN_MPP=y | ||
| 955 | CONFIG_IPPP_FILTER=y | ||
| 956 | # CONFIG_ISDN_PPP_BSDCOMP is not set | ||
| 957 | CONFIG_ISDN_AUDIO=y | ||
| 958 | CONFIG_ISDN_TTY_FAX=y | ||
| 959 | |||
| 960 | # | ||
| 961 | # ISDN feature submodules | ||
| 962 | # | ||
| 963 | CONFIG_ISDN_DRV_LOOP=m | ||
| 964 | # CONFIG_ISDN_DIVERSION is not set | ||
| 965 | |||
| 966 | # | ||
| 967 | # ISDN4Linux hardware drivers | ||
| 968 | # | ||
| 969 | |||
| 970 | # | ||
| 971 | # Passive cards | ||
| 972 | # | ||
| 973 | CONFIG_ISDN_DRV_HISAX=m | ||
| 974 | |||
| 975 | # | ||
| 976 | # D-channel protocol features | ||
| 977 | # | ||
| 978 | CONFIG_HISAX_EURO=y | ||
| 979 | CONFIG_DE_AOC=y | ||
| 980 | CONFIG_HISAX_NO_SENDCOMPLETE=y | ||
| 981 | CONFIG_HISAX_NO_LLC=y | ||
| 982 | CONFIG_HISAX_NO_KEYPAD=y | ||
| 983 | CONFIG_HISAX_1TR6=y | ||
| 984 | CONFIG_HISAX_NI1=y | ||
| 985 | CONFIG_HISAX_MAX_CARDS=8 | ||
| 986 | |||
| 987 | # | ||
| 988 | # HiSax supported cards | ||
| 989 | # | ||
| 990 | CONFIG_HISAX_16_3=y | ||
| 991 | CONFIG_HISAX_S0BOX=y | ||
| 992 | CONFIG_HISAX_FRITZPCI=y | ||
| 993 | CONFIG_HISAX_AVM_A1_PCMCIA=y | ||
| 994 | CONFIG_HISAX_ELSA=y | ||
| 995 | CONFIG_HISAX_DIEHLDIVA=y | ||
| 996 | CONFIG_HISAX_SEDLBAUER=y | ||
| 997 | CONFIG_HISAX_NICCY=y | ||
| 998 | CONFIG_HISAX_BKM_A4T=y | ||
| 999 | CONFIG_HISAX_SCT_QUADRO=y | ||
| 1000 | CONFIG_HISAX_GAZEL=y | ||
| 1001 | CONFIG_HISAX_W6692=y | ||
| 1002 | CONFIG_HISAX_HFC_SX=y | ||
| 1003 | # CONFIG_HISAX_DEBUG is not set | ||
| 1004 | |||
| 1005 | # | ||
| 1006 | # HiSax PCMCIA card service modules | ||
| 1007 | # | ||
| 1008 | |||
| 1009 | # | ||
| 1010 | # HiSax sub driver modules | ||
| 1011 | # | ||
| 1012 | CONFIG_HISAX_ST5481=m | ||
| 1013 | CONFIG_HISAX_HFCUSB=m | ||
| 1014 | # CONFIG_HISAX_HFC4S8S is not set | ||
| 1015 | CONFIG_HISAX_FRITZ_PCIPNP=m | ||
| 1016 | CONFIG_HISAX_HDLC=y | ||
| 1017 | |||
| 1018 | # | ||
| 1019 | # Active cards | ||
| 1020 | # | ||
| 1021 | CONFIG_HYSDN=m | ||
| 1022 | CONFIG_HYSDN_CAPI=y | ||
| 1023 | # CONFIG_ISDN_DRV_GIGASET is not set | ||
| 1024 | CONFIG_ISDN_CAPI=m | ||
| 1025 | CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y | ||
| 1026 | CONFIG_CAPI_TRACE=y | ||
| 1027 | CONFIG_ISDN_CAPI_MIDDLEWARE=y | ||
| 1028 | CONFIG_ISDN_CAPI_CAPI20=m | ||
| 1029 | CONFIG_ISDN_CAPI_CAPIFS_BOOL=y | ||
| 1030 | CONFIG_ISDN_CAPI_CAPIFS=m | ||
| 1031 | CONFIG_ISDN_CAPI_CAPIDRV=m | ||
| 1032 | |||
| 1033 | # | ||
| 1034 | # CAPI hardware drivers | ||
| 1035 | # | ||
| 1036 | CONFIG_CAPI_AVM=y | ||
| 1037 | CONFIG_ISDN_DRV_AVMB1_B1PCI=m | ||
| 1038 | CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y | ||
| 1039 | CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m | ||
| 1040 | CONFIG_ISDN_DRV_AVMB1_T1PCI=m | ||
| 1041 | CONFIG_ISDN_DRV_AVMB1_C4=m | ||
| 1042 | CONFIG_CAPI_EICON=y | ||
| 1043 | CONFIG_ISDN_DIVAS=m | ||
| 1044 | CONFIG_ISDN_DIVAS_BRIPCI=y | ||
| 1045 | CONFIG_ISDN_DIVAS_PRIPCI=y | ||
| 1046 | CONFIG_ISDN_DIVAS_DIVACAPI=m | ||
| 1047 | CONFIG_ISDN_DIVAS_USERIDI=m | ||
| 1048 | CONFIG_ISDN_DIVAS_MAINT=m | ||
| 1049 | # CONFIG_PHONE is not set | 967 | # CONFIG_PHONE is not set |
| 1050 | 968 | ||
| 1051 | # | 969 | # |
| @@ -1092,6 +1010,7 @@ CONFIG_INPUT_UINPUT=m | |||
| 1092 | # Character devices | 1010 | # Character devices |
| 1093 | # | 1011 | # |
| 1094 | CONFIG_VT=y | 1012 | CONFIG_VT=y |
| 1013 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 1095 | CONFIG_VT_CONSOLE=y | 1014 | CONFIG_VT_CONSOLE=y |
| 1096 | CONFIG_HW_CONSOLE=y | 1015 | CONFIG_HW_CONSOLE=y |
| 1097 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 1016 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -1145,44 +1064,65 @@ CONFIG_DEVPORT=y | |||
| 1145 | CONFIG_I2C=m | 1064 | CONFIG_I2C=m |
| 1146 | CONFIG_I2C_BOARDINFO=y | 1065 | CONFIG_I2C_BOARDINFO=y |
| 1147 | CONFIG_I2C_CHARDEV=m | 1066 | CONFIG_I2C_CHARDEV=m |
| 1067 | CONFIG_I2C_HELPER_AUTO=y | ||
| 1148 | 1068 | ||
| 1149 | # | 1069 | # |
| 1150 | # I2C Hardware Bus support | 1070 | # I2C Hardware Bus support |
| 1151 | # | 1071 | # |
| 1072 | |||
| 1073 | # | ||
| 1074 | # PC SMBus host controller drivers | ||
| 1075 | # | ||
| 1152 | # CONFIG_I2C_ALI1535 is not set | 1076 | # CONFIG_I2C_ALI1535 is not set |
| 1153 | # CONFIG_I2C_ALI1563 is not set | 1077 | # CONFIG_I2C_ALI1563 is not set |
| 1154 | # CONFIG_I2C_ALI15X3 is not set | 1078 | # CONFIG_I2C_ALI15X3 is not set |
| 1155 | # CONFIG_I2C_AMD756 is not set | 1079 | # CONFIG_I2C_AMD756 is not set |
| 1156 | # CONFIG_I2C_AMD8111 is not set | 1080 | # CONFIG_I2C_AMD8111 is not set |
| 1157 | # CONFIG_I2C_I801 is not set | 1081 | # CONFIG_I2C_I801 is not set |
| 1158 | # CONFIG_I2C_I810 is not set | 1082 | # CONFIG_I2C_ISCH is not set |
| 1159 | # CONFIG_I2C_PIIX4 is not set | 1083 | # CONFIG_I2C_PIIX4 is not set |
| 1160 | # CONFIG_I2C_MPC is not set | ||
| 1161 | # CONFIG_I2C_NFORCE2 is not set | 1084 | # CONFIG_I2C_NFORCE2 is not set |
| 1162 | # CONFIG_I2C_OCORES is not set | ||
| 1163 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 1164 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 1165 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 1166 | # CONFIG_I2C_SIMTEC is not set | ||
| 1167 | # CONFIG_I2C_SIS5595 is not set | 1085 | # CONFIG_I2C_SIS5595 is not set |
| 1168 | # CONFIG_I2C_SIS630 is not set | 1086 | # CONFIG_I2C_SIS630 is not set |
| 1169 | # CONFIG_I2C_SIS96X is not set | 1087 | # CONFIG_I2C_SIS96X is not set |
| 1170 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 1171 | # CONFIG_I2C_STUB is not set | ||
| 1172 | # CONFIG_I2C_TINY_USB is not set | ||
| 1173 | # CONFIG_I2C_VIA is not set | 1088 | # CONFIG_I2C_VIA is not set |
| 1174 | # CONFIG_I2C_VIAPRO is not set | 1089 | # CONFIG_I2C_VIAPRO is not set |
| 1090 | |||
| 1091 | # | ||
| 1092 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 1093 | # | ||
| 1094 | # CONFIG_I2C_MPC is not set | ||
| 1095 | CONFIG_I2C_MV64XXX=m | ||
| 1096 | # CONFIG_I2C_OCORES is not set | ||
| 1097 | # CONFIG_I2C_SIMTEC is not set | ||
| 1098 | |||
| 1099 | # | ||
| 1100 | # External I2C/SMBus adapter drivers | ||
| 1101 | # | ||
| 1102 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 1103 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 1104 | # CONFIG_I2C_TINY_USB is not set | ||
| 1105 | |||
| 1106 | # | ||
| 1107 | # Graphics adapter I2C/DDC channel drivers | ||
| 1108 | # | ||
| 1175 | # CONFIG_I2C_VOODOO3 is not set | 1109 | # CONFIG_I2C_VOODOO3 is not set |
| 1110 | |||
| 1111 | # | ||
| 1112 | # Other I2C/SMBus bus drivers | ||
| 1113 | # | ||
| 1176 | # CONFIG_I2C_PCA_PLATFORM is not set | 1114 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 1177 | CONFIG_I2C_MV64XXX=m | 1115 | # CONFIG_I2C_STUB is not set |
| 1178 | 1116 | ||
| 1179 | # | 1117 | # |
| 1180 | # Miscellaneous I2C Chip support | 1118 | # Miscellaneous I2C Chip support |
| 1181 | # | 1119 | # |
| 1182 | # CONFIG_DS1682 is not set | 1120 | # CONFIG_DS1682 is not set |
| 1121 | # CONFIG_AT24 is not set | ||
| 1183 | CONFIG_SENSORS_EEPROM=m | 1122 | CONFIG_SENSORS_EEPROM=m |
| 1184 | CONFIG_SENSORS_PCF8574=m | 1123 | CONFIG_SENSORS_PCF8574=m |
| 1185 | # CONFIG_PCF8575 is not set | 1124 | # CONFIG_PCF8575 is not set |
| 1125 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 1186 | CONFIG_SENSORS_PCF8591=m | 1126 | CONFIG_SENSORS_PCF8591=m |
| 1187 | # CONFIG_SENSORS_MAX6875 is not set | 1127 | # CONFIG_SENSORS_MAX6875 is not set |
| 1188 | # CONFIG_SENSORS_TSL2550 is not set | 1128 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -1191,10 +1131,13 @@ CONFIG_SENSORS_PCF8591=m | |||
| 1191 | # CONFIG_I2C_DEBUG_BUS is not set | 1131 | # CONFIG_I2C_DEBUG_BUS is not set |
| 1192 | # CONFIG_I2C_DEBUG_CHIP is not set | 1132 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 1193 | # CONFIG_SPI is not set | 1133 | # CONFIG_SPI is not set |
| 1134 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 1135 | # CONFIG_GPIOLIB is not set | ||
| 1194 | # CONFIG_W1 is not set | 1136 | # CONFIG_W1 is not set |
| 1195 | # CONFIG_POWER_SUPPLY is not set | 1137 | # CONFIG_POWER_SUPPLY is not set |
| 1196 | CONFIG_HWMON=m | 1138 | CONFIG_HWMON=m |
| 1197 | CONFIG_HWMON_VID=m | 1139 | CONFIG_HWMON_VID=m |
| 1140 | # CONFIG_SENSORS_AD7414 is not set | ||
| 1198 | # CONFIG_SENSORS_AD7418 is not set | 1141 | # CONFIG_SENSORS_AD7418 is not set |
| 1199 | CONFIG_SENSORS_ADM1021=m | 1142 | CONFIG_SENSORS_ADM1021=m |
| 1200 | CONFIG_SENSORS_ADM1025=m | 1143 | CONFIG_SENSORS_ADM1025=m |
| @@ -1255,6 +1198,7 @@ CONFIG_WATCHDOG=y | |||
| 1255 | # Watchdog Device Drivers | 1198 | # Watchdog Device Drivers |
| 1256 | # | 1199 | # |
| 1257 | CONFIG_SOFT_WATCHDOG=m | 1200 | CONFIG_SOFT_WATCHDOG=m |
| 1201 | # CONFIG_ALIM7101_WDT is not set | ||
| 1258 | # CONFIG_MV64X60_WDT is not set | 1202 | # CONFIG_MV64X60_WDT is not set |
| 1259 | 1203 | ||
| 1260 | # | 1204 | # |
| @@ -1278,8 +1222,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 1278 | # | 1222 | # |
| 1279 | # Multifunction device drivers | 1223 | # Multifunction device drivers |
| 1280 | # | 1224 | # |
| 1225 | # CONFIG_MFD_CORE is not set | ||
| 1281 | # CONFIG_MFD_SM501 is not set | 1226 | # CONFIG_MFD_SM501 is not set |
| 1282 | # CONFIG_HTC_PASIC3 is not set | 1227 | # CONFIG_HTC_PASIC3 is not set |
| 1228 | # CONFIG_MFD_TMIO is not set | ||
| 1283 | 1229 | ||
| 1284 | # | 1230 | # |
| 1285 | # Multimedia devices | 1231 | # Multimedia devices |
| @@ -1290,6 +1236,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 1290 | # | 1236 | # |
| 1291 | # CONFIG_VIDEO_DEV is not set | 1237 | # CONFIG_VIDEO_DEV is not set |
| 1292 | # CONFIG_DVB_CORE is not set | 1238 | # CONFIG_DVB_CORE is not set |
| 1239 | # CONFIG_VIDEO_MEDIA is not set | ||
| 1293 | 1240 | ||
| 1294 | # | 1241 | # |
| 1295 | # Multimedia drivers | 1242 | # Multimedia drivers |
| @@ -1316,10 +1263,6 @@ CONFIG_SSB_POSSIBLE=y | |||
| 1316 | # | 1263 | # |
| 1317 | # CONFIG_VGA_CONSOLE is not set | 1264 | # CONFIG_VGA_CONSOLE is not set |
| 1318 | CONFIG_DUMMY_CONSOLE=y | 1265 | CONFIG_DUMMY_CONSOLE=y |
| 1319 | |||
| 1320 | # | ||
| 1321 | # Sound | ||
| 1322 | # | ||
| 1323 | # CONFIG_SOUND is not set | 1266 | # CONFIG_SOUND is not set |
| 1324 | # CONFIG_HID_SUPPORT is not set | 1267 | # CONFIG_HID_SUPPORT is not set |
| 1325 | CONFIG_HID=m | 1268 | CONFIG_HID=m |
| @@ -1339,6 +1282,7 @@ CONFIG_USB_DEVICEFS=y | |||
| 1339 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1282 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1340 | CONFIG_USB_SUSPEND=y | 1283 | CONFIG_USB_SUSPEND=y |
| 1341 | # CONFIG_USB_OTG is not set | 1284 | # CONFIG_USB_OTG is not set |
| 1285 | CONFIG_USB_MON=y | ||
| 1342 | 1286 | ||
| 1343 | # | 1287 | # |
| 1344 | # USB Host Controller Drivers | 1288 | # USB Host Controller Drivers |
| @@ -1363,10 +1307,15 @@ CONFIG_USB_UHCI_HCD=m | |||
| 1363 | # CONFIG_USB_R8A66597_HCD is not set | 1307 | # CONFIG_USB_R8A66597_HCD is not set |
| 1364 | 1308 | ||
| 1365 | # | 1309 | # |
| 1310 | # Enable Host or Gadget support to see Inventra options | ||
| 1311 | # | ||
| 1312 | |||
| 1313 | # | ||
| 1366 | # USB Device Class drivers | 1314 | # USB Device Class drivers |
| 1367 | # | 1315 | # |
| 1368 | CONFIG_USB_ACM=m | 1316 | CONFIG_USB_ACM=m |
| 1369 | CONFIG_USB_PRINTER=m | 1317 | CONFIG_USB_PRINTER=m |
| 1318 | # CONFIG_USB_WDM is not set | ||
| 1370 | 1319 | ||
| 1371 | # | 1320 | # |
| 1372 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1321 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1388,6 +1337,7 @@ CONFIG_USB_STORAGE_JUMPSHOT=y | |||
| 1388 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1337 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1389 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1338 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1390 | # CONFIG_USB_STORAGE_KARMA is not set | 1339 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1340 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1391 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1341 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1392 | # CONFIG_USB_LIBUSUAL is not set | 1342 | # CONFIG_USB_LIBUSUAL is not set |
| 1393 | 1343 | ||
| @@ -1396,7 +1346,6 @@ CONFIG_USB_STORAGE_JUMPSHOT=y | |||
| 1396 | # | 1346 | # |
| 1397 | CONFIG_USB_MDC800=m | 1347 | CONFIG_USB_MDC800=m |
| 1398 | CONFIG_USB_MICROTEK=m | 1348 | CONFIG_USB_MICROTEK=m |
| 1399 | CONFIG_USB_MON=y | ||
| 1400 | 1349 | ||
| 1401 | # | 1350 | # |
| 1402 | # USB port drivers | 1351 | # USB port drivers |
| @@ -1405,7 +1354,6 @@ CONFIG_USB_SERIAL=m | |||
| 1405 | CONFIG_USB_EZUSB=y | 1354 | CONFIG_USB_EZUSB=y |
| 1406 | CONFIG_USB_SERIAL_GENERIC=y | 1355 | CONFIG_USB_SERIAL_GENERIC=y |
| 1407 | # CONFIG_USB_SERIAL_AIRCABLE is not set | 1356 | # CONFIG_USB_SERIAL_AIRCABLE is not set |
| 1408 | # CONFIG_USB_SERIAL_AIRPRIME is not set | ||
| 1409 | # CONFIG_USB_SERIAL_ARK3116 is not set | 1357 | # CONFIG_USB_SERIAL_ARK3116 is not set |
| 1410 | CONFIG_USB_SERIAL_BELKIN=m | 1358 | CONFIG_USB_SERIAL_BELKIN=m |
| 1411 | # CONFIG_USB_SERIAL_CH341 is not set | 1359 | # CONFIG_USB_SERIAL_CH341 is not set |
| @@ -1443,6 +1391,7 @@ CONFIG_USB_SERIAL_KOBIL_SCT=m | |||
| 1443 | CONFIG_USB_SERIAL_MCT_U232=m | 1391 | CONFIG_USB_SERIAL_MCT_U232=m |
| 1444 | # CONFIG_USB_SERIAL_MOS7720 is not set | 1392 | # CONFIG_USB_SERIAL_MOS7720 is not set |
| 1445 | # CONFIG_USB_SERIAL_MOS7840 is not set | 1393 | # CONFIG_USB_SERIAL_MOS7840 is not set |
| 1394 | # CONFIG_USB_SERIAL_MOTOROLA is not set | ||
| 1446 | # CONFIG_USB_SERIAL_NAVMAN is not set | 1395 | # CONFIG_USB_SERIAL_NAVMAN is not set |
| 1447 | CONFIG_USB_SERIAL_PL2303=m | 1396 | CONFIG_USB_SERIAL_PL2303=m |
| 1448 | # CONFIG_USB_SERIAL_OTI6858 is not set | 1397 | # CONFIG_USB_SERIAL_OTI6858 is not set |
| @@ -1464,7 +1413,6 @@ CONFIG_USB_SERIAL_OMNINET=m | |||
| 1464 | CONFIG_USB_EMI62=m | 1413 | CONFIG_USB_EMI62=m |
| 1465 | # CONFIG_USB_EMI26 is not set | 1414 | # CONFIG_USB_EMI26 is not set |
| 1466 | # CONFIG_USB_ADUTUX is not set | 1415 | # CONFIG_USB_ADUTUX is not set |
| 1467 | CONFIG_USB_AUERSWALD=m | ||
| 1468 | CONFIG_USB_RIO500=m | 1416 | CONFIG_USB_RIO500=m |
| 1469 | CONFIG_USB_LEGOTOWER=m | 1417 | CONFIG_USB_LEGOTOWER=m |
| 1470 | CONFIG_USB_LCD=m | 1418 | CONFIG_USB_LCD=m |
| @@ -1481,6 +1429,7 @@ CONFIG_USB_LED=m | |||
| 1481 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1429 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1482 | # CONFIG_USB_IOWARRIOR is not set | 1430 | # CONFIG_USB_IOWARRIOR is not set |
| 1483 | CONFIG_USB_TEST=m | 1431 | CONFIG_USB_TEST=m |
| 1432 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1484 | CONFIG_USB_ATM=m | 1433 | CONFIG_USB_ATM=m |
| 1485 | CONFIG_USB_SPEEDTOUCH=m | 1434 | CONFIG_USB_SPEEDTOUCH=m |
| 1486 | # CONFIG_USB_CXACRU is not set | 1435 | # CONFIG_USB_CXACRU is not set |
| @@ -1601,6 +1550,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1601 | CONFIG_CRAMFS=m | 1550 | CONFIG_CRAMFS=m |
| 1602 | CONFIG_VXFS_FS=m | 1551 | CONFIG_VXFS_FS=m |
| 1603 | # CONFIG_MINIX_FS is not set | 1552 | # CONFIG_MINIX_FS is not set |
| 1553 | # CONFIG_OMFS_FS is not set | ||
| 1604 | # CONFIG_HPFS_FS is not set | 1554 | # CONFIG_HPFS_FS is not set |
| 1605 | # CONFIG_QNX4FS_FS is not set | 1555 | # CONFIG_QNX4FS_FS is not set |
| 1606 | # CONFIG_ROMFS_FS is not set | 1556 | # CONFIG_ROMFS_FS is not set |
| @@ -1611,8 +1561,8 @@ CONFIG_NFS_FS=y | |||
| 1611 | CONFIG_NFS_V3=y | 1561 | CONFIG_NFS_V3=y |
| 1612 | CONFIG_NFS_V3_ACL=y | 1562 | CONFIG_NFS_V3_ACL=y |
| 1613 | CONFIG_NFS_V4=y | 1563 | CONFIG_NFS_V4=y |
| 1614 | # CONFIG_NFSD is not set | ||
| 1615 | CONFIG_ROOT_NFS=y | 1564 | CONFIG_ROOT_NFS=y |
| 1565 | # CONFIG_NFSD is not set | ||
| 1616 | CONFIG_LOCKD=y | 1566 | CONFIG_LOCKD=y |
| 1617 | CONFIG_LOCKD_V4=y | 1567 | CONFIG_LOCKD_V4=y |
| 1618 | CONFIG_NFS_ACL_SUPPORT=y | 1568 | CONFIG_NFS_ACL_SUPPORT=y |
| @@ -1620,7 +1570,6 @@ CONFIG_NFS_COMMON=y | |||
| 1620 | CONFIG_SUNRPC=y | 1570 | CONFIG_SUNRPC=y |
| 1621 | CONFIG_SUNRPC_GSS=y | 1571 | CONFIG_SUNRPC_GSS=y |
| 1622 | CONFIG_SUNRPC_XPRT_RDMA=m | 1572 | CONFIG_SUNRPC_XPRT_RDMA=m |
| 1623 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1624 | CONFIG_RPCSEC_GSS_KRB5=y | 1573 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1625 | CONFIG_RPCSEC_GSS_SPKM3=m | 1574 | CONFIG_RPCSEC_GSS_SPKM3=m |
| 1626 | # CONFIG_SMB_FS is not set | 1575 | # CONFIG_SMB_FS is not set |
| @@ -1705,6 +1654,7 @@ CONFIG_BITREVERSE=y | |||
| 1705 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1654 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1706 | CONFIG_CRC_CCITT=m | 1655 | CONFIG_CRC_CCITT=m |
| 1707 | # CONFIG_CRC16 is not set | 1656 | # CONFIG_CRC16 is not set |
| 1657 | CONFIG_CRC_T10DIF=m | ||
| 1708 | CONFIG_CRC_ITU_T=m | 1658 | CONFIG_CRC_ITU_T=m |
| 1709 | CONFIG_CRC32=y | 1659 | CONFIG_CRC32=y |
| 1710 | # CONFIG_CRC7 is not set | 1660 | # CONFIG_CRC7 is not set |
| @@ -1732,6 +1682,8 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 1732 | CONFIG_DEBUG_KERNEL=y | 1682 | CONFIG_DEBUG_KERNEL=y |
| 1733 | # CONFIG_DEBUG_SHIRQ is not set | 1683 | # CONFIG_DEBUG_SHIRQ is not set |
| 1734 | CONFIG_DETECT_SOFTLOCKUP=y | 1684 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1685 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1686 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1735 | CONFIG_SCHED_DEBUG=y | 1687 | CONFIG_SCHED_DEBUG=y |
| 1736 | # CONFIG_SCHEDSTATS is not set | 1688 | # CONFIG_SCHEDSTATS is not set |
| 1737 | # CONFIG_TIMER_STATS is not set | 1689 | # CONFIG_TIMER_STATS is not set |
| @@ -1750,6 +1702,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 1750 | CONFIG_DEBUG_INFO=y | 1702 | CONFIG_DEBUG_INFO=y |
| 1751 | # CONFIG_DEBUG_VM is not set | 1703 | # CONFIG_DEBUG_VM is not set |
| 1752 | # CONFIG_DEBUG_WRITECOUNT is not set | 1704 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1705 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 1753 | # CONFIG_DEBUG_LIST is not set | 1706 | # CONFIG_DEBUG_LIST is not set |
| 1754 | # CONFIG_DEBUG_SG is not set | 1707 | # CONFIG_DEBUG_SG is not set |
| 1755 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1708 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1758,11 +1711,22 @@ CONFIG_DEBUG_INFO=y | |||
| 1758 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1711 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1759 | # CONFIG_LKDTM is not set | 1712 | # CONFIG_LKDTM is not set |
| 1760 | # CONFIG_FAULT_INJECTION is not set | 1713 | # CONFIG_FAULT_INJECTION is not set |
| 1714 | # CONFIG_LATENCYTOP is not set | ||
| 1715 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1716 | CONFIG_HAVE_FTRACE=y | ||
| 1717 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1718 | # CONFIG_FTRACE is not set | ||
| 1719 | # CONFIG_SCHED_TRACER is not set | ||
| 1720 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1761 | # CONFIG_SAMPLES is not set | 1721 | # CONFIG_SAMPLES is not set |
| 1722 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1723 | # CONFIG_KGDB is not set | ||
| 1762 | CONFIG_DEBUG_STACKOVERFLOW=y | 1724 | CONFIG_DEBUG_STACKOVERFLOW=y |
| 1763 | CONFIG_DEBUG_STACK_USAGE=y | 1725 | CONFIG_DEBUG_STACK_USAGE=y |
| 1764 | # CONFIG_DEBUG_PAGEALLOC is not set | 1726 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1765 | # CONFIG_DEBUGGER is not set | 1727 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1728 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1729 | # CONFIG_XMON is not set | ||
| 1766 | # CONFIG_IRQSTACKS is not set | 1730 | # CONFIG_IRQSTACKS is not set |
| 1767 | # CONFIG_BDI_SWITCH is not set | 1731 | # CONFIG_BDI_SWITCH is not set |
| 1768 | CONFIG_BOOTX_TEXT=y | 1732 | CONFIG_BOOTX_TEXT=y |
| @@ -1776,7 +1740,6 @@ CONFIG_KEYS_DEBUG_PROC_KEYS=y | |||
| 1776 | CONFIG_SECURITY=y | 1740 | CONFIG_SECURITY=y |
| 1777 | CONFIG_SECURITY_NETWORK=y | 1741 | CONFIG_SECURITY_NETWORK=y |
| 1778 | # CONFIG_SECURITY_NETWORK_XFRM is not set | 1742 | # CONFIG_SECURITY_NETWORK_XFRM is not set |
| 1779 | CONFIG_SECURITY_CAPABILITIES=y | ||
| 1780 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1743 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1781 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1744 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
| 1782 | CONFIG_SECURITY_SELINUX=y | 1745 | CONFIG_SECURITY_SELINUX=y |
| @@ -1835,6 +1798,10 @@ CONFIG_CRYPTO_CRC32C=m | |||
| 1835 | CONFIG_CRYPTO_MD4=m | 1798 | CONFIG_CRYPTO_MD4=m |
| 1836 | CONFIG_CRYPTO_MD5=y | 1799 | CONFIG_CRYPTO_MD5=y |
| 1837 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1800 | CONFIG_CRYPTO_MICHAEL_MIC=m |
| 1801 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1802 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1803 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1804 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1838 | CONFIG_CRYPTO_SHA1=y | 1805 | CONFIG_CRYPTO_SHA1=y |
| 1839 | CONFIG_CRYPTO_SHA256=m | 1806 | CONFIG_CRYPTO_SHA256=m |
| 1840 | CONFIG_CRYPTO_SHA512=m | 1807 | CONFIG_CRYPTO_SHA512=m |
diff --git a/arch/powerpc/configs/chrp32_defconfig b/arch/powerpc/configs/chrp32_defconfig index 05360d4ef1b1..2e0ef8c18227 100644 --- a/arch/powerpc/configs/chrp32_defconfig +++ b/arch/powerpc/configs/chrp32_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.26-rc3 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Tue May 20 20:00:44 2008 | 4 | # Tue Aug 26 13:12:40 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -33,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -90,7 +91,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 90 | CONFIG_SYSCTL=y | 91 | CONFIG_SYSCTL=y |
| 91 | # CONFIG_EMBEDDED is not set | 92 | # CONFIG_EMBEDDED is not set |
| 92 | CONFIG_SYSCTL_SYSCALL=y | 93 | CONFIG_SYSCTL_SYSCALL=y |
| 93 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 94 | CONFIG_KALLSYMS=y | 94 | CONFIG_KALLSYMS=y |
| 95 | # CONFIG_KALLSYMS_ALL is not set | 95 | # CONFIG_KALLSYMS_ALL is not set |
| 96 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 96 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -117,10 +117,16 @@ CONFIG_SLUB=y | |||
| 117 | # CONFIG_MARKERS 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 | ||
| 121 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 120 | CONFIG_HAVE_KPROBES=y | 122 | CONFIG_HAVE_KPROBES=y |
| 121 | CONFIG_HAVE_KRETPROBES=y | 123 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 122 | # CONFIG_HAVE_DMA_ATTRS is not set | 125 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 126 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
| 127 | # CONFIG_HAVE_CLK is not set | ||
| 123 | CONFIG_PROC_PAGE_MONITOR=y | 128 | CONFIG_PROC_PAGE_MONITOR=y |
| 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 124 | CONFIG_SLABINFO=y | 130 | CONFIG_SLABINFO=y |
| 125 | CONFIG_RT_MUTEXES=y | 131 | CONFIG_RT_MUTEXES=y |
| 126 | # CONFIG_TINY_SHMEM is not set | 132 | # CONFIG_TINY_SHMEM is not set |
| @@ -138,6 +144,7 @@ CONFIG_LBD=y | |||
| 138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 144 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 139 | # CONFIG_LSF is not set | 145 | # CONFIG_LSF is not set |
| 140 | # CONFIG_BLK_DEV_BSG is not set | 146 | # CONFIG_BLK_DEV_BSG is not set |
| 147 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 141 | 148 | ||
| 142 | # | 149 | # |
| 143 | # IO Schedulers | 150 | # IO Schedulers |
| @@ -157,19 +164,18 @@ CONFIG_CLASSIC_RCU=y | |||
| 157 | # Platform support | 164 | # Platform support |
| 158 | # | 165 | # |
| 159 | CONFIG_PPC_MULTIPLATFORM=y | 166 | CONFIG_PPC_MULTIPLATFORM=y |
| 160 | # CONFIG_PPC_82xx is not set | ||
| 161 | # CONFIG_PPC_83xx is not set | ||
| 162 | # CONFIG_PPC_86xx is not set | ||
| 163 | CONFIG_CLASSIC32=y | 167 | CONFIG_CLASSIC32=y |
| 164 | CONFIG_PPC_CHRP=y | 168 | CONFIG_PPC_CHRP=y |
| 165 | # CONFIG_PPC_MPC512x is not set | ||
| 166 | # CONFIG_PPC_MPC5121 is not set | ||
| 167 | # CONFIG_MPC5121_ADS is not set | 169 | # CONFIG_MPC5121_ADS is not set |
| 170 | # CONFIG_MPC5121_GENERIC is not set | ||
| 168 | # CONFIG_PPC_MPC52xx is not set | 171 | # CONFIG_PPC_MPC52xx is not set |
| 169 | # CONFIG_PPC_PMAC is not set | 172 | # CONFIG_PPC_PMAC is not set |
| 170 | # CONFIG_PPC_CELL is not set | 173 | # CONFIG_PPC_CELL is not set |
| 171 | # CONFIG_PPC_CELL_NATIVE is not set | 174 | # CONFIG_PPC_CELL_NATIVE is not set |
| 175 | # CONFIG_PPC_82xx is not set | ||
| 172 | # CONFIG_PQ2ADS is not set | 176 | # CONFIG_PQ2ADS is not set |
| 177 | # CONFIG_PPC_83xx is not set | ||
| 178 | # CONFIG_PPC_86xx is not set | ||
| 173 | CONFIG_PPC_NATIVE=y | 179 | CONFIG_PPC_NATIVE=y |
| 174 | # CONFIG_UDBG_RTAS_CONSOLE is not set | 180 | # CONFIG_UDBG_RTAS_CONSOLE is not set |
| 175 | # CONFIG_IPIC is not set | 181 | # CONFIG_IPIC is not set |
| @@ -201,7 +207,7 @@ CONFIG_HZ_250=y | |||
| 201 | # CONFIG_HZ_300 is not set | 207 | # CONFIG_HZ_300 is not set |
| 202 | # CONFIG_HZ_1000 is not set | 208 | # CONFIG_HZ_1000 is not set |
| 203 | CONFIG_HZ=250 | 209 | CONFIG_HZ=250 |
| 204 | # CONFIG_SCHED_HRTICK is not set | 210 | CONFIG_SCHED_HRTICK=y |
| 205 | CONFIG_PREEMPT_NONE=y | 211 | CONFIG_PREEMPT_NONE=y |
| 206 | # CONFIG_PREEMPT_VOLUNTARY is not set | 212 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 207 | # CONFIG_PREEMPT is not set | 213 | # CONFIG_PREEMPT is not set |
| @@ -225,6 +231,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 225 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 231 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 226 | CONFIG_PAGEFLAGS_EXTENDED=y | 232 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 233 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 234 | # CONFIG_MIGRATION is not set | ||
| 228 | # CONFIG_RESOURCES_64BIT is not set | 235 | # CONFIG_RESOURCES_64BIT is not set |
| 229 | CONFIG_ZONE_DMA_FLAG=1 | 236 | CONFIG_ZONE_DMA_FLAG=1 |
| 230 | CONFIG_BOUNCE=y | 237 | CONFIG_BOUNCE=y |
| @@ -232,6 +239,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 232 | CONFIG_FORCE_MAX_ZONEORDER=11 | 239 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 233 | CONFIG_PROC_DEVICETREE=y | 240 | CONFIG_PROC_DEVICETREE=y |
| 234 | # CONFIG_CMDLINE_BOOL is not set | 241 | # CONFIG_CMDLINE_BOOL is not set |
| 242 | CONFIG_EXTRA_TARGETS="" | ||
| 235 | # CONFIG_PM is not set | 243 | # CONFIG_PM is not set |
| 236 | CONFIG_SECCOMP=y | 244 | CONFIG_SECCOMP=y |
| 237 | CONFIG_ISA_DMA_API=y | 245 | CONFIG_ISA_DMA_API=y |
| @@ -268,10 +276,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 268 | CONFIG_KERNEL_START=0xc0000000 | 276 | CONFIG_KERNEL_START=0xc0000000 |
| 269 | CONFIG_PHYSICAL_START=0x00000000 | 277 | CONFIG_PHYSICAL_START=0x00000000 |
| 270 | CONFIG_TASK_SIZE=0xc0000000 | 278 | CONFIG_TASK_SIZE=0xc0000000 |
| 271 | |||
| 272 | # | ||
| 273 | # Networking | ||
| 274 | # | ||
| 275 | CONFIG_NET=y | 279 | CONFIG_NET=y |
| 276 | 280 | ||
| 277 | # | 281 | # |
| @@ -398,7 +402,9 @@ CONFIG_NF_NAT_SIP=m | |||
| 398 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 402 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
| 399 | # CONFIG_STANDALONE is not set | 403 | # CONFIG_STANDALONE is not set |
| 400 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 404 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 401 | # CONFIG_FW_LOADER is not set | 405 | CONFIG_FW_LOADER=y |
| 406 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 407 | CONFIG_EXTRA_FIRMWARE="" | ||
| 402 | # CONFIG_DEBUG_DRIVER is not set | 408 | # CONFIG_DEBUG_DRIVER is not set |
| 403 | # CONFIG_DEBUG_DEVRES is not set | 409 | # CONFIG_DEBUG_DEVRES is not set |
| 404 | # CONFIG_SYS_HYPERVISOR is not set | 410 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -427,12 +433,14 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 427 | # CONFIG_BLK_DEV_XIP is not set | 433 | # CONFIG_BLK_DEV_XIP is not set |
| 428 | # CONFIG_CDROM_PKTCDVD is not set | 434 | # CONFIG_CDROM_PKTCDVD is not set |
| 429 | # CONFIG_ATA_OVER_ETH is not set | 435 | # CONFIG_ATA_OVER_ETH is not set |
| 436 | # CONFIG_BLK_DEV_HD is not set | ||
| 430 | CONFIG_MISC_DEVICES=y | 437 | CONFIG_MISC_DEVICES=y |
| 431 | # CONFIG_PHANTOM is not set | 438 | # CONFIG_PHANTOM is not set |
| 432 | # CONFIG_EEPROM_93CX6 is not set | 439 | # CONFIG_EEPROM_93CX6 is not set |
| 433 | # CONFIG_SGI_IOC4 is not set | 440 | # CONFIG_SGI_IOC4 is not set |
| 434 | # CONFIG_TIFM_CORE is not set | 441 | # CONFIG_TIFM_CORE is not set |
| 435 | # CONFIG_ENCLOSURE_SERVICES is not set | 442 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 443 | # CONFIG_HP_ILO is not set | ||
| 436 | CONFIG_HAVE_IDE=y | 444 | CONFIG_HAVE_IDE=y |
| 437 | CONFIG_IDE=y | 445 | CONFIG_IDE=y |
| 438 | CONFIG_BLK_DEV_IDE=y | 446 | CONFIG_BLK_DEV_IDE=y |
| @@ -440,6 +448,7 @@ CONFIG_BLK_DEV_IDE=y | |||
| 440 | # | 448 | # |
| 441 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 449 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 442 | # | 450 | # |
| 451 | CONFIG_IDE_TIMINGS=y | ||
| 443 | # CONFIG_BLK_DEV_IDE_SATA is not set | 452 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 444 | CONFIG_BLK_DEV_IDEDISK=y | 453 | CONFIG_BLK_DEV_IDEDISK=y |
| 445 | CONFIG_IDEDISK_MULTI_MODE=y | 454 | CONFIG_IDEDISK_MULTI_MODE=y |
| @@ -454,7 +463,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 454 | # | 463 | # |
| 455 | # IDE chipset support/bugfixes | 464 | # IDE chipset support/bugfixes |
| 456 | # | 465 | # |
| 457 | CONFIG_IDE_GENERIC=y | ||
| 458 | # CONFIG_BLK_DEV_PLATFORM is not set | 466 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 459 | CONFIG_BLK_DEV_IDEDMA_SFF=y | 467 | CONFIG_BLK_DEV_IDEDMA_SFF=y |
| 460 | 468 | ||
| @@ -472,10 +480,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 472 | # CONFIG_BLK_DEV_AMD74XX is not set | 480 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 473 | # CONFIG_BLK_DEV_CMD64X is not set | 481 | # CONFIG_BLK_DEV_CMD64X is not set |
| 474 | # CONFIG_BLK_DEV_TRIFLEX is not set | 482 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 475 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 476 | # CONFIG_BLK_DEV_CS5520 is not set | 483 | # CONFIG_BLK_DEV_CS5520 is not set |
| 477 | # CONFIG_BLK_DEV_CS5530 is not set | 484 | # CONFIG_BLK_DEV_CS5530 is not set |
| 478 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 479 | # CONFIG_BLK_DEV_HPT366 is not set | 485 | # CONFIG_BLK_DEV_HPT366 is not set |
| 480 | # CONFIG_BLK_DEV_JMICRON is not set | 486 | # CONFIG_BLK_DEV_JMICRON is not set |
| 481 | # CONFIG_BLK_DEV_SC1200 is not set | 487 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -493,8 +499,6 @@ CONFIG_BLK_DEV_SL82C105=y | |||
| 493 | CONFIG_BLK_DEV_VIA82CXXX=y | 499 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 494 | # CONFIG_BLK_DEV_TC86C001 is not set | 500 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 495 | CONFIG_BLK_DEV_IDEDMA=y | 501 | CONFIG_BLK_DEV_IDEDMA=y |
| 496 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 497 | # CONFIG_BLK_DEV_HD is not set | ||
| 498 | 502 | ||
| 499 | # | 503 | # |
| 500 | # SCSI device support | 504 | # SCSI device support |
| @@ -588,6 +592,7 @@ CONFIG_SCSI_SYM53C8XX_MMIO=y | |||
| 588 | # CONFIG_SCSI_NSP32 is not set | 592 | # CONFIG_SCSI_NSP32 is not set |
| 589 | # CONFIG_SCSI_DEBUG is not set | 593 | # CONFIG_SCSI_DEBUG is not set |
| 590 | # CONFIG_SCSI_SRP is not set | 594 | # CONFIG_SCSI_SRP is not set |
| 595 | # CONFIG_SCSI_DH is not set | ||
| 591 | # CONFIG_ATA is not set | 596 | # CONFIG_ATA is not set |
| 592 | # CONFIG_MD is not set | 597 | # CONFIG_MD is not set |
| 593 | # CONFIG_FUSION is not set | 598 | # CONFIG_FUSION is not set |
| @@ -595,12 +600,15 @@ CONFIG_SCSI_SYM53C8XX_MMIO=y | |||
| 595 | # | 600 | # |
| 596 | # IEEE 1394 (FireWire) support | 601 | # IEEE 1394 (FireWire) support |
| 597 | # | 602 | # |
| 603 | |||
| 604 | # | ||
| 605 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 606 | # | ||
| 598 | # CONFIG_FIREWIRE is not set | 607 | # CONFIG_FIREWIRE is not set |
| 599 | # CONFIG_IEEE1394 is not set | 608 | # CONFIG_IEEE1394 is not set |
| 600 | # CONFIG_I2O is not set | 609 | # CONFIG_I2O is not set |
| 601 | # CONFIG_MACINTOSH_DRIVERS is not set | 610 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 602 | CONFIG_NETDEVICES=y | 611 | CONFIG_NETDEVICES=y |
| 603 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 604 | # CONFIG_DUMMY is not set | 612 | # CONFIG_DUMMY is not set |
| 605 | # CONFIG_BONDING is not set | 613 | # CONFIG_BONDING is not set |
| 606 | # CONFIG_MACVLAN is not set | 614 | # CONFIG_MACVLAN is not set |
| @@ -660,14 +668,12 @@ CONFIG_8139TOO=y | |||
| 660 | # CONFIG_TLAN is not set | 668 | # CONFIG_TLAN is not set |
| 661 | CONFIG_VIA_RHINE=y | 669 | CONFIG_VIA_RHINE=y |
| 662 | # CONFIG_VIA_RHINE_MMIO is not set | 670 | # CONFIG_VIA_RHINE_MMIO is not set |
| 663 | # CONFIG_VIA_RHINE_NAPI is not set | ||
| 664 | # CONFIG_SC92031 is not set | 671 | # CONFIG_SC92031 is not set |
| 665 | CONFIG_NETDEV_1000=y | 672 | CONFIG_NETDEV_1000=y |
| 666 | # CONFIG_ACENIC is not set | 673 | # CONFIG_ACENIC is not set |
| 667 | # CONFIG_DL2K is not set | 674 | # CONFIG_DL2K is not set |
| 668 | # CONFIG_E1000 is not set | 675 | # CONFIG_E1000 is not set |
| 669 | # CONFIG_E1000E is not set | 676 | # CONFIG_E1000E is not set |
| 670 | # CONFIG_E1000E_ENABLED is not set | ||
| 671 | # CONFIG_IP1000 is not set | 677 | # CONFIG_IP1000 is not set |
| 672 | # CONFIG_IGB is not set | 678 | # CONFIG_IGB is not set |
| 673 | # CONFIG_NS83820 is not set | 679 | # CONFIG_NS83820 is not set |
| @@ -683,6 +689,7 @@ CONFIG_NETDEV_1000=y | |||
| 683 | CONFIG_MV643XX_ETH=y | 689 | CONFIG_MV643XX_ETH=y |
| 684 | # CONFIG_QLA3XXX is not set | 690 | # CONFIG_QLA3XXX is not set |
| 685 | # CONFIG_ATL1 is not set | 691 | # CONFIG_ATL1 is not set |
| 692 | # CONFIG_ATL1E is not set | ||
| 686 | CONFIG_NETDEV_10000=y | 693 | CONFIG_NETDEV_10000=y |
| 687 | # CONFIG_CHELSIO_T1 is not set | 694 | # CONFIG_CHELSIO_T1 is not set |
| 688 | # CONFIG_CHELSIO_T3 is not set | 695 | # CONFIG_CHELSIO_T3 is not set |
| @@ -773,6 +780,7 @@ CONFIG_MOUSE_PS2_TRACKPOINT=y | |||
| 773 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 780 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| 774 | # CONFIG_MOUSE_SERIAL is not set | 781 | # CONFIG_MOUSE_SERIAL is not set |
| 775 | # CONFIG_MOUSE_APPLETOUCH is not set | 782 | # CONFIG_MOUSE_APPLETOUCH is not set |
| 783 | # CONFIG_MOUSE_BCM5974 is not set | ||
| 776 | # CONFIG_MOUSE_INPORT is not set | 784 | # CONFIG_MOUSE_INPORT is not set |
| 777 | # CONFIG_MOUSE_LOGIBM is not set | 785 | # CONFIG_MOUSE_LOGIBM is not set |
| 778 | # CONFIG_MOUSE_PC110PAD is not set | 786 | # CONFIG_MOUSE_PC110PAD is not set |
| @@ -798,12 +806,14 @@ CONFIG_SERIO_SERPORT=y | |||
| 798 | # CONFIG_SERIO_PCIPS2 is not set | 806 | # CONFIG_SERIO_PCIPS2 is not set |
| 799 | CONFIG_SERIO_LIBPS2=y | 807 | CONFIG_SERIO_LIBPS2=y |
| 800 | # CONFIG_SERIO_RAW is not set | 808 | # CONFIG_SERIO_RAW is not set |
| 809 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 801 | # CONFIG_GAMEPORT is not set | 810 | # CONFIG_GAMEPORT is not set |
| 802 | 811 | ||
| 803 | # | 812 | # |
| 804 | # Character devices | 813 | # Character devices |
| 805 | # | 814 | # |
| 806 | CONFIG_VT=y | 815 | CONFIG_VT=y |
| 816 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 807 | CONFIG_VT_CONSOLE=y | 817 | CONFIG_VT_CONSOLE=y |
| 808 | CONFIG_HW_CONSOLE=y | 818 | CONFIG_HW_CONSOLE=y |
| 809 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 819 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -848,46 +858,71 @@ CONFIG_DEVPORT=y | |||
| 848 | CONFIG_I2C=y | 858 | CONFIG_I2C=y |
| 849 | CONFIG_I2C_BOARDINFO=y | 859 | CONFIG_I2C_BOARDINFO=y |
| 850 | # CONFIG_I2C_CHARDEV is not set | 860 | # CONFIG_I2C_CHARDEV is not set |
| 861 | CONFIG_I2C_HELPER_AUTO=y | ||
| 851 | CONFIG_I2C_ALGOBIT=y | 862 | CONFIG_I2C_ALGOBIT=y |
| 852 | 863 | ||
| 853 | # | 864 | # |
| 854 | # I2C Hardware Bus support | 865 | # I2C Hardware Bus support |
| 855 | # | 866 | # |
| 867 | |||
| 868 | # | ||
| 869 | # PC SMBus host controller drivers | ||
| 870 | # | ||
| 856 | # CONFIG_I2C_ALI1535 is not set | 871 | # CONFIG_I2C_ALI1535 is not set |
| 857 | # CONFIG_I2C_ALI1563 is not set | 872 | # CONFIG_I2C_ALI1563 is not set |
| 858 | # CONFIG_I2C_ALI15X3 is not set | 873 | # CONFIG_I2C_ALI15X3 is not set |
| 859 | # CONFIG_I2C_AMD756 is not set | 874 | # CONFIG_I2C_AMD756 is not set |
| 860 | # CONFIG_I2C_AMD8111 is not set | 875 | # CONFIG_I2C_AMD8111 is not set |
| 861 | # CONFIG_I2C_HYDRA is not set | ||
| 862 | # CONFIG_I2C_I801 is not set | 876 | # CONFIG_I2C_I801 is not set |
| 863 | # CONFIG_I2C_I810 is not set | 877 | # CONFIG_I2C_ISCH is not set |
| 864 | # CONFIG_I2C_PIIX4 is not set | 878 | # CONFIG_I2C_PIIX4 is not set |
| 865 | # CONFIG_I2C_MPC is not set | ||
| 866 | # CONFIG_I2C_NFORCE2 is not set | 879 | # CONFIG_I2C_NFORCE2 is not set |
| 867 | # CONFIG_I2C_OCORES is not set | ||
| 868 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 869 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 870 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 871 | # CONFIG_I2C_SIMTEC is not set | ||
| 872 | # CONFIG_I2C_SIS5595 is not set | 880 | # CONFIG_I2C_SIS5595 is not set |
| 873 | # CONFIG_I2C_SIS630 is not set | 881 | # CONFIG_I2C_SIS630 is not set |
| 874 | # CONFIG_I2C_SIS96X is not set | 882 | # CONFIG_I2C_SIS96X is not set |
| 875 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 876 | # CONFIG_I2C_STUB is not set | ||
| 877 | # CONFIG_I2C_TINY_USB is not set | ||
| 878 | # CONFIG_I2C_VIA is not set | 883 | # CONFIG_I2C_VIA is not set |
| 879 | # CONFIG_I2C_VIAPRO is not set | 884 | # CONFIG_I2C_VIAPRO is not set |
| 885 | |||
| 886 | # | ||
| 887 | # Mac SMBus host controller drivers | ||
| 888 | # | ||
| 889 | # CONFIG_I2C_HYDRA is not set | ||
| 890 | |||
| 891 | # | ||
| 892 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 893 | # | ||
| 894 | # CONFIG_I2C_MPC is not set | ||
| 895 | # CONFIG_I2C_OCORES is not set | ||
| 896 | # CONFIG_I2C_SIMTEC is not set | ||
| 897 | |||
| 898 | # | ||
| 899 | # External I2C/SMBus adapter drivers | ||
| 900 | # | ||
| 901 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 902 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 903 | # CONFIG_I2C_TINY_USB is not set | ||
| 904 | |||
| 905 | # | ||
| 906 | # Graphics adapter I2C/DDC channel drivers | ||
| 907 | # | ||
| 880 | # CONFIG_I2C_VOODOO3 is not set | 908 | # CONFIG_I2C_VOODOO3 is not set |
| 909 | |||
| 910 | # | ||
| 911 | # Other I2C/SMBus bus drivers | ||
| 912 | # | ||
| 881 | # CONFIG_I2C_PCA_ISA is not set | 913 | # CONFIG_I2C_PCA_ISA is not set |
| 882 | # CONFIG_I2C_PCA_PLATFORM is not set | 914 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 915 | # CONFIG_I2C_STUB is not set | ||
| 883 | 916 | ||
| 884 | # | 917 | # |
| 885 | # Miscellaneous I2C Chip support | 918 | # Miscellaneous I2C Chip support |
| 886 | # | 919 | # |
| 887 | # CONFIG_DS1682 is not set | 920 | # CONFIG_DS1682 is not set |
| 921 | # CONFIG_AT24 is not set | ||
| 888 | # CONFIG_SENSORS_EEPROM is not set | 922 | # CONFIG_SENSORS_EEPROM is not set |
| 889 | # CONFIG_SENSORS_PCF8574 is not set | 923 | # CONFIG_SENSORS_PCF8574 is not set |
| 890 | # CONFIG_PCF8575 is not set | 924 | # CONFIG_PCF8575 is not set |
| 925 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 891 | # CONFIG_SENSORS_PCF8591 is not set | 926 | # CONFIG_SENSORS_PCF8591 is not set |
| 892 | # CONFIG_SENSORS_MAX6875 is not set | 927 | # CONFIG_SENSORS_MAX6875 is not set |
| 893 | # CONFIG_SENSORS_TSL2550 is not set | 928 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -896,10 +931,13 @@ CONFIG_I2C_ALGOBIT=y | |||
| 896 | # CONFIG_I2C_DEBUG_BUS is not set | 931 | # CONFIG_I2C_DEBUG_BUS is not set |
| 897 | # CONFIG_I2C_DEBUG_CHIP is not set | 932 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 898 | # CONFIG_SPI is not set | 933 | # CONFIG_SPI is not set |
| 934 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 935 | # CONFIG_GPIOLIB is not set | ||
| 899 | # CONFIG_W1 is not set | 936 | # CONFIG_W1 is not set |
| 900 | # CONFIG_POWER_SUPPLY is not set | 937 | # CONFIG_POWER_SUPPLY is not set |
| 901 | # CONFIG_HWMON is not set | 938 | # CONFIG_HWMON is not set |
| 902 | # CONFIG_THERMAL is not set | 939 | # CONFIG_THERMAL is not set |
| 940 | # CONFIG_THERMAL_HWMON is not set | ||
| 903 | # CONFIG_WATCHDOG is not set | 941 | # CONFIG_WATCHDOG is not set |
| 904 | 942 | ||
| 905 | # | 943 | # |
| @@ -911,8 +949,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 911 | # | 949 | # |
| 912 | # Multifunction device drivers | 950 | # Multifunction device drivers |
| 913 | # | 951 | # |
| 952 | # CONFIG_MFD_CORE is not set | ||
| 914 | # CONFIG_MFD_SM501 is not set | 953 | # CONFIG_MFD_SM501 is not set |
| 915 | # CONFIG_HTC_PASIC3 is not set | 954 | # CONFIG_HTC_PASIC3 is not set |
| 955 | # CONFIG_MFD_TMIO is not set | ||
| 916 | 956 | ||
| 917 | # | 957 | # |
| 918 | # Multimedia devices | 958 | # Multimedia devices |
| @@ -997,10 +1037,13 @@ CONFIG_FB_3DFX=y | |||
| 997 | # CONFIG_FB_TRIDENT is not set | 1037 | # CONFIG_FB_TRIDENT is not set |
| 998 | # CONFIG_FB_ARK is not set | 1038 | # CONFIG_FB_ARK is not set |
| 999 | # CONFIG_FB_PM3 is not set | 1039 | # CONFIG_FB_PM3 is not set |
| 1040 | # CONFIG_FB_CARMINE is not set | ||
| 1000 | # CONFIG_FB_IBM_GXT4500 is not set | 1041 | # CONFIG_FB_IBM_GXT4500 is not set |
| 1001 | # CONFIG_FB_VIRTUAL is not set | 1042 | # CONFIG_FB_VIRTUAL is not set |
| 1002 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 1043 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
| 1003 | CONFIG_LCD_CLASS_DEVICE=m | 1044 | CONFIG_LCD_CLASS_DEVICE=m |
| 1045 | # CONFIG_LCD_ILI9320 is not set | ||
| 1046 | # CONFIG_LCD_PLATFORM is not set | ||
| 1004 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 1047 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
| 1005 | # CONFIG_BACKLIGHT_CORGI is not set | 1048 | # CONFIG_BACKLIGHT_CORGI is not set |
| 1006 | 1049 | ||
| @@ -1030,10 +1073,6 @@ CONFIG_LOGO=y | |||
| 1030 | CONFIG_LOGO_LINUX_MONO=y | 1073 | CONFIG_LOGO_LINUX_MONO=y |
| 1031 | CONFIG_LOGO_LINUX_VGA16=y | 1074 | CONFIG_LOGO_LINUX_VGA16=y |
| 1032 | CONFIG_LOGO_LINUX_CLUT224=y | 1075 | CONFIG_LOGO_LINUX_CLUT224=y |
| 1033 | |||
| 1034 | # | ||
| 1035 | # Sound | ||
| 1036 | # | ||
| 1037 | # CONFIG_SOUND is not set | 1076 | # CONFIG_SOUND is not set |
| 1038 | CONFIG_HID_SUPPORT=y | 1077 | CONFIG_HID_SUPPORT=y |
| 1039 | CONFIG_HID=y | 1078 | CONFIG_HID=y |
| @@ -1062,6 +1101,7 @@ CONFIG_USB_DEVICEFS=y | |||
| 1062 | CONFIG_USB_DEVICE_CLASS=y | 1101 | CONFIG_USB_DEVICE_CLASS=y |
| 1063 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1102 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1064 | # CONFIG_USB_OTG is not set | 1103 | # CONFIG_USB_OTG is not set |
| 1104 | CONFIG_USB_MON=y | ||
| 1065 | 1105 | ||
| 1066 | # | 1106 | # |
| 1067 | # USB Host Controller Drivers | 1107 | # USB Host Controller Drivers |
| @@ -1087,6 +1127,7 @@ CONFIG_USB_UHCI_HCD=y | |||
| 1087 | # | 1127 | # |
| 1088 | # CONFIG_USB_ACM is not set | 1128 | # CONFIG_USB_ACM is not set |
| 1089 | # CONFIG_USB_PRINTER is not set | 1129 | # CONFIG_USB_PRINTER is not set |
| 1130 | # CONFIG_USB_WDM is not set | ||
| 1090 | 1131 | ||
| 1091 | # | 1132 | # |
| 1092 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1133 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1108,6 +1149,7 @@ CONFIG_USB_STORAGE=m | |||
| 1108 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1149 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1109 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1150 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1110 | # CONFIG_USB_STORAGE_KARMA is not set | 1151 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1152 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1111 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1153 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1112 | # CONFIG_USB_LIBUSUAL is not set | 1154 | # CONFIG_USB_LIBUSUAL is not set |
| 1113 | 1155 | ||
| @@ -1116,7 +1158,6 @@ CONFIG_USB_STORAGE=m | |||
| 1116 | # | 1158 | # |
| 1117 | # CONFIG_USB_MDC800 is not set | 1159 | # CONFIG_USB_MDC800 is not set |
| 1118 | # CONFIG_USB_MICROTEK is not set | 1160 | # CONFIG_USB_MICROTEK is not set |
| 1119 | CONFIG_USB_MON=y | ||
| 1120 | 1161 | ||
| 1121 | # | 1162 | # |
| 1122 | # USB port drivers | 1163 | # USB port drivers |
| @@ -1129,7 +1170,6 @@ CONFIG_USB_MON=y | |||
| 1129 | # CONFIG_USB_EMI62 is not set | 1170 | # CONFIG_USB_EMI62 is not set |
| 1130 | # CONFIG_USB_EMI26 is not set | 1171 | # CONFIG_USB_EMI26 is not set |
| 1131 | # CONFIG_USB_ADUTUX is not set | 1172 | # CONFIG_USB_ADUTUX is not set |
| 1132 | # CONFIG_USB_AUERSWALD is not set | ||
| 1133 | # CONFIG_USB_RIO500 is not set | 1173 | # CONFIG_USB_RIO500 is not set |
| 1134 | # CONFIG_USB_LEGOTOWER is not set | 1174 | # CONFIG_USB_LEGOTOWER is not set |
| 1135 | # CONFIG_USB_LCD is not set | 1175 | # CONFIG_USB_LCD is not set |
| @@ -1146,6 +1186,7 @@ CONFIG_USB_MON=y | |||
| 1146 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1186 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1147 | # CONFIG_USB_IOWARRIOR is not set | 1187 | # CONFIG_USB_IOWARRIOR is not set |
| 1148 | # CONFIG_USB_TEST is not set | 1188 | # CONFIG_USB_TEST is not set |
| 1189 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1149 | # CONFIG_USB_GADGET is not set | 1190 | # CONFIG_USB_GADGET is not set |
| 1150 | # CONFIG_MMC is not set | 1191 | # CONFIG_MMC is not set |
| 1151 | # CONFIG_MEMSTICK is not set | 1192 | # CONFIG_MEMSTICK is not set |
| @@ -1226,6 +1267,7 @@ CONFIG_TMPFS=y | |||
| 1226 | # CONFIG_CRAMFS is not set | 1267 | # CONFIG_CRAMFS is not set |
| 1227 | # CONFIG_VXFS_FS is not set | 1268 | # CONFIG_VXFS_FS is not set |
| 1228 | # CONFIG_MINIX_FS is not set | 1269 | # CONFIG_MINIX_FS is not set |
| 1270 | # CONFIG_OMFS_FS is not set | ||
| 1229 | # CONFIG_HPFS_FS is not set | 1271 | # CONFIG_HPFS_FS is not set |
| 1230 | # CONFIG_QNX4FS_FS is not set | 1272 | # CONFIG_QNX4FS_FS is not set |
| 1231 | # CONFIG_ROMFS_FS is not set | 1273 | # CONFIG_ROMFS_FS is not set |
| @@ -1310,6 +1352,7 @@ CONFIG_BITREVERSE=y | |||
| 1310 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1352 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1311 | CONFIG_CRC_CCITT=m | 1353 | CONFIG_CRC_CCITT=m |
| 1312 | # CONFIG_CRC16 is not set | 1354 | # CONFIG_CRC16 is not set |
| 1355 | CONFIG_CRC_T10DIF=y | ||
| 1313 | # CONFIG_CRC_ITU_T is not set | 1356 | # CONFIG_CRC_ITU_T is not set |
| 1314 | CONFIG_CRC32=y | 1357 | CONFIG_CRC32=y |
| 1315 | # CONFIG_CRC7 is not set | 1358 | # CONFIG_CRC7 is not set |
| @@ -1336,6 +1379,8 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 1336 | CONFIG_DEBUG_KERNEL=y | 1379 | CONFIG_DEBUG_KERNEL=y |
| 1337 | # CONFIG_DEBUG_SHIRQ is not set | 1380 | # CONFIG_DEBUG_SHIRQ is not set |
| 1338 | CONFIG_DETECT_SOFTLOCKUP=y | 1381 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1382 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1383 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1339 | CONFIG_SCHED_DEBUG=y | 1384 | CONFIG_SCHED_DEBUG=y |
| 1340 | # CONFIG_SCHEDSTATS is not set | 1385 | # CONFIG_SCHEDSTATS is not set |
| 1341 | # CONFIG_TIMER_STATS is not set | 1386 | # CONFIG_TIMER_STATS is not set |
| @@ -1354,20 +1399,32 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 1354 | # CONFIG_DEBUG_INFO is not set | 1399 | # CONFIG_DEBUG_INFO is not set |
| 1355 | # CONFIG_DEBUG_VM is not set | 1400 | # CONFIG_DEBUG_VM is not set |
| 1356 | # CONFIG_DEBUG_WRITECOUNT is not set | 1401 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1402 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 1357 | # CONFIG_DEBUG_LIST is not set | 1403 | # CONFIG_DEBUG_LIST is not set |
| 1358 | # CONFIG_DEBUG_SG is not set | 1404 | # CONFIG_DEBUG_SG is not set |
| 1359 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1405 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1360 | # CONFIG_RCU_TORTURE_TEST is not set | 1406 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1361 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1407 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1362 | # CONFIG_FAULT_INJECTION is not set | 1408 | # CONFIG_FAULT_INJECTION is not set |
| 1409 | # CONFIG_LATENCYTOP is not set | ||
| 1410 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1411 | CONFIG_HAVE_FTRACE=y | ||
| 1412 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1413 | # CONFIG_FTRACE is not set | ||
| 1414 | # CONFIG_SCHED_TRACER is not set | ||
| 1415 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1363 | # CONFIG_SAMPLES is not set | 1416 | # CONFIG_SAMPLES is not set |
| 1417 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1418 | # CONFIG_KGDB is not set | ||
| 1364 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1419 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1365 | # CONFIG_DEBUG_STACK_USAGE is not set | 1420 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1366 | # CONFIG_DEBUG_PAGEALLOC is not set | 1421 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1367 | CONFIG_DEBUGGER=y | 1422 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1423 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1368 | CONFIG_XMON=y | 1424 | CONFIG_XMON=y |
| 1369 | CONFIG_XMON_DEFAULT=y | 1425 | CONFIG_XMON_DEFAULT=y |
| 1370 | CONFIG_XMON_DISASSEMBLY=y | 1426 | CONFIG_XMON_DISASSEMBLY=y |
| 1427 | CONFIG_DEBUGGER=y | ||
| 1371 | CONFIG_IRQSTACKS=y | 1428 | CONFIG_IRQSTACKS=y |
| 1372 | # CONFIG_BDI_SWITCH is not set | 1429 | # CONFIG_BDI_SWITCH is not set |
| 1373 | # CONFIG_BOOTX_TEXT is not set | 1430 | # CONFIG_BOOTX_TEXT is not set |
| @@ -1424,6 +1481,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1424 | # CONFIG_CRYPTO_MD4 is not set | 1481 | # CONFIG_CRYPTO_MD4 is not set |
| 1425 | # CONFIG_CRYPTO_MD5 is not set | 1482 | # CONFIG_CRYPTO_MD5 is not set |
| 1426 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1483 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1484 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1485 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1486 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1487 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1427 | CONFIG_CRYPTO_SHA1=m | 1488 | CONFIG_CRYPTO_SHA1=m |
| 1428 | # CONFIG_CRYPTO_SHA256 is not set | 1489 | # CONFIG_CRYPTO_SHA256 is not set |
| 1429 | # CONFIG_CRYPTO_SHA512 is not set | 1490 | # CONFIG_CRYPTO_SHA512 is not set |
diff --git a/arch/powerpc/configs/ep8248e_defconfig b/arch/powerpc/configs/ep8248e_defconfig index ba2a463b9305..ef0c6e800508 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:09 2008 | 4 | # Thu Aug 21 00:52:03 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_6xx=y | |||
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_ALTIVEC is not set | ||
| 18 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
| 19 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
| 20 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -31,12 +32,14 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
| 33 | CONFIG_STACKTRACE_SUPPORT=y | 34 | CONFIG_STACKTRACE_SUPPORT=y |
| 35 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 34 | CONFIG_LOCKDEP_SUPPORT=y | 36 | CONFIG_LOCKDEP_SUPPORT=y |
| 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 36 | CONFIG_ARCH_HAS_ILOG2_U32=y | 38 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 37 | CONFIG_GENERIC_HWEIGHT=y | 39 | CONFIG_GENERIC_HWEIGHT=y |
| 38 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 40 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 39 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 41 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 42 | CONFIG_GENERIC_GPIO=y | ||
| 40 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 43 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
| 41 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
| 42 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
| @@ -45,11 +48,13 @@ CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | |||
| 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
| 46 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
| 47 | CONFIG_OF=y | 50 | CONFIG_OF=y |
| 48 | # CONFIG_PPC_UDBG_16550 is not set | 51 | CONFIG_PPC_UDBG_16550=y |
| 49 | # CONFIG_GENERIC_TBSYNC is not set | 52 | # CONFIG_GENERIC_TBSYNC is not set |
| 50 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 51 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 52 | # CONFIG_DEFAULT_UIMAGE is not set | 55 | # CONFIG_DEFAULT_UIMAGE is not set |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 53 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 54 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 55 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -81,7 +86,6 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 81 | CONFIG_SYSCTL=y | 86 | CONFIG_SYSCTL=y |
| 82 | CONFIG_EMBEDDED=y | 87 | CONFIG_EMBEDDED=y |
| 83 | CONFIG_SYSCTL_SYSCALL=y | 88 | CONFIG_SYSCTL_SYSCALL=y |
| 84 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 85 | CONFIG_KALLSYMS=y | 89 | CONFIG_KALLSYMS=y |
| 86 | CONFIG_KALLSYMS_ALL=y | 90 | CONFIG_KALLSYMS_ALL=y |
| 87 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 91 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -89,6 +93,7 @@ CONFIG_HOTPLUG=y | |||
| 89 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
| 90 | CONFIG_BUG=y | 94 | CONFIG_BUG=y |
| 91 | CONFIG_ELF_CORE=y | 95 | CONFIG_ELF_CORE=y |
| 96 | CONFIG_PCSPKR_PLATFORM=y | ||
| 92 | CONFIG_COMPAT_BRK=y | 97 | CONFIG_COMPAT_BRK=y |
| 93 | CONFIG_BASE_FULL=y | 98 | CONFIG_BASE_FULL=y |
| 94 | CONFIG_FUTEX=y | 99 | CONFIG_FUTEX=y |
| @@ -105,10 +110,16 @@ CONFIG_SLAB=y | |||
| 105 | # CONFIG_PROFILING is not set | 110 | # CONFIG_PROFILING is not set |
| 106 | # CONFIG_MARKERS is not set | 111 | # CONFIG_MARKERS is not set |
| 107 | CONFIG_HAVE_OPROFILE=y | 112 | CONFIG_HAVE_OPROFILE=y |
| 113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 114 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 108 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 109 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 110 | # CONFIG_HAVE_DMA_ATTRS is not set | 118 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 119 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 120 | CONFIG_HAVE_CLK=y | ||
| 111 | CONFIG_PROC_PAGE_MONITOR=y | 121 | CONFIG_PROC_PAGE_MONITOR=y |
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 112 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
| 113 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
| 114 | # CONFIG_TINY_SHMEM is not set | 125 | # CONFIG_TINY_SHMEM is not set |
| @@ -118,6 +129,7 @@ CONFIG_BLOCK=y | |||
| 118 | # CONFIG_LBD is not set | 129 | # CONFIG_LBD is not set |
| 119 | # CONFIG_BLK_DEV_IO_TRACE is not set | 130 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 120 | # CONFIG_LSF is not set | 131 | # CONFIG_LSF is not set |
| 132 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 121 | 133 | ||
| 122 | # | 134 | # |
| 123 | # IO Schedulers | 135 | # IO Schedulers |
| @@ -136,33 +148,43 @@ CONFIG_CLASSIC_RCU=y | |||
| 136 | # | 148 | # |
| 137 | # Platform support | 149 | # Platform support |
| 138 | # | 150 | # |
| 139 | # CONFIG_PPC_MULTIPLATFORM is not set | 151 | CONFIG_PPC_MULTIPLATFORM=y |
| 140 | CONFIG_PPC_82xx=y | 152 | CONFIG_CLASSIC32=y |
| 141 | # CONFIG_PPC_83xx is not set | 153 | CONFIG_PPC_CHRP=y |
| 142 | # CONFIG_PPC_86xx is not set | 154 | # CONFIG_MPC5121_ADS is not set |
| 143 | # CONFIG_PPC_MPC512x is not set | 155 | # CONFIG_MPC5121_GENERIC is not set |
| 144 | # CONFIG_PPC_MPC5121 is not set | 156 | # CONFIG_PPC_MPC52xx is not set |
| 157 | CONFIG_PPC_PMAC=y | ||
| 145 | # CONFIG_PPC_CELL is not set | 158 | # CONFIG_PPC_CELL is not set |
| 146 | # CONFIG_PPC_CELL_NATIVE is not set | 159 | # CONFIG_PPC_CELL_NATIVE is not set |
| 160 | CONFIG_PPC_82xx=y | ||
| 147 | # CONFIG_MPC8272_ADS is not set | 161 | # CONFIG_MPC8272_ADS is not set |
| 148 | # CONFIG_PQ2FADS is not set | 162 | # CONFIG_PQ2FADS is not set |
| 149 | CONFIG_EP8248E=y | 163 | CONFIG_EP8248E=y |
| 150 | # CONFIG_PQ2ADS is not set | 164 | # CONFIG_PQ2ADS is not set |
| 151 | CONFIG_8260=y | 165 | CONFIG_8260=y |
| 152 | CONFIG_8272=y | 166 | CONFIG_8272=y |
| 167 | # CONFIG_PPC_83xx is not set | ||
| 168 | # CONFIG_PPC_86xx is not set | ||
| 169 | # CONFIG_EMBEDDED6xx is not set | ||
| 170 | CONFIG_PPC_NATIVE=y | ||
| 171 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 153 | # CONFIG_IPIC is not set | 172 | # CONFIG_IPIC is not set |
| 154 | # CONFIG_MPIC is not set | 173 | CONFIG_MPIC=y |
| 155 | # CONFIG_MPIC_WEIRD is not set | 174 | # CONFIG_MPIC_WEIRD is not set |
| 156 | # CONFIG_PPC_I8259 is not set | 175 | CONFIG_PPC_I8259=y |
| 157 | # CONFIG_PPC_RTAS is not set | 176 | CONFIG_PPC_RTAS=y |
| 177 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 178 | CONFIG_RTAS_PROC=y | ||
| 158 | # CONFIG_MMIO_NVRAM is not set | 179 | # CONFIG_MMIO_NVRAM is not set |
| 159 | # CONFIG_PPC_MPC106 is not set | 180 | CONFIG_PPC_MPC106=y |
| 160 | # CONFIG_PPC_970_NAP is not set | 181 | # CONFIG_PPC_970_NAP is not set |
| 161 | # CONFIG_PPC_INDIRECT_IO is not set | 182 | # CONFIG_PPC_INDIRECT_IO is not set |
| 162 | # CONFIG_GENERIC_IOMAP is not set | 183 | # CONFIG_GENERIC_IOMAP is not set |
| 163 | # CONFIG_CPU_FREQ is not set | 184 | # CONFIG_CPU_FREQ is not set |
| 185 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 186 | # CONFIG_TAU is not set | ||
| 164 | CONFIG_CPM2=y | 187 | CONFIG_CPM2=y |
| 165 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 166 | # CONFIG_FSL_ULI1575 is not set | 188 | # CONFIG_FSL_ULI1575 is not set |
| 167 | CONFIG_CPM=y | 189 | CONFIG_CPM=y |
| 168 | 190 | ||
| @@ -197,6 +219,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 197 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 198 | CONFIG_PAGEFLAGS_EXTENDED=y | 220 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 199 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 222 | CONFIG_MIGRATION=y | ||
| 200 | # CONFIG_RESOURCES_64BIT is not set | 223 | # CONFIG_RESOURCES_64BIT is not set |
| 201 | CONFIG_ZONE_DMA_FLAG=1 | 224 | CONFIG_ZONE_DMA_FLAG=1 |
| 202 | CONFIG_BOUNCE=y | 225 | CONFIG_BOUNCE=y |
| @@ -204,6 +227,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 204 | CONFIG_FORCE_MAX_ZONEORDER=11 | 227 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 205 | CONFIG_PROC_DEVICETREE=y | 228 | CONFIG_PROC_DEVICETREE=y |
| 206 | # CONFIG_CMDLINE_BOOL is not set | 229 | # CONFIG_CMDLINE_BOOL is not set |
| 230 | CONFIG_EXTRA_TARGETS="" | ||
| 207 | # CONFIG_PM is not set | 231 | # CONFIG_PM is not set |
| 208 | # CONFIG_SECCOMP is not set | 232 | # CONFIG_SECCOMP is not set |
| 209 | CONFIG_ISA_DMA_API=y | 233 | CONFIG_ISA_DMA_API=y |
| @@ -211,13 +235,22 @@ CONFIG_ISA_DMA_API=y | |||
| 211 | # | 235 | # |
| 212 | # Bus options | 236 | # Bus options |
| 213 | # | 237 | # |
| 238 | # CONFIG_ISA is not set | ||
| 214 | CONFIG_ZONE_DMA=y | 239 | CONFIG_ZONE_DMA=y |
| 240 | CONFIG_PPC_INDIRECT_PCI=y | ||
| 215 | CONFIG_FSL_SOC=y | 241 | CONFIG_FSL_SOC=y |
| 216 | # CONFIG_PCI is not set | 242 | CONFIG_PPC_PCI_CHOICE=y |
| 217 | # CONFIG_PCI_DOMAINS is not set | 243 | CONFIG_PCI=y |
| 218 | # CONFIG_PCI_SYSCALL is not set | 244 | CONFIG_PCI_DOMAINS=y |
| 219 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 245 | CONFIG_PCI_SYSCALL=y |
| 246 | CONFIG_PCI_8260=y | ||
| 247 | # CONFIG_PCIEPORTBUS is not set | ||
| 248 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
| 249 | # CONFIG_PCI_MSI is not set | ||
| 250 | CONFIG_PCI_LEGACY=y | ||
| 251 | # CONFIG_PCI_DEBUG is not set | ||
| 220 | # CONFIG_PCCARD is not set | 252 | # CONFIG_PCCARD is not set |
| 253 | # CONFIG_HOTPLUG_PCI is not set | ||
| 221 | # CONFIG_HAS_RAPIDIO is not set | 254 | # CONFIG_HAS_RAPIDIO is not set |
| 222 | 255 | ||
| 223 | # | 256 | # |
| @@ -233,10 +266,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 233 | CONFIG_KERNEL_START=0xc0000000 | 266 | CONFIG_KERNEL_START=0xc0000000 |
| 234 | CONFIG_PHYSICAL_START=0x00000000 | 267 | CONFIG_PHYSICAL_START=0x00000000 |
| 235 | CONFIG_TASK_SIZE=0xc0000000 | 268 | CONFIG_TASK_SIZE=0xc0000000 |
| 236 | |||
| 237 | # | ||
| 238 | # Networking | ||
| 239 | # | ||
| 240 | CONFIG_NET=y | 269 | CONFIG_NET=y |
| 241 | 270 | ||
| 242 | # | 271 | # |
| @@ -410,11 +439,13 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 410 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 439 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 411 | # CONFIG_MTD_PHYSMAP is not set | 440 | # CONFIG_MTD_PHYSMAP is not set |
| 412 | CONFIG_MTD_PHYSMAP_OF=y | 441 | CONFIG_MTD_PHYSMAP_OF=y |
| 442 | # CONFIG_MTD_INTEL_VR_NOR is not set | ||
| 413 | # CONFIG_MTD_PLATRAM is not set | 443 | # CONFIG_MTD_PLATRAM is not set |
| 414 | 444 | ||
| 415 | # | 445 | # |
| 416 | # Self-contained MTD device drivers | 446 | # Self-contained MTD device drivers |
| 417 | # | 447 | # |
| 448 | # CONFIG_MTD_PMC551 is not set | ||
| 418 | # CONFIG_MTD_SLRAM is not set | 449 | # CONFIG_MTD_SLRAM is not set |
| 419 | # CONFIG_MTD_PHRAM is not set | 450 | # CONFIG_MTD_PHRAM is not set |
| 420 | # CONFIG_MTD_MTDRAM is not set | 451 | # CONFIG_MTD_MTDRAM is not set |
| @@ -434,16 +465,23 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 434 | # | 465 | # |
| 435 | # CONFIG_MTD_UBI is not set | 466 | # CONFIG_MTD_UBI is not set |
| 436 | CONFIG_OF_DEVICE=y | 467 | CONFIG_OF_DEVICE=y |
| 468 | CONFIG_OF_GPIO=y | ||
| 437 | # CONFIG_PARPORT is not set | 469 | # CONFIG_PARPORT is not set |
| 438 | CONFIG_BLK_DEV=y | 470 | CONFIG_BLK_DEV=y |
| 439 | # CONFIG_BLK_DEV_FD is not set | 471 | # CONFIG_BLK_DEV_FD is not set |
| 472 | # CONFIG_MAC_FLOPPY is not set | ||
| 473 | # CONFIG_BLK_CPQ_DA is not set | ||
| 474 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
| 475 | # CONFIG_BLK_DEV_DAC960 is not set | ||
| 440 | # CONFIG_BLK_DEV_COW_COMMON is not set | 476 | # CONFIG_BLK_DEV_COW_COMMON is not set |
| 441 | CONFIG_BLK_DEV_LOOP=y | 477 | CONFIG_BLK_DEV_LOOP=y |
| 442 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 478 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
| 443 | # CONFIG_BLK_DEV_NBD is not set | 479 | # CONFIG_BLK_DEV_NBD is not set |
| 480 | # CONFIG_BLK_DEV_SX8 is not set | ||
| 444 | # CONFIG_BLK_DEV_RAM is not set | 481 | # CONFIG_BLK_DEV_RAM is not set |
| 445 | # CONFIG_CDROM_PKTCDVD is not set | 482 | # CONFIG_CDROM_PKTCDVD is not set |
| 446 | # CONFIG_ATA_OVER_ETH is not set | 483 | # CONFIG_ATA_OVER_ETH is not set |
| 484 | # CONFIG_BLK_DEV_HD is not set | ||
| 447 | # CONFIG_MISC_DEVICES is not set | 485 | # CONFIG_MISC_DEVICES is not set |
| 448 | CONFIG_HAVE_IDE=y | 486 | CONFIG_HAVE_IDE=y |
| 449 | # CONFIG_IDE is not set | 487 | # CONFIG_IDE is not set |
| @@ -457,14 +495,25 @@ CONFIG_HAVE_IDE=y | |||
| 457 | # CONFIG_SCSI_NETLINK is not set | 495 | # CONFIG_SCSI_NETLINK is not set |
| 458 | # CONFIG_ATA is not set | 496 | # CONFIG_ATA is not set |
| 459 | # CONFIG_MD is not set | 497 | # CONFIG_MD is not set |
| 498 | # CONFIG_FUSION is not set | ||
| 499 | |||
| 500 | # | ||
| 501 | # IEEE 1394 (FireWire) support | ||
| 502 | # | ||
| 503 | |||
| 504 | # | ||
| 505 | # A new alternative FireWire stack is available with EXPERIMENTAL=y | ||
| 506 | # | ||
| 507 | # CONFIG_IEEE1394 is not set | ||
| 508 | # CONFIG_I2O is not set | ||
| 460 | # CONFIG_MACINTOSH_DRIVERS is not set | 509 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 461 | CONFIG_NETDEVICES=y | 510 | CONFIG_NETDEVICES=y |
| 462 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 463 | # CONFIG_DUMMY is not set | 511 | # CONFIG_DUMMY is not set |
| 464 | # CONFIG_BONDING is not set | 512 | # CONFIG_BONDING is not set |
| 465 | # CONFIG_EQUALIZER is not set | 513 | # CONFIG_EQUALIZER is not set |
| 466 | # CONFIG_TUN is not set | 514 | # CONFIG_TUN is not set |
| 467 | # CONFIG_VETH is not set | 515 | # CONFIG_VETH is not set |
| 516 | # CONFIG_ARCNET is not set | ||
| 468 | CONFIG_PHYLIB=y | 517 | CONFIG_PHYLIB=y |
| 469 | 518 | ||
| 470 | # | 519 | # |
| @@ -482,21 +531,59 @@ CONFIG_DAVICOM_PHY=y | |||
| 482 | # CONFIG_REALTEK_PHY is not set | 531 | # CONFIG_REALTEK_PHY is not set |
| 483 | # CONFIG_FIXED_PHY is not set | 532 | # CONFIG_FIXED_PHY is not set |
| 484 | CONFIG_MDIO_BITBANG=y | 533 | CONFIG_MDIO_BITBANG=y |
| 534 | # CONFIG_MDIO_OF_GPIO is not set | ||
| 485 | CONFIG_NET_ETHERNET=y | 535 | CONFIG_NET_ETHERNET=y |
| 486 | CONFIG_MII=y | 536 | CONFIG_MII=y |
| 537 | # CONFIG_MACE is not set | ||
| 538 | # CONFIG_BMAC is not set | ||
| 539 | # CONFIG_HAPPYMEAL is not set | ||
| 540 | # CONFIG_SUNGEM is not set | ||
| 541 | # CONFIG_CASSINI is not set | ||
| 542 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 543 | # CONFIG_NET_TULIP is not set | ||
| 544 | # CONFIG_HP100 is not set | ||
| 487 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 545 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 488 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 546 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 489 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 547 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| 490 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 548 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 549 | # CONFIG_NET_PCI is not set | ||
| 491 | # CONFIG_B44 is not set | 550 | # CONFIG_B44 is not set |
| 492 | CONFIG_FS_ENET=y | 551 | CONFIG_FS_ENET=y |
| 493 | # CONFIG_FS_ENET_HAS_SCC is not set | 552 | # CONFIG_FS_ENET_HAS_SCC is not set |
| 494 | CONFIG_FS_ENET_HAS_FCC=y | 553 | CONFIG_FS_ENET_HAS_FCC=y |
| 495 | # CONFIG_FS_ENET_MDIO_FCC is not set | 554 | # CONFIG_FS_ENET_MDIO_FCC is not set |
| 496 | CONFIG_NETDEV_1000=y | 555 | CONFIG_NETDEV_1000=y |
| 497 | # CONFIG_E1000E_ENABLED is not set | 556 | # CONFIG_ACENIC is not set |
| 557 | # CONFIG_DL2K is not set | ||
| 558 | # CONFIG_E1000 is not set | ||
| 559 | # CONFIG_E1000E is not set | ||
| 560 | # CONFIG_IGB is not set | ||
| 561 | # CONFIG_NS83820 is not set | ||
| 562 | # CONFIG_HAMACHI is not set | ||
| 563 | # CONFIG_R8169 is not set | ||
| 564 | # CONFIG_SIS190 is not set | ||
| 565 | # CONFIG_SKGE is not set | ||
| 566 | # CONFIG_SKY2 is not set | ||
| 567 | # CONFIG_VIA_VELOCITY is not set | ||
| 568 | # CONFIG_TIGON3 is not set | ||
| 569 | # CONFIG_BNX2 is not set | ||
| 498 | # CONFIG_GIANFAR is not set | 570 | # CONFIG_GIANFAR is not set |
| 571 | # CONFIG_MV643XX_ETH is not set | ||
| 572 | # CONFIG_QLA3XXX is not set | ||
| 499 | CONFIG_NETDEV_10000=y | 573 | CONFIG_NETDEV_10000=y |
| 574 | # CONFIG_CHELSIO_T1 is not set | ||
| 575 | # CONFIG_CHELSIO_T3 is not set | ||
| 576 | # CONFIG_IXGBE is not set | ||
| 577 | # CONFIG_IXGB is not set | ||
| 578 | # CONFIG_S2IO is not set | ||
| 579 | # CONFIG_MYRI10GE is not set | ||
| 580 | # CONFIG_NETXEN_NIC is not set | ||
| 581 | # CONFIG_NIU is not set | ||
| 582 | # CONFIG_MLX4_CORE is not set | ||
| 583 | # CONFIG_TEHUTI is not set | ||
| 584 | # CONFIG_BNX2X is not set | ||
| 585 | # CONFIG_SFC is not set | ||
| 586 | # CONFIG_TR is not set | ||
| 500 | 587 | ||
| 501 | # | 588 | # |
| 502 | # Wireless LAN | 589 | # Wireless LAN |
| @@ -505,6 +592,7 @@ CONFIG_NETDEV_10000=y | |||
| 505 | # CONFIG_WLAN_80211 is not set | 592 | # CONFIG_WLAN_80211 is not set |
| 506 | # CONFIG_IWLWIFI_LEDS is not set | 593 | # CONFIG_IWLWIFI_LEDS is not set |
| 507 | # CONFIG_WAN is not set | 594 | # CONFIG_WAN is not set |
| 595 | # CONFIG_FDDI is not set | ||
| 508 | # CONFIG_PPP is not set | 596 | # CONFIG_PPP is not set |
| 509 | # CONFIG_SLIP is not set | 597 | # CONFIG_SLIP is not set |
| 510 | # CONFIG_NETPOLL is not set | 598 | # CONFIG_NETPOLL is not set |
| @@ -541,6 +629,7 @@ CONFIG_DEVKMEM=y | |||
| 541 | # CONFIG_SERIAL_UARTLITE is not set | 629 | # CONFIG_SERIAL_UARTLITE is not set |
| 542 | CONFIG_SERIAL_CORE=y | 630 | CONFIG_SERIAL_CORE=y |
| 543 | CONFIG_SERIAL_CORE_CONSOLE=y | 631 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 632 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 544 | CONFIG_SERIAL_CPM=y | 633 | CONFIG_SERIAL_CPM=y |
| 545 | CONFIG_SERIAL_CPM_CONSOLE=y | 634 | CONFIG_SERIAL_CPM_CONSOLE=y |
| 546 | CONFIG_SERIAL_CPM_SCC1=y | 635 | CONFIG_SERIAL_CPM_SCC1=y |
| @@ -549,21 +638,44 @@ CONFIG_SERIAL_CPM_SCC1=y | |||
| 549 | CONFIG_SERIAL_CPM_SCC4=y | 638 | CONFIG_SERIAL_CPM_SCC4=y |
| 550 | # CONFIG_SERIAL_CPM_SMC1 is not set | 639 | # CONFIG_SERIAL_CPM_SMC1 is not set |
| 551 | # CONFIG_SERIAL_CPM_SMC2 is not set | 640 | # CONFIG_SERIAL_CPM_SMC2 is not set |
| 641 | # CONFIG_SERIAL_JSM is not set | ||
| 552 | CONFIG_UNIX98_PTYS=y | 642 | CONFIG_UNIX98_PTYS=y |
| 553 | CONFIG_LEGACY_PTYS=y | 643 | CONFIG_LEGACY_PTYS=y |
| 554 | CONFIG_LEGACY_PTY_COUNT=256 | 644 | CONFIG_LEGACY_PTY_COUNT=256 |
| 645 | # CONFIG_BRIQ_PANEL is not set | ||
| 646 | # CONFIG_HVC_RTAS is not set | ||
| 555 | # CONFIG_IPMI_HANDLER is not set | 647 | # CONFIG_IPMI_HANDLER is not set |
| 556 | CONFIG_HW_RANDOM=y | 648 | CONFIG_HW_RANDOM=y |
| 557 | # CONFIG_NVRAM is not set | 649 | # CONFIG_NVRAM is not set |
| 558 | # CONFIG_GEN_RTC is not set | 650 | # CONFIG_GEN_RTC is not set |
| 559 | # CONFIG_R3964 is not set | 651 | # CONFIG_R3964 is not set |
| 652 | # CONFIG_APPLICOM is not set | ||
| 560 | # CONFIG_RAW_DRIVER is not set | 653 | # CONFIG_RAW_DRIVER is not set |
| 654 | CONFIG_DEVPORT=y | ||
| 561 | # CONFIG_I2C is not set | 655 | # CONFIG_I2C is not set |
| 562 | # CONFIG_SPI is not set | 656 | # CONFIG_SPI is not set |
| 657 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 658 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | ||
| 659 | CONFIG_GPIOLIB=y | ||
| 660 | # CONFIG_DEBUG_GPIO is not set | ||
| 661 | |||
| 662 | # | ||
| 663 | # I2C GPIO expanders: | ||
| 664 | # | ||
| 665 | |||
| 666 | # | ||
| 667 | # PCI GPIO expanders: | ||
| 668 | # | ||
| 669 | # CONFIG_GPIO_BT8XX is not set | ||
| 670 | |||
| 671 | # | ||
| 672 | # SPI GPIO expanders: | ||
| 673 | # | ||
| 563 | # CONFIG_W1 is not set | 674 | # CONFIG_W1 is not set |
| 564 | # CONFIG_POWER_SUPPLY is not set | 675 | # CONFIG_POWER_SUPPLY is not set |
| 565 | # CONFIG_HWMON is not set | 676 | # CONFIG_HWMON is not set |
| 566 | # CONFIG_THERMAL is not set | 677 | # CONFIG_THERMAL is not set |
| 678 | # CONFIG_THERMAL_HWMON is not set | ||
| 567 | # CONFIG_WATCHDOG is not set | 679 | # CONFIG_WATCHDOG is not set |
| 568 | 680 | ||
| 569 | # | 681 | # |
| @@ -575,8 +687,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 575 | # | 687 | # |
| 576 | # Multifunction device drivers | 688 | # Multifunction device drivers |
| 577 | # | 689 | # |
| 690 | # CONFIG_MFD_CORE is not set | ||
| 578 | # CONFIG_MFD_SM501 is not set | 691 | # CONFIG_MFD_SM501 is not set |
| 579 | # CONFIG_HTC_PASIC3 is not set | 692 | # CONFIG_HTC_PASIC3 is not set |
| 693 | # CONFIG_MFD_TMIO is not set | ||
| 580 | 694 | ||
| 581 | # | 695 | # |
| 582 | # Multimedia devices | 696 | # Multimedia devices |
| @@ -597,6 +711,8 @@ CONFIG_DAB=y | |||
| 597 | # | 711 | # |
| 598 | # Graphics support | 712 | # Graphics support |
| 599 | # | 713 | # |
| 714 | # CONFIG_AGP is not set | ||
| 715 | # CONFIG_DRM is not set | ||
| 600 | # CONFIG_VGASTATE is not set | 716 | # CONFIG_VGASTATE is not set |
| 601 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | 717 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set |
| 602 | # CONFIG_FB is not set | 718 | # CONFIG_FB is not set |
| @@ -606,16 +722,13 @@ CONFIG_DAB=y | |||
| 606 | # Display device support | 722 | # Display device support |
| 607 | # | 723 | # |
| 608 | # CONFIG_DISPLAY_SUPPORT is not set | 724 | # CONFIG_DISPLAY_SUPPORT is not set |
| 609 | |||
| 610 | # | ||
| 611 | # Sound | ||
| 612 | # | ||
| 613 | # CONFIG_SOUND is not set | 725 | # CONFIG_SOUND is not set |
| 614 | # CONFIG_USB_SUPPORT is not set | 726 | # CONFIG_USB_SUPPORT is not set |
| 615 | # CONFIG_MMC is not set | 727 | # CONFIG_MMC is not set |
| 616 | # CONFIG_MEMSTICK is not set | 728 | # CONFIG_MEMSTICK is not set |
| 617 | # CONFIG_NEW_LEDS is not set | 729 | # CONFIG_NEW_LEDS is not set |
| 618 | # CONFIG_ACCESSIBILITY is not set | 730 | # CONFIG_ACCESSIBILITY is not set |
| 731 | # CONFIG_INFINIBAND is not set | ||
| 619 | # CONFIG_RTC_CLASS is not set | 732 | # CONFIG_RTC_CLASS is not set |
| 620 | # CONFIG_DMADEVICES is not set | 733 | # CONFIG_DMADEVICES is not set |
| 621 | # CONFIG_UIO is not set | 734 | # CONFIG_UIO is not set |
| @@ -675,6 +788,7 @@ CONFIG_TMPFS=y | |||
| 675 | CONFIG_CRAMFS=y | 788 | CONFIG_CRAMFS=y |
| 676 | # CONFIG_VXFS_FS is not set | 789 | # CONFIG_VXFS_FS is not set |
| 677 | # CONFIG_MINIX_FS is not set | 790 | # CONFIG_MINIX_FS is not set |
| 791 | # CONFIG_OMFS_FS is not set | ||
| 678 | # CONFIG_HPFS_FS is not set | 792 | # CONFIG_HPFS_FS is not set |
| 679 | # CONFIG_QNX4FS_FS is not set | 793 | # CONFIG_QNX4FS_FS is not set |
| 680 | # CONFIG_ROMFS_FS is not set | 794 | # CONFIG_ROMFS_FS is not set |
| @@ -684,8 +798,8 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 684 | CONFIG_NFS_FS=y | 798 | CONFIG_NFS_FS=y |
| 685 | CONFIG_NFS_V3=y | 799 | CONFIG_NFS_V3=y |
| 686 | # CONFIG_NFS_V3_ACL is not set | 800 | # CONFIG_NFS_V3_ACL is not set |
| 687 | # CONFIG_NFSD is not set | ||
| 688 | CONFIG_ROOT_NFS=y | 801 | CONFIG_ROOT_NFS=y |
| 802 | # CONFIG_NFSD is not set | ||
| 689 | CONFIG_LOCKD=y | 803 | CONFIG_LOCKD=y |
| 690 | CONFIG_LOCKD_V4=y | 804 | CONFIG_LOCKD_V4=y |
| 691 | CONFIG_NFS_COMMON=y | 805 | CONFIG_NFS_COMMON=y |
| @@ -763,6 +877,7 @@ CONFIG_NLS_UTF8=y | |||
| 763 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 877 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 764 | # CONFIG_CRC_CCITT is not set | 878 | # CONFIG_CRC_CCITT is not set |
| 765 | # CONFIG_CRC16 is not set | 879 | # CONFIG_CRC16 is not set |
| 880 | # CONFIG_CRC_T10DIF is not set | ||
| 766 | # CONFIG_CRC_ITU_T is not set | 881 | # CONFIG_CRC_ITU_T is not set |
| 767 | # CONFIG_CRC32 is not set | 882 | # CONFIG_CRC32 is not set |
| 768 | # CONFIG_CRC7 is not set | 883 | # CONFIG_CRC7 is not set |
| @@ -804,19 +919,31 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 804 | CONFIG_DEBUG_INFO=y | 919 | CONFIG_DEBUG_INFO=y |
| 805 | # CONFIG_DEBUG_VM is not set | 920 | # CONFIG_DEBUG_VM is not set |
| 806 | # CONFIG_DEBUG_WRITECOUNT is not set | 921 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 922 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 807 | # CONFIG_DEBUG_LIST is not set | 923 | # CONFIG_DEBUG_LIST is not set |
| 808 | # CONFIG_DEBUG_SG is not set | 924 | # CONFIG_DEBUG_SG is not set |
| 809 | # CONFIG_BOOT_PRINTK_DELAY is not set | 925 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 926 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 810 | # CONFIG_BACKTRACE_SELF_TEST is not set | 927 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 811 | # CONFIG_FAULT_INJECTION is not set | 928 | # CONFIG_FAULT_INJECTION is not set |
| 929 | # CONFIG_LATENCYTOP is not set | ||
| 930 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 931 | CONFIG_HAVE_FTRACE=y | ||
| 932 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 933 | # CONFIG_FTRACE is not set | ||
| 934 | # CONFIG_SCHED_TRACER is not set | ||
| 935 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 812 | # CONFIG_SAMPLES is not set | 936 | # CONFIG_SAMPLES is not set |
| 937 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 813 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 938 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 814 | # CONFIG_DEBUG_STACK_USAGE is not set | 939 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 815 | # CONFIG_DEBUG_PAGEALLOC is not set | 940 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 816 | # CONFIG_DEBUGGER is not set | 941 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 817 | # CONFIG_KGDB_CONSOLE is not set | 942 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 943 | # CONFIG_XMON is not set | ||
| 818 | # CONFIG_IRQSTACKS is not set | 944 | # CONFIG_IRQSTACKS is not set |
| 819 | CONFIG_BDI_SWITCH=y | 945 | CONFIG_BDI_SWITCH=y |
| 946 | # CONFIG_BOOTX_TEXT is not set | ||
| 820 | # CONFIG_PPC_EARLY_DEBUG is not set | 947 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 821 | 948 | ||
| 822 | # | 949 | # |
| @@ -824,6 +951,7 @@ CONFIG_BDI_SWITCH=y | |||
| 824 | # | 951 | # |
| 825 | # CONFIG_KEYS is not set | 952 | # CONFIG_KEYS is not set |
| 826 | # CONFIG_SECURITY is not set | 953 | # CONFIG_SECURITY is not set |
| 954 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
| 827 | CONFIG_CRYPTO=y | 955 | CONFIG_CRYPTO=y |
| 828 | 956 | ||
| 829 | # | 957 | # |
| @@ -864,6 +992,10 @@ CONFIG_CRYPTO_PCBC=y | |||
| 864 | # CONFIG_CRYPTO_MD4 is not set | 992 | # CONFIG_CRYPTO_MD4 is not set |
| 865 | CONFIG_CRYPTO_MD5=y | 993 | CONFIG_CRYPTO_MD5=y |
| 866 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 994 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 995 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 996 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 997 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 998 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 867 | # CONFIG_CRYPTO_SHA1 is not set | 999 | # CONFIG_CRYPTO_SHA1 is not set |
| 868 | # CONFIG_CRYPTO_SHA256 is not set | 1000 | # CONFIG_CRYPTO_SHA256 is not set |
| 869 | # CONFIG_CRYPTO_SHA512 is not set | 1001 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -894,6 +1026,6 @@ CONFIG_CRYPTO_DES=y | |||
| 894 | # CONFIG_CRYPTO_DEFLATE is not set | 1026 | # CONFIG_CRYPTO_DEFLATE is not set |
| 895 | # CONFIG_CRYPTO_LZO is not set | 1027 | # CONFIG_CRYPTO_LZO is not set |
| 896 | # CONFIG_CRYPTO_HW is not set | 1028 | # CONFIG_CRYPTO_HW is not set |
| 897 | # CONFIG_PPC_CLOCK is not set | 1029 | CONFIG_PPC_CLOCK=y |
| 898 | CONFIG_PPC_LIB_RHEAP=y | 1030 | CONFIG_PPC_LIB_RHEAP=y |
| 899 | # CONFIG_VIRTUALIZATION is not set | 1031 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/ep88xc_defconfig b/arch/powerpc/configs/ep88xc_defconfig index ac72b48542dc..480225be2f39 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:09 2008 | 4 | # Thu Aug 21 00:52:04 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -29,6 +29,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 30 | CONFIG_IRQ_PER_CPU=y | 30 | CONFIG_IRQ_PER_CPU=y |
| 31 | CONFIG_STACKTRACE_SUPPORT=y | 31 | CONFIG_STACKTRACE_SUPPORT=y |
| 32 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 32 | CONFIG_LOCKDEP_SUPPORT=y | 33 | CONFIG_LOCKDEP_SUPPORT=y |
| 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -108,10 +109,16 @@ CONFIG_SLUB=y | |||
| 108 | # CONFIG_PROFILING is not set | 109 | # CONFIG_PROFILING is not set |
| 109 | # CONFIG_MARKERS is not set | 110 | # CONFIG_MARKERS is not set |
| 110 | CONFIG_HAVE_OPROFILE=y | 111 | CONFIG_HAVE_OPROFILE=y |
| 112 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 113 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 111 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
| 112 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
| 116 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 113 | # CONFIG_HAVE_DMA_ATTRS is not set | 117 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 118 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 119 | CONFIG_HAVE_CLK=y | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 120 | CONFIG_PROC_PAGE_MONITOR=y |
| 121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 115 | CONFIG_SLABINFO=y | 122 | CONFIG_SLABINFO=y |
| 116 | # CONFIG_TINY_SHMEM is not set | 123 | # CONFIG_TINY_SHMEM is not set |
| 117 | CONFIG_BASE_SMALL=1 | 124 | CONFIG_BASE_SMALL=1 |
| @@ -121,6 +128,7 @@ CONFIG_BLOCK=y | |||
| 121 | # CONFIG_BLK_DEV_IO_TRACE is not set | 128 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 122 | # CONFIG_LSF is not set | 129 | # CONFIG_LSF is not set |
| 123 | # CONFIG_BLK_DEV_BSG is not set | 130 | # CONFIG_BLK_DEV_BSG is not set |
| 131 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 124 | 132 | ||
| 125 | # | 133 | # |
| 126 | # IO Schedulers | 134 | # IO Schedulers |
| @@ -139,8 +147,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 139 | # | 147 | # |
| 140 | # Platform support | 148 | # Platform support |
| 141 | # | 149 | # |
| 142 | # CONFIG_PPC_MPC512x is not set | ||
| 143 | # CONFIG_PPC_MPC5121 is not set | ||
| 144 | # CONFIG_PPC_CELL is not set | 150 | # CONFIG_PPC_CELL is not set |
| 145 | # CONFIG_PPC_CELL_NATIVE is not set | 151 | # CONFIG_PPC_CELL_NATIVE is not set |
| 146 | CONFIG_CPM1=y | 152 | CONFIG_CPM1=y |
| @@ -158,6 +164,7 @@ CONFIG_PPC_EP88XC=y | |||
| 158 | # Generic MPC8xx Options | 164 | # Generic MPC8xx Options |
| 159 | # | 165 | # |
| 160 | CONFIG_8xx_COPYBACK=y | 166 | CONFIG_8xx_COPYBACK=y |
| 167 | # CONFIG_8xx_GPIO is not set | ||
| 161 | # CONFIG_8xx_CPU6 is not set | 168 | # CONFIG_8xx_CPU6 is not set |
| 162 | CONFIG_8xx_CPU15=y | 169 | CONFIG_8xx_CPU15=y |
| 163 | CONFIG_NO_UCODE_PATCH=y | 170 | CONFIG_NO_UCODE_PATCH=y |
| @@ -176,7 +183,6 @@ CONFIG_NO_UCODE_PATCH=y | |||
| 176 | # CONFIG_PPC_INDIRECT_IO is not set | 183 | # CONFIG_PPC_INDIRECT_IO is not set |
| 177 | # CONFIG_GENERIC_IOMAP is not set | 184 | # CONFIG_GENERIC_IOMAP is not set |
| 178 | # CONFIG_CPU_FREQ is not set | 185 | # CONFIG_CPU_FREQ is not set |
| 179 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 180 | # CONFIG_FSL_ULI1575 is not set | 186 | # CONFIG_FSL_ULI1575 is not set |
| 181 | CONFIG_CPM=y | 187 | CONFIG_CPM=y |
| 182 | 188 | ||
| @@ -193,7 +199,7 @@ CONFIG_HZ_100=y | |||
| 193 | # CONFIG_HZ_300 is not set | 199 | # CONFIG_HZ_300 is not set |
| 194 | # CONFIG_HZ_1000 is not set | 200 | # CONFIG_HZ_1000 is not set |
| 195 | CONFIG_HZ=100 | 201 | CONFIG_HZ=100 |
| 196 | # CONFIG_SCHED_HRTICK is not set | 202 | CONFIG_SCHED_HRTICK=y |
| 197 | CONFIG_PREEMPT_NONE=y | 203 | CONFIG_PREEMPT_NONE=y |
| 198 | # CONFIG_PREEMPT_VOLUNTARY is not set | 204 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 199 | # CONFIG_PREEMPT is not set | 205 | # CONFIG_PREEMPT is not set |
| @@ -217,6 +223,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 223 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | 224 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 225 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 226 | CONFIG_MIGRATION=y | ||
| 220 | # CONFIG_RESOURCES_64BIT is not set | 227 | # CONFIG_RESOURCES_64BIT is not set |
| 221 | CONFIG_ZONE_DMA_FLAG=1 | 228 | CONFIG_ZONE_DMA_FLAG=1 |
| 222 | CONFIG_BOUNCE=y | 229 | CONFIG_BOUNCE=y |
| @@ -224,6 +231,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | 231 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 225 | CONFIG_PROC_DEVICETREE=y | 232 | CONFIG_PROC_DEVICETREE=y |
| 226 | # CONFIG_CMDLINE_BOOL is not set | 233 | # CONFIG_CMDLINE_BOOL is not set |
| 234 | CONFIG_EXTRA_TARGETS="" | ||
| 227 | # CONFIG_PM is not set | 235 | # CONFIG_PM is not set |
| 228 | # CONFIG_SECCOMP is not set | 236 | # CONFIG_SECCOMP is not set |
| 229 | CONFIG_ISA_DMA_API=y | 237 | CONFIG_ISA_DMA_API=y |
| @@ -256,10 +264,6 @@ CONFIG_PHYSICAL_START=0x00000000 | |||
| 256 | CONFIG_TASK_SIZE=0x80000000 | 264 | CONFIG_TASK_SIZE=0x80000000 |
| 257 | CONFIG_CONSISTENT_START=0xfd000000 | 265 | CONFIG_CONSISTENT_START=0xfd000000 |
| 258 | CONFIG_CONSISTENT_SIZE=0x00200000 | 266 | CONFIG_CONSISTENT_SIZE=0x00200000 |
| 259 | |||
| 260 | # | ||
| 261 | # Networking | ||
| 262 | # | ||
| 263 | CONFIG_NET=y | 267 | CONFIG_NET=y |
| 264 | 268 | ||
| 265 | # | 269 | # |
| @@ -442,7 +446,6 @@ CONFIG_HAVE_IDE=y | |||
| 442 | # CONFIG_MD is not set | 446 | # CONFIG_MD is not set |
| 443 | # CONFIG_MACINTOSH_DRIVERS is not set | 447 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 444 | CONFIG_NETDEVICES=y | 448 | CONFIG_NETDEVICES=y |
| 445 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 446 | # CONFIG_DUMMY is not set | 449 | # CONFIG_DUMMY is not set |
| 447 | # CONFIG_BONDING is not set | 450 | # CONFIG_BONDING is not set |
| 448 | # CONFIG_MACVLAN is not set | 451 | # CONFIG_MACVLAN is not set |
| @@ -544,10 +547,13 @@ CONFIG_GEN_RTC=y | |||
| 544 | # CONFIG_TCG_TPM is not set | 547 | # CONFIG_TCG_TPM is not set |
| 545 | # CONFIG_I2C is not set | 548 | # CONFIG_I2C is not set |
| 546 | # CONFIG_SPI is not set | 549 | # CONFIG_SPI is not set |
| 550 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 551 | # CONFIG_GPIOLIB is not set | ||
| 547 | # CONFIG_W1 is not set | 552 | # CONFIG_W1 is not set |
| 548 | # CONFIG_POWER_SUPPLY is not set | 553 | # CONFIG_POWER_SUPPLY is not set |
| 549 | # CONFIG_HWMON is not set | 554 | # CONFIG_HWMON is not set |
| 550 | # CONFIG_THERMAL is not set | 555 | # CONFIG_THERMAL is not set |
| 556 | # CONFIG_THERMAL_HWMON is not set | ||
| 551 | # CONFIG_WATCHDOG is not set | 557 | # CONFIG_WATCHDOG is not set |
| 552 | 558 | ||
| 553 | # | 559 | # |
| @@ -559,8 +565,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 559 | # | 565 | # |
| 560 | # Multifunction device drivers | 566 | # Multifunction device drivers |
| 561 | # | 567 | # |
| 568 | # CONFIG_MFD_CORE is not set | ||
| 562 | # CONFIG_MFD_SM501 is not set | 569 | # CONFIG_MFD_SM501 is not set |
| 563 | # CONFIG_HTC_PASIC3 is not set | 570 | # CONFIG_HTC_PASIC3 is not set |
| 571 | # CONFIG_MFD_TMIO is not set | ||
| 564 | 572 | ||
| 565 | # | 573 | # |
| 566 | # Multimedia devices | 574 | # Multimedia devices |
| @@ -590,10 +598,6 @@ CONFIG_DAB=y | |||
| 590 | # Display device support | 598 | # Display device support |
| 591 | # | 599 | # |
| 592 | # CONFIG_DISPLAY_SUPPORT is not set | 600 | # CONFIG_DISPLAY_SUPPORT is not set |
| 593 | |||
| 594 | # | ||
| 595 | # Sound | ||
| 596 | # | ||
| 597 | # CONFIG_SOUND is not set | 601 | # CONFIG_SOUND is not set |
| 598 | # CONFIG_USB_SUPPORT is not set | 602 | # CONFIG_USB_SUPPORT is not set |
| 599 | # CONFIG_MMC is not set | 603 | # CONFIG_MMC is not set |
| @@ -662,6 +666,7 @@ CONFIG_TMPFS=y | |||
| 662 | CONFIG_CRAMFS=y | 666 | CONFIG_CRAMFS=y |
| 663 | # CONFIG_VXFS_FS is not set | 667 | # CONFIG_VXFS_FS is not set |
| 664 | # CONFIG_MINIX_FS is not set | 668 | # CONFIG_MINIX_FS is not set |
| 669 | # CONFIG_OMFS_FS is not set | ||
| 665 | # CONFIG_HPFS_FS is not set | 670 | # CONFIG_HPFS_FS is not set |
| 666 | # CONFIG_QNX4FS_FS is not set | 671 | # CONFIG_QNX4FS_FS is not set |
| 667 | # CONFIG_ROMFS_FS is not set | 672 | # CONFIG_ROMFS_FS is not set |
| @@ -672,13 +677,12 @@ CONFIG_NFS_FS=y | |||
| 672 | CONFIG_NFS_V3=y | 677 | CONFIG_NFS_V3=y |
| 673 | # CONFIG_NFS_V3_ACL is not set | 678 | # CONFIG_NFS_V3_ACL is not set |
| 674 | # CONFIG_NFS_V4 is not set | 679 | # CONFIG_NFS_V4 is not set |
| 675 | # CONFIG_NFSD is not set | ||
| 676 | CONFIG_ROOT_NFS=y | 680 | CONFIG_ROOT_NFS=y |
| 681 | # CONFIG_NFSD is not set | ||
| 677 | CONFIG_LOCKD=y | 682 | CONFIG_LOCKD=y |
| 678 | CONFIG_LOCKD_V4=y | 683 | CONFIG_LOCKD_V4=y |
| 679 | CONFIG_NFS_COMMON=y | 684 | CONFIG_NFS_COMMON=y |
| 680 | CONFIG_SUNRPC=y | 685 | CONFIG_SUNRPC=y |
| 681 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 682 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 686 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 683 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 687 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 684 | # CONFIG_SMB_FS is not set | 688 | # CONFIG_SMB_FS is not set |
| @@ -717,6 +721,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 717 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 721 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 718 | # CONFIG_CRC_CCITT is not set | 722 | # CONFIG_CRC_CCITT is not set |
| 719 | # CONFIG_CRC16 is not set | 723 | # CONFIG_CRC16 is not set |
| 724 | # CONFIG_CRC_T10DIF is not set | ||
| 720 | # CONFIG_CRC_ITU_T is not set | 725 | # CONFIG_CRC_ITU_T is not set |
| 721 | # CONFIG_CRC32 is not set | 726 | # CONFIG_CRC32 is not set |
| 722 | # CONFIG_CRC7 is not set | 727 | # CONFIG_CRC7 is not set |
| @@ -741,6 +746,8 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 741 | CONFIG_DEBUG_KERNEL=y | 746 | CONFIG_DEBUG_KERNEL=y |
| 742 | # CONFIG_DEBUG_SHIRQ is not set | 747 | # CONFIG_DEBUG_SHIRQ is not set |
| 743 | CONFIG_DETECT_SOFTLOCKUP=y | 748 | CONFIG_DETECT_SOFTLOCKUP=y |
| 749 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 750 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 744 | CONFIG_SCHED_DEBUG=y | 751 | CONFIG_SCHED_DEBUG=y |
| 745 | # CONFIG_SCHEDSTATS is not set | 752 | # CONFIG_SCHEDSTATS is not set |
| 746 | # CONFIG_TIMER_STATS is not set | 753 | # CONFIG_TIMER_STATS is not set |
| @@ -756,16 +763,28 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 756 | CONFIG_DEBUG_INFO=y | 763 | CONFIG_DEBUG_INFO=y |
| 757 | # CONFIG_DEBUG_VM is not set | 764 | # CONFIG_DEBUG_VM is not set |
| 758 | # CONFIG_DEBUG_WRITECOUNT is not set | 765 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 766 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 759 | # CONFIG_DEBUG_LIST is not set | 767 | # CONFIG_DEBUG_LIST is not set |
| 760 | # CONFIG_DEBUG_SG is not set | 768 | # CONFIG_DEBUG_SG is not set |
| 761 | # CONFIG_BOOT_PRINTK_DELAY is not set | 769 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 770 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 762 | # CONFIG_BACKTRACE_SELF_TEST is not set | 771 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 763 | # CONFIG_FAULT_INJECTION is not set | 772 | # CONFIG_FAULT_INJECTION is not set |
| 773 | # CONFIG_LATENCYTOP is not set | ||
| 774 | CONFIG_HAVE_FTRACE=y | ||
| 775 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 776 | # CONFIG_FTRACE is not set | ||
| 777 | # CONFIG_SCHED_TRACER is not set | ||
| 778 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 764 | # CONFIG_SAMPLES is not set | 779 | # CONFIG_SAMPLES is not set |
| 780 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 781 | # CONFIG_KGDB is not set | ||
| 765 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 782 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 766 | # CONFIG_DEBUG_STACK_USAGE is not set | 783 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 767 | # CONFIG_DEBUG_PAGEALLOC is not set | 784 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 768 | # CONFIG_DEBUGGER is not set | 785 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 786 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 787 | # CONFIG_XMON is not set | ||
| 769 | # CONFIG_IRQSTACKS is not set | 788 | # CONFIG_IRQSTACKS is not set |
| 770 | # CONFIG_BDI_SWITCH is not set | 789 | # CONFIG_BDI_SWITCH is not set |
| 771 | # CONFIG_PPC_EARLY_DEBUG is not set | 790 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -777,6 +796,6 @@ CONFIG_DEBUG_INFO=y | |||
| 777 | # CONFIG_SECURITY is not set | 796 | # CONFIG_SECURITY is not set |
| 778 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 797 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 779 | # CONFIG_CRYPTO is not set | 798 | # CONFIG_CRYPTO is not set |
| 780 | # CONFIG_PPC_CLOCK is not set | 799 | CONFIG_PPC_CLOCK=y |
| 781 | CONFIG_PPC_LIB_RHEAP=y | 800 | CONFIG_PPC_LIB_RHEAP=y |
| 782 | # CONFIG_VIRTUALIZATION is not set | 801 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/g5_defconfig b/arch/powerpc/configs/g5_defconfig index 0ccc6e493dcb..cfa5d053ee5e 100644 --- a/arch/powerpc/configs/g5_defconfig +++ b/arch/powerpc/configs/g5_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.26-rc6 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 16 21:08:31 2008 | 4 | # Tue Aug 26 13:15:06 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
| 7 | 7 | ||
| @@ -13,6 +13,7 @@ CONFIG_POWER4=y | |||
| 13 | # CONFIG_TUNE_CELL is not set | 13 | # CONFIG_TUNE_CELL is not set |
| 14 | CONFIG_PPC_FPU=y | 14 | CONFIG_PPC_FPU=y |
| 15 | CONFIG_ALTIVEC=y | 15 | CONFIG_ALTIVEC=y |
| 16 | # CONFIG_VSX is not set | ||
| 16 | CONFIG_PPC_STD_MMU=y | 17 | CONFIG_PPC_STD_MMU=y |
| 17 | CONFIG_PPC_MM_SLICES=y | 18 | CONFIG_PPC_MM_SLICES=y |
| 18 | CONFIG_VIRT_CPU_ACCOUNTING=y | 19 | CONFIG_VIRT_CPU_ACCOUNTING=y |
| @@ -30,6 +31,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 30 | CONFIG_HAVE_SETUP_PER_CPU_AREA=y | 31 | CONFIG_HAVE_SETUP_PER_CPU_AREA=y |
| 31 | CONFIG_IRQ_PER_CPU=y | 32 | CONFIG_IRQ_PER_CPU=y |
| 32 | CONFIG_STACKTRACE_SUPPORT=y | 33 | CONFIG_STACKTRACE_SUPPORT=y |
| 34 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 33 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 35 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
| 34 | CONFIG_LOCKDEP_SUPPORT=y | 36 | CONFIG_LOCKDEP_SUPPORT=y |
| 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| @@ -94,9 +96,8 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 94 | CONFIG_SYSCTL=y | 96 | CONFIG_SYSCTL=y |
| 95 | # CONFIG_EMBEDDED is not set | 97 | # CONFIG_EMBEDDED is not set |
| 96 | CONFIG_SYSCTL_SYSCALL=y | 98 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 98 | CONFIG_KALLSYMS=y | 99 | CONFIG_KALLSYMS=y |
| 99 | # CONFIG_KALLSYMS_ALL is not set | 100 | CONFIG_KALLSYMS_ALL=y |
| 100 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 101 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 101 | CONFIG_HOTPLUG=y | 102 | CONFIG_HOTPLUG=y |
| 102 | CONFIG_PRINTK=y | 103 | CONFIG_PRINTK=y |
| @@ -121,10 +122,16 @@ CONFIG_PROFILING=y | |||
| 121 | CONFIG_OPROFILE=y | 122 | CONFIG_OPROFILE=y |
| 122 | CONFIG_HAVE_OPROFILE=y | 123 | CONFIG_HAVE_OPROFILE=y |
| 123 | # CONFIG_KPROBES is not set | 124 | # CONFIG_KPROBES is not set |
| 125 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 126 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 124 | CONFIG_HAVE_KPROBES=y | 127 | CONFIG_HAVE_KPROBES=y |
| 125 | CONFIG_HAVE_KRETPROBES=y | 128 | CONFIG_HAVE_KRETPROBES=y |
| 126 | # CONFIG_HAVE_DMA_ATTRS is not set | 129 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 130 | CONFIG_HAVE_DMA_ATTRS=y | ||
| 131 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
| 132 | # CONFIG_HAVE_CLK is not set | ||
| 127 | CONFIG_PROC_PAGE_MONITOR=y | 133 | CONFIG_PROC_PAGE_MONITOR=y |
| 134 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 128 | CONFIG_SLABINFO=y | 135 | CONFIG_SLABINFO=y |
| 129 | CONFIG_RT_MUTEXES=y | 136 | CONFIG_RT_MUTEXES=y |
| 130 | # CONFIG_TINY_SHMEM is not set | 137 | # CONFIG_TINY_SHMEM is not set |
| @@ -140,6 +147,7 @@ CONFIG_STOP_MACHINE=y | |||
| 140 | CONFIG_BLOCK=y | 147 | CONFIG_BLOCK=y |
| 141 | # CONFIG_BLK_DEV_IO_TRACE is not set | 148 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 142 | CONFIG_BLK_DEV_BSG=y | 149 | CONFIG_BLK_DEV_BSG=y |
| 150 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 143 | CONFIG_BLOCK_COMPAT=y | 151 | CONFIG_BLOCK_COMPAT=y |
| 144 | 152 | ||
| 145 | # | 153 | # |
| @@ -160,13 +168,8 @@ CONFIG_CLASSIC_RCU=y | |||
| 160 | # Platform support | 168 | # Platform support |
| 161 | # | 169 | # |
| 162 | CONFIG_PPC_MULTIPLATFORM=y | 170 | CONFIG_PPC_MULTIPLATFORM=y |
| 163 | # CONFIG_PPC_82xx is not set | ||
| 164 | # CONFIG_PPC_83xx is not set | ||
| 165 | # CONFIG_PPC_86xx is not set | ||
| 166 | # CONFIG_PPC_PSERIES is not set | 171 | # CONFIG_PPC_PSERIES is not set |
| 167 | # CONFIG_PPC_ISERIES is not set | 172 | # CONFIG_PPC_ISERIES is not set |
| 168 | # CONFIG_PPC_MPC512x is not set | ||
| 169 | # CONFIG_PPC_MPC5121 is not set | ||
| 170 | CONFIG_PPC_PMAC=y | 173 | CONFIG_PPC_PMAC=y |
| 171 | CONFIG_PPC_PMAC64=y | 174 | CONFIG_PPC_PMAC64=y |
| 172 | # CONFIG_PPC_MAPLE is not set | 175 | # CONFIG_PPC_MAPLE is not set |
| @@ -224,7 +227,7 @@ CONFIG_HZ_250=y | |||
| 224 | # CONFIG_HZ_300 is not set | 227 | # CONFIG_HZ_300 is not set |
| 225 | # CONFIG_HZ_1000 is not set | 228 | # CONFIG_HZ_1000 is not set |
| 226 | CONFIG_HZ=250 | 229 | CONFIG_HZ=250 |
| 227 | # CONFIG_SCHED_HRTICK is not set | 230 | CONFIG_SCHED_HRTICK=y |
| 228 | CONFIG_PREEMPT_NONE=y | 231 | CONFIG_PREEMPT_NONE=y |
| 229 | # CONFIG_PREEMPT_VOLUNTARY is not set | 232 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 230 | # CONFIG_PREEMPT is not set | 233 | # CONFIG_PREEMPT is not set |
| @@ -256,6 +259,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 256 | CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y | 259 | CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y |
| 257 | CONFIG_PAGEFLAGS_EXTENDED=y | 260 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 258 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 261 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 262 | # CONFIG_MIGRATION is not set | ||
| 259 | CONFIG_RESOURCES_64BIT=y | 263 | CONFIG_RESOURCES_64BIT=y |
| 260 | CONFIG_ZONE_DMA_FLAG=1 | 264 | CONFIG_ZONE_DMA_FLAG=1 |
| 261 | CONFIG_BOUNCE=y | 265 | CONFIG_BOUNCE=y |
| @@ -265,6 +269,7 @@ CONFIG_FORCE_MAX_ZONEORDER=13 | |||
| 265 | # CONFIG_SCHED_SMT is not set | 269 | # CONFIG_SCHED_SMT is not set |
| 266 | CONFIG_PROC_DEVICETREE=y | 270 | CONFIG_PROC_DEVICETREE=y |
| 267 | # CONFIG_CMDLINE_BOOL is not set | 271 | # CONFIG_CMDLINE_BOOL is not set |
| 272 | CONFIG_EXTRA_TARGETS="" | ||
| 268 | CONFIG_ARCH_WANTS_FREEZER_CONTROL=y | 273 | CONFIG_ARCH_WANTS_FREEZER_CONTROL=y |
| 269 | # CONFIG_PM is not set | 274 | # CONFIG_PM is not set |
| 270 | CONFIG_SECCOMP=y | 275 | CONFIG_SECCOMP=y |
| @@ -290,10 +295,6 @@ CONFIG_PCI_MSI=y | |||
| 290 | CONFIG_PAGE_OFFSET=0xc000000000000000 | 295 | CONFIG_PAGE_OFFSET=0xc000000000000000 |
| 291 | CONFIG_KERNEL_START=0xc000000000000000 | 296 | CONFIG_KERNEL_START=0xc000000000000000 |
| 292 | CONFIG_PHYSICAL_START=0x00000000 | 297 | CONFIG_PHYSICAL_START=0x00000000 |
| 293 | |||
| 294 | # | ||
| 295 | # Networking | ||
| 296 | # | ||
| 297 | CONFIG_NET=y | 298 | CONFIG_NET=y |
| 298 | 299 | ||
| 299 | # | 300 | # |
| @@ -307,6 +308,7 @@ CONFIG_XFRM_USER=m | |||
| 307 | # CONFIG_XFRM_SUB_POLICY is not set | 308 | # CONFIG_XFRM_SUB_POLICY is not set |
| 308 | # CONFIG_XFRM_MIGRATE is not set | 309 | # CONFIG_XFRM_MIGRATE is not set |
| 309 | # CONFIG_XFRM_STATISTICS is not set | 310 | # CONFIG_XFRM_STATISTICS is not set |
| 311 | CONFIG_XFRM_IPCOMP=m | ||
| 310 | CONFIG_NET_KEY=m | 312 | CONFIG_NET_KEY=m |
| 311 | # CONFIG_NET_KEY_MIGRATE is not set | 313 | # CONFIG_NET_KEY_MIGRATE is not set |
| 312 | CONFIG_INET=y | 314 | CONFIG_INET=y |
| @@ -422,6 +424,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 422 | CONFIG_STANDALONE=y | 424 | CONFIG_STANDALONE=y |
| 423 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 425 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 424 | CONFIG_FW_LOADER=y | 426 | CONFIG_FW_LOADER=y |
| 427 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 428 | CONFIG_EXTRA_FIRMWARE="" | ||
| 425 | # CONFIG_DEBUG_DRIVER is not set | 429 | # CONFIG_DEBUG_DRIVER is not set |
| 426 | # CONFIG_DEBUG_DEVRES is not set | 430 | # CONFIG_DEBUG_DEVRES is not set |
| 427 | # CONFIG_SYS_HYPERVISOR is not set | 431 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -449,12 +453,14 @@ CONFIG_CDROM_PKTCDVD=m | |||
| 449 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 | 453 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 |
| 450 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set | 454 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set |
| 451 | # CONFIG_ATA_OVER_ETH is not set | 455 | # CONFIG_ATA_OVER_ETH is not set |
| 456 | # CONFIG_BLK_DEV_HD is not set | ||
| 452 | CONFIG_MISC_DEVICES=y | 457 | CONFIG_MISC_DEVICES=y |
| 453 | # CONFIG_PHANTOM is not set | 458 | # CONFIG_PHANTOM is not set |
| 454 | # CONFIG_EEPROM_93CX6 is not set | 459 | # CONFIG_EEPROM_93CX6 is not set |
| 455 | # CONFIG_SGI_IOC4 is not set | 460 | # CONFIG_SGI_IOC4 is not set |
| 456 | # CONFIG_TIFM_CORE is not set | 461 | # CONFIG_TIFM_CORE is not set |
| 457 | # CONFIG_ENCLOSURE_SERVICES is not set | 462 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 463 | # CONFIG_HP_ILO is not set | ||
| 458 | CONFIG_HAVE_IDE=y | 464 | CONFIG_HAVE_IDE=y |
| 459 | CONFIG_IDE=y | 465 | CONFIG_IDE=y |
| 460 | CONFIG_BLK_DEV_IDE=y | 466 | CONFIG_BLK_DEV_IDE=y |
| @@ -462,6 +468,7 @@ CONFIG_BLK_DEV_IDE=y | |||
| 462 | # | 468 | # |
| 463 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 469 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 464 | # | 470 | # |
| 471 | CONFIG_IDE_TIMINGS=y | ||
| 465 | # CONFIG_BLK_DEV_IDE_SATA is not set | 472 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 466 | CONFIG_BLK_DEV_IDEDISK=y | 473 | CONFIG_BLK_DEV_IDEDISK=y |
| 467 | # CONFIG_IDEDISK_MULTI_MODE is not set | 474 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| @@ -492,10 +499,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 492 | # CONFIG_BLK_DEV_AMD74XX is not set | 499 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 493 | # CONFIG_BLK_DEV_CMD64X is not set | 500 | # CONFIG_BLK_DEV_CMD64X is not set |
| 494 | # CONFIG_BLK_DEV_TRIFLEX is not set | 501 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 495 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 496 | # CONFIG_BLK_DEV_CS5520 is not set | 502 | # CONFIG_BLK_DEV_CS5520 is not set |
| 497 | # CONFIG_BLK_DEV_CS5530 is not set | 503 | # CONFIG_BLK_DEV_CS5530 is not set |
| 498 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 499 | # CONFIG_BLK_DEV_HPT366 is not set | 504 | # CONFIG_BLK_DEV_HPT366 is not set |
| 500 | # CONFIG_BLK_DEV_JMICRON is not set | 505 | # CONFIG_BLK_DEV_JMICRON is not set |
| 501 | # CONFIG_BLK_DEV_SC1200 is not set | 506 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -516,8 +521,6 @@ CONFIG_BLK_DEV_IDE_PMAC=y | |||
| 516 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y | 521 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y |
| 517 | CONFIG_BLK_DEV_IDEDMA_PMAC=y | 522 | CONFIG_BLK_DEV_IDEDMA_PMAC=y |
| 518 | CONFIG_BLK_DEV_IDEDMA=y | 523 | CONFIG_BLK_DEV_IDEDMA=y |
| 519 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 520 | # CONFIG_BLK_DEV_HD is not set | ||
| 521 | 524 | ||
| 522 | # | 525 | # |
| 523 | # SCSI device support | 526 | # SCSI device support |
| @@ -592,6 +595,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 592 | # CONFIG_SCSI_DC390T is not set | 595 | # CONFIG_SCSI_DC390T is not set |
| 593 | # CONFIG_SCSI_DEBUG is not set | 596 | # CONFIG_SCSI_DEBUG is not set |
| 594 | # CONFIG_SCSI_SRP is not set | 597 | # CONFIG_SCSI_SRP is not set |
| 598 | # CONFIG_SCSI_DH is not set | ||
| 595 | CONFIG_ATA=y | 599 | CONFIG_ATA=y |
| 596 | # CONFIG_ATA_NONSTANDARD is not set | 600 | # CONFIG_ATA_NONSTANDARD is not set |
| 597 | CONFIG_SATA_PMP=y | 601 | CONFIG_SATA_PMP=y |
| @@ -675,29 +679,21 @@ CONFIG_DM_ZERO=m | |||
| 675 | # | 679 | # |
| 676 | # IEEE 1394 (FireWire) support | 680 | # IEEE 1394 (FireWire) support |
| 677 | # | 681 | # |
| 678 | # CONFIG_FIREWIRE is not set | ||
| 679 | CONFIG_IEEE1394=y | ||
| 680 | |||
| 681 | # | ||
| 682 | # Subsystem Options | ||
| 683 | # | ||
| 684 | # CONFIG_IEEE1394_VERBOSEDEBUG is not set | ||
| 685 | 682 | ||
| 686 | # | 683 | # |
| 687 | # Controllers | 684 | # Enable only one of the two stacks, unless you know what you are doing |
| 688 | # | 685 | # |
| 689 | # CONFIG_IEEE1394_PCILYNX is not set | 686 | # CONFIG_FIREWIRE is not set |
| 687 | CONFIG_IEEE1394=y | ||
| 690 | CONFIG_IEEE1394_OHCI1394=y | 688 | CONFIG_IEEE1394_OHCI1394=y |
| 691 | 689 | # CONFIG_IEEE1394_PCILYNX is not set | |
| 692 | # | ||
| 693 | # Protocols | ||
| 694 | # | ||
| 695 | CONFIG_IEEE1394_VIDEO1394=m | ||
| 696 | CONFIG_IEEE1394_SBP2=m | 690 | CONFIG_IEEE1394_SBP2=m |
| 697 | CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y | 691 | CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y |
| 698 | CONFIG_IEEE1394_ETH1394=m | 692 | CONFIG_IEEE1394_ETH1394=m |
| 699 | CONFIG_IEEE1394_DV1394=m | ||
| 700 | CONFIG_IEEE1394_RAWIO=y | 693 | CONFIG_IEEE1394_RAWIO=y |
| 694 | CONFIG_IEEE1394_VIDEO1394=m | ||
| 695 | CONFIG_IEEE1394_DV1394=m | ||
| 696 | # CONFIG_IEEE1394_VERBOSEDEBUG is not set | ||
| 701 | # CONFIG_I2O is not set | 697 | # CONFIG_I2O is not set |
| 702 | CONFIG_MACINTOSH_DRIVERS=y | 698 | CONFIG_MACINTOSH_DRIVERS=y |
| 703 | CONFIG_ADB_PMU=y | 699 | CONFIG_ADB_PMU=y |
| @@ -712,7 +708,6 @@ CONFIG_WINDFARM_PM112=y | |||
| 712 | CONFIG_WINDFARM_PM121=y | 708 | CONFIG_WINDFARM_PM121=y |
| 713 | # CONFIG_PMAC_RACKMETER is not set | 709 | # CONFIG_PMAC_RACKMETER is not set |
| 714 | CONFIG_NETDEVICES=y | 710 | CONFIG_NETDEVICES=y |
| 715 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 716 | CONFIG_DUMMY=m | 711 | CONFIG_DUMMY=m |
| 717 | CONFIG_BONDING=m | 712 | CONFIG_BONDING=m |
| 718 | # CONFIG_MACVLAN is not set | 713 | # CONFIG_MACVLAN is not set |
| @@ -720,7 +715,23 @@ CONFIG_BONDING=m | |||
| 720 | CONFIG_TUN=m | 715 | CONFIG_TUN=m |
| 721 | # CONFIG_VETH is not set | 716 | # CONFIG_VETH is not set |
| 722 | # CONFIG_ARCNET is not set | 717 | # CONFIG_ARCNET is not set |
| 723 | # CONFIG_PHYLIB is not set | 718 | CONFIG_PHYLIB=y |
| 719 | |||
| 720 | # | ||
| 721 | # MII PHY device drivers | ||
| 722 | # | ||
| 723 | # CONFIG_MARVELL_PHY is not set | ||
| 724 | # CONFIG_DAVICOM_PHY is not set | ||
| 725 | # CONFIG_QSEMI_PHY is not set | ||
| 726 | # CONFIG_LXT_PHY is not set | ||
| 727 | # CONFIG_CICADA_PHY is not set | ||
| 728 | # CONFIG_VITESSE_PHY is not set | ||
| 729 | # CONFIG_SMSC_PHY is not set | ||
| 730 | # CONFIG_BROADCOM_PHY is not set | ||
| 731 | # CONFIG_ICPLUS_PHY is not set | ||
| 732 | # CONFIG_REALTEK_PHY is not set | ||
| 733 | # CONFIG_FIXED_PHY is not set | ||
| 734 | # CONFIG_MDIO_BITBANG is not set | ||
| 724 | CONFIG_NET_ETHERNET=y | 735 | CONFIG_NET_ETHERNET=y |
| 725 | CONFIG_MII=y | 736 | CONFIG_MII=y |
| 726 | # CONFIG_HAPPYMEAL is not set | 737 | # CONFIG_HAPPYMEAL is not set |
| @@ -740,10 +751,8 @@ CONFIG_ACENIC=y | |||
| 740 | CONFIG_ACENIC_OMIT_TIGON_I=y | 751 | CONFIG_ACENIC_OMIT_TIGON_I=y |
| 741 | # CONFIG_DL2K is not set | 752 | # CONFIG_DL2K is not set |
| 742 | CONFIG_E1000=y | 753 | CONFIG_E1000=y |
| 743 | # CONFIG_E1000_NAPI is not set | ||
| 744 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 754 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
| 745 | # CONFIG_E1000E is not set | 755 | # CONFIG_E1000E is not set |
| 746 | # CONFIG_E1000E_ENABLED is not set | ||
| 747 | # CONFIG_IP1000 is not set | 756 | # CONFIG_IP1000 is not set |
| 748 | # CONFIG_IGB is not set | 757 | # CONFIG_IGB is not set |
| 749 | # CONFIG_NS83820 is not set | 758 | # CONFIG_NS83820 is not set |
| @@ -758,6 +767,7 @@ CONFIG_TIGON3=y | |||
| 758 | # CONFIG_BNX2 is not set | 767 | # CONFIG_BNX2 is not set |
| 759 | # CONFIG_QLA3XXX is not set | 768 | # CONFIG_QLA3XXX is not set |
| 760 | # CONFIG_ATL1 is not set | 769 | # CONFIG_ATL1 is not set |
| 770 | # CONFIG_ATL1E is not set | ||
| 761 | CONFIG_NETDEV_10000=y | 771 | CONFIG_NETDEV_10000=y |
| 762 | # CONFIG_CHELSIO_T1 is not set | 772 | # CONFIG_CHELSIO_T1 is not set |
| 763 | # CONFIG_CHELSIO_T3 is not set | 773 | # CONFIG_CHELSIO_T3 is not set |
| @@ -855,6 +865,7 @@ CONFIG_INPUT_MOUSE=y | |||
| 855 | # CONFIG_MOUSE_PS2 is not set | 865 | # CONFIG_MOUSE_PS2 is not set |
| 856 | # CONFIG_MOUSE_SERIAL is not set | 866 | # CONFIG_MOUSE_SERIAL is not set |
| 857 | # CONFIG_MOUSE_APPLETOUCH is not set | 867 | # CONFIG_MOUSE_APPLETOUCH is not set |
| 868 | # CONFIG_MOUSE_BCM5974 is not set | ||
| 858 | # CONFIG_MOUSE_VSXXXAA is not set | 869 | # CONFIG_MOUSE_VSXXXAA is not set |
| 859 | # CONFIG_INPUT_JOYSTICK is not set | 870 | # CONFIG_INPUT_JOYSTICK is not set |
| 860 | # CONFIG_INPUT_TABLET is not set | 871 | # CONFIG_INPUT_TABLET is not set |
| @@ -869,12 +880,14 @@ CONFIG_SERIO=y | |||
| 869 | # CONFIG_SERIO_SERPORT is not set | 880 | # CONFIG_SERIO_SERPORT is not set |
| 870 | # CONFIG_SERIO_PCIPS2 is not set | 881 | # CONFIG_SERIO_PCIPS2 is not set |
| 871 | # CONFIG_SERIO_RAW is not set | 882 | # CONFIG_SERIO_RAW is not set |
| 883 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 872 | # CONFIG_GAMEPORT is not set | 884 | # CONFIG_GAMEPORT is not set |
| 873 | 885 | ||
| 874 | # | 886 | # |
| 875 | # Character devices | 887 | # Character devices |
| 876 | # | 888 | # |
| 877 | CONFIG_VT=y | 889 | CONFIG_VT=y |
| 890 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 878 | CONFIG_VT_CONSOLE=y | 891 | CONFIG_VT_CONSOLE=y |
| 879 | CONFIG_HW_CONSOLE=y | 892 | CONFIG_HW_CONSOLE=y |
| 880 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 893 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -909,44 +922,69 @@ CONFIG_DEVPORT=y | |||
| 909 | CONFIG_I2C=y | 922 | CONFIG_I2C=y |
| 910 | CONFIG_I2C_BOARDINFO=y | 923 | CONFIG_I2C_BOARDINFO=y |
| 911 | CONFIG_I2C_CHARDEV=y | 924 | CONFIG_I2C_CHARDEV=y |
| 925 | CONFIG_I2C_HELPER_AUTO=y | ||
| 912 | CONFIG_I2C_ALGOBIT=y | 926 | CONFIG_I2C_ALGOBIT=y |
| 913 | 927 | ||
| 914 | # | 928 | # |
| 915 | # I2C Hardware Bus support | 929 | # I2C Hardware Bus support |
| 916 | # | 930 | # |
| 931 | |||
| 932 | # | ||
| 933 | # PC SMBus host controller drivers | ||
| 934 | # | ||
| 917 | # CONFIG_I2C_ALI1535 is not set | 935 | # CONFIG_I2C_ALI1535 is not set |
| 918 | # CONFIG_I2C_ALI1563 is not set | 936 | # CONFIG_I2C_ALI1563 is not set |
| 919 | # CONFIG_I2C_ALI15X3 is not set | 937 | # CONFIG_I2C_ALI15X3 is not set |
| 920 | # CONFIG_I2C_AMD756 is not set | 938 | # CONFIG_I2C_AMD756 is not set |
| 921 | # CONFIG_I2C_AMD8111 is not set | 939 | # CONFIG_I2C_AMD8111 is not set |
| 922 | # CONFIG_I2C_I801 is not set | 940 | # CONFIG_I2C_I801 is not set |
| 923 | # CONFIG_I2C_I810 is not set | 941 | # CONFIG_I2C_ISCH is not set |
| 924 | # CONFIG_I2C_PIIX4 is not set | 942 | # CONFIG_I2C_PIIX4 is not set |
| 925 | CONFIG_I2C_POWERMAC=y | ||
| 926 | # CONFIG_I2C_NFORCE2 is not set | 943 | # CONFIG_I2C_NFORCE2 is not set |
| 927 | # CONFIG_I2C_OCORES is not set | ||
| 928 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 929 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 930 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 931 | # CONFIG_I2C_SIMTEC is not set | ||
| 932 | # CONFIG_I2C_SIS5595 is not set | 944 | # CONFIG_I2C_SIS5595 is not set |
| 933 | # CONFIG_I2C_SIS630 is not set | 945 | # CONFIG_I2C_SIS630 is not set |
| 934 | # CONFIG_I2C_SIS96X is not set | 946 | # CONFIG_I2C_SIS96X is not set |
| 935 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 936 | # CONFIG_I2C_STUB is not set | ||
| 937 | # CONFIG_I2C_TINY_USB is not set | ||
| 938 | # CONFIG_I2C_VIA is not set | 947 | # CONFIG_I2C_VIA is not set |
| 939 | # CONFIG_I2C_VIAPRO is not set | 948 | # CONFIG_I2C_VIAPRO is not set |
| 949 | |||
| 950 | # | ||
| 951 | # Mac SMBus host controller drivers | ||
| 952 | # | ||
| 953 | CONFIG_I2C_POWERMAC=y | ||
| 954 | |||
| 955 | # | ||
| 956 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 957 | # | ||
| 958 | # CONFIG_I2C_OCORES is not set | ||
| 959 | # CONFIG_I2C_SIMTEC is not set | ||
| 960 | |||
| 961 | # | ||
| 962 | # External I2C/SMBus adapter drivers | ||
| 963 | # | ||
| 964 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 965 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 966 | # CONFIG_I2C_TINY_USB is not set | ||
| 967 | |||
| 968 | # | ||
| 969 | # Graphics adapter I2C/DDC channel drivers | ||
| 970 | # | ||
| 940 | # CONFIG_I2C_VOODOO3 is not set | 971 | # CONFIG_I2C_VOODOO3 is not set |
| 972 | |||
| 973 | # | ||
| 974 | # Other I2C/SMBus bus drivers | ||
| 975 | # | ||
| 941 | # CONFIG_I2C_PCA_PLATFORM is not set | 976 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 977 | # CONFIG_I2C_STUB is not set | ||
| 942 | 978 | ||
| 943 | # | 979 | # |
| 944 | # Miscellaneous I2C Chip support | 980 | # Miscellaneous I2C Chip support |
| 945 | # | 981 | # |
| 946 | # CONFIG_DS1682 is not set | 982 | # CONFIG_DS1682 is not set |
| 983 | # CONFIG_AT24 is not set | ||
| 947 | # CONFIG_SENSORS_EEPROM is not set | 984 | # CONFIG_SENSORS_EEPROM is not set |
| 948 | # CONFIG_SENSORS_PCF8574 is not set | 985 | # CONFIG_SENSORS_PCF8574 is not set |
| 949 | # CONFIG_PCF8575 is not set | 986 | # CONFIG_PCF8575 is not set |
| 987 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 950 | # CONFIG_SENSORS_PCF8591 is not set | 988 | # CONFIG_SENSORS_PCF8591 is not set |
| 951 | # CONFIG_SENSORS_MAX6875 is not set | 989 | # CONFIG_SENSORS_MAX6875 is not set |
| 952 | # CONFIG_SENSORS_TSL2550 is not set | 990 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -955,10 +993,13 @@ CONFIG_I2C_POWERMAC=y | |||
| 955 | # CONFIG_I2C_DEBUG_BUS is not set | 993 | # CONFIG_I2C_DEBUG_BUS is not set |
| 956 | # CONFIG_I2C_DEBUG_CHIP is not set | 994 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 957 | # CONFIG_SPI is not set | 995 | # CONFIG_SPI is not set |
| 996 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 997 | # CONFIG_GPIOLIB is not set | ||
| 958 | # CONFIG_W1 is not set | 998 | # CONFIG_W1 is not set |
| 959 | # CONFIG_POWER_SUPPLY is not set | 999 | # CONFIG_POWER_SUPPLY is not set |
| 960 | # CONFIG_HWMON is not set | 1000 | # CONFIG_HWMON is not set |
| 961 | # CONFIG_THERMAL is not set | 1001 | # CONFIG_THERMAL is not set |
| 1002 | # CONFIG_THERMAL_HWMON is not set | ||
| 962 | # CONFIG_WATCHDOG is not set | 1003 | # CONFIG_WATCHDOG is not set |
| 963 | 1004 | ||
| 964 | # | 1005 | # |
| @@ -970,8 +1011,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 970 | # | 1011 | # |
| 971 | # Multifunction device drivers | 1012 | # Multifunction device drivers |
| 972 | # | 1013 | # |
| 1014 | # CONFIG_MFD_CORE is not set | ||
| 973 | # CONFIG_MFD_SM501 is not set | 1015 | # CONFIG_MFD_SM501 is not set |
| 974 | # CONFIG_HTC_PASIC3 is not set | 1016 | # CONFIG_HTC_PASIC3 is not set |
| 1017 | # CONFIG_MFD_TMIO is not set | ||
| 975 | 1018 | ||
| 976 | # | 1019 | # |
| 977 | # Multimedia devices | 1020 | # Multimedia devices |
| @@ -1050,10 +1093,13 @@ CONFIG_FB_RADEON_BACKLIGHT=y | |||
| 1050 | # CONFIG_FB_TRIDENT is not set | 1093 | # CONFIG_FB_TRIDENT is not set |
| 1051 | # CONFIG_FB_ARK is not set | 1094 | # CONFIG_FB_ARK is not set |
| 1052 | # CONFIG_FB_PM3 is not set | 1095 | # CONFIG_FB_PM3 is not set |
| 1096 | # CONFIG_FB_CARMINE is not set | ||
| 1053 | # CONFIG_FB_IBM_GXT4500 is not set | 1097 | # CONFIG_FB_IBM_GXT4500 is not set |
| 1054 | # CONFIG_FB_VIRTUAL is not set | 1098 | # CONFIG_FB_VIRTUAL is not set |
| 1055 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 1099 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
| 1056 | CONFIG_LCD_CLASS_DEVICE=m | 1100 | CONFIG_LCD_CLASS_DEVICE=m |
| 1101 | # CONFIG_LCD_ILI9320 is not set | ||
| 1102 | # CONFIG_LCD_PLATFORM is not set | ||
| 1057 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 1103 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
| 1058 | # CONFIG_BACKLIGHT_CORGI is not set | 1104 | # CONFIG_BACKLIGHT_CORGI is not set |
| 1059 | 1105 | ||
| @@ -1077,15 +1123,7 @@ CONFIG_LOGO=y | |||
| 1077 | CONFIG_LOGO_LINUX_MONO=y | 1123 | CONFIG_LOGO_LINUX_MONO=y |
| 1078 | CONFIG_LOGO_LINUX_VGA16=y | 1124 | CONFIG_LOGO_LINUX_VGA16=y |
| 1079 | CONFIG_LOGO_LINUX_CLUT224=y | 1125 | CONFIG_LOGO_LINUX_CLUT224=y |
| 1080 | |||
| 1081 | # | ||
| 1082 | # Sound | ||
| 1083 | # | ||
| 1084 | CONFIG_SOUND=m | 1126 | CONFIG_SOUND=m |
| 1085 | |||
| 1086 | # | ||
| 1087 | # Advanced Linux Sound Architecture | ||
| 1088 | # | ||
| 1089 | CONFIG_SND=m | 1127 | CONFIG_SND=m |
| 1090 | CONFIG_SND_TIMER=m | 1128 | CONFIG_SND_TIMER=m |
| 1091 | CONFIG_SND_PCM=m | 1129 | CONFIG_SND_PCM=m |
| @@ -1103,19 +1141,13 @@ CONFIG_SND_SUPPORT_OLD_API=y | |||
| 1103 | CONFIG_SND_VERBOSE_PROCFS=y | 1141 | CONFIG_SND_VERBOSE_PROCFS=y |
| 1104 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1142 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 1105 | # CONFIG_SND_DEBUG is not set | 1143 | # CONFIG_SND_DEBUG is not set |
| 1106 | 1144 | CONFIG_SND_DRIVERS=y | |
| 1107 | # | ||
| 1108 | # Generic devices | ||
| 1109 | # | ||
| 1110 | # CONFIG_SND_DUMMY is not set | 1145 | # CONFIG_SND_DUMMY is not set |
| 1111 | # CONFIG_SND_VIRMIDI is not set | 1146 | # CONFIG_SND_VIRMIDI is not set |
| 1112 | # CONFIG_SND_MTPAV is not set | 1147 | # CONFIG_SND_MTPAV is not set |
| 1113 | # CONFIG_SND_SERIAL_U16550 is not set | 1148 | # CONFIG_SND_SERIAL_U16550 is not set |
| 1114 | # CONFIG_SND_MPU401 is not set | 1149 | # CONFIG_SND_MPU401 is not set |
| 1115 | 1150 | CONFIG_SND_PCI=y | |
| 1116 | # | ||
| 1117 | # PCI devices | ||
| 1118 | # | ||
| 1119 | # CONFIG_SND_AD1889 is not set | 1151 | # CONFIG_SND_AD1889 is not set |
| 1120 | # CONFIG_SND_ALS300 is not set | 1152 | # CONFIG_SND_ALS300 is not set |
| 1121 | # CONFIG_SND_ALS4000 is not set | 1153 | # CONFIG_SND_ALS4000 is not set |
| @@ -1177,20 +1209,9 @@ CONFIG_SND_VERBOSE_PROCFS=y | |||
| 1177 | # CONFIG_SND_VIRTUOSO is not set | 1209 | # CONFIG_SND_VIRTUOSO is not set |
| 1178 | # CONFIG_SND_VX222 is not set | 1210 | # CONFIG_SND_VX222 is not set |
| 1179 | # CONFIG_SND_YMFPCI is not set | 1211 | # CONFIG_SND_YMFPCI is not set |
| 1180 | 1212 | CONFIG_SND_PPC=y | |
| 1181 | # | ||
| 1182 | # ALSA PowerMac devices | ||
| 1183 | # | ||
| 1184 | CONFIG_SND_POWERMAC=m | 1213 | CONFIG_SND_POWERMAC=m |
| 1185 | CONFIG_SND_POWERMAC_AUTO_DRC=y | 1214 | CONFIG_SND_POWERMAC_AUTO_DRC=y |
| 1186 | |||
| 1187 | # | ||
| 1188 | # ALSA PowerPC devices | ||
| 1189 | # | ||
| 1190 | |||
| 1191 | # | ||
| 1192 | # Apple Onboard Audio driver | ||
| 1193 | # | ||
| 1194 | CONFIG_SND_AOA=m | 1215 | CONFIG_SND_AOA=m |
| 1195 | CONFIG_SND_AOA_FABRIC_LAYOUT=m | 1216 | CONFIG_SND_AOA_FABRIC_LAYOUT=m |
| 1196 | CONFIG_SND_AOA_ONYX=m | 1217 | CONFIG_SND_AOA_ONYX=m |
| @@ -1198,30 +1219,11 @@ CONFIG_SND_AOA_TAS=m | |||
| 1198 | CONFIG_SND_AOA_TOONIE=m | 1219 | CONFIG_SND_AOA_TOONIE=m |
| 1199 | CONFIG_SND_AOA_SOUNDBUS=m | 1220 | CONFIG_SND_AOA_SOUNDBUS=m |
| 1200 | CONFIG_SND_AOA_SOUNDBUS_I2S=m | 1221 | CONFIG_SND_AOA_SOUNDBUS_I2S=m |
| 1201 | 1222 | CONFIG_SND_USB=y | |
| 1202 | # | ||
| 1203 | # USB devices | ||
| 1204 | # | ||
| 1205 | CONFIG_SND_USB_AUDIO=m | 1223 | CONFIG_SND_USB_AUDIO=m |
| 1206 | # CONFIG_SND_USB_USX2Y is not set | 1224 | # CONFIG_SND_USB_USX2Y is not set |
| 1207 | # CONFIG_SND_USB_CAIAQ is not set | 1225 | # CONFIG_SND_USB_CAIAQ is not set |
| 1208 | |||
| 1209 | # | ||
| 1210 | # System on Chip audio support | ||
| 1211 | # | ||
| 1212 | # CONFIG_SND_SOC is not set | 1226 | # CONFIG_SND_SOC is not set |
| 1213 | |||
| 1214 | # | ||
| 1215 | # ALSA SoC audio for Freescale SOCs | ||
| 1216 | # | ||
| 1217 | |||
| 1218 | # | ||
| 1219 | # SoC Audio for the Texas Instruments OMAP | ||
| 1220 | # | ||
| 1221 | |||
| 1222 | # | ||
| 1223 | # Open Sound System | ||
| 1224 | # | ||
| 1225 | # CONFIG_SOUND_PRIME is not set | 1227 | # CONFIG_SOUND_PRIME is not set |
| 1226 | CONFIG_HID_SUPPORT=y | 1228 | CONFIG_HID_SUPPORT=y |
| 1227 | CONFIG_HID=y | 1229 | CONFIG_HID=y |
| @@ -1256,6 +1258,7 @@ CONFIG_USB_DEVICEFS=y | |||
| 1256 | CONFIG_USB_DEVICE_CLASS=y | 1258 | CONFIG_USB_DEVICE_CLASS=y |
| 1257 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1259 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1258 | # CONFIG_USB_OTG is not set | 1260 | # CONFIG_USB_OTG is not set |
| 1261 | CONFIG_USB_MON=y | ||
| 1259 | 1262 | ||
| 1260 | # | 1263 | # |
| 1261 | # USB Host Controller Drivers | 1264 | # USB Host Controller Drivers |
| @@ -1306,6 +1309,7 @@ CONFIG_USB_STORAGE_JUMPSHOT=y | |||
| 1306 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1309 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1307 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1310 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1308 | # CONFIG_USB_STORAGE_KARMA is not set | 1311 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1312 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1309 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1313 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1310 | # CONFIG_USB_LIBUSUAL is not set | 1314 | # CONFIG_USB_LIBUSUAL is not set |
| 1311 | 1315 | ||
| @@ -1314,7 +1318,6 @@ CONFIG_USB_STORAGE_JUMPSHOT=y | |||
| 1314 | # | 1318 | # |
| 1315 | # CONFIG_USB_MDC800 is not set | 1319 | # CONFIG_USB_MDC800 is not set |
| 1316 | # CONFIG_USB_MICROTEK is not set | 1320 | # CONFIG_USB_MICROTEK is not set |
| 1317 | CONFIG_USB_MON=y | ||
| 1318 | 1321 | ||
| 1319 | # | 1322 | # |
| 1320 | # USB port drivers | 1323 | # USB port drivers |
| @@ -1323,7 +1326,6 @@ CONFIG_USB_SERIAL=m | |||
| 1323 | CONFIG_USB_EZUSB=y | 1326 | CONFIG_USB_EZUSB=y |
| 1324 | CONFIG_USB_SERIAL_GENERIC=y | 1327 | CONFIG_USB_SERIAL_GENERIC=y |
| 1325 | # CONFIG_USB_SERIAL_AIRCABLE is not set | 1328 | # CONFIG_USB_SERIAL_AIRCABLE is not set |
| 1326 | # CONFIG_USB_SERIAL_AIRPRIME is not set | ||
| 1327 | # CONFIG_USB_SERIAL_ARK3116 is not set | 1329 | # CONFIG_USB_SERIAL_ARK3116 is not set |
| 1328 | CONFIG_USB_SERIAL_BELKIN=m | 1330 | CONFIG_USB_SERIAL_BELKIN=m |
| 1329 | # CONFIG_USB_SERIAL_CH341 is not set | 1331 | # CONFIG_USB_SERIAL_CH341 is not set |
| @@ -1383,7 +1385,6 @@ CONFIG_USB_SERIAL_OMNINET=m | |||
| 1383 | # CONFIG_USB_EMI62 is not set | 1385 | # CONFIG_USB_EMI62 is not set |
| 1384 | # CONFIG_USB_EMI26 is not set | 1386 | # CONFIG_USB_EMI26 is not set |
| 1385 | # CONFIG_USB_ADUTUX is not set | 1387 | # CONFIG_USB_ADUTUX is not set |
| 1386 | # CONFIG_USB_AUERSWALD is not set | ||
| 1387 | # CONFIG_USB_RIO500 is not set | 1388 | # CONFIG_USB_RIO500 is not set |
| 1388 | # CONFIG_USB_LEGOTOWER is not set | 1389 | # CONFIG_USB_LEGOTOWER is not set |
| 1389 | # CONFIG_USB_LCD is not set | 1390 | # CONFIG_USB_LCD is not set |
| @@ -1497,6 +1498,7 @@ CONFIG_HFSPLUS_FS=m | |||
| 1497 | CONFIG_CRAMFS=y | 1498 | CONFIG_CRAMFS=y |
| 1498 | # CONFIG_VXFS_FS is not set | 1499 | # CONFIG_VXFS_FS is not set |
| 1499 | # CONFIG_MINIX_FS is not set | 1500 | # CONFIG_MINIX_FS is not set |
| 1501 | # CONFIG_OMFS_FS is not set | ||
| 1500 | # CONFIG_HPFS_FS is not set | 1502 | # CONFIG_HPFS_FS is not set |
| 1501 | # CONFIG_QNX4FS_FS is not set | 1503 | # CONFIG_QNX4FS_FS is not set |
| 1502 | # CONFIG_ROMFS_FS is not set | 1504 | # CONFIG_ROMFS_FS is not set |
| @@ -1519,7 +1521,6 @@ CONFIG_NFS_ACL_SUPPORT=y | |||
| 1519 | CONFIG_NFS_COMMON=y | 1521 | CONFIG_NFS_COMMON=y |
| 1520 | CONFIG_SUNRPC=y | 1522 | CONFIG_SUNRPC=y |
| 1521 | CONFIG_SUNRPC_GSS=y | 1523 | CONFIG_SUNRPC_GSS=y |
| 1522 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1523 | CONFIG_RPCSEC_GSS_KRB5=y | 1524 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1524 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1525 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1525 | # CONFIG_SMB_FS is not set | 1526 | # CONFIG_SMB_FS is not set |
| @@ -1603,6 +1604,7 @@ CONFIG_BITREVERSE=y | |||
| 1603 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1604 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1604 | CONFIG_CRC_CCITT=m | 1605 | CONFIG_CRC_CCITT=m |
| 1605 | # CONFIG_CRC16 is not set | 1606 | # CONFIG_CRC16 is not set |
| 1607 | CONFIG_CRC_T10DIF=y | ||
| 1606 | CONFIG_CRC_ITU_T=m | 1608 | CONFIG_CRC_ITU_T=m |
| 1607 | CONFIG_CRC32=y | 1609 | CONFIG_CRC32=y |
| 1608 | # CONFIG_CRC7 is not set | 1610 | # CONFIG_CRC7 is not set |
| @@ -1629,8 +1631,10 @@ CONFIG_DEBUG_FS=y | |||
| 1629 | CONFIG_DEBUG_KERNEL=y | 1631 | CONFIG_DEBUG_KERNEL=y |
| 1630 | # CONFIG_DEBUG_SHIRQ is not set | 1632 | # CONFIG_DEBUG_SHIRQ is not set |
| 1631 | CONFIG_DETECT_SOFTLOCKUP=y | 1633 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1634 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1635 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1632 | CONFIG_SCHED_DEBUG=y | 1636 | CONFIG_SCHED_DEBUG=y |
| 1633 | # CONFIG_SCHEDSTATS is not set | 1637 | CONFIG_SCHEDSTATS=y |
| 1634 | # CONFIG_TIMER_STATS is not set | 1638 | # CONFIG_TIMER_STATS is not set |
| 1635 | # CONFIG_DEBUG_OBJECTS is not set | 1639 | # CONFIG_DEBUG_OBJECTS is not set |
| 1636 | # CONFIG_SLUB_DEBUG_ON is not set | 1640 | # CONFIG_SLUB_DEBUG_ON is not set |
| @@ -1644,22 +1648,37 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 1644 | # CONFIG_LOCK_STAT is not set | 1648 | # CONFIG_LOCK_STAT is not set |
| 1645 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1649 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1646 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 1650 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
| 1651 | CONFIG_STACKTRACE=y | ||
| 1647 | # CONFIG_DEBUG_KOBJECT is not set | 1652 | # CONFIG_DEBUG_KOBJECT is not set |
| 1648 | CONFIG_DEBUG_BUGVERBOSE=y | 1653 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1649 | # CONFIG_DEBUG_INFO is not set | 1654 | # CONFIG_DEBUG_INFO is not set |
| 1650 | # CONFIG_DEBUG_VM is not set | 1655 | # CONFIG_DEBUG_VM is not set |
| 1651 | # CONFIG_DEBUG_WRITECOUNT is not set | 1656 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1657 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 1652 | # CONFIG_DEBUG_LIST is not set | 1658 | # CONFIG_DEBUG_LIST is not set |
| 1653 | # CONFIG_DEBUG_SG is not set | 1659 | # CONFIG_DEBUG_SG is not set |
| 1660 | CONFIG_FRAME_POINTER=y | ||
| 1654 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1661 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1655 | # CONFIG_RCU_TORTURE_TEST is not set | 1662 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1656 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1663 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1657 | # CONFIG_FAULT_INJECTION is not set | 1664 | # CONFIG_FAULT_INJECTION is not set |
| 1665 | CONFIG_LATENCYTOP=y | ||
| 1666 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1667 | CONFIG_HAVE_FTRACE=y | ||
| 1668 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1669 | # CONFIG_FTRACE is not set | ||
| 1670 | # CONFIG_IRQSOFF_TRACER is not set | ||
| 1671 | # CONFIG_SCHED_TRACER is not set | ||
| 1672 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1658 | # CONFIG_SAMPLES is not set | 1673 | # CONFIG_SAMPLES is not set |
| 1674 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1675 | # CONFIG_KGDB is not set | ||
| 1659 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1676 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1660 | # CONFIG_DEBUG_STACK_USAGE is not set | 1677 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1661 | # CONFIG_DEBUG_PAGEALLOC is not set | 1678 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1662 | # CONFIG_DEBUGGER is not set | 1679 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1680 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1681 | # CONFIG_XMON is not set | ||
| 1663 | CONFIG_IRQSTACKS=y | 1682 | CONFIG_IRQSTACKS=y |
| 1664 | # CONFIG_VIRQ_DEBUG is not set | 1683 | # CONFIG_VIRQ_DEBUG is not set |
| 1665 | CONFIG_BOOTX_TEXT=y | 1684 | CONFIG_BOOTX_TEXT=y |
| @@ -1718,6 +1737,10 @@ CONFIG_CRYPTO_CRC32C=m | |||
| 1718 | CONFIG_CRYPTO_MD4=m | 1737 | CONFIG_CRYPTO_MD4=m |
| 1719 | CONFIG_CRYPTO_MD5=y | 1738 | CONFIG_CRYPTO_MD5=y |
| 1720 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1739 | CONFIG_CRYPTO_MICHAEL_MIC=m |
| 1740 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1741 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1742 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1743 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1721 | CONFIG_CRYPTO_SHA1=m | 1744 | CONFIG_CRYPTO_SHA1=m |
| 1722 | CONFIG_CRYPTO_SHA256=m | 1745 | CONFIG_CRYPTO_SHA256=m |
| 1723 | CONFIG_CRYPTO_SHA512=m | 1746 | CONFIG_CRYPTO_SHA512=m |
diff --git a/arch/powerpc/configs/iseries_defconfig b/arch/powerpc/configs/iseries_defconfig index 63f0bdb6340d..2c3f13577f4b 100644 --- a/arch/powerpc/configs/iseries_defconfig +++ b/arch/powerpc/configs/iseries_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.26-rc3 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Tue May 20 20:01:36 2008 | 4 | # Tue Aug 26 13:15:49 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
| 7 | 7 | ||
| @@ -31,6 +31,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 31 | CONFIG_HAVE_SETUP_PER_CPU_AREA=y | 31 | CONFIG_HAVE_SETUP_PER_CPU_AREA=y |
| 32 | CONFIG_IRQ_PER_CPU=y | 32 | CONFIG_IRQ_PER_CPU=y |
| 33 | CONFIG_STACKTRACE_SUPPORT=y | 33 | CONFIG_STACKTRACE_SUPPORT=y |
| 34 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 34 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 35 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 36 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| @@ -94,9 +95,8 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 94 | CONFIG_SYSCTL=y | 95 | CONFIG_SYSCTL=y |
| 95 | # CONFIG_EMBEDDED is not set | 96 | # CONFIG_EMBEDDED is not set |
| 96 | CONFIG_SYSCTL_SYSCALL=y | 97 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 98 | CONFIG_KALLSYMS=y | 98 | CONFIG_KALLSYMS=y |
| 99 | # CONFIG_KALLSYMS_ALL is not set | 99 | CONFIG_KALLSYMS_ALL=y |
| 100 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 100 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 101 | CONFIG_HOTPLUG=y | 101 | CONFIG_HOTPLUG=y |
| 102 | CONFIG_PRINTK=y | 102 | CONFIG_PRINTK=y |
| @@ -120,10 +120,16 @@ CONFIG_SLUB=y | |||
| 120 | # CONFIG_MARKERS 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 | ||
| 124 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 123 | CONFIG_HAVE_KPROBES=y | 125 | CONFIG_HAVE_KPROBES=y |
| 124 | CONFIG_HAVE_KRETPROBES=y | 126 | CONFIG_HAVE_KRETPROBES=y |
| 125 | # CONFIG_HAVE_DMA_ATTRS is not set | 127 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 128 | CONFIG_HAVE_DMA_ATTRS=y | ||
| 129 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
| 130 | # CONFIG_HAVE_CLK is not set | ||
| 126 | CONFIG_PROC_PAGE_MONITOR=y | 131 | CONFIG_PROC_PAGE_MONITOR=y |
| 132 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 127 | CONFIG_SLABINFO=y | 133 | CONFIG_SLABINFO=y |
| 128 | CONFIG_RT_MUTEXES=y | 134 | CONFIG_RT_MUTEXES=y |
| 129 | # CONFIG_TINY_SHMEM is not set | 135 | # CONFIG_TINY_SHMEM is not set |
| @@ -139,6 +145,7 @@ CONFIG_STOP_MACHINE=y | |||
| 139 | CONFIG_BLOCK=y | 145 | CONFIG_BLOCK=y |
| 140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 146 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 141 | CONFIG_BLK_DEV_BSG=y | 147 | CONFIG_BLK_DEV_BSG=y |
| 148 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 142 | CONFIG_BLOCK_COMPAT=y | 149 | CONFIG_BLOCK_COMPAT=y |
| 143 | 150 | ||
| 144 | # | 151 | # |
| @@ -159,9 +166,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 159 | # Platform support | 166 | # Platform support |
| 160 | # | 167 | # |
| 161 | CONFIG_PPC_MULTIPLATFORM=y | 168 | CONFIG_PPC_MULTIPLATFORM=y |
| 162 | # CONFIG_PPC_82xx is not set | ||
| 163 | # CONFIG_PPC_83xx is not set | ||
| 164 | # CONFIG_PPC_86xx is not set | ||
| 165 | # CONFIG_PPC_PSERIES is not set | 169 | # CONFIG_PPC_PSERIES is not set |
| 166 | CONFIG_LPARCFG=y | 170 | CONFIG_LPARCFG=y |
| 167 | CONFIG_PPC_ISERIES=y | 171 | CONFIG_PPC_ISERIES=y |
| @@ -173,8 +177,6 @@ CONFIG_VIODASD=y | |||
| 173 | CONFIG_VIOCD=m | 177 | CONFIG_VIOCD=m |
| 174 | CONFIG_VIOTAPE=m | 178 | CONFIG_VIOTAPE=m |
| 175 | CONFIG_VIOPATH=y | 179 | CONFIG_VIOPATH=y |
| 176 | # CONFIG_PPC_MPC512x is not set | ||
| 177 | # CONFIG_PPC_MPC5121 is not set | ||
| 178 | # CONFIG_PPC_PMAC is not set | 180 | # CONFIG_PPC_PMAC is not set |
| 179 | # CONFIG_PPC_MAPLE is not set | 181 | # CONFIG_PPC_MAPLE is not set |
| 180 | # CONFIG_PPC_PASEMI is not set | 182 | # CONFIG_PPC_PASEMI is not set |
| @@ -211,7 +213,7 @@ CONFIG_HZ_250=y | |||
| 211 | # CONFIG_HZ_300 is not set | 213 | # CONFIG_HZ_300 is not set |
| 212 | # CONFIG_HZ_1000 is not set | 214 | # CONFIG_HZ_1000 is not set |
| 213 | CONFIG_HZ=250 | 215 | CONFIG_HZ=250 |
| 214 | # CONFIG_SCHED_HRTICK is not set | 216 | CONFIG_SCHED_HRTICK=y |
| 215 | CONFIG_PREEMPT_NONE=y | 217 | CONFIG_PREEMPT_NONE=y |
| 216 | # CONFIG_PREEMPT_VOLUNTARY is not set | 218 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 217 | # CONFIG_PREEMPT is not set | 219 | # CONFIG_PREEMPT is not set |
| @@ -241,6 +243,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 241 | CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y | 243 | CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y |
| 242 | CONFIG_PAGEFLAGS_EXTENDED=y | 244 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 243 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 245 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 246 | # CONFIG_MIGRATION is not set | ||
| 244 | CONFIG_RESOURCES_64BIT=y | 247 | CONFIG_RESOURCES_64BIT=y |
| 245 | CONFIG_ZONE_DMA_FLAG=1 | 248 | CONFIG_ZONE_DMA_FLAG=1 |
| 246 | CONFIG_BOUNCE=y | 249 | CONFIG_BOUNCE=y |
| @@ -250,6 +253,7 @@ CONFIG_FORCE_MAX_ZONEORDER=13 | |||
| 250 | # CONFIG_SCHED_SMT is not set | 253 | # CONFIG_SCHED_SMT is not set |
| 251 | CONFIG_PROC_DEVICETREE=y | 254 | CONFIG_PROC_DEVICETREE=y |
| 252 | # CONFIG_CMDLINE_BOOL is not set | 255 | # CONFIG_CMDLINE_BOOL is not set |
| 256 | CONFIG_EXTRA_TARGETS="" | ||
| 253 | # CONFIG_PM is not set | 257 | # CONFIG_PM is not set |
| 254 | CONFIG_SECCOMP=y | 258 | CONFIG_SECCOMP=y |
| 255 | CONFIG_ISA_DMA_API=y | 259 | CONFIG_ISA_DMA_API=y |
| @@ -274,10 +278,6 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 274 | CONFIG_PAGE_OFFSET=0xc000000000000000 | 278 | CONFIG_PAGE_OFFSET=0xc000000000000000 |
| 275 | CONFIG_KERNEL_START=0xc000000000000000 | 279 | CONFIG_KERNEL_START=0xc000000000000000 |
| 276 | CONFIG_PHYSICAL_START=0x00000000 | 280 | CONFIG_PHYSICAL_START=0x00000000 |
| 277 | |||
| 278 | # | ||
| 279 | # Networking | ||
| 280 | # | ||
| 281 | CONFIG_NET=y | 281 | CONFIG_NET=y |
| 282 | 282 | ||
| 283 | # | 283 | # |
| @@ -291,6 +291,7 @@ CONFIG_XFRM_USER=m | |||
| 291 | CONFIG_XFRM_SUB_POLICY=y | 291 | CONFIG_XFRM_SUB_POLICY=y |
| 292 | # CONFIG_XFRM_MIGRATE is not set | 292 | # CONFIG_XFRM_MIGRATE is not set |
| 293 | # CONFIG_XFRM_STATISTICS is not set | 293 | # CONFIG_XFRM_STATISTICS is not set |
| 294 | CONFIG_XFRM_IPCOMP=m | ||
| 294 | CONFIG_NET_KEY=m | 295 | CONFIG_NET_KEY=m |
| 295 | # CONFIG_NET_KEY_MIGRATE is not set | 296 | # CONFIG_NET_KEY_MIGRATE is not set |
| 296 | CONFIG_INET=y | 297 | CONFIG_INET=y |
| @@ -480,7 +481,9 @@ CONFIG_NET_CLS_ROUTE=y | |||
| 480 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 481 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
| 481 | CONFIG_STANDALONE=y | 482 | CONFIG_STANDALONE=y |
| 482 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 483 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 483 | CONFIG_FW_LOADER=m | 484 | CONFIG_FW_LOADER=y |
| 485 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 486 | CONFIG_EXTRA_FIRMWARE="" | ||
| 484 | # CONFIG_DEBUG_DRIVER is not set | 487 | # CONFIG_DEBUG_DRIVER is not set |
| 485 | # CONFIG_DEBUG_DEVRES is not set | 488 | # CONFIG_DEBUG_DEVRES is not set |
| 486 | # CONFIG_SYS_HYPERVISOR is not set | 489 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -504,12 +507,14 @@ CONFIG_BLK_DEV_RAM_SIZE=65536 | |||
| 504 | # CONFIG_BLK_DEV_XIP is not set | 507 | # CONFIG_BLK_DEV_XIP is not set |
| 505 | # CONFIG_CDROM_PKTCDVD is not set | 508 | # CONFIG_CDROM_PKTCDVD is not set |
| 506 | # CONFIG_ATA_OVER_ETH is not set | 509 | # CONFIG_ATA_OVER_ETH is not set |
| 510 | # CONFIG_BLK_DEV_HD is not set | ||
| 507 | CONFIG_MISC_DEVICES=y | 511 | CONFIG_MISC_DEVICES=y |
| 508 | # CONFIG_PHANTOM is not set | 512 | # CONFIG_PHANTOM is not set |
| 509 | # CONFIG_EEPROM_93CX6 is not set | 513 | # CONFIG_EEPROM_93CX6 is not set |
| 510 | # CONFIG_SGI_IOC4 is not set | 514 | # CONFIG_SGI_IOC4 is not set |
| 511 | # CONFIG_TIFM_CORE is not set | 515 | # CONFIG_TIFM_CORE is not set |
| 512 | # CONFIG_ENCLOSURE_SERVICES is not set | 516 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 517 | # CONFIG_HP_ILO is not set | ||
| 513 | CONFIG_HAVE_IDE=y | 518 | CONFIG_HAVE_IDE=y |
| 514 | # CONFIG_IDE is not set | 519 | # CONFIG_IDE is not set |
| 515 | 520 | ||
| @@ -588,6 +593,7 @@ CONFIG_SCSI_IBMVSCSI=m | |||
| 588 | # CONFIG_SCSI_DC390T is not set | 593 | # CONFIG_SCSI_DC390T is not set |
| 589 | # CONFIG_SCSI_DEBUG is not set | 594 | # CONFIG_SCSI_DEBUG is not set |
| 590 | # CONFIG_SCSI_SRP is not set | 595 | # CONFIG_SCSI_SRP is not set |
| 596 | # CONFIG_SCSI_DH is not set | ||
| 591 | # CONFIG_ATA is not set | 597 | # CONFIG_ATA is not set |
| 592 | CONFIG_MD=y | 598 | CONFIG_MD=y |
| 593 | CONFIG_BLK_DEV_MD=y | 599 | CONFIG_BLK_DEV_MD=y |
| @@ -612,12 +618,15 @@ CONFIG_DM_ZERO=m | |||
| 612 | # | 618 | # |
| 613 | # IEEE 1394 (FireWire) support | 619 | # IEEE 1394 (FireWire) support |
| 614 | # | 620 | # |
| 621 | |||
| 622 | # | ||
| 623 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 624 | # | ||
| 615 | # CONFIG_FIREWIRE is not set | 625 | # CONFIG_FIREWIRE is not set |
| 616 | # CONFIG_IEEE1394 is not set | 626 | # CONFIG_IEEE1394 is not set |
| 617 | # CONFIG_I2O is not set | 627 | # CONFIG_I2O is not set |
| 618 | # CONFIG_MACINTOSH_DRIVERS is not set | 628 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 619 | CONFIG_NETDEVICES=y | 629 | CONFIG_NETDEVICES=y |
| 620 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 621 | CONFIG_DUMMY=m | 630 | CONFIG_DUMMY=m |
| 622 | CONFIG_BONDING=m | 631 | CONFIG_BONDING=m |
| 623 | # CONFIG_MACVLAN is not set | 632 | # CONFIG_MACVLAN is not set |
| @@ -655,6 +664,7 @@ CONFIG_E100=y | |||
| 655 | # CONFIG_SIS900 is not set | 664 | # CONFIG_SIS900 is not set |
| 656 | # CONFIG_EPIC100 is not set | 665 | # CONFIG_EPIC100 is not set |
| 657 | # CONFIG_SUNDANCE is not set | 666 | # CONFIG_SUNDANCE is not set |
| 667 | # CONFIG_TLAN is not set | ||
| 658 | # CONFIG_VIA_RHINE is not set | 668 | # CONFIG_VIA_RHINE is not set |
| 659 | # CONFIG_SC92031 is not set | 669 | # CONFIG_SC92031 is not set |
| 660 | CONFIG_NETDEV_1000=y | 670 | CONFIG_NETDEV_1000=y |
| @@ -662,10 +672,8 @@ CONFIG_ACENIC=m | |||
| 662 | # CONFIG_ACENIC_OMIT_TIGON_I is not set | 672 | # CONFIG_ACENIC_OMIT_TIGON_I is not set |
| 663 | # CONFIG_DL2K is not set | 673 | # CONFIG_DL2K is not set |
| 664 | CONFIG_E1000=m | 674 | CONFIG_E1000=m |
| 665 | # CONFIG_E1000_NAPI is not set | ||
| 666 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 675 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
| 667 | # CONFIG_E1000E is not set | 676 | # CONFIG_E1000E is not set |
| 668 | # CONFIG_E1000E_ENABLED is not set | ||
| 669 | # CONFIG_IP1000 is not set | 677 | # CONFIG_IP1000 is not set |
| 670 | # CONFIG_IGB is not set | 678 | # CONFIG_IGB is not set |
| 671 | # CONFIG_NS83820 is not set | 679 | # CONFIG_NS83820 is not set |
| @@ -680,6 +688,7 @@ CONFIG_E1000=m | |||
| 680 | # CONFIG_BNX2 is not set | 688 | # CONFIG_BNX2 is not set |
| 681 | # CONFIG_QLA3XXX is not set | 689 | # CONFIG_QLA3XXX is not set |
| 682 | # CONFIG_ATL1 is not set | 690 | # CONFIG_ATL1 is not set |
| 691 | # CONFIG_ATL1E is not set | ||
| 683 | CONFIG_NETDEV_10000=y | 692 | CONFIG_NETDEV_10000=y |
| 684 | # CONFIG_CHELSIO_T1 is not set | 693 | # CONFIG_CHELSIO_T1 is not set |
| 685 | # CONFIG_CHELSIO_T3 is not set | 694 | # CONFIG_CHELSIO_T3 is not set |
| @@ -767,6 +776,7 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | |||
| 767 | # Character devices | 776 | # Character devices |
| 768 | # | 777 | # |
| 769 | CONFIG_VT=y | 778 | CONFIG_VT=y |
| 779 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 770 | CONFIG_VT_CONSOLE=y | 780 | CONFIG_VT_CONSOLE=y |
| 771 | CONFIG_HW_CONSOLE=y | 781 | CONFIG_HW_CONSOLE=y |
| 772 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 782 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -789,6 +799,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 789 | CONFIG_LEGACY_PTYS=y | 799 | CONFIG_LEGACY_PTYS=y |
| 790 | CONFIG_LEGACY_PTY_COUNT=256 | 800 | CONFIG_LEGACY_PTY_COUNT=256 |
| 791 | CONFIG_HVC_DRIVER=y | 801 | CONFIG_HVC_DRIVER=y |
| 802 | CONFIG_HVC_IRQ=y | ||
| 792 | CONFIG_HVC_ISERIES=y | 803 | CONFIG_HVC_ISERIES=y |
| 793 | # CONFIG_IPMI_HANDLER is not set | 804 | # CONFIG_IPMI_HANDLER is not set |
| 794 | # CONFIG_HW_RANDOM is not set | 805 | # CONFIG_HW_RANDOM is not set |
| @@ -803,10 +814,13 @@ CONFIG_MAX_RAW_DEVS=256 | |||
| 803 | CONFIG_DEVPORT=y | 814 | CONFIG_DEVPORT=y |
| 804 | # CONFIG_I2C is not set | 815 | # CONFIG_I2C is not set |
| 805 | # CONFIG_SPI is not set | 816 | # CONFIG_SPI is not set |
| 817 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 818 | # CONFIG_GPIOLIB is not set | ||
| 806 | # CONFIG_W1 is not set | 819 | # CONFIG_W1 is not set |
| 807 | # CONFIG_POWER_SUPPLY is not set | 820 | # CONFIG_POWER_SUPPLY is not set |
| 808 | # CONFIG_HWMON is not set | 821 | # CONFIG_HWMON is not set |
| 809 | # CONFIG_THERMAL is not set | 822 | # CONFIG_THERMAL is not set |
| 823 | # CONFIG_THERMAL_HWMON is not set | ||
| 810 | # CONFIG_WATCHDOG is not set | 824 | # CONFIG_WATCHDOG is not set |
| 811 | 825 | ||
| 812 | # | 826 | # |
| @@ -818,8 +832,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 818 | # | 832 | # |
| 819 | # Multifunction device drivers | 833 | # Multifunction device drivers |
| 820 | # | 834 | # |
| 835 | # CONFIG_MFD_CORE is not set | ||
| 821 | # CONFIG_MFD_SM501 is not set | 836 | # CONFIG_MFD_SM501 is not set |
| 822 | # CONFIG_HTC_PASIC3 is not set | 837 | # CONFIG_HTC_PASIC3 is not set |
| 838 | # CONFIG_MFD_TMIO is not set | ||
| 823 | 839 | ||
| 824 | # | 840 | # |
| 825 | # Multimedia devices | 841 | # Multimedia devices |
| @@ -858,10 +874,6 @@ CONFIG_SSB_POSSIBLE=y | |||
| 858 | CONFIG_VGA_CONSOLE=y | 874 | CONFIG_VGA_CONSOLE=y |
| 859 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | 875 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set |
| 860 | CONFIG_DUMMY_CONSOLE=y | 876 | CONFIG_DUMMY_CONSOLE=y |
| 861 | |||
| 862 | # | ||
| 863 | # Sound | ||
| 864 | # | ||
| 865 | # CONFIG_SOUND is not set | 877 | # CONFIG_SOUND is not set |
| 866 | # CONFIG_HID_SUPPORT is not set | 878 | # CONFIG_HID_SUPPORT is not set |
| 867 | # CONFIG_USB_SUPPORT is not set | 879 | # CONFIG_USB_SUPPORT is not set |
| @@ -910,7 +922,6 @@ CONFIG_XFS_POSIX_ACL=y | |||
| 910 | # CONFIG_XFS_RT is not set | 922 | # CONFIG_XFS_RT is not set |
| 911 | # CONFIG_XFS_DEBUG is not set | 923 | # CONFIG_XFS_DEBUG is not set |
| 912 | CONFIG_GFS2_FS=m | 924 | CONFIG_GFS2_FS=m |
| 913 | CONFIG_GFS2_FS_LOCKING_NOLOCK=m | ||
| 914 | CONFIG_GFS2_FS_LOCKING_DLM=m | 925 | CONFIG_GFS2_FS_LOCKING_DLM=m |
| 915 | # CONFIG_OCFS2_FS is not set | 926 | # CONFIG_OCFS2_FS is not set |
| 916 | CONFIG_DNOTIFY=y | 927 | CONFIG_DNOTIFY=y |
| @@ -967,6 +978,7 @@ CONFIG_CONFIGFS_FS=m | |||
| 967 | CONFIG_CRAMFS=y | 978 | CONFIG_CRAMFS=y |
| 968 | # CONFIG_VXFS_FS is not set | 979 | # CONFIG_VXFS_FS is not set |
| 969 | # CONFIG_MINIX_FS is not set | 980 | # CONFIG_MINIX_FS is not set |
| 981 | # CONFIG_OMFS_FS is not set | ||
| 970 | # CONFIG_HPFS_FS is not set | 982 | # CONFIG_HPFS_FS is not set |
| 971 | # CONFIG_QNX4FS_FS is not set | 983 | # CONFIG_QNX4FS_FS is not set |
| 972 | # CONFIG_ROMFS_FS is not set | 984 | # CONFIG_ROMFS_FS is not set |
| @@ -989,7 +1001,6 @@ CONFIG_NFS_ACL_SUPPORT=y | |||
| 989 | CONFIG_NFS_COMMON=y | 1001 | CONFIG_NFS_COMMON=y |
| 990 | CONFIG_SUNRPC=y | 1002 | CONFIG_SUNRPC=y |
| 991 | CONFIG_SUNRPC_GSS=y | 1003 | CONFIG_SUNRPC_GSS=y |
| 992 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 993 | CONFIG_RPCSEC_GSS_KRB5=y | 1004 | CONFIG_RPCSEC_GSS_KRB5=y |
| 994 | CONFIG_RPCSEC_GSS_SPKM3=m | 1005 | CONFIG_RPCSEC_GSS_SPKM3=m |
| 995 | # CONFIG_SMB_FS is not set | 1006 | # CONFIG_SMB_FS is not set |
| @@ -1059,6 +1070,7 @@ CONFIG_BITREVERSE=y | |||
| 1059 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1070 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1060 | CONFIG_CRC_CCITT=m | 1071 | CONFIG_CRC_CCITT=m |
| 1061 | # CONFIG_CRC16 is not set | 1072 | # CONFIG_CRC16 is not set |
| 1073 | CONFIG_CRC_T10DIF=y | ||
| 1062 | CONFIG_CRC_ITU_T=m | 1074 | CONFIG_CRC_ITU_T=m |
| 1063 | CONFIG_CRC32=y | 1075 | CONFIG_CRC32=y |
| 1064 | # CONFIG_CRC7 is not set | 1076 | # CONFIG_CRC7 is not set |
| @@ -1089,8 +1101,10 @@ CONFIG_DEBUG_FS=y | |||
| 1089 | CONFIG_DEBUG_KERNEL=y | 1101 | CONFIG_DEBUG_KERNEL=y |
| 1090 | # CONFIG_DEBUG_SHIRQ is not set | 1102 | # CONFIG_DEBUG_SHIRQ is not set |
| 1091 | CONFIG_DETECT_SOFTLOCKUP=y | 1103 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1104 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1105 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1092 | CONFIG_SCHED_DEBUG=y | 1106 | CONFIG_SCHED_DEBUG=y |
| 1093 | # CONFIG_SCHEDSTATS is not set | 1107 | CONFIG_SCHEDSTATS=y |
| 1094 | # CONFIG_TIMER_STATS is not set | 1108 | # CONFIG_TIMER_STATS is not set |
| 1095 | # CONFIG_DEBUG_OBJECTS is not set | 1109 | # CONFIG_DEBUG_OBJECTS is not set |
| 1096 | # CONFIG_SLUB_DEBUG_ON is not set | 1110 | # CONFIG_SLUB_DEBUG_ON is not set |
| @@ -1104,22 +1118,37 @@ CONFIG_SCHED_DEBUG=y | |||
| 1104 | # CONFIG_LOCK_STAT is not set | 1118 | # CONFIG_LOCK_STAT is not set |
| 1105 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1119 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1106 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 1120 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
| 1121 | CONFIG_STACKTRACE=y | ||
| 1107 | # CONFIG_DEBUG_KOBJECT is not set | 1122 | # CONFIG_DEBUG_KOBJECT is not set |
| 1108 | CONFIG_DEBUG_BUGVERBOSE=y | 1123 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1109 | # CONFIG_DEBUG_INFO is not set | 1124 | # CONFIG_DEBUG_INFO is not set |
| 1110 | # CONFIG_DEBUG_VM is not set | 1125 | # CONFIG_DEBUG_VM is not set |
| 1111 | # CONFIG_DEBUG_WRITECOUNT is not set | 1126 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1127 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 1112 | # CONFIG_DEBUG_LIST is not set | 1128 | # CONFIG_DEBUG_LIST is not set |
| 1113 | # CONFIG_DEBUG_SG is not set | 1129 | # CONFIG_DEBUG_SG is not set |
| 1130 | CONFIG_FRAME_POINTER=y | ||
| 1114 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1131 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1115 | # CONFIG_RCU_TORTURE_TEST is not set | 1132 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1116 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1133 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1117 | # CONFIG_FAULT_INJECTION is not set | 1134 | # CONFIG_FAULT_INJECTION is not set |
| 1135 | CONFIG_LATENCYTOP=y | ||
| 1136 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1137 | CONFIG_HAVE_FTRACE=y | ||
| 1138 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1139 | # CONFIG_FTRACE is not set | ||
| 1140 | # CONFIG_IRQSOFF_TRACER is not set | ||
| 1141 | # CONFIG_SCHED_TRACER is not set | ||
| 1142 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1118 | # CONFIG_SAMPLES is not set | 1143 | # CONFIG_SAMPLES is not set |
| 1144 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1145 | # CONFIG_KGDB is not set | ||
| 1119 | CONFIG_DEBUG_STACKOVERFLOW=y | 1146 | CONFIG_DEBUG_STACKOVERFLOW=y |
| 1120 | CONFIG_DEBUG_STACK_USAGE=y | 1147 | CONFIG_DEBUG_STACK_USAGE=y |
| 1121 | # CONFIG_DEBUG_PAGEALLOC is not set | 1148 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1122 | # CONFIG_DEBUGGER is not set | 1149 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1150 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1151 | # CONFIG_XMON is not set | ||
| 1123 | CONFIG_IRQSTACKS=y | 1152 | CONFIG_IRQSTACKS=y |
| 1124 | # CONFIG_VIRQ_DEBUG is not set | 1153 | # CONFIG_VIRQ_DEBUG is not set |
| 1125 | # CONFIG_BOOTX_TEXT is not set | 1154 | # CONFIG_BOOTX_TEXT is not set |
| @@ -1178,6 +1207,10 @@ CONFIG_CRYPTO_CRC32C=m | |||
| 1178 | CONFIG_CRYPTO_MD4=m | 1207 | CONFIG_CRYPTO_MD4=m |
| 1179 | CONFIG_CRYPTO_MD5=y | 1208 | CONFIG_CRYPTO_MD5=y |
| 1180 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1209 | CONFIG_CRYPTO_MICHAEL_MIC=m |
| 1210 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1211 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1212 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1213 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1181 | CONFIG_CRYPTO_SHA1=m | 1214 | CONFIG_CRYPTO_SHA1=m |
| 1182 | CONFIG_CRYPTO_SHA256=m | 1215 | CONFIG_CRYPTO_SHA256=m |
| 1183 | CONFIG_CRYPTO_SHA512=m | 1216 | CONFIG_CRYPTO_SHA512=m |
diff --git a/arch/powerpc/configs/linkstation_defconfig b/arch/powerpc/configs/linkstation_defconfig index 48434c2c7628..6fc4c2127757 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:10 2008 | 4 | # Thu Aug 21 00:52:05 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 34 | CONFIG_STACKTRACE_SUPPORT=y |
| 35 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 36 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 38 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -93,7 +94,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 93 | CONFIG_SYSCTL=y | 94 | CONFIG_SYSCTL=y |
| 94 | # CONFIG_EMBEDDED is not set | 95 | # CONFIG_EMBEDDED is not set |
| 95 | CONFIG_SYSCTL_SYSCALL=y | 96 | CONFIG_SYSCTL_SYSCALL=y |
| 96 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 97 | CONFIG_KALLSYMS=y | 97 | CONFIG_KALLSYMS=y |
| 98 | # CONFIG_KALLSYMS_ALL is not set | 98 | # CONFIG_KALLSYMS_ALL is not set |
| 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -119,10 +119,16 @@ CONFIG_SLUB=y | |||
| 119 | # CONFIG_MARKERS 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 | ||
| 123 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 122 | CONFIG_HAVE_KPROBES=y | 124 | CONFIG_HAVE_KPROBES=y |
| 123 | CONFIG_HAVE_KRETPROBES=y | 125 | CONFIG_HAVE_KRETPROBES=y |
| 126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 124 | # CONFIG_HAVE_DMA_ATTRS is not set | 127 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 128 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 129 | # CONFIG_HAVE_CLK is not set | ||
| 125 | CONFIG_PROC_PAGE_MONITOR=y | 130 | CONFIG_PROC_PAGE_MONITOR=y |
| 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 126 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
| 127 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
| 128 | # CONFIG_TINY_SHMEM is not set | 134 | # CONFIG_TINY_SHMEM is not set |
| @@ -139,6 +145,7 @@ CONFIG_BLOCK=y | |||
| 139 | # CONFIG_BLK_DEV_IO_TRACE is not set | 145 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 140 | # CONFIG_LSF is not set | 146 | # CONFIG_LSF is not set |
| 141 | # CONFIG_BLK_DEV_BSG is not set | 147 | # CONFIG_BLK_DEV_BSG is not set |
| 148 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 142 | 149 | ||
| 143 | # | 150 | # |
| 144 | # IO Schedulers | 151 | # IO Schedulers |
| @@ -158,25 +165,25 @@ CONFIG_CLASSIC_RCU=y | |||
| 158 | # Platform support | 165 | # Platform support |
| 159 | # | 166 | # |
| 160 | CONFIG_PPC_MULTIPLATFORM=y | 167 | CONFIG_PPC_MULTIPLATFORM=y |
| 161 | # CONFIG_PPC_82xx is not set | ||
| 162 | # CONFIG_PPC_83xx is not set | ||
| 163 | # CONFIG_PPC_86xx is not set | ||
| 164 | CONFIG_CLASSIC32=y | 168 | CONFIG_CLASSIC32=y |
| 165 | # CONFIG_PPC_CHRP is not set | 169 | # CONFIG_PPC_CHRP is not set |
| 166 | # CONFIG_PPC_MPC512x is not set | ||
| 167 | # CONFIG_PPC_MPC5121 is not set | ||
| 168 | # CONFIG_MPC5121_ADS is not set | 170 | # CONFIG_MPC5121_ADS is not set |
| 171 | # CONFIG_MPC5121_GENERIC is not set | ||
| 169 | # CONFIG_PPC_MPC52xx is not set | 172 | # CONFIG_PPC_MPC52xx is not set |
| 170 | # CONFIG_PPC_PMAC is not set | 173 | # CONFIG_PPC_PMAC is not set |
| 171 | # CONFIG_PPC_CELL is not set | 174 | # CONFIG_PPC_CELL is not set |
| 172 | # CONFIG_PPC_CELL_NATIVE is not set | 175 | # CONFIG_PPC_CELL_NATIVE is not set |
| 176 | # CONFIG_PPC_82xx is not set | ||
| 173 | # CONFIG_PQ2ADS is not set | 177 | # CONFIG_PQ2ADS is not set |
| 178 | # CONFIG_PPC_83xx is not set | ||
| 179 | # CONFIG_PPC_86xx is not set | ||
| 174 | CONFIG_EMBEDDED6xx=y | 180 | CONFIG_EMBEDDED6xx=y |
| 175 | CONFIG_LINKSTATION=y | 181 | CONFIG_LINKSTATION=y |
| 176 | # CONFIG_STORCENTER is not set | 182 | # CONFIG_STORCENTER is not set |
| 177 | # CONFIG_MPC7448HPC2 is not set | 183 | # CONFIG_MPC7448HPC2 is not set |
| 178 | # CONFIG_PPC_HOLLY is not set | 184 | # CONFIG_PPC_HOLLY is not set |
| 179 | # CONFIG_PPC_PRPMC2800 is not set | 185 | # CONFIG_PPC_PRPMC2800 is not set |
| 186 | # CONFIG_PPC_C2K is not set | ||
| 180 | CONFIG_MPC10X_BRIDGE=y | 187 | CONFIG_MPC10X_BRIDGE=y |
| 181 | CONFIG_MPC10X_OPENPIC=y | 188 | CONFIG_MPC10X_OPENPIC=y |
| 182 | # CONFIG_MPC10X_STORE_GATHERING is not set | 189 | # CONFIG_MPC10X_STORE_GATHERING is not set |
| @@ -207,7 +214,7 @@ CONFIG_HZ_100=y | |||
| 207 | # CONFIG_HZ_300 is not set | 214 | # CONFIG_HZ_300 is not set |
| 208 | # CONFIG_HZ_1000 is not set | 215 | # CONFIG_HZ_1000 is not set |
| 209 | CONFIG_HZ=100 | 216 | CONFIG_HZ=100 |
| 210 | # CONFIG_SCHED_HRTICK is not set | 217 | CONFIG_SCHED_HRTICK=y |
| 211 | CONFIG_PREEMPT_NONE=y | 218 | CONFIG_PREEMPT_NONE=y |
| 212 | # CONFIG_PREEMPT_VOLUNTARY is not set | 219 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 213 | # CONFIG_PREEMPT is not set | 220 | # CONFIG_PREEMPT is not set |
| @@ -230,6 +237,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 230 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 237 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 231 | CONFIG_PAGEFLAGS_EXTENDED=y | 238 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 232 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 239 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 240 | CONFIG_MIGRATION=y | ||
| 233 | # CONFIG_RESOURCES_64BIT is not set | 241 | # CONFIG_RESOURCES_64BIT is not set |
| 234 | CONFIG_ZONE_DMA_FLAG=1 | 242 | CONFIG_ZONE_DMA_FLAG=1 |
| 235 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
| @@ -237,6 +245,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 245 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 238 | CONFIG_PROC_DEVICETREE=y | 246 | CONFIG_PROC_DEVICETREE=y |
| 239 | # CONFIG_CMDLINE_BOOL is not set | 247 | # CONFIG_CMDLINE_BOOL is not set |
| 248 | CONFIG_EXTRA_TARGETS="" | ||
| 240 | # CONFIG_PM is not set | 249 | # CONFIG_PM is not set |
| 241 | CONFIG_SECCOMP=y | 250 | CONFIG_SECCOMP=y |
| 242 | CONFIG_ISA_DMA_API=y | 251 | CONFIG_ISA_DMA_API=y |
| @@ -273,10 +282,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 273 | CONFIG_KERNEL_START=0xc0000000 | 282 | CONFIG_KERNEL_START=0xc0000000 |
| 274 | CONFIG_PHYSICAL_START=0x00000000 | 283 | CONFIG_PHYSICAL_START=0x00000000 |
| 275 | CONFIG_TASK_SIZE=0xc0000000 | 284 | CONFIG_TASK_SIZE=0xc0000000 |
| 276 | |||
| 277 | # | ||
| 278 | # Networking | ||
| 279 | # | ||
| 280 | CONFIG_NET=y | 285 | CONFIG_NET=y |
| 281 | 286 | ||
| 282 | # | 287 | # |
| @@ -461,6 +466,7 @@ CONFIG_IP_NF_ARP_MANGLE=m | |||
| 461 | # | 466 | # |
| 462 | # CONFIG_CFG80211 is not set | 467 | # CONFIG_CFG80211 is not set |
| 463 | CONFIG_WIRELESS_EXT=y | 468 | CONFIG_WIRELESS_EXT=y |
| 469 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
| 464 | # CONFIG_MAC80211 is not set | 470 | # CONFIG_MAC80211 is not set |
| 465 | CONFIG_IEEE80211=m | 471 | CONFIG_IEEE80211=m |
| 466 | CONFIG_IEEE80211_DEBUG=y | 472 | CONFIG_IEEE80211_DEBUG=y |
| @@ -480,7 +486,9 @@ CONFIG_IEEE80211_CRYPT_TKIP=m | |||
| 480 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 486 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
| 481 | CONFIG_STANDALONE=y | 487 | CONFIG_STANDALONE=y |
| 482 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 488 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 483 | CONFIG_FW_LOADER=m | 489 | CONFIG_FW_LOADER=y |
| 490 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 491 | CONFIG_EXTRA_FIRMWARE="" | ||
| 484 | # CONFIG_DEBUG_DRIVER is not set | 492 | # CONFIG_DEBUG_DRIVER is not set |
| 485 | # CONFIG_DEBUG_DEVRES is not set | 493 | # CONFIG_DEBUG_DEVRES is not set |
| 486 | # CONFIG_SYS_HYPERVISOR is not set | 494 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -592,12 +600,14 @@ CONFIG_BLK_DEV_RAM_SIZE=8192 | |||
| 592 | # CONFIG_BLK_DEV_XIP is not set | 600 | # CONFIG_BLK_DEV_XIP is not set |
| 593 | # CONFIG_CDROM_PKTCDVD is not set | 601 | # CONFIG_CDROM_PKTCDVD is not set |
| 594 | # CONFIG_ATA_OVER_ETH is not set | 602 | # CONFIG_ATA_OVER_ETH is not set |
| 603 | # CONFIG_BLK_DEV_HD is not set | ||
| 595 | CONFIG_MISC_DEVICES=y | 604 | CONFIG_MISC_DEVICES=y |
| 596 | # CONFIG_PHANTOM is not set | 605 | # CONFIG_PHANTOM is not set |
| 597 | # CONFIG_EEPROM_93CX6 is not set | 606 | # CONFIG_EEPROM_93CX6 is not set |
| 598 | # CONFIG_SGI_IOC4 is not set | 607 | # CONFIG_SGI_IOC4 is not set |
| 599 | # CONFIG_TIFM_CORE is not set | 608 | # CONFIG_TIFM_CORE is not set |
| 600 | # CONFIG_ENCLOSURE_SERVICES is not set | 609 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 610 | # CONFIG_HP_ILO is not set | ||
| 601 | CONFIG_HAVE_IDE=y | 611 | CONFIG_HAVE_IDE=y |
| 602 | # CONFIG_IDE is not set | 612 | # CONFIG_IDE is not set |
| 603 | 613 | ||
| @@ -676,6 +686,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 676 | # CONFIG_SCSI_NSP32 is not set | 686 | # CONFIG_SCSI_NSP32 is not set |
| 677 | # CONFIG_SCSI_DEBUG is not set | 687 | # CONFIG_SCSI_DEBUG is not set |
| 678 | # CONFIG_SCSI_SRP is not set | 688 | # CONFIG_SCSI_SRP is not set |
| 689 | # CONFIG_SCSI_DH is not set | ||
| 679 | CONFIG_ATA=y | 690 | CONFIG_ATA=y |
| 680 | # CONFIG_ATA_NONSTANDARD is not set | 691 | # CONFIG_ATA_NONSTANDARD is not set |
| 681 | CONFIG_SATA_PMP=y | 692 | CONFIG_SATA_PMP=y |
| @@ -743,12 +754,15 @@ CONFIG_PATA_SIL680=y | |||
| 743 | # | 754 | # |
| 744 | # IEEE 1394 (FireWire) support | 755 | # IEEE 1394 (FireWire) support |
| 745 | # | 756 | # |
| 757 | |||
| 758 | # | ||
| 759 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 760 | # | ||
| 746 | # CONFIG_FIREWIRE is not set | 761 | # CONFIG_FIREWIRE is not set |
| 747 | # CONFIG_IEEE1394 is not set | 762 | # CONFIG_IEEE1394 is not set |
| 748 | # CONFIG_I2O is not set | 763 | # CONFIG_I2O is not set |
| 749 | # CONFIG_MACINTOSH_DRIVERS is not set | 764 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 750 | CONFIG_NETDEVICES=y | 765 | CONFIG_NETDEVICES=y |
| 751 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 752 | # CONFIG_DUMMY is not set | 766 | # CONFIG_DUMMY is not set |
| 753 | # CONFIG_BONDING is not set | 767 | # CONFIG_BONDING is not set |
| 754 | # CONFIG_MACVLAN is not set | 768 | # CONFIG_MACVLAN is not set |
| @@ -785,14 +799,12 @@ CONFIG_NETDEV_1000=y | |||
| 785 | # CONFIG_DL2K is not set | 799 | # CONFIG_DL2K is not set |
| 786 | # CONFIG_E1000 is not set | 800 | # CONFIG_E1000 is not set |
| 787 | # CONFIG_E1000E is not set | 801 | # CONFIG_E1000E is not set |
| 788 | # CONFIG_E1000E_ENABLED is not set | ||
| 789 | # CONFIG_IP1000 is not set | 802 | # CONFIG_IP1000 is not set |
| 790 | # CONFIG_IGB is not set | 803 | # CONFIG_IGB is not set |
| 791 | # CONFIG_NS83820 is not set | 804 | # CONFIG_NS83820 is not set |
| 792 | # CONFIG_HAMACHI is not set | 805 | # CONFIG_HAMACHI is not set |
| 793 | # CONFIG_YELLOWFIN is not set | 806 | # CONFIG_YELLOWFIN is not set |
| 794 | CONFIG_R8169=y | 807 | CONFIG_R8169=y |
| 795 | # CONFIG_R8169_NAPI is not set | ||
| 796 | # CONFIG_SIS190 is not set | 808 | # CONFIG_SIS190 is not set |
| 797 | # CONFIG_SKGE is not set | 809 | # CONFIG_SKGE is not set |
| 798 | # CONFIG_SKY2 is not set | 810 | # CONFIG_SKY2 is not set |
| @@ -803,6 +815,7 @@ CONFIG_R8169=y | |||
| 803 | # CONFIG_MV643XX_ETH is not set | 815 | # CONFIG_MV643XX_ETH is not set |
| 804 | # CONFIG_QLA3XXX is not set | 816 | # CONFIG_QLA3XXX is not set |
| 805 | # CONFIG_ATL1 is not set | 817 | # CONFIG_ATL1 is not set |
| 818 | # CONFIG_ATL1E is not set | ||
| 806 | CONFIG_NETDEV_10000=y | 819 | CONFIG_NETDEV_10000=y |
| 807 | # CONFIG_CHELSIO_T1 is not set | 820 | # CONFIG_CHELSIO_T1 is not set |
| 808 | # CONFIG_CHELSIO_T3 is not set | 821 | # CONFIG_CHELSIO_T3 is not set |
| @@ -889,12 +902,14 @@ CONFIG_SERIO=y | |||
| 889 | CONFIG_SERIO_SERPORT=y | 902 | CONFIG_SERIO_SERPORT=y |
| 890 | # CONFIG_SERIO_PCIPS2 is not set | 903 | # CONFIG_SERIO_PCIPS2 is not set |
| 891 | # CONFIG_SERIO_RAW is not set | 904 | # CONFIG_SERIO_RAW is not set |
| 905 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 892 | # CONFIG_GAMEPORT is not set | 906 | # CONFIG_GAMEPORT is not set |
| 893 | 907 | ||
| 894 | # | 908 | # |
| 895 | # Character devices | 909 | # Character devices |
| 896 | # | 910 | # |
| 897 | CONFIG_VT=y | 911 | CONFIG_VT=y |
| 912 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 898 | CONFIG_VT_CONSOLE=y | 913 | CONFIG_VT_CONSOLE=y |
| 899 | CONFIG_HW_CONSOLE=y | 914 | CONFIG_HW_CONSOLE=y |
| 900 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 915 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -934,43 +949,64 @@ CONFIG_DEVPORT=y | |||
| 934 | CONFIG_I2C=y | 949 | CONFIG_I2C=y |
| 935 | CONFIG_I2C_BOARDINFO=y | 950 | CONFIG_I2C_BOARDINFO=y |
| 936 | CONFIG_I2C_CHARDEV=y | 951 | CONFIG_I2C_CHARDEV=y |
| 952 | CONFIG_I2C_HELPER_AUTO=y | ||
| 937 | 953 | ||
| 938 | # | 954 | # |
| 939 | # I2C Hardware Bus support | 955 | # I2C Hardware Bus support |
| 940 | # | 956 | # |
| 957 | |||
| 958 | # | ||
| 959 | # PC SMBus host controller drivers | ||
| 960 | # | ||
| 941 | # CONFIG_I2C_ALI1535 is not set | 961 | # CONFIG_I2C_ALI1535 is not set |
| 942 | # CONFIG_I2C_ALI1563 is not set | 962 | # CONFIG_I2C_ALI1563 is not set |
| 943 | # CONFIG_I2C_ALI15X3 is not set | 963 | # CONFIG_I2C_ALI15X3 is not set |
| 944 | # CONFIG_I2C_AMD756 is not set | 964 | # CONFIG_I2C_AMD756 is not set |
| 945 | # CONFIG_I2C_AMD8111 is not set | 965 | # CONFIG_I2C_AMD8111 is not set |
| 946 | # CONFIG_I2C_I801 is not set | 966 | # CONFIG_I2C_I801 is not set |
| 947 | # CONFIG_I2C_I810 is not set | 967 | # CONFIG_I2C_ISCH is not set |
| 948 | # CONFIG_I2C_PIIX4 is not set | 968 | # CONFIG_I2C_PIIX4 is not set |
| 949 | CONFIG_I2C_MPC=y | ||
| 950 | # CONFIG_I2C_NFORCE2 is not set | 969 | # CONFIG_I2C_NFORCE2 is not set |
| 951 | # CONFIG_I2C_OCORES is not set | ||
| 952 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 953 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 954 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 955 | # CONFIG_I2C_SIMTEC is not set | ||
| 956 | # CONFIG_I2C_SIS5595 is not set | 970 | # CONFIG_I2C_SIS5595 is not set |
| 957 | # CONFIG_I2C_SIS630 is not set | 971 | # CONFIG_I2C_SIS630 is not set |
| 958 | # CONFIG_I2C_SIS96X is not set | 972 | # CONFIG_I2C_SIS96X is not set |
| 959 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 960 | # CONFIG_I2C_STUB is not set | ||
| 961 | # CONFIG_I2C_TINY_USB is not set | ||
| 962 | # CONFIG_I2C_VIA is not set | 973 | # CONFIG_I2C_VIA is not set |
| 963 | # CONFIG_I2C_VIAPRO is not set | 974 | # CONFIG_I2C_VIAPRO is not set |
| 975 | |||
| 976 | # | ||
| 977 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 978 | # | ||
| 979 | CONFIG_I2C_MPC=y | ||
| 980 | # CONFIG_I2C_OCORES is not set | ||
| 981 | # CONFIG_I2C_SIMTEC is not set | ||
| 982 | |||
| 983 | # | ||
| 984 | # External I2C/SMBus adapter drivers | ||
| 985 | # | ||
| 986 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 987 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 988 | # CONFIG_I2C_TINY_USB is not set | ||
| 989 | |||
| 990 | # | ||
| 991 | # Graphics adapter I2C/DDC channel drivers | ||
| 992 | # | ||
| 964 | # CONFIG_I2C_VOODOO3 is not set | 993 | # CONFIG_I2C_VOODOO3 is not set |
| 994 | |||
| 995 | # | ||
| 996 | # Other I2C/SMBus bus drivers | ||
| 997 | # | ||
| 965 | # CONFIG_I2C_PCA_PLATFORM is not set | 998 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 999 | # CONFIG_I2C_STUB is not set | ||
| 966 | 1000 | ||
| 967 | # | 1001 | # |
| 968 | # Miscellaneous I2C Chip support | 1002 | # Miscellaneous I2C Chip support |
| 969 | # | 1003 | # |
| 970 | # CONFIG_DS1682 is not set | 1004 | # CONFIG_DS1682 is not set |
| 1005 | # CONFIG_AT24 is not set | ||
| 971 | CONFIG_SENSORS_EEPROM=m | 1006 | CONFIG_SENSORS_EEPROM=m |
| 972 | # CONFIG_SENSORS_PCF8574 is not set | 1007 | # CONFIG_SENSORS_PCF8574 is not set |
| 973 | # CONFIG_PCF8575 is not set | 1008 | # CONFIG_PCF8575 is not set |
| 1009 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 974 | # CONFIG_SENSORS_PCF8591 is not set | 1010 | # CONFIG_SENSORS_PCF8591 is not set |
| 975 | # CONFIG_SENSORS_MAX6875 is not set | 1011 | # CONFIG_SENSORS_MAX6875 is not set |
| 976 | # CONFIG_SENSORS_TSL2550 is not set | 1012 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -979,10 +1015,13 @@ CONFIG_SENSORS_EEPROM=m | |||
| 979 | # CONFIG_I2C_DEBUG_BUS is not set | 1015 | # CONFIG_I2C_DEBUG_BUS is not set |
| 980 | # CONFIG_I2C_DEBUG_CHIP is not set | 1016 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 981 | # CONFIG_SPI is not set | 1017 | # CONFIG_SPI is not set |
| 1018 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 1019 | # CONFIG_GPIOLIB is not set | ||
| 982 | # CONFIG_W1 is not set | 1020 | # CONFIG_W1 is not set |
| 983 | # CONFIG_POWER_SUPPLY is not set | 1021 | # CONFIG_POWER_SUPPLY is not set |
| 984 | CONFIG_HWMON=y | 1022 | CONFIG_HWMON=y |
| 985 | # CONFIG_HWMON_VID is not set | 1023 | # CONFIG_HWMON_VID is not set |
| 1024 | # CONFIG_SENSORS_AD7414 is not set | ||
| 986 | # CONFIG_SENSORS_AD7418 is not set | 1025 | # CONFIG_SENSORS_AD7418 is not set |
| 987 | # CONFIG_SENSORS_ADM1021 is not set | 1026 | # CONFIG_SENSORS_ADM1021 is not set |
| 988 | # CONFIG_SENSORS_ADM1025 is not set | 1027 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -1036,6 +1075,7 @@ CONFIG_HWMON=y | |||
| 1036 | # CONFIG_SENSORS_W83627EHF is not set | 1075 | # CONFIG_SENSORS_W83627EHF is not set |
| 1037 | # CONFIG_HWMON_DEBUG_CHIP is not set | 1076 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 1038 | # CONFIG_THERMAL is not set | 1077 | # CONFIG_THERMAL is not set |
| 1078 | # CONFIG_THERMAL_HWMON is not set | ||
| 1039 | # CONFIG_WATCHDOG is not set | 1079 | # CONFIG_WATCHDOG is not set |
| 1040 | 1080 | ||
| 1041 | # | 1081 | # |
| @@ -1047,8 +1087,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 1047 | # | 1087 | # |
| 1048 | # Multifunction device drivers | 1088 | # Multifunction device drivers |
| 1049 | # | 1089 | # |
| 1090 | # CONFIG_MFD_CORE is not set | ||
| 1050 | # CONFIG_MFD_SM501 is not set | 1091 | # CONFIG_MFD_SM501 is not set |
| 1051 | # CONFIG_HTC_PASIC3 is not set | 1092 | # CONFIG_HTC_PASIC3 is not set |
| 1093 | # CONFIG_MFD_TMIO is not set | ||
| 1052 | 1094 | ||
| 1053 | # | 1095 | # |
| 1054 | # Multimedia devices | 1096 | # Multimedia devices |
| @@ -1086,10 +1128,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 1086 | # | 1128 | # |
| 1087 | # CONFIG_VGA_CONSOLE is not set | 1129 | # CONFIG_VGA_CONSOLE is not set |
| 1088 | CONFIG_DUMMY_CONSOLE=y | 1130 | CONFIG_DUMMY_CONSOLE=y |
| 1089 | |||
| 1090 | # | ||
| 1091 | # Sound | ||
| 1092 | # | ||
| 1093 | # CONFIG_SOUND is not set | 1131 | # CONFIG_SOUND is not set |
| 1094 | CONFIG_HID_SUPPORT=y | 1132 | CONFIG_HID_SUPPORT=y |
| 1095 | CONFIG_HID=m | 1133 | CONFIG_HID=m |
| @@ -1121,6 +1159,7 @@ CONFIG_USB_DEVICEFS=y | |||
| 1121 | CONFIG_USB_DEVICE_CLASS=y | 1159 | CONFIG_USB_DEVICE_CLASS=y |
| 1122 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1160 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1123 | # CONFIG_USB_OTG is not set | 1161 | # CONFIG_USB_OTG is not set |
| 1162 | CONFIG_USB_MON=y | ||
| 1124 | 1163 | ||
| 1125 | # | 1164 | # |
| 1126 | # USB Host Controller Drivers | 1165 | # USB Host Controller Drivers |
| @@ -1172,6 +1211,7 @@ CONFIG_USB_STORAGE=m | |||
| 1172 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1211 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1173 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1212 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1174 | # CONFIG_USB_STORAGE_KARMA is not set | 1213 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1214 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1175 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1215 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1176 | # CONFIG_USB_LIBUSUAL is not set | 1216 | # CONFIG_USB_LIBUSUAL is not set |
| 1177 | 1217 | ||
| @@ -1180,7 +1220,6 @@ CONFIG_USB_STORAGE=m | |||
| 1180 | # | 1220 | # |
| 1181 | # CONFIG_USB_MDC800 is not set | 1221 | # CONFIG_USB_MDC800 is not set |
| 1182 | # CONFIG_USB_MICROTEK is not set | 1222 | # CONFIG_USB_MICROTEK is not set |
| 1183 | CONFIG_USB_MON=y | ||
| 1184 | 1223 | ||
| 1185 | # | 1224 | # |
| 1186 | # USB port drivers | 1225 | # USB port drivers |
| @@ -1190,7 +1229,6 @@ CONFIG_USB_SERIAL_CONSOLE=y | |||
| 1190 | # CONFIG_USB_EZUSB is not set | 1229 | # CONFIG_USB_EZUSB is not set |
| 1191 | # CONFIG_USB_SERIAL_GENERIC is not set | 1230 | # CONFIG_USB_SERIAL_GENERIC is not set |
| 1192 | # CONFIG_USB_SERIAL_AIRCABLE is not set | 1231 | # CONFIG_USB_SERIAL_AIRCABLE is not set |
| 1193 | # CONFIG_USB_SERIAL_AIRPRIME is not set | ||
| 1194 | # CONFIG_USB_SERIAL_ARK3116 is not set | 1232 | # CONFIG_USB_SERIAL_ARK3116 is not set |
| 1195 | # CONFIG_USB_SERIAL_BELKIN is not set | 1233 | # CONFIG_USB_SERIAL_BELKIN is not set |
| 1196 | # CONFIG_USB_SERIAL_CH341 is not set | 1234 | # CONFIG_USB_SERIAL_CH341 is not set |
| @@ -1237,7 +1275,6 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
| 1237 | # CONFIG_USB_EMI62 is not set | 1275 | # CONFIG_USB_EMI62 is not set |
| 1238 | # CONFIG_USB_EMI26 is not set | 1276 | # CONFIG_USB_EMI26 is not set |
| 1239 | # CONFIG_USB_ADUTUX is not set | 1277 | # CONFIG_USB_ADUTUX is not set |
| 1240 | # CONFIG_USB_AUERSWALD is not set | ||
| 1241 | # CONFIG_USB_RIO500 is not set | 1278 | # CONFIG_USB_RIO500 is not set |
| 1242 | # CONFIG_USB_LEGOTOWER is not set | 1279 | # CONFIG_USB_LEGOTOWER is not set |
| 1243 | # CONFIG_USB_LCD is not set | 1280 | # CONFIG_USB_LCD is not set |
| @@ -1291,6 +1328,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
| 1291 | # CONFIG_RTC_DRV_PCF8583 is not set | 1328 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 1292 | # CONFIG_RTC_DRV_M41T80 is not set | 1329 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1293 | # CONFIG_RTC_DRV_S35390A is not set | 1330 | # CONFIG_RTC_DRV_S35390A is not set |
| 1331 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1294 | 1332 | ||
| 1295 | # | 1333 | # |
| 1296 | # SPI RTC drivers | 1334 | # SPI RTC drivers |
| @@ -1392,6 +1430,7 @@ CONFIG_TMPFS=y | |||
| 1392 | # CONFIG_CRAMFS is not set | 1430 | # CONFIG_CRAMFS is not set |
| 1393 | # CONFIG_VXFS_FS is not set | 1431 | # CONFIG_VXFS_FS is not set |
| 1394 | # CONFIG_MINIX_FS is not set | 1432 | # CONFIG_MINIX_FS is not set |
| 1433 | # CONFIG_OMFS_FS is not set | ||
| 1395 | # CONFIG_HPFS_FS is not set | 1434 | # CONFIG_HPFS_FS is not set |
| 1396 | # CONFIG_QNX4FS_FS is not set | 1435 | # CONFIG_QNX4FS_FS is not set |
| 1397 | # CONFIG_ROMFS_FS is not set | 1436 | # CONFIG_ROMFS_FS is not set |
| @@ -1402,11 +1441,11 @@ CONFIG_NFS_FS=y | |||
| 1402 | CONFIG_NFS_V3=y | 1441 | CONFIG_NFS_V3=y |
| 1403 | CONFIG_NFS_V3_ACL=y | 1442 | CONFIG_NFS_V3_ACL=y |
| 1404 | CONFIG_NFS_V4=y | 1443 | CONFIG_NFS_V4=y |
| 1444 | CONFIG_ROOT_NFS=y | ||
| 1405 | CONFIG_NFSD=m | 1445 | CONFIG_NFSD=m |
| 1406 | CONFIG_NFSD_V3=y | 1446 | CONFIG_NFSD_V3=y |
| 1407 | # CONFIG_NFSD_V3_ACL is not set | 1447 | # CONFIG_NFSD_V3_ACL is not set |
| 1408 | # CONFIG_NFSD_V4 is not set | 1448 | # CONFIG_NFSD_V4 is not set |
| 1409 | CONFIG_ROOT_NFS=y | ||
| 1410 | CONFIG_LOCKD=y | 1449 | CONFIG_LOCKD=y |
| 1411 | CONFIG_LOCKD_V4=y | 1450 | CONFIG_LOCKD_V4=y |
| 1412 | CONFIG_EXPORTFS=m | 1451 | CONFIG_EXPORTFS=m |
| @@ -1414,7 +1453,6 @@ CONFIG_NFS_ACL_SUPPORT=y | |||
| 1414 | CONFIG_NFS_COMMON=y | 1453 | CONFIG_NFS_COMMON=y |
| 1415 | CONFIG_SUNRPC=y | 1454 | CONFIG_SUNRPC=y |
| 1416 | CONFIG_SUNRPC_GSS=y | 1455 | CONFIG_SUNRPC_GSS=y |
| 1417 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1418 | CONFIG_RPCSEC_GSS_KRB5=y | 1456 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1419 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1457 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1420 | # CONFIG_SMB_FS is not set | 1458 | # CONFIG_SMB_FS is not set |
| @@ -1482,6 +1520,7 @@ CONFIG_BITREVERSE=y | |||
| 1482 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1520 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1483 | CONFIG_CRC_CCITT=m | 1521 | CONFIG_CRC_CCITT=m |
| 1484 | # CONFIG_CRC16 is not set | 1522 | # CONFIG_CRC16 is not set |
| 1523 | CONFIG_CRC_T10DIF=y | ||
| 1485 | CONFIG_CRC_ITU_T=m | 1524 | CONFIG_CRC_ITU_T=m |
| 1486 | CONFIG_CRC32=y | 1525 | CONFIG_CRC32=y |
| 1487 | # CONFIG_CRC7 is not set | 1526 | # CONFIG_CRC7 is not set |
| @@ -1510,6 +1549,8 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 1510 | CONFIG_DEBUG_KERNEL=y | 1549 | CONFIG_DEBUG_KERNEL=y |
| 1511 | # CONFIG_DEBUG_SHIRQ is not set | 1550 | # CONFIG_DEBUG_SHIRQ is not set |
| 1512 | CONFIG_DETECT_SOFTLOCKUP=y | 1551 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1552 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1553 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1513 | CONFIG_SCHED_DEBUG=y | 1554 | CONFIG_SCHED_DEBUG=y |
| 1514 | # CONFIG_SCHEDSTATS is not set | 1555 | # CONFIG_SCHEDSTATS is not set |
| 1515 | # CONFIG_TIMER_STATS is not set | 1556 | # CONFIG_TIMER_STATS is not set |
| @@ -1527,17 +1568,29 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 1527 | # CONFIG_DEBUG_INFO is not set | 1568 | # CONFIG_DEBUG_INFO is not set |
| 1528 | # CONFIG_DEBUG_VM is not set | 1569 | # CONFIG_DEBUG_VM is not set |
| 1529 | # CONFIG_DEBUG_WRITECOUNT is not set | 1570 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1571 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 1530 | # CONFIG_DEBUG_LIST is not set | 1572 | # CONFIG_DEBUG_LIST is not set |
| 1531 | # CONFIG_DEBUG_SG is not set | 1573 | # CONFIG_DEBUG_SG is not set |
| 1532 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1574 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1533 | # CONFIG_RCU_TORTURE_TEST is not set | 1575 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1534 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1576 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1535 | # CONFIG_FAULT_INJECTION is not set | 1577 | # CONFIG_FAULT_INJECTION is not set |
| 1578 | # CONFIG_LATENCYTOP is not set | ||
| 1579 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1580 | CONFIG_HAVE_FTRACE=y | ||
| 1581 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1582 | # CONFIG_FTRACE is not set | ||
| 1583 | # CONFIG_SCHED_TRACER is not set | ||
| 1584 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1536 | # CONFIG_SAMPLES is not set | 1585 | # CONFIG_SAMPLES is not set |
| 1586 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1587 | # CONFIG_KGDB is not set | ||
| 1537 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1588 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1538 | # CONFIG_DEBUG_STACK_USAGE is not set | 1589 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1539 | # CONFIG_DEBUG_PAGEALLOC is not set | 1590 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1540 | # CONFIG_DEBUGGER is not set | 1591 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1592 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1593 | # CONFIG_XMON is not set | ||
| 1541 | # CONFIG_IRQSTACKS is not set | 1594 | # CONFIG_IRQSTACKS is not set |
| 1542 | # CONFIG_BDI_SWITCH is not set | 1595 | # CONFIG_BDI_SWITCH is not set |
| 1543 | # CONFIG_BOOTX_TEXT is not set | 1596 | # CONFIG_BOOTX_TEXT is not set |
| @@ -1556,6 +1609,7 @@ CONFIG_CRYPTO=y | |||
| 1556 | # | 1609 | # |
| 1557 | CONFIG_CRYPTO_ALGAPI=y | 1610 | CONFIG_CRYPTO_ALGAPI=y |
| 1558 | CONFIG_CRYPTO_BLKCIPHER=y | 1611 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1612 | CONFIG_CRYPTO_HASH=m | ||
| 1559 | CONFIG_CRYPTO_MANAGER=y | 1613 | CONFIG_CRYPTO_MANAGER=y |
| 1560 | # CONFIG_CRYPTO_GF128MUL is not set | 1614 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1561 | # CONFIG_CRYPTO_NULL is not set | 1615 | # CONFIG_CRYPTO_NULL is not set |
| @@ -1594,6 +1648,10 @@ CONFIG_CRYPTO_CRC32C=m | |||
| 1594 | CONFIG_CRYPTO_MD4=m | 1648 | CONFIG_CRYPTO_MD4=m |
| 1595 | CONFIG_CRYPTO_MD5=y | 1649 | CONFIG_CRYPTO_MD5=y |
| 1596 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1650 | CONFIG_CRYPTO_MICHAEL_MIC=m |
| 1651 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1652 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1653 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1654 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1597 | CONFIG_CRYPTO_SHA1=m | 1655 | CONFIG_CRYPTO_SHA1=m |
| 1598 | # CONFIG_CRYPTO_SHA256 is not set | 1656 | # CONFIG_CRYPTO_SHA256 is not set |
| 1599 | # CONFIG_CRYPTO_SHA512 is not set | 1657 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1627,5 +1685,6 @@ CONFIG_CRYPTO_DEFLATE=m | |||
| 1627 | # CONFIG_CRYPTO_LZO is not set | 1685 | # CONFIG_CRYPTO_LZO is not set |
| 1628 | CONFIG_CRYPTO_HW=y | 1686 | CONFIG_CRYPTO_HW=y |
| 1629 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1687 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1688 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1630 | # CONFIG_PPC_CLOCK is not set | 1689 | # CONFIG_PPC_CLOCK is not set |
| 1631 | # CONFIG_VIRTUALIZATION is not set | 1690 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/maple_defconfig b/arch/powerpc/configs/maple_defconfig index 7a166a39d92d..1a3b6423222b 100644 --- a/arch/powerpc/configs/maple_defconfig +++ b/arch/powerpc/configs/maple_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.24-rc4 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Thu Dec 6 16:48:26 2007 | 4 | # Tue Aug 26 13:18:58 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
| 7 | 7 | ||
| @@ -27,7 +27,12 @@ CONFIG_GENERIC_TIME=y | |||
| 27 | CONFIG_GENERIC_TIME_VSYSCALL=y | 27 | CONFIG_GENERIC_TIME_VSYSCALL=y |
| 28 | CONFIG_GENERIC_CLOCKEVENTS=y | 28 | CONFIG_GENERIC_CLOCKEVENTS=y |
| 29 | CONFIG_GENERIC_HARDIRQS=y | 29 | CONFIG_GENERIC_HARDIRQS=y |
| 30 | CONFIG_HAVE_SETUP_PER_CPU_AREA=y | ||
| 30 | CONFIG_IRQ_PER_CPU=y | 31 | CONFIG_IRQ_PER_CPU=y |
| 32 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 33 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 34 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 32 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 33 | CONFIG_ARCH_HAS_ILOG2_U64=y | 38 | CONFIG_ARCH_HAS_ILOG2_U64=y |
| @@ -67,16 +72,20 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 67 | CONFIG_POSIX_MQUEUE=y | 72 | CONFIG_POSIX_MQUEUE=y |
| 68 | # CONFIG_BSD_PROCESS_ACCT is not set | 73 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 69 | # CONFIG_TASKSTATS is not set | 74 | # CONFIG_TASKSTATS is not set |
| 70 | # CONFIG_USER_NS is not set | ||
| 71 | # CONFIG_PID_NS is not set | ||
| 72 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
| 73 | CONFIG_IKCONFIG=y | 76 | CONFIG_IKCONFIG=y |
| 74 | CONFIG_IKCONFIG_PROC=y | 77 | CONFIG_IKCONFIG_PROC=y |
| 75 | CONFIG_LOG_BUF_SHIFT=17 | 78 | CONFIG_LOG_BUF_SHIFT=17 |
| 76 | # CONFIG_CGROUPS is not set | 79 | # CONFIG_CGROUPS is not set |
| 77 | # CONFIG_FAIR_GROUP_SCHED is not set | 80 | # CONFIG_GROUP_SCHED is not set |
| 78 | CONFIG_SYSFS_DEPRECATED=y | 81 | CONFIG_SYSFS_DEPRECATED=y |
| 82 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
| 79 | # CONFIG_RELAY is not set | 83 | # CONFIG_RELAY is not set |
| 84 | CONFIG_NAMESPACES=y | ||
| 85 | # CONFIG_UTS_NS is not set | ||
| 86 | # CONFIG_IPC_NS is not set | ||
| 87 | # CONFIG_USER_NS is not set | ||
| 88 | # CONFIG_PID_NS is not set | ||
| 80 | # CONFIG_BLK_DEV_INITRD is not set | 89 | # CONFIG_BLK_DEV_INITRD is not set |
| 81 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 90 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 82 | CONFIG_SYSCTL=y | 91 | CONFIG_SYSCTL=y |
| @@ -89,11 +98,13 @@ CONFIG_HOTPLUG=y | |||
| 89 | CONFIG_PRINTK=y | 98 | CONFIG_PRINTK=y |
| 90 | CONFIG_BUG=y | 99 | CONFIG_BUG=y |
| 91 | CONFIG_ELF_CORE=y | 100 | CONFIG_ELF_CORE=y |
| 101 | # CONFIG_COMPAT_BRK is not set | ||
| 92 | CONFIG_BASE_FULL=y | 102 | CONFIG_BASE_FULL=y |
| 93 | CONFIG_FUTEX=y | 103 | CONFIG_FUTEX=y |
| 94 | CONFIG_ANON_INODES=y | 104 | CONFIG_ANON_INODES=y |
| 95 | CONFIG_EPOLL=y | 105 | CONFIG_EPOLL=y |
| 96 | CONFIG_SIGNALFD=y | 106 | CONFIG_SIGNALFD=y |
| 107 | CONFIG_TIMERFD=y | ||
| 97 | CONFIG_EVENTFD=y | 108 | CONFIG_EVENTFD=y |
| 98 | CONFIG_SHMEM=y | 109 | CONFIG_SHMEM=y |
| 99 | CONFIG_VM_EVENT_COUNTERS=y | 110 | CONFIG_VM_EVENT_COUNTERS=y |
| @@ -101,10 +112,28 @@ CONFIG_SLUB_DEBUG=y | |||
| 101 | # CONFIG_SLAB is not set | 112 | # CONFIG_SLAB is not set |
| 102 | CONFIG_SLUB=y | 113 | CONFIG_SLUB=y |
| 103 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
| 115 | CONFIG_PROFILING=y | ||
| 116 | # CONFIG_MARKERS is not set | ||
| 117 | CONFIG_OPROFILE=m | ||
| 118 | CONFIG_HAVE_OPROFILE=y | ||
| 119 | CONFIG_KPROBES=y | ||
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 121 | CONFIG_KRETPROBES=y | ||
| 122 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 123 | CONFIG_HAVE_KPROBES=y | ||
| 124 | CONFIG_HAVE_KRETPROBES=y | ||
| 125 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 126 | CONFIG_HAVE_DMA_ATTRS=y | ||
| 127 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
| 128 | # CONFIG_HAVE_CLK is not set | ||
| 129 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 131 | CONFIG_SLABINFO=y | ||
| 104 | CONFIG_RT_MUTEXES=y | 132 | CONFIG_RT_MUTEXES=y |
| 105 | # CONFIG_TINY_SHMEM is not set | 133 | # CONFIG_TINY_SHMEM is not set |
| 106 | CONFIG_BASE_SMALL=0 | 134 | CONFIG_BASE_SMALL=0 |
| 107 | CONFIG_MODULES=y | 135 | CONFIG_MODULES=y |
| 136 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 108 | CONFIG_MODULE_UNLOAD=y | 137 | CONFIG_MODULE_UNLOAD=y |
| 109 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 138 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 110 | CONFIG_MODVERSIONS=y | 139 | CONFIG_MODVERSIONS=y |
| @@ -114,6 +143,7 @@ CONFIG_STOP_MACHINE=y | |||
| 114 | CONFIG_BLOCK=y | 143 | CONFIG_BLOCK=y |
| 115 | # CONFIG_BLK_DEV_IO_TRACE is not set | 144 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 116 | # CONFIG_BLK_DEV_BSG is not set | 145 | # CONFIG_BLK_DEV_BSG is not set |
| 146 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 117 | CONFIG_BLOCK_COMPAT=y | 147 | CONFIG_BLOCK_COMPAT=y |
| 118 | 148 | ||
| 119 | # | 149 | # |
| @@ -128,29 +158,26 @@ CONFIG_DEFAULT_AS=y | |||
| 128 | # CONFIG_DEFAULT_CFQ is not set | 158 | # CONFIG_DEFAULT_CFQ is not set |
| 129 | # CONFIG_DEFAULT_NOOP is not set | 159 | # CONFIG_DEFAULT_NOOP is not set |
| 130 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 160 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 161 | CONFIG_CLASSIC_RCU=y | ||
| 131 | 162 | ||
| 132 | # | 163 | # |
| 133 | # Platform support | 164 | # Platform support |
| 134 | # | 165 | # |
| 135 | CONFIG_PPC_MULTIPLATFORM=y | 166 | CONFIG_PPC_MULTIPLATFORM=y |
| 136 | # CONFIG_PPC_82xx is not set | ||
| 137 | # CONFIG_PPC_83xx is not set | ||
| 138 | # CONFIG_PPC_86xx is not set | ||
| 139 | # CONFIG_PPC_PSERIES is not set | 167 | # CONFIG_PPC_PSERIES is not set |
| 140 | # CONFIG_PPC_ISERIES is not set | 168 | # CONFIG_PPC_ISERIES is not set |
| 141 | # CONFIG_PPC_MPC52xx is not set | ||
| 142 | # CONFIG_PPC_MPC5200 is not set | ||
| 143 | # CONFIG_PPC_PMAC is not set | 169 | # CONFIG_PPC_PMAC is not set |
| 144 | CONFIG_PPC_MAPLE=y | 170 | CONFIG_PPC_MAPLE=y |
| 145 | # CONFIG_PPC_PASEMI is not set | 171 | # CONFIG_PPC_PASEMI is not set |
| 146 | # CONFIG_PPC_CELLEB is not set | ||
| 147 | # CONFIG_PPC_PS3 is not set | 172 | # CONFIG_PPC_PS3 is not set |
| 148 | # CONFIG_PPC_CELL is not set | 173 | # CONFIG_PPC_CELL is not set |
| 149 | # CONFIG_PPC_CELL_NATIVE is not set | 174 | # CONFIG_PPC_CELL_NATIVE is not set |
| 150 | # CONFIG_PPC_IBM_CELL_BLADE is not set | 175 | # CONFIG_PPC_IBM_CELL_BLADE is not set |
| 176 | # CONFIG_PPC_CELLEB is not set | ||
| 151 | # CONFIG_PQ2ADS is not set | 177 | # CONFIG_PQ2ADS is not set |
| 152 | CONFIG_PPC_NATIVE=y | 178 | CONFIG_PPC_NATIVE=y |
| 153 | CONFIG_UDBG_RTAS_CONSOLE=y | 179 | CONFIG_UDBG_RTAS_CONSOLE=y |
| 180 | # CONFIG_IPIC is not set | ||
| 154 | CONFIG_MPIC=y | 181 | CONFIG_MPIC=y |
| 155 | # CONFIG_MPIC_WEIRD is not set | 182 | # CONFIG_MPIC_WEIRD is not set |
| 156 | # CONFIG_PPC_I8259 is not set | 183 | # CONFIG_PPC_I8259 is not set |
| @@ -166,7 +193,6 @@ CONFIG_PPC_970_NAP=y | |||
| 166 | # CONFIG_PPC_INDIRECT_IO is not set | 193 | # CONFIG_PPC_INDIRECT_IO is not set |
| 167 | # CONFIG_GENERIC_IOMAP is not set | 194 | # CONFIG_GENERIC_IOMAP is not set |
| 168 | # CONFIG_CPU_FREQ is not set | 195 | # CONFIG_CPU_FREQ is not set |
| 169 | # CONFIG_CPM2 is not set | ||
| 170 | # CONFIG_FSL_ULI1575 is not set | 196 | # CONFIG_FSL_ULI1575 is not set |
| 171 | 197 | ||
| 172 | # | 198 | # |
| @@ -181,16 +207,19 @@ CONFIG_HZ_250=y | |||
| 181 | # CONFIG_HZ_300 is not set | 207 | # CONFIG_HZ_300 is not set |
| 182 | # CONFIG_HZ_1000 is not set | 208 | # CONFIG_HZ_1000 is not set |
| 183 | CONFIG_HZ=250 | 209 | CONFIG_HZ=250 |
| 210 | CONFIG_SCHED_HRTICK=y | ||
| 184 | CONFIG_PREEMPT_NONE=y | 211 | CONFIG_PREEMPT_NONE=y |
| 185 | # CONFIG_PREEMPT_VOLUNTARY is not set | 212 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 186 | # CONFIG_PREEMPT is not set | 213 | # CONFIG_PREEMPT is not set |
| 187 | # CONFIG_PREEMPT_BKL is not set | ||
| 188 | CONFIG_BINFMT_ELF=y | 214 | CONFIG_BINFMT_ELF=y |
| 215 | CONFIG_COMPAT_BINFMT_ELF=y | ||
| 189 | # CONFIG_BINFMT_MISC is not set | 216 | # CONFIG_BINFMT_MISC is not set |
| 190 | CONFIG_FORCE_MAX_ZONEORDER=13 | ||
| 191 | CONFIG_HUGETLB_PAGE_SIZE_VARIABLE=y | 217 | CONFIG_HUGETLB_PAGE_SIZE_VARIABLE=y |
| 192 | CONFIG_IOMMU_VMERGE=y | 218 | CONFIG_IOMMU_VMERGE=y |
| 219 | CONFIG_IOMMU_HELPER=y | ||
| 193 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 220 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 221 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
| 222 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
| 194 | CONFIG_KEXEC=y | 223 | CONFIG_KEXEC=y |
| 195 | # CONFIG_CRASH_DUMP is not set | 224 | # CONFIG_CRASH_DUMP is not set |
| 196 | CONFIG_IRQ_ALL_CPUS=y | 225 | CONFIG_IRQ_ALL_CPUS=y |
| @@ -207,18 +236,21 @@ CONFIG_FLATMEM=y | |||
| 207 | CONFIG_FLAT_NODE_MEM_MAP=y | 236 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 208 | # CONFIG_SPARSEMEM_STATIC is not set | 237 | # CONFIG_SPARSEMEM_STATIC is not set |
| 209 | CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y | 238 | CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y |
| 239 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 210 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 241 | # CONFIG_MIGRATION is not set | ||
| 211 | CONFIG_RESOURCES_64BIT=y | 242 | CONFIG_RESOURCES_64BIT=y |
| 212 | CONFIG_ZONE_DMA_FLAG=1 | 243 | CONFIG_ZONE_DMA_FLAG=1 |
| 213 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
| 214 | # CONFIG_PPC_HAS_HASH_64K is not set | 245 | # CONFIG_PPC_HAS_HASH_64K is not set |
| 215 | # CONFIG_PPC_64K_PAGES is not set | 246 | # CONFIG_PPC_64K_PAGES is not set |
| 247 | CONFIG_FORCE_MAX_ZONEORDER=13 | ||
| 216 | # CONFIG_SCHED_SMT is not set | 248 | # CONFIG_SCHED_SMT is not set |
| 217 | CONFIG_PROC_DEVICETREE=y | 249 | CONFIG_PROC_DEVICETREE=y |
| 218 | # CONFIG_CMDLINE_BOOL is not set | 250 | # CONFIG_CMDLINE_BOOL is not set |
| 251 | CONFIG_EXTRA_TARGETS="" | ||
| 219 | # CONFIG_PM is not set | 252 | # CONFIG_PM is not set |
| 220 | CONFIG_SECCOMP=y | 253 | CONFIG_SECCOMP=y |
| 221 | # CONFIG_WANT_DEVICE_TREE is not set | ||
| 222 | CONFIG_ISA_DMA_API=y | 254 | CONFIG_ISA_DMA_API=y |
| 223 | 255 | ||
| 224 | # | 256 | # |
| @@ -237,11 +269,10 @@ CONFIG_PCI_LEGACY=y | |||
| 237 | # CONFIG_PCI_DEBUG is not set | 269 | # CONFIG_PCI_DEBUG is not set |
| 238 | # CONFIG_PCCARD is not set | 270 | # CONFIG_PCCARD is not set |
| 239 | # CONFIG_HOTPLUG_PCI is not set | 271 | # CONFIG_HOTPLUG_PCI is not set |
| 272 | # CONFIG_HAS_RAPIDIO is not set | ||
| 273 | CONFIG_PAGE_OFFSET=0xc000000000000000 | ||
| 240 | CONFIG_KERNEL_START=0xc000000000000000 | 274 | CONFIG_KERNEL_START=0xc000000000000000 |
| 241 | 275 | CONFIG_PHYSICAL_START=0x00000000 | |
| 242 | # | ||
| 243 | # Networking | ||
| 244 | # | ||
| 245 | CONFIG_NET=y | 276 | CONFIG_NET=y |
| 246 | 277 | ||
| 247 | # | 278 | # |
| @@ -254,6 +285,7 @@ CONFIG_XFRM=y | |||
| 254 | CONFIG_XFRM_USER=m | 285 | CONFIG_XFRM_USER=m |
| 255 | # CONFIG_XFRM_SUB_POLICY is not set | 286 | # CONFIG_XFRM_SUB_POLICY is not set |
| 256 | # CONFIG_XFRM_MIGRATE is not set | 287 | # CONFIG_XFRM_MIGRATE is not set |
| 288 | # CONFIG_XFRM_STATISTICS is not set | ||
| 257 | # CONFIG_NET_KEY is not set | 289 | # CONFIG_NET_KEY is not set |
| 258 | CONFIG_INET=y | 290 | CONFIG_INET=y |
| 259 | CONFIG_IP_MULTICAST=y | 291 | CONFIG_IP_MULTICAST=y |
| @@ -284,8 +316,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 284 | CONFIG_DEFAULT_TCP_CONG="cubic" | 316 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 285 | # CONFIG_TCP_MD5SIG is not set | 317 | # CONFIG_TCP_MD5SIG is not set |
| 286 | # CONFIG_IPV6 is not set | 318 | # CONFIG_IPV6 is not set |
| 287 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 288 | # CONFIG_INET6_TUNNEL is not set | ||
| 289 | # CONFIG_NETWORK_SECMARK is not set | 319 | # CONFIG_NETWORK_SECMARK is not set |
| 290 | # CONFIG_NETFILTER is not set | 320 | # CONFIG_NETFILTER is not set |
| 291 | # CONFIG_IP_DCCP is not set | 321 | # CONFIG_IP_DCCP is not set |
| @@ -308,7 +338,9 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 308 | # Network testing | 338 | # Network testing |
| 309 | # | 339 | # |
| 310 | # CONFIG_NET_PKTGEN is not set | 340 | # CONFIG_NET_PKTGEN is not set |
| 341 | # CONFIG_NET_TCPPROBE is not set | ||
| 311 | # CONFIG_HAMRADIO is not set | 342 | # CONFIG_HAMRADIO is not set |
| 343 | # CONFIG_CAN is not set | ||
| 312 | # CONFIG_IRDA is not set | 344 | # CONFIG_IRDA is not set |
| 313 | # CONFIG_BT is not set | 345 | # CONFIG_BT is not set |
| 314 | # CONFIG_AF_RXRPC is not set | 346 | # CONFIG_AF_RXRPC is not set |
| @@ -334,12 +366,15 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 334 | CONFIG_STANDALONE=y | 366 | CONFIG_STANDALONE=y |
| 335 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 367 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 336 | CONFIG_FW_LOADER=y | 368 | CONFIG_FW_LOADER=y |
| 369 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 370 | CONFIG_EXTRA_FIRMWARE="" | ||
| 337 | # CONFIG_DEBUG_DRIVER is not set | 371 | # CONFIG_DEBUG_DRIVER is not set |
| 338 | # CONFIG_DEBUG_DEVRES is not set | 372 | # CONFIG_DEBUG_DEVRES is not set |
| 339 | # CONFIG_SYS_HYPERVISOR is not set | 373 | # CONFIG_SYS_HYPERVISOR is not set |
| 340 | # CONFIG_CONNECTOR is not set | 374 | # CONFIG_CONNECTOR is not set |
| 341 | # CONFIG_MTD is not set | 375 | # CONFIG_MTD is not set |
| 342 | CONFIG_OF_DEVICE=y | 376 | CONFIG_OF_DEVICE=y |
| 377 | CONFIG_OF_I2C=y | ||
| 343 | # CONFIG_PARPORT is not set | 378 | # CONFIG_PARPORT is not set |
| 344 | CONFIG_BLK_DEV=y | 379 | CONFIG_BLK_DEV=y |
| 345 | # CONFIG_BLK_DEV_FD is not set | 380 | # CONFIG_BLK_DEV_FD is not set |
| @@ -354,24 +389,30 @@ CONFIG_BLK_DEV=y | |||
| 354 | CONFIG_BLK_DEV_RAM=y | 389 | CONFIG_BLK_DEV_RAM=y |
| 355 | CONFIG_BLK_DEV_RAM_COUNT=16 | 390 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 356 | CONFIG_BLK_DEV_RAM_SIZE=8192 | 391 | CONFIG_BLK_DEV_RAM_SIZE=8192 |
| 357 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 392 | # CONFIG_BLK_DEV_XIP is not set |
| 358 | # CONFIG_CDROM_PKTCDVD is not set | 393 | # CONFIG_CDROM_PKTCDVD is not set |
| 359 | # CONFIG_ATA_OVER_ETH is not set | 394 | # CONFIG_ATA_OVER_ETH is not set |
| 395 | # CONFIG_BLK_DEV_HD is not set | ||
| 360 | CONFIG_MISC_DEVICES=y | 396 | CONFIG_MISC_DEVICES=y |
| 361 | # CONFIG_PHANTOM is not set | 397 | # CONFIG_PHANTOM is not set |
| 362 | # CONFIG_EEPROM_93CX6 is not set | 398 | # CONFIG_EEPROM_93CX6 is not set |
| 363 | # CONFIG_SGI_IOC4 is not set | 399 | # CONFIG_SGI_IOC4 is not set |
| 364 | # CONFIG_TIFM_CORE is not set | 400 | # CONFIG_TIFM_CORE is not set |
| 401 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
| 402 | # CONFIG_HP_ILO is not set | ||
| 403 | CONFIG_HAVE_IDE=y | ||
| 365 | CONFIG_IDE=y | 404 | CONFIG_IDE=y |
| 366 | CONFIG_BLK_DEV_IDE=y | 405 | CONFIG_BLK_DEV_IDE=y |
| 367 | 406 | ||
| 368 | # | 407 | # |
| 369 | # Please see Documentation/ide.txt for help/info on IDE drives | 408 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 370 | # | 409 | # |
| 410 | CONFIG_IDE_TIMINGS=y | ||
| 371 | # CONFIG_BLK_DEV_IDE_SATA is not set | 411 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 372 | CONFIG_BLK_DEV_IDEDISK=y | 412 | CONFIG_BLK_DEV_IDEDISK=y |
| 373 | # CONFIG_IDEDISK_MULTI_MODE is not set | 413 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| 374 | CONFIG_BLK_DEV_IDECD=y | 414 | CONFIG_BLK_DEV_IDECD=y |
| 415 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | ||
| 375 | # CONFIG_BLK_DEV_IDETAPE is not set | 416 | # CONFIG_BLK_DEV_IDETAPE is not set |
| 376 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | 417 | # CONFIG_BLK_DEV_IDEFLOPPY is not set |
| 377 | # CONFIG_BLK_DEV_IDESCSI is not set | 418 | # CONFIG_BLK_DEV_IDESCSI is not set |
| @@ -381,14 +422,13 @@ CONFIG_IDE_PROC_FS=y | |||
| 381 | # | 422 | # |
| 382 | # IDE chipset support/bugfixes | 423 | # IDE chipset support/bugfixes |
| 383 | # | 424 | # |
| 384 | CONFIG_IDE_GENERIC=y | ||
| 385 | # CONFIG_BLK_DEV_PLATFORM is not set | 425 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 426 | CONFIG_BLK_DEV_IDEDMA_SFF=y | ||
| 386 | 427 | ||
| 387 | # | 428 | # |
| 388 | # PCI IDE chipsets support | 429 | # PCI IDE chipsets support |
| 389 | # | 430 | # |
| 390 | CONFIG_BLK_DEV_IDEPCI=y | 431 | CONFIG_BLK_DEV_IDEPCI=y |
| 391 | CONFIG_IDEPCI_SHARE_IRQ=y | ||
| 392 | CONFIG_IDEPCI_PCIBUS_ORDER=y | 432 | CONFIG_IDEPCI_PCIBUS_ORDER=y |
| 393 | # CONFIG_BLK_DEV_OFFBOARD is not set | 433 | # CONFIG_BLK_DEV_OFFBOARD is not set |
| 394 | CONFIG_BLK_DEV_GENERIC=y | 434 | CONFIG_BLK_DEV_GENERIC=y |
| @@ -399,10 +439,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 399 | CONFIG_BLK_DEV_AMD74XX=y | 439 | CONFIG_BLK_DEV_AMD74XX=y |
| 400 | # CONFIG_BLK_DEV_CMD64X is not set | 440 | # CONFIG_BLK_DEV_CMD64X is not set |
| 401 | # CONFIG_BLK_DEV_TRIFLEX is not set | 441 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 402 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 403 | # CONFIG_BLK_DEV_CS5520 is not set | 442 | # CONFIG_BLK_DEV_CS5520 is not set |
| 404 | # CONFIG_BLK_DEV_CS5530 is not set | 443 | # CONFIG_BLK_DEV_CS5530 is not set |
| 405 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 406 | # CONFIG_BLK_DEV_HPT366 is not set | 444 | # CONFIG_BLK_DEV_HPT366 is not set |
| 407 | # CONFIG_BLK_DEV_JMICRON is not set | 445 | # CONFIG_BLK_DEV_JMICRON is not set |
| 408 | # CONFIG_BLK_DEV_SC1200 is not set | 446 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -419,10 +457,7 @@ CONFIG_BLK_DEV_AMD74XX=y | |||
| 419 | # CONFIG_BLK_DEV_TRM290 is not set | 457 | # CONFIG_BLK_DEV_TRM290 is not set |
| 420 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 458 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
| 421 | # CONFIG_BLK_DEV_TC86C001 is not set | 459 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 422 | # CONFIG_IDE_ARM is not set | ||
| 423 | CONFIG_BLK_DEV_IDEDMA=y | 460 | CONFIG_BLK_DEV_IDEDMA=y |
| 424 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | ||
| 425 | # CONFIG_BLK_DEV_HD is not set | ||
| 426 | 461 | ||
| 427 | # | 462 | # |
| 428 | # SCSI device support | 463 | # SCSI device support |
| @@ -483,6 +518,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 483 | # CONFIG_SCSI_IPS is not set | 518 | # CONFIG_SCSI_IPS is not set |
| 484 | # CONFIG_SCSI_INITIO is not set | 519 | # CONFIG_SCSI_INITIO is not set |
| 485 | # CONFIG_SCSI_INIA100 is not set | 520 | # CONFIG_SCSI_INIA100 is not set |
| 521 | # CONFIG_SCSI_MVSAS is not set | ||
| 486 | # CONFIG_SCSI_STEX is not set | 522 | # CONFIG_SCSI_STEX is not set |
| 487 | # CONFIG_SCSI_SYM53C8XX_2 is not set | 523 | # CONFIG_SCSI_SYM53C8XX_2 is not set |
| 488 | CONFIG_SCSI_IPR=y | 524 | CONFIG_SCSI_IPR=y |
| @@ -496,9 +532,13 @@ CONFIG_SCSI_IPR_DUMP=y | |||
| 496 | # CONFIG_SCSI_DC390T is not set | 532 | # CONFIG_SCSI_DC390T is not set |
| 497 | # CONFIG_SCSI_DEBUG is not set | 533 | # CONFIG_SCSI_DEBUG is not set |
| 498 | # CONFIG_SCSI_SRP is not set | 534 | # CONFIG_SCSI_SRP is not set |
| 535 | # CONFIG_SCSI_DH is not set | ||
| 499 | CONFIG_ATA=y | 536 | CONFIG_ATA=y |
| 500 | CONFIG_ATA_NONSTANDARD=y | 537 | CONFIG_ATA_NONSTANDARD=y |
| 538 | CONFIG_SATA_PMP=y | ||
| 501 | # CONFIG_SATA_AHCI is not set | 539 | # CONFIG_SATA_AHCI is not set |
| 540 | # CONFIG_SATA_SIL24 is not set | ||
| 541 | CONFIG_ATA_SFF=y | ||
| 502 | # CONFIG_SATA_SVW is not set | 542 | # CONFIG_SATA_SVW is not set |
| 503 | # CONFIG_ATA_PIIX is not set | 543 | # CONFIG_ATA_PIIX is not set |
| 504 | # CONFIG_SATA_MV is not set | 544 | # CONFIG_SATA_MV is not set |
| @@ -508,7 +548,6 @@ CONFIG_ATA_NONSTANDARD=y | |||
| 508 | # CONFIG_SATA_PROMISE is not set | 548 | # CONFIG_SATA_PROMISE is not set |
| 509 | # CONFIG_SATA_SX4 is not set | 549 | # CONFIG_SATA_SX4 is not set |
| 510 | # CONFIG_SATA_SIL is not set | 550 | # CONFIG_SATA_SIL is not set |
| 511 | # CONFIG_SATA_SIL24 is not set | ||
| 512 | # CONFIG_SATA_SIS is not set | 551 | # CONFIG_SATA_SIS is not set |
| 513 | # CONFIG_SATA_ULI is not set | 552 | # CONFIG_SATA_ULI is not set |
| 514 | # CONFIG_SATA_VIA is not set | 553 | # CONFIG_SATA_VIA is not set |
| @@ -537,6 +576,7 @@ CONFIG_ATA_NONSTANDARD=y | |||
| 537 | # CONFIG_PATA_MPIIX is not set | 576 | # CONFIG_PATA_MPIIX is not set |
| 538 | # CONFIG_PATA_OLDPIIX is not set | 577 | # CONFIG_PATA_OLDPIIX is not set |
| 539 | # CONFIG_PATA_NETCELL is not set | 578 | # CONFIG_PATA_NETCELL is not set |
| 579 | # CONFIG_PATA_NINJA32 is not set | ||
| 540 | # CONFIG_PATA_NS87410 is not set | 580 | # CONFIG_PATA_NS87410 is not set |
| 541 | # CONFIG_PATA_NS87415 is not set | 581 | # CONFIG_PATA_NS87415 is not set |
| 542 | # CONFIG_PATA_OPTI is not set | 582 | # CONFIG_PATA_OPTI is not set |
| @@ -551,27 +591,47 @@ CONFIG_ATA_NONSTANDARD=y | |||
| 551 | # CONFIG_PATA_SIS is not set | 591 | # CONFIG_PATA_SIS is not set |
| 552 | # CONFIG_PATA_VIA is not set | 592 | # CONFIG_PATA_VIA is not set |
| 553 | # CONFIG_PATA_WINBOND is not set | 593 | # CONFIG_PATA_WINBOND is not set |
| 594 | # CONFIG_PATA_PLATFORM is not set | ||
| 595 | # CONFIG_PATA_SCH is not set | ||
| 554 | # CONFIG_MD is not set | 596 | # CONFIG_MD is not set |
| 555 | # CONFIG_FUSION is not set | 597 | # CONFIG_FUSION is not set |
| 556 | 598 | ||
| 557 | # | 599 | # |
| 558 | # IEEE 1394 (FireWire) support | 600 | # IEEE 1394 (FireWire) support |
| 559 | # | 601 | # |
| 602 | |||
| 603 | # | ||
| 604 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 605 | # | ||
| 560 | # CONFIG_FIREWIRE is not set | 606 | # CONFIG_FIREWIRE is not set |
| 561 | # CONFIG_IEEE1394 is not set | 607 | # CONFIG_IEEE1394 is not set |
| 562 | # CONFIG_I2O is not set | 608 | # CONFIG_I2O is not set |
| 563 | # CONFIG_MACINTOSH_DRIVERS is not set | 609 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 564 | CONFIG_NETDEVICES=y | 610 | CONFIG_NETDEVICES=y |
| 565 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 566 | # CONFIG_DUMMY is not set | 611 | # CONFIG_DUMMY is not set |
| 567 | # CONFIG_BONDING is not set | 612 | # CONFIG_BONDING is not set |
| 568 | # CONFIG_MACVLAN is not set | 613 | # CONFIG_MACVLAN is not set |
| 569 | # CONFIG_EQUALIZER is not set | 614 | # CONFIG_EQUALIZER is not set |
| 570 | # CONFIG_TUN is not set | 615 | # CONFIG_TUN is not set |
| 571 | # CONFIG_VETH is not set | 616 | # CONFIG_VETH is not set |
| 572 | # CONFIG_IP1000 is not set | ||
| 573 | # CONFIG_ARCNET is not set | 617 | # CONFIG_ARCNET is not set |
| 574 | # CONFIG_PHYLIB is not set | 618 | CONFIG_PHYLIB=y |
| 619 | |||
| 620 | # | ||
| 621 | # MII PHY device drivers | ||
| 622 | # | ||
| 623 | # CONFIG_MARVELL_PHY is not set | ||
| 624 | # CONFIG_DAVICOM_PHY is not set | ||
| 625 | # CONFIG_QSEMI_PHY is not set | ||
| 626 | # CONFIG_LXT_PHY is not set | ||
| 627 | # CONFIG_CICADA_PHY is not set | ||
| 628 | # CONFIG_VITESSE_PHY is not set | ||
| 629 | # CONFIG_SMSC_PHY is not set | ||
| 630 | # CONFIG_BROADCOM_PHY is not set | ||
| 631 | # CONFIG_ICPLUS_PHY is not set | ||
| 632 | # CONFIG_REALTEK_PHY is not set | ||
| 633 | # CONFIG_FIXED_PHY is not set | ||
| 634 | # CONFIG_MDIO_BITBANG is not set | ||
| 575 | CONFIG_NET_ETHERNET=y | 635 | CONFIG_NET_ETHERNET=y |
| 576 | CONFIG_MII=y | 636 | CONFIG_MII=y |
| 577 | # CONFIG_HAPPYMEAL is not set | 637 | # CONFIG_HAPPYMEAL is not set |
| @@ -587,7 +647,6 @@ CONFIG_MII=y | |||
| 587 | CONFIG_NET_PCI=y | 647 | CONFIG_NET_PCI=y |
| 588 | # CONFIG_PCNET32 is not set | 648 | # CONFIG_PCNET32 is not set |
| 589 | CONFIG_AMD8111_ETH=y | 649 | CONFIG_AMD8111_ETH=y |
| 590 | # CONFIG_AMD8111E_NAPI is not set | ||
| 591 | # CONFIG_ADAPTEC_STARFIRE is not set | 650 | # CONFIG_ADAPTEC_STARFIRE is not set |
| 592 | # CONFIG_B44 is not set | 651 | # CONFIG_B44 is not set |
| 593 | # CONFIG_FORCEDETH is not set | 652 | # CONFIG_FORCEDETH is not set |
| @@ -598,18 +657,21 @@ CONFIG_AMD8111_ETH=y | |||
| 598 | # CONFIG_NE2K_PCI is not set | 657 | # CONFIG_NE2K_PCI is not set |
| 599 | # CONFIG_8139CP is not set | 658 | # CONFIG_8139CP is not set |
| 600 | # CONFIG_8139TOO is not set | 659 | # CONFIG_8139TOO is not set |
| 660 | # CONFIG_R6040 is not set | ||
| 601 | # CONFIG_SIS900 is not set | 661 | # CONFIG_SIS900 is not set |
| 602 | # CONFIG_EPIC100 is not set | 662 | # CONFIG_EPIC100 is not set |
| 603 | # CONFIG_SUNDANCE is not set | 663 | # CONFIG_SUNDANCE is not set |
| 664 | # CONFIG_TLAN is not set | ||
| 604 | # CONFIG_VIA_RHINE is not set | 665 | # CONFIG_VIA_RHINE is not set |
| 605 | # CONFIG_SC92031 is not set | 666 | # CONFIG_SC92031 is not set |
| 606 | CONFIG_NETDEV_1000=y | 667 | CONFIG_NETDEV_1000=y |
| 607 | # CONFIG_ACENIC is not set | 668 | # CONFIG_ACENIC is not set |
| 608 | # CONFIG_DL2K is not set | 669 | # CONFIG_DL2K is not set |
| 609 | CONFIG_E1000=y | 670 | CONFIG_E1000=y |
| 610 | # CONFIG_E1000_NAPI is not set | ||
| 611 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 671 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
| 612 | # CONFIG_E1000E is not set | 672 | # CONFIG_E1000E is not set |
| 673 | # CONFIG_IP1000 is not set | ||
| 674 | # CONFIG_IGB is not set | ||
| 613 | # CONFIG_NS83820 is not set | 675 | # CONFIG_NS83820 is not set |
| 614 | # CONFIG_HAMACHI is not set | 676 | # CONFIG_HAMACHI is not set |
| 615 | # CONFIG_YELLOWFIN is not set | 677 | # CONFIG_YELLOWFIN is not set |
| @@ -617,12 +679,12 @@ CONFIG_E1000=y | |||
| 617 | # CONFIG_SIS190 is not set | 679 | # CONFIG_SIS190 is not set |
| 618 | # CONFIG_SKGE is not set | 680 | # CONFIG_SKGE is not set |
| 619 | # CONFIG_SKY2 is not set | 681 | # CONFIG_SKY2 is not set |
| 620 | # CONFIG_SK98LIN is not set | ||
| 621 | # CONFIG_VIA_VELOCITY is not set | 682 | # CONFIG_VIA_VELOCITY is not set |
| 622 | CONFIG_TIGON3=y | 683 | CONFIG_TIGON3=y |
| 623 | # CONFIG_BNX2 is not set | 684 | # CONFIG_BNX2 is not set |
| 624 | # CONFIG_QLA3XXX is not set | 685 | # CONFIG_QLA3XXX is not set |
| 625 | # CONFIG_ATL1 is not set | 686 | # CONFIG_ATL1 is not set |
| 687 | # CONFIG_ATL1E is not set | ||
| 626 | CONFIG_NETDEV_10000=y | 688 | CONFIG_NETDEV_10000=y |
| 627 | # CONFIG_CHELSIO_T1 is not set | 689 | # CONFIG_CHELSIO_T1 is not set |
| 628 | # CONFIG_CHELSIO_T3 is not set | 690 | # CONFIG_CHELSIO_T3 is not set |
| @@ -632,9 +694,10 @@ CONFIG_NETDEV_10000=y | |||
| 632 | # CONFIG_MYRI10GE is not set | 694 | # CONFIG_MYRI10GE is not set |
| 633 | # CONFIG_NETXEN_NIC is not set | 695 | # CONFIG_NETXEN_NIC is not set |
| 634 | # CONFIG_NIU is not set | 696 | # CONFIG_NIU is not set |
| 635 | # CONFIG_PASEMI_MAC is not set | ||
| 636 | # CONFIG_MLX4_CORE is not set | 697 | # CONFIG_MLX4_CORE is not set |
| 637 | # CONFIG_TEHUTI is not set | 698 | # CONFIG_TEHUTI is not set |
| 699 | # CONFIG_BNX2X is not set | ||
| 700 | # CONFIG_SFC is not set | ||
| 638 | # CONFIG_TR is not set | 701 | # CONFIG_TR is not set |
| 639 | 702 | ||
| 640 | # | 703 | # |
| @@ -642,6 +705,7 @@ CONFIG_NETDEV_10000=y | |||
| 642 | # | 705 | # |
| 643 | # CONFIG_WLAN_PRE80211 is not set | 706 | # CONFIG_WLAN_PRE80211 is not set |
| 644 | # CONFIG_WLAN_80211 is not set | 707 | # CONFIG_WLAN_80211 is not set |
| 708 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 645 | 709 | ||
| 646 | # | 710 | # |
| 647 | # USB Network Adapters | 711 | # USB Network Adapters |
| @@ -657,7 +721,6 @@ CONFIG_USB_PEGASUS=y | |||
| 657 | # CONFIG_PPP is not set | 721 | # CONFIG_PPP is not set |
| 658 | # CONFIG_SLIP is not set | 722 | # CONFIG_SLIP is not set |
| 659 | # CONFIG_NET_FC is not set | 723 | # CONFIG_NET_FC is not set |
| 660 | # CONFIG_SHAPER is not set | ||
| 661 | # CONFIG_NETCONSOLE is not set | 724 | # CONFIG_NETCONSOLE is not set |
| 662 | # CONFIG_NETPOLL is not set | 725 | # CONFIG_NETPOLL is not set |
| 663 | # CONFIG_NET_POLL_CONTROLLER is not set | 726 | # CONFIG_NET_POLL_CONTROLLER is not set |
| @@ -702,10 +765,13 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1200 | |||
| 702 | # Character devices | 765 | # Character devices |
| 703 | # | 766 | # |
| 704 | CONFIG_VT=y | 767 | CONFIG_VT=y |
| 768 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 705 | CONFIG_VT_CONSOLE=y | 769 | CONFIG_VT_CONSOLE=y |
| 706 | CONFIG_HW_CONSOLE=y | 770 | CONFIG_HW_CONSOLE=y |
| 707 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 771 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 772 | CONFIG_DEVKMEM=y | ||
| 708 | # CONFIG_SERIAL_NONSTANDARD is not set | 773 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 774 | # CONFIG_NOZOMI is not set | ||
| 709 | 775 | ||
| 710 | # | 776 | # |
| 711 | # Serial drivers | 777 | # Serial drivers |
| @@ -742,16 +808,14 @@ CONFIG_DEVPORT=y | |||
| 742 | CONFIG_I2C=y | 808 | CONFIG_I2C=y |
| 743 | CONFIG_I2C_BOARDINFO=y | 809 | CONFIG_I2C_BOARDINFO=y |
| 744 | CONFIG_I2C_CHARDEV=y | 810 | CONFIG_I2C_CHARDEV=y |
| 811 | CONFIG_I2C_HELPER_AUTO=y | ||
| 745 | 812 | ||
| 746 | # | 813 | # |
| 747 | # I2C Algorithms | 814 | # I2C Hardware Bus support |
| 748 | # | 815 | # |
| 749 | CONFIG_I2C_ALGOBIT=y | ||
| 750 | # CONFIG_I2C_ALGOPCF is not set | ||
| 751 | # CONFIG_I2C_ALGOPCA is not set | ||
| 752 | 816 | ||
| 753 | # | 817 | # |
| 754 | # I2C Hardware Bus support | 818 | # PC SMBus host controller drivers |
| 755 | # | 819 | # |
| 756 | # CONFIG_I2C_ALI1535 is not set | 820 | # CONFIG_I2C_ALI1535 is not set |
| 757 | # CONFIG_I2C_ALI1563 is not set | 821 | # CONFIG_I2C_ALI1563 is not set |
| @@ -759,32 +823,47 @@ CONFIG_I2C_ALGOBIT=y | |||
| 759 | # CONFIG_I2C_AMD756 is not set | 823 | # CONFIG_I2C_AMD756 is not set |
| 760 | CONFIG_I2C_AMD8111=y | 824 | CONFIG_I2C_AMD8111=y |
| 761 | # CONFIG_I2C_I801 is not set | 825 | # CONFIG_I2C_I801 is not set |
| 762 | # CONFIG_I2C_I810 is not set | 826 | # CONFIG_I2C_ISCH is not set |
| 763 | # CONFIG_I2C_PIIX4 is not set | 827 | # CONFIG_I2C_PIIX4 is not set |
| 764 | # CONFIG_I2C_NFORCE2 is not set | 828 | # CONFIG_I2C_NFORCE2 is not set |
| 765 | # CONFIG_I2C_OCORES is not set | ||
| 766 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 767 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 768 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 769 | # CONFIG_I2C_SIMTEC is not set | ||
| 770 | # CONFIG_I2C_SIS5595 is not set | 829 | # CONFIG_I2C_SIS5595 is not set |
| 771 | # CONFIG_I2C_SIS630 is not set | 830 | # CONFIG_I2C_SIS630 is not set |
| 772 | # CONFIG_I2C_SIS96X is not set | 831 | # CONFIG_I2C_SIS96X is not set |
| 773 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 774 | # CONFIG_I2C_STUB is not set | ||
| 775 | # CONFIG_I2C_TINY_USB is not set | ||
| 776 | # CONFIG_I2C_VIA is not set | 832 | # CONFIG_I2C_VIA is not set |
| 777 | # CONFIG_I2C_VIAPRO is not set | 833 | # CONFIG_I2C_VIAPRO is not set |
| 834 | |||
| 835 | # | ||
| 836 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 837 | # | ||
| 838 | # CONFIG_I2C_OCORES is not set | ||
| 839 | # CONFIG_I2C_SIMTEC is not set | ||
| 840 | |||
| 841 | # | ||
| 842 | # External I2C/SMBus adapter drivers | ||
| 843 | # | ||
| 844 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 845 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 846 | # CONFIG_I2C_TINY_USB is not set | ||
| 847 | |||
| 848 | # | ||
| 849 | # Graphics adapter I2C/DDC channel drivers | ||
| 850 | # | ||
| 778 | # CONFIG_I2C_VOODOO3 is not set | 851 | # CONFIG_I2C_VOODOO3 is not set |
| 779 | 852 | ||
| 780 | # | 853 | # |
| 854 | # Other I2C/SMBus bus drivers | ||
| 855 | # | ||
| 856 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 857 | # CONFIG_I2C_STUB is not set | ||
| 858 | |||
| 859 | # | ||
| 781 | # Miscellaneous I2C Chip support | 860 | # Miscellaneous I2C Chip support |
| 782 | # | 861 | # |
| 783 | # CONFIG_SENSORS_DS1337 is not set | ||
| 784 | # CONFIG_SENSORS_DS1374 is not set | ||
| 785 | # CONFIG_DS1682 is not set | 862 | # CONFIG_DS1682 is not set |
| 863 | # CONFIG_AT24 is not set | ||
| 786 | # CONFIG_SENSORS_EEPROM is not set | 864 | # CONFIG_SENSORS_EEPROM is not set |
| 787 | # CONFIG_SENSORS_PCF8574 is not set | 865 | # CONFIG_SENSORS_PCF8574 is not set |
| 866 | # CONFIG_PCF8575 is not set | ||
| 788 | # CONFIG_SENSORS_PCA9539 is not set | 867 | # CONFIG_SENSORS_PCA9539 is not set |
| 789 | # CONFIG_SENSORS_PCF8591 is not set | 868 | # CONFIG_SENSORS_PCF8591 is not set |
| 790 | # CONFIG_SENSORS_MAX6875 is not set | 869 | # CONFIG_SENSORS_MAX6875 is not set |
| @@ -793,15 +872,14 @@ CONFIG_I2C_AMD8111=y | |||
| 793 | # CONFIG_I2C_DEBUG_ALGO is not set | 872 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 794 | # CONFIG_I2C_DEBUG_BUS is not set | 873 | # CONFIG_I2C_DEBUG_BUS is not set |
| 795 | # CONFIG_I2C_DEBUG_CHIP is not set | 874 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 796 | |||
| 797 | # | ||
| 798 | # SPI support | ||
| 799 | # | ||
| 800 | # CONFIG_SPI is not set | 875 | # CONFIG_SPI is not set |
| 801 | # CONFIG_SPI_MASTER is not set | 876 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
| 877 | # CONFIG_GPIOLIB is not set | ||
| 802 | # CONFIG_W1 is not set | 878 | # CONFIG_W1 is not set |
| 803 | # CONFIG_POWER_SUPPLY is not set | 879 | # CONFIG_POWER_SUPPLY is not set |
| 804 | # CONFIG_HWMON is not set | 880 | # CONFIG_HWMON is not set |
| 881 | # CONFIG_THERMAL is not set | ||
| 882 | # CONFIG_THERMAL_HWMON is not set | ||
| 805 | # CONFIG_WATCHDOG is not set | 883 | # CONFIG_WATCHDOG is not set |
| 806 | 884 | ||
| 807 | # | 885 | # |
| @@ -813,13 +891,25 @@ CONFIG_SSB_POSSIBLE=y | |||
| 813 | # | 891 | # |
| 814 | # Multifunction device drivers | 892 | # Multifunction device drivers |
| 815 | # | 893 | # |
| 894 | # CONFIG_MFD_CORE is not set | ||
| 816 | # CONFIG_MFD_SM501 is not set | 895 | # CONFIG_MFD_SM501 is not set |
| 896 | # CONFIG_HTC_PASIC3 is not set | ||
| 897 | # CONFIG_MFD_TMIO is not set | ||
| 817 | 898 | ||
| 818 | # | 899 | # |
| 819 | # Multimedia devices | 900 | # Multimedia devices |
| 820 | # | 901 | # |
| 902 | |||
| 903 | # | ||
| 904 | # Multimedia core support | ||
| 905 | # | ||
| 821 | # CONFIG_VIDEO_DEV is not set | 906 | # CONFIG_VIDEO_DEV is not set |
| 822 | # CONFIG_DVB_CORE is not set | 907 | # CONFIG_DVB_CORE is not set |
| 908 | # CONFIG_VIDEO_MEDIA is not set | ||
| 909 | |||
| 910 | # | ||
| 911 | # Multimedia drivers | ||
| 912 | # | ||
| 823 | # CONFIG_DAB is not set | 913 | # CONFIG_DAB is not set |
| 824 | 914 | ||
| 825 | # | 915 | # |
| @@ -842,10 +932,6 @@ CONFIG_SSB_POSSIBLE=y | |||
| 842 | # | 932 | # |
| 843 | # CONFIG_VGA_CONSOLE is not set | 933 | # CONFIG_VGA_CONSOLE is not set |
| 844 | CONFIG_DUMMY_CONSOLE=y | 934 | CONFIG_DUMMY_CONSOLE=y |
| 845 | |||
| 846 | # | ||
| 847 | # Sound | ||
| 848 | # | ||
| 849 | # CONFIG_SOUND is not set | 935 | # CONFIG_SOUND is not set |
| 850 | CONFIG_HID_SUPPORT=y | 936 | CONFIG_HID_SUPPORT=y |
| 851 | CONFIG_HID=y | 937 | CONFIG_HID=y |
| @@ -865,6 +951,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
| 865 | CONFIG_USB_ARCH_HAS_EHCI=y | 951 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 866 | CONFIG_USB=y | 952 | CONFIG_USB=y |
| 867 | # CONFIG_USB_DEBUG is not set | 953 | # CONFIG_USB_DEBUG is not set |
| 954 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
| 868 | 955 | ||
| 869 | # | 956 | # |
| 870 | # Miscellaneous USB options | 957 | # Miscellaneous USB options |
| @@ -873,15 +960,18 @@ CONFIG_USB_DEVICEFS=y | |||
| 873 | CONFIG_USB_DEVICE_CLASS=y | 960 | CONFIG_USB_DEVICE_CLASS=y |
| 874 | # CONFIG_USB_DYNAMIC_MINORS is not set | 961 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 875 | # CONFIG_USB_OTG is not set | 962 | # CONFIG_USB_OTG is not set |
| 963 | CONFIG_USB_MON=y | ||
| 876 | 964 | ||
| 877 | # | 965 | # |
| 878 | # USB Host Controller Drivers | 966 | # USB Host Controller Drivers |
| 879 | # | 967 | # |
| 968 | # CONFIG_USB_C67X00_HCD is not set | ||
| 880 | CONFIG_USB_EHCI_HCD=y | 969 | CONFIG_USB_EHCI_HCD=y |
| 881 | CONFIG_USB_EHCI_SPLIT_ISO=y | ||
| 882 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 970 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 883 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 971 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 972 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set | ||
| 884 | # CONFIG_USB_ISP116X_HCD is not set | 973 | # CONFIG_USB_ISP116X_HCD is not set |
| 974 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 885 | CONFIG_USB_OHCI_HCD=y | 975 | CONFIG_USB_OHCI_HCD=y |
| 886 | # CONFIG_USB_OHCI_HCD_PPC_OF is not set | 976 | # CONFIG_USB_OHCI_HCD_PPC_OF is not set |
| 887 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 977 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
| @@ -896,6 +986,7 @@ CONFIG_USB_UHCI_HCD=y | |||
| 896 | # | 986 | # |
| 897 | # CONFIG_USB_ACM is not set | 987 | # CONFIG_USB_ACM is not set |
| 898 | # CONFIG_USB_PRINTER is not set | 988 | # CONFIG_USB_PRINTER is not set |
| 989 | # CONFIG_USB_WDM is not set | ||
| 899 | 990 | ||
| 900 | # | 991 | # |
| 901 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 992 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -912,20 +1003,15 @@ CONFIG_USB_UHCI_HCD=y | |||
| 912 | # | 1003 | # |
| 913 | # CONFIG_USB_MDC800 is not set | 1004 | # CONFIG_USB_MDC800 is not set |
| 914 | # CONFIG_USB_MICROTEK is not set | 1005 | # CONFIG_USB_MICROTEK is not set |
| 915 | CONFIG_USB_MON=y | ||
| 916 | 1006 | ||
| 917 | # | 1007 | # |
| 918 | # USB port drivers | 1008 | # USB port drivers |
| 919 | # | 1009 | # |
| 920 | |||
| 921 | # | ||
| 922 | # USB Serial Converter support | ||
| 923 | # | ||
| 924 | CONFIG_USB_SERIAL=y | 1010 | CONFIG_USB_SERIAL=y |
| 925 | # CONFIG_USB_SERIAL_CONSOLE is not set | 1011 | # CONFIG_USB_SERIAL_CONSOLE is not set |
| 1012 | CONFIG_USB_EZUSB=y | ||
| 926 | CONFIG_USB_SERIAL_GENERIC=y | 1013 | CONFIG_USB_SERIAL_GENERIC=y |
| 927 | # CONFIG_USB_SERIAL_AIRCABLE is not set | 1014 | # CONFIG_USB_SERIAL_AIRCABLE is not set |
| 928 | # CONFIG_USB_SERIAL_AIRPRIME is not set | ||
| 929 | # CONFIG_USB_SERIAL_ARK3116 is not set | 1015 | # CONFIG_USB_SERIAL_ARK3116 is not set |
| 930 | # CONFIG_USB_SERIAL_BELKIN is not set | 1016 | # CONFIG_USB_SERIAL_BELKIN is not set |
| 931 | # CONFIG_USB_SERIAL_CH341 is not set | 1017 | # CONFIG_USB_SERIAL_CH341 is not set |
| @@ -943,6 +1029,7 @@ CONFIG_USB_SERIAL_CYPRESS_M8=m | |||
| 943 | # CONFIG_USB_SERIAL_EDGEPORT_TI is not set | 1029 | # CONFIG_USB_SERIAL_EDGEPORT_TI is not set |
| 944 | CONFIG_USB_SERIAL_GARMIN=m | 1030 | CONFIG_USB_SERIAL_GARMIN=m |
| 945 | CONFIG_USB_SERIAL_IPW=m | 1031 | CONFIG_USB_SERIAL_IPW=m |
| 1032 | # CONFIG_USB_SERIAL_IUU is not set | ||
| 946 | # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set | 1033 | # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set |
| 947 | CONFIG_USB_SERIAL_KEYSPAN=y | 1034 | CONFIG_USB_SERIAL_KEYSPAN=y |
| 948 | CONFIG_USB_SERIAL_KEYSPAN_MPR=y | 1035 | CONFIG_USB_SERIAL_KEYSPAN_MPR=y |
| @@ -962,9 +1049,11 @@ CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | |||
| 962 | # CONFIG_USB_SERIAL_MCT_U232 is not set | 1049 | # CONFIG_USB_SERIAL_MCT_U232 is not set |
| 963 | # CONFIG_USB_SERIAL_MOS7720 is not set | 1050 | # CONFIG_USB_SERIAL_MOS7720 is not set |
| 964 | # CONFIG_USB_SERIAL_MOS7840 is not set | 1051 | # CONFIG_USB_SERIAL_MOS7840 is not set |
| 1052 | # CONFIG_USB_SERIAL_MOTOROLA is not set | ||
| 965 | # CONFIG_USB_SERIAL_NAVMAN is not set | 1053 | # CONFIG_USB_SERIAL_NAVMAN is not set |
| 966 | # CONFIG_USB_SERIAL_PL2303 is not set | 1054 | # CONFIG_USB_SERIAL_PL2303 is not set |
| 967 | # CONFIG_USB_SERIAL_OTI6858 is not set | 1055 | # CONFIG_USB_SERIAL_OTI6858 is not set |
| 1056 | # CONFIG_USB_SERIAL_SPCP8X5 is not set | ||
| 968 | # CONFIG_USB_SERIAL_HP4X is not set | 1057 | # CONFIG_USB_SERIAL_HP4X is not set |
| 969 | # CONFIG_USB_SERIAL_SAFE is not set | 1058 | # CONFIG_USB_SERIAL_SAFE is not set |
| 970 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1059 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
| @@ -974,7 +1063,6 @@ CONFIG_USB_SERIAL_TI=m | |||
| 974 | # CONFIG_USB_SERIAL_OPTION is not set | 1063 | # CONFIG_USB_SERIAL_OPTION is not set |
| 975 | # CONFIG_USB_SERIAL_OMNINET is not set | 1064 | # CONFIG_USB_SERIAL_OMNINET is not set |
| 976 | # CONFIG_USB_SERIAL_DEBUG is not set | 1065 | # CONFIG_USB_SERIAL_DEBUG is not set |
| 977 | CONFIG_USB_EZUSB=y | ||
| 978 | 1066 | ||
| 979 | # | 1067 | # |
| 980 | # USB Miscellaneous drivers | 1068 | # USB Miscellaneous drivers |
| @@ -982,7 +1070,6 @@ CONFIG_USB_EZUSB=y | |||
| 982 | # CONFIG_USB_EMI62 is not set | 1070 | # CONFIG_USB_EMI62 is not set |
| 983 | # CONFIG_USB_EMI26 is not set | 1071 | # CONFIG_USB_EMI26 is not set |
| 984 | # CONFIG_USB_ADUTUX is not set | 1072 | # CONFIG_USB_ADUTUX is not set |
| 985 | # CONFIG_USB_AUERSWALD is not set | ||
| 986 | # CONFIG_USB_RIO500 is not set | 1073 | # CONFIG_USB_RIO500 is not set |
| 987 | # CONFIG_USB_LEGOTOWER is not set | 1074 | # CONFIG_USB_LEGOTOWER is not set |
| 988 | # CONFIG_USB_LCD is not set | 1075 | # CONFIG_USB_LCD is not set |
| @@ -999,24 +1086,16 @@ CONFIG_USB_EZUSB=y | |||
| 999 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1086 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1000 | # CONFIG_USB_IOWARRIOR is not set | 1087 | # CONFIG_USB_IOWARRIOR is not set |
| 1001 | # CONFIG_USB_TEST is not set | 1088 | # CONFIG_USB_TEST is not set |
| 1002 | 1089 | # CONFIG_USB_ISIGHTFW is not set | |
| 1003 | # | ||
| 1004 | # USB DSL modem support | ||
| 1005 | # | ||
| 1006 | |||
| 1007 | # | ||
| 1008 | # USB Gadget Support | ||
| 1009 | # | ||
| 1010 | # CONFIG_USB_GADGET is not set | 1090 | # CONFIG_USB_GADGET is not set |
| 1011 | # CONFIG_MMC is not set | 1091 | # CONFIG_MMC is not set |
| 1092 | # CONFIG_MEMSTICK is not set | ||
| 1012 | # CONFIG_NEW_LEDS is not set | 1093 | # CONFIG_NEW_LEDS is not set |
| 1094 | # CONFIG_ACCESSIBILITY is not set | ||
| 1013 | # CONFIG_INFINIBAND is not set | 1095 | # CONFIG_INFINIBAND is not set |
| 1014 | # CONFIG_EDAC is not set | 1096 | # CONFIG_EDAC is not set |
| 1015 | # CONFIG_RTC_CLASS is not set | 1097 | # CONFIG_RTC_CLASS is not set |
| 1016 | 1098 | # CONFIG_DMADEVICES is not set | |
| 1017 | # | ||
| 1018 | # Userspace I/O | ||
| 1019 | # | ||
| 1020 | # CONFIG_UIO is not set | 1099 | # CONFIG_UIO is not set |
| 1021 | 1100 | ||
| 1022 | # | 1101 | # |
| @@ -1037,12 +1116,10 @@ CONFIG_FS_POSIX_ACL=y | |||
| 1037 | # CONFIG_XFS_FS is not set | 1116 | # CONFIG_XFS_FS is not set |
| 1038 | # CONFIG_GFS2_FS is not set | 1117 | # CONFIG_GFS2_FS is not set |
| 1039 | # CONFIG_OCFS2_FS is not set | 1118 | # CONFIG_OCFS2_FS is not set |
| 1040 | # CONFIG_MINIX_FS is not set | 1119 | CONFIG_DNOTIFY=y |
| 1041 | # CONFIG_ROMFS_FS is not set | ||
| 1042 | CONFIG_INOTIFY=y | 1120 | CONFIG_INOTIFY=y |
| 1043 | CONFIG_INOTIFY_USER=y | 1121 | CONFIG_INOTIFY_USER=y |
| 1044 | # CONFIG_QUOTA is not set | 1122 | # CONFIG_QUOTA is not set |
| 1045 | CONFIG_DNOTIFY=y | ||
| 1046 | # CONFIG_AUTOFS_FS is not set | 1123 | # CONFIG_AUTOFS_FS is not set |
| 1047 | # CONFIG_AUTOFS4_FS is not set | 1124 | # CONFIG_AUTOFS4_FS is not set |
| 1048 | # CONFIG_FUSE_FS is not set | 1125 | # CONFIG_FUSE_FS is not set |
| @@ -1088,8 +1165,11 @@ CONFIG_HUGETLB_PAGE=y | |||
| 1088 | # CONFIG_EFS_FS is not set | 1165 | # CONFIG_EFS_FS is not set |
| 1089 | CONFIG_CRAMFS=y | 1166 | CONFIG_CRAMFS=y |
| 1090 | # CONFIG_VXFS_FS is not set | 1167 | # CONFIG_VXFS_FS is not set |
| 1168 | # CONFIG_MINIX_FS is not set | ||
| 1169 | # CONFIG_OMFS_FS is not set | ||
| 1091 | # CONFIG_HPFS_FS is not set | 1170 | # CONFIG_HPFS_FS is not set |
| 1092 | # CONFIG_QNX4FS_FS is not set | 1171 | # CONFIG_QNX4FS_FS is not set |
| 1172 | # CONFIG_ROMFS_FS is not set | ||
| 1093 | # CONFIG_SYSV_FS is not set | 1173 | # CONFIG_SYSV_FS is not set |
| 1094 | # CONFIG_UFS_FS is not set | 1174 | # CONFIG_UFS_FS is not set |
| 1095 | CONFIG_NETWORK_FILESYSTEMS=y | 1175 | CONFIG_NETWORK_FILESYSTEMS=y |
| @@ -1097,16 +1177,14 @@ CONFIG_NFS_FS=y | |||
| 1097 | CONFIG_NFS_V3=y | 1177 | CONFIG_NFS_V3=y |
| 1098 | CONFIG_NFS_V3_ACL=y | 1178 | CONFIG_NFS_V3_ACL=y |
| 1099 | CONFIG_NFS_V4=y | 1179 | CONFIG_NFS_V4=y |
| 1100 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1101 | # CONFIG_NFSD is not set | ||
| 1102 | CONFIG_ROOT_NFS=y | 1180 | CONFIG_ROOT_NFS=y |
| 1181 | # CONFIG_NFSD is not set | ||
| 1103 | CONFIG_LOCKD=y | 1182 | CONFIG_LOCKD=y |
| 1104 | CONFIG_LOCKD_V4=y | 1183 | CONFIG_LOCKD_V4=y |
| 1105 | CONFIG_NFS_ACL_SUPPORT=y | 1184 | CONFIG_NFS_ACL_SUPPORT=y |
| 1106 | CONFIG_NFS_COMMON=y | 1185 | CONFIG_NFS_COMMON=y |
| 1107 | CONFIG_SUNRPC=y | 1186 | CONFIG_SUNRPC=y |
| 1108 | CONFIG_SUNRPC_GSS=y | 1187 | CONFIG_SUNRPC_GSS=y |
| 1109 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1110 | CONFIG_RPCSEC_GSS_KRB5=y | 1188 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1111 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1189 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1112 | # CONFIG_SMB_FS is not set | 1190 | # CONFIG_SMB_FS is not set |
| @@ -1177,14 +1255,15 @@ CONFIG_NLS_DEFAULT="utf-8" | |||
| 1177 | # CONFIG_NLS_KOI8_U is not set | 1255 | # CONFIG_NLS_KOI8_U is not set |
| 1178 | CONFIG_NLS_UTF8=y | 1256 | CONFIG_NLS_UTF8=y |
| 1179 | # CONFIG_DLM is not set | 1257 | # CONFIG_DLM is not set |
| 1180 | # CONFIG_UCC_SLOW is not set | ||
| 1181 | 1258 | ||
| 1182 | # | 1259 | # |
| 1183 | # Library routines | 1260 | # Library routines |
| 1184 | # | 1261 | # |
| 1185 | CONFIG_BITREVERSE=y | 1262 | CONFIG_BITREVERSE=y |
| 1263 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1186 | CONFIG_CRC_CCITT=y | 1264 | CONFIG_CRC_CCITT=y |
| 1187 | # CONFIG_CRC16 is not set | 1265 | # CONFIG_CRC16 is not set |
| 1266 | CONFIG_CRC_T10DIF=y | ||
| 1188 | # CONFIG_CRC_ITU_T is not set | 1267 | # CONFIG_CRC_ITU_T is not set |
| 1189 | CONFIG_CRC32=y | 1268 | CONFIG_CRC32=y |
| 1190 | # CONFIG_CRC7 is not set | 1269 | # CONFIG_CRC7 is not set |
| @@ -1194,7 +1273,7 @@ CONFIG_PLIST=y | |||
| 1194 | CONFIG_HAS_IOMEM=y | 1273 | CONFIG_HAS_IOMEM=y |
| 1195 | CONFIG_HAS_IOPORT=y | 1274 | CONFIG_HAS_IOPORT=y |
| 1196 | CONFIG_HAS_DMA=y | 1275 | CONFIG_HAS_DMA=y |
| 1197 | # CONFIG_INSTRUMENTATION is not set | 1276 | CONFIG_HAVE_LMB=y |
| 1198 | 1277 | ||
| 1199 | # | 1278 | # |
| 1200 | # Kernel hacking | 1279 | # Kernel hacking |
| @@ -1202,6 +1281,7 @@ CONFIG_HAS_DMA=y | |||
| 1202 | # CONFIG_PRINTK_TIME is not set | 1281 | # CONFIG_PRINTK_TIME is not set |
| 1203 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1282 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1204 | CONFIG_ENABLE_MUST_CHECK=y | 1283 | CONFIG_ENABLE_MUST_CHECK=y |
| 1284 | CONFIG_FRAME_WARN=2048 | ||
| 1205 | CONFIG_MAGIC_SYSRQ=y | 1285 | CONFIG_MAGIC_SYSRQ=y |
| 1206 | # CONFIG_UNUSED_SYMBOLS is not set | 1286 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1207 | CONFIG_DEBUG_FS=y | 1287 | CONFIG_DEBUG_FS=y |
| @@ -1209,34 +1289,59 @@ CONFIG_DEBUG_FS=y | |||
| 1209 | CONFIG_DEBUG_KERNEL=y | 1289 | CONFIG_DEBUG_KERNEL=y |
| 1210 | # CONFIG_DEBUG_SHIRQ is not set | 1290 | # CONFIG_DEBUG_SHIRQ is not set |
| 1211 | CONFIG_DETECT_SOFTLOCKUP=y | 1291 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1292 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1293 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1212 | CONFIG_SCHED_DEBUG=y | 1294 | CONFIG_SCHED_DEBUG=y |
| 1213 | # CONFIG_SCHEDSTATS is not set | 1295 | CONFIG_SCHEDSTATS=y |
| 1214 | # CONFIG_TIMER_STATS is not set | 1296 | # CONFIG_TIMER_STATS is not set |
| 1297 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1215 | # CONFIG_SLUB_DEBUG_ON is not set | 1298 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1299 | # CONFIG_SLUB_STATS is not set | ||
| 1216 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1300 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| 1217 | # CONFIG_RT_MUTEX_TESTER is not set | 1301 | # CONFIG_RT_MUTEX_TESTER is not set |
| 1218 | # CONFIG_DEBUG_SPINLOCK is not set | 1302 | # CONFIG_DEBUG_SPINLOCK is not set |
| 1219 | # CONFIG_DEBUG_MUTEXES is not set | 1303 | # CONFIG_DEBUG_MUTEXES is not set |
| 1304 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1305 | # CONFIG_PROVE_LOCKING is not set | ||
| 1306 | # CONFIG_LOCK_STAT is not set | ||
| 1220 | CONFIG_DEBUG_SPINLOCK_SLEEP=y | 1307 | CONFIG_DEBUG_SPINLOCK_SLEEP=y |
| 1221 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 1308 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
| 1309 | CONFIG_STACKTRACE=y | ||
| 1222 | # CONFIG_DEBUG_KOBJECT is not set | 1310 | # CONFIG_DEBUG_KOBJECT is not set |
| 1223 | CONFIG_DEBUG_BUGVERBOSE=y | 1311 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1224 | # CONFIG_DEBUG_INFO is not set | 1312 | # CONFIG_DEBUG_INFO is not set |
| 1225 | # CONFIG_DEBUG_VM is not set | 1313 | # CONFIG_DEBUG_VM is not set |
| 1314 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1315 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 1226 | # CONFIG_DEBUG_LIST is not set | 1316 | # CONFIG_DEBUG_LIST is not set |
| 1227 | # CONFIG_DEBUG_SG is not set | 1317 | # CONFIG_DEBUG_SG is not set |
| 1228 | # CONFIG_FORCED_INLINING is not set | 1318 | CONFIG_FRAME_POINTER=y |
| 1229 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1319 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1230 | # CONFIG_RCU_TORTURE_TEST is not set | 1320 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1321 | # CONFIG_KPROBES_SANITY_TEST is not set | ||
| 1322 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
| 1323 | # CONFIG_LKDTM is not set | ||
| 1231 | # CONFIG_FAULT_INJECTION is not set | 1324 | # CONFIG_FAULT_INJECTION is not set |
| 1325 | CONFIG_LATENCYTOP=y | ||
| 1326 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
| 1327 | CONFIG_HAVE_FTRACE=y | ||
| 1328 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1329 | # CONFIG_FTRACE is not set | ||
| 1330 | # CONFIG_IRQSOFF_TRACER is not set | ||
| 1331 | # CONFIG_SCHED_TRACER is not set | ||
| 1332 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1232 | # CONFIG_SAMPLES is not set | 1333 | # CONFIG_SAMPLES is not set |
| 1334 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1335 | # CONFIG_KGDB is not set | ||
| 1233 | CONFIG_DEBUG_STACKOVERFLOW=y | 1336 | CONFIG_DEBUG_STACKOVERFLOW=y |
| 1234 | CONFIG_DEBUG_STACK_USAGE=y | 1337 | CONFIG_DEBUG_STACK_USAGE=y |
| 1235 | # CONFIG_DEBUG_PAGEALLOC is not set | 1338 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1236 | CONFIG_DEBUGGER=y | 1339 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1340 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1237 | CONFIG_XMON=y | 1341 | CONFIG_XMON=y |
| 1238 | CONFIG_XMON_DEFAULT=y | 1342 | CONFIG_XMON_DEFAULT=y |
| 1239 | CONFIG_XMON_DISASSEMBLY=y | 1343 | CONFIG_XMON_DISASSEMBLY=y |
| 1344 | CONFIG_DEBUGGER=y | ||
| 1240 | # CONFIG_IRQSTACKS is not set | 1345 | # CONFIG_IRQSTACKS is not set |
| 1241 | # CONFIG_VIRQ_DEBUG is not set | 1346 | # CONFIG_VIRQ_DEBUG is not set |
| 1242 | CONFIG_BOOTX_TEXT=y | 1347 | CONFIG_BOOTX_TEXT=y |
| @@ -1249,44 +1354,84 @@ CONFIG_BOOTX_TEXT=y | |||
| 1249 | # CONFIG_SECURITY is not set | 1354 | # CONFIG_SECURITY is not set |
| 1250 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1355 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1251 | CONFIG_CRYPTO=y | 1356 | CONFIG_CRYPTO=y |
| 1357 | |||
| 1358 | # | ||
| 1359 | # Crypto core or helper | ||
| 1360 | # | ||
| 1252 | CONFIG_CRYPTO_ALGAPI=y | 1361 | CONFIG_CRYPTO_ALGAPI=y |
| 1253 | CONFIG_CRYPTO_BLKCIPHER=y | 1362 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1254 | CONFIG_CRYPTO_MANAGER=y | 1363 | CONFIG_CRYPTO_MANAGER=y |
| 1364 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1365 | # CONFIG_CRYPTO_NULL is not set | ||
| 1366 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1367 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1368 | # CONFIG_CRYPTO_TEST is not set | ||
| 1369 | |||
| 1370 | # | ||
| 1371 | # Authenticated Encryption with Associated Data | ||
| 1372 | # | ||
| 1373 | # CONFIG_CRYPTO_CCM is not set | ||
| 1374 | # CONFIG_CRYPTO_GCM is not set | ||
| 1375 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1376 | |||
| 1377 | # | ||
| 1378 | # Block modes | ||
| 1379 | # | ||
| 1380 | CONFIG_CRYPTO_CBC=y | ||
| 1381 | # CONFIG_CRYPTO_CTR is not set | ||
| 1382 | # CONFIG_CRYPTO_CTS is not set | ||
| 1383 | CONFIG_CRYPTO_ECB=m | ||
| 1384 | # CONFIG_CRYPTO_LRW is not set | ||
| 1385 | CONFIG_CRYPTO_PCBC=m | ||
| 1386 | # CONFIG_CRYPTO_XTS is not set | ||
| 1387 | |||
| 1388 | # | ||
| 1389 | # Hash modes | ||
| 1390 | # | ||
| 1255 | # CONFIG_CRYPTO_HMAC is not set | 1391 | # CONFIG_CRYPTO_HMAC is not set |
| 1256 | # CONFIG_CRYPTO_XCBC is not set | 1392 | # CONFIG_CRYPTO_XCBC is not set |
| 1257 | # CONFIG_CRYPTO_NULL is not set | 1393 | |
| 1394 | # | ||
| 1395 | # Digest | ||
| 1396 | # | ||
| 1397 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1258 | # CONFIG_CRYPTO_MD4 is not set | 1398 | # CONFIG_CRYPTO_MD4 is not set |
| 1259 | CONFIG_CRYPTO_MD5=y | 1399 | CONFIG_CRYPTO_MD5=y |
| 1400 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1401 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1402 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1403 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1404 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1260 | # CONFIG_CRYPTO_SHA1 is not set | 1405 | # CONFIG_CRYPTO_SHA1 is not set |
| 1261 | # CONFIG_CRYPTO_SHA256 is not set | 1406 | # CONFIG_CRYPTO_SHA256 is not set |
| 1262 | # CONFIG_CRYPTO_SHA512 is not set | 1407 | # CONFIG_CRYPTO_SHA512 is not set |
| 1263 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1264 | # CONFIG_CRYPTO_TGR192 is not set | 1408 | # CONFIG_CRYPTO_TGR192 is not set |
| 1265 | # CONFIG_CRYPTO_GF128MUL is not set | 1409 | # CONFIG_CRYPTO_WP512 is not set |
| 1266 | CONFIG_CRYPTO_ECB=m | 1410 | |
| 1267 | CONFIG_CRYPTO_CBC=y | 1411 | # |
| 1268 | CONFIG_CRYPTO_PCBC=m | 1412 | # Ciphers |
| 1269 | # CONFIG_CRYPTO_LRW is not set | 1413 | # |
| 1270 | # CONFIG_CRYPTO_XTS is not set | ||
| 1271 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1272 | CONFIG_CRYPTO_DES=y | ||
| 1273 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1274 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1275 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1276 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1277 | # CONFIG_CRYPTO_AES is not set | 1414 | # CONFIG_CRYPTO_AES is not set |
| 1415 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1416 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1417 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1418 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1278 | # CONFIG_CRYPTO_CAST5 is not set | 1419 | # CONFIG_CRYPTO_CAST5 is not set |
| 1279 | # CONFIG_CRYPTO_CAST6 is not set | 1420 | # CONFIG_CRYPTO_CAST6 is not set |
| 1280 | # CONFIG_CRYPTO_TEA is not set | 1421 | CONFIG_CRYPTO_DES=y |
| 1281 | # CONFIG_CRYPTO_ARC4 is not set | 1422 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1282 | # CONFIG_CRYPTO_KHAZAD is not set | 1423 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1283 | # CONFIG_CRYPTO_ANUBIS is not set | 1424 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1284 | # CONFIG_CRYPTO_SEED is not set | 1425 | # CONFIG_CRYPTO_SEED is not set |
| 1426 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1427 | # CONFIG_CRYPTO_TEA is not set | ||
| 1428 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1429 | |||
| 1430 | # | ||
| 1431 | # Compression | ||
| 1432 | # | ||
| 1285 | # CONFIG_CRYPTO_DEFLATE is not set | 1433 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1286 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1434 | # CONFIG_CRYPTO_LZO is not set |
| 1287 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1288 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1289 | # CONFIG_CRYPTO_TEST is not set | ||
| 1290 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1291 | # CONFIG_CRYPTO_HW is not set | 1435 | # CONFIG_CRYPTO_HW is not set |
| 1292 | # CONFIG_PPC_CLOCK is not set | 1436 | # CONFIG_PPC_CLOCK is not set |
| 1437 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/mpc7448_hpc2_defconfig b/arch/powerpc/configs/mpc7448_hpc2_defconfig index 066c583c1f8a..ab5199f26a24 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:11 2008 | 4 | # Thu Aug 21 00:52:06 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 34 | CONFIG_STACKTRACE_SUPPORT=y |
| 35 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 36 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 38 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -88,7 +89,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | CONFIG_KALLSYMS=y | 92 | CONFIG_KALLSYMS=y |
| 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 94 | CONFIG_HOTPLUG=y | 94 | CONFIG_HOTPLUG=y |
| @@ -112,10 +112,16 @@ CONFIG_SLUB=y | |||
| 112 | # CONFIG_PROFILING is not set | 112 | # CONFIG_PROFILING is not set |
| 113 | # CONFIG_MARKERS is not set | 113 | # CONFIG_MARKERS is not set |
| 114 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
| 115 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 116 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 117 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 118 | CONFIG_HAVE_KRETPROBES=y |
| 119 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 120 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 121 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 122 | # CONFIG_HAVE_CLK is not set | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 123 | CONFIG_PROC_PAGE_MONITOR=y |
| 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | 127 | # CONFIG_TINY_SHMEM is not set |
| @@ -126,6 +132,7 @@ CONFIG_LBD=y | |||
| 126 | # CONFIG_BLK_DEV_IO_TRACE is not set | 132 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 127 | # CONFIG_LSF is not set | 133 | # CONFIG_LSF is not set |
| 128 | # CONFIG_BLK_DEV_BSG is not set | 134 | # CONFIG_BLK_DEV_BSG is not set |
| 135 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 129 | 136 | ||
| 130 | # | 137 | # |
| 131 | # IO Schedulers | 138 | # IO Schedulers |
| @@ -145,25 +152,25 @@ CONFIG_CLASSIC_RCU=y | |||
| 145 | # Platform support | 152 | # Platform support |
| 146 | # | 153 | # |
| 147 | CONFIG_PPC_MULTIPLATFORM=y | 154 | CONFIG_PPC_MULTIPLATFORM=y |
| 148 | # CONFIG_PPC_82xx is not set | ||
| 149 | # CONFIG_PPC_83xx is not set | ||
| 150 | # CONFIG_PPC_86xx is not set | ||
| 151 | CONFIG_CLASSIC32=y | 155 | CONFIG_CLASSIC32=y |
| 152 | # CONFIG_PPC_CHRP is not set | 156 | # CONFIG_PPC_CHRP is not set |
| 153 | # CONFIG_PPC_MPC512x is not set | ||
| 154 | # CONFIG_PPC_MPC5121 is not set | ||
| 155 | # CONFIG_MPC5121_ADS is not set | 157 | # CONFIG_MPC5121_ADS is not set |
| 158 | # CONFIG_MPC5121_GENERIC is not set | ||
| 156 | # CONFIG_PPC_MPC52xx is not set | 159 | # CONFIG_PPC_MPC52xx is not set |
| 157 | # CONFIG_PPC_PMAC is not set | 160 | # CONFIG_PPC_PMAC is not set |
| 158 | # CONFIG_PPC_CELL is not set | 161 | # CONFIG_PPC_CELL is not set |
| 159 | # CONFIG_PPC_CELL_NATIVE is not set | 162 | # CONFIG_PPC_CELL_NATIVE is not set |
| 163 | # CONFIG_PPC_82xx is not set | ||
| 160 | # CONFIG_PQ2ADS is not set | 164 | # CONFIG_PQ2ADS is not set |
| 165 | # CONFIG_PPC_83xx is not set | ||
| 166 | # CONFIG_PPC_86xx is not set | ||
| 161 | CONFIG_EMBEDDED6xx=y | 167 | CONFIG_EMBEDDED6xx=y |
| 162 | # CONFIG_LINKSTATION is not set | 168 | # CONFIG_LINKSTATION is not set |
| 163 | # CONFIG_STORCENTER is not set | 169 | # CONFIG_STORCENTER is not set |
| 164 | CONFIG_MPC7448HPC2=y | 170 | CONFIG_MPC7448HPC2=y |
| 165 | # CONFIG_PPC_HOLLY is not set | 171 | # CONFIG_PPC_HOLLY is not set |
| 166 | # CONFIG_PPC_PRPMC2800 is not set | 172 | # CONFIG_PPC_PRPMC2800 is not set |
| 173 | # CONFIG_PPC_C2K is not set | ||
| 167 | CONFIG_TSI108_BRIDGE=y | 174 | CONFIG_TSI108_BRIDGE=y |
| 168 | # CONFIG_IPIC is not set | 175 | # CONFIG_IPIC is not set |
| 169 | CONFIG_MPIC=y | 176 | CONFIG_MPIC=y |
| @@ -192,7 +199,7 @@ CONFIG_HZ_250=y | |||
| 192 | # CONFIG_HZ_300 is not set | 199 | # CONFIG_HZ_300 is not set |
| 193 | # CONFIG_HZ_1000 is not set | 200 | # CONFIG_HZ_1000 is not set |
| 194 | CONFIG_HZ=250 | 201 | CONFIG_HZ=250 |
| 195 | # CONFIG_SCHED_HRTICK is not set | 202 | CONFIG_SCHED_HRTICK=y |
| 196 | CONFIG_PREEMPT_NONE=y | 203 | CONFIG_PREEMPT_NONE=y |
| 197 | # CONFIG_PREEMPT_VOLUNTARY is not set | 204 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 198 | # CONFIG_PREEMPT is not set | 205 | # CONFIG_PREEMPT is not set |
| @@ -215,6 +222,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 215 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 222 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 216 | CONFIG_PAGEFLAGS_EXTENDED=y | 223 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 217 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 225 | CONFIG_MIGRATION=y | ||
| 218 | # CONFIG_RESOURCES_64BIT is not set | 226 | # CONFIG_RESOURCES_64BIT is not set |
| 219 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
| 220 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
| @@ -222,6 +230,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 222 | CONFIG_FORCE_MAX_ZONEORDER=11 | 230 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 223 | CONFIG_PROC_DEVICETREE=y | 231 | CONFIG_PROC_DEVICETREE=y |
| 224 | # CONFIG_CMDLINE_BOOL is not set | 232 | # CONFIG_CMDLINE_BOOL is not set |
| 233 | CONFIG_EXTRA_TARGETS="" | ||
| 225 | # CONFIG_PM is not set | 234 | # CONFIG_PM is not set |
| 226 | # CONFIG_SECCOMP is not set | 235 | # CONFIG_SECCOMP is not set |
| 227 | CONFIG_ISA_DMA_API=y | 236 | CONFIG_ISA_DMA_API=y |
| @@ -256,10 +265,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 256 | CONFIG_KERNEL_START=0xc0000000 | 265 | CONFIG_KERNEL_START=0xc0000000 |
| 257 | CONFIG_PHYSICAL_START=0x00000000 | 266 | CONFIG_PHYSICAL_START=0x00000000 |
| 258 | CONFIG_TASK_SIZE=0xc0000000 | 267 | CONFIG_TASK_SIZE=0xc0000000 |
| 259 | |||
| 260 | # | ||
| 261 | # Networking | ||
| 262 | # | ||
| 263 | CONFIG_NET=y | 268 | CONFIG_NET=y |
| 264 | 269 | ||
| 265 | # | 270 | # |
| @@ -374,12 +379,14 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 374 | # CONFIG_BLK_DEV_XIP is not set | 379 | # CONFIG_BLK_DEV_XIP is not set |
| 375 | # CONFIG_CDROM_PKTCDVD is not set | 380 | # CONFIG_CDROM_PKTCDVD is not set |
| 376 | # CONFIG_ATA_OVER_ETH is not set | 381 | # CONFIG_ATA_OVER_ETH is not set |
| 382 | # CONFIG_BLK_DEV_HD is not set | ||
| 377 | CONFIG_MISC_DEVICES=y | 383 | CONFIG_MISC_DEVICES=y |
| 378 | # CONFIG_PHANTOM is not set | 384 | # CONFIG_PHANTOM is not set |
| 379 | # CONFIG_EEPROM_93CX6 is not set | 385 | # CONFIG_EEPROM_93CX6 is not set |
| 380 | # CONFIG_SGI_IOC4 is not set | 386 | # CONFIG_SGI_IOC4 is not set |
| 381 | # CONFIG_TIFM_CORE is not set | 387 | # CONFIG_TIFM_CORE is not set |
| 382 | # CONFIG_ENCLOSURE_SERVICES is not set | 388 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 389 | # CONFIG_HP_ILO is not set | ||
| 383 | CONFIG_HAVE_IDE=y | 390 | CONFIG_HAVE_IDE=y |
| 384 | # CONFIG_IDE is not set | 391 | # CONFIG_IDE is not set |
| 385 | 392 | ||
| @@ -457,6 +464,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 457 | # CONFIG_SCSI_NSP32 is not set | 464 | # CONFIG_SCSI_NSP32 is not set |
| 458 | # CONFIG_SCSI_DEBUG is not set | 465 | # CONFIG_SCSI_DEBUG is not set |
| 459 | # CONFIG_SCSI_SRP is not set | 466 | # CONFIG_SCSI_SRP is not set |
| 467 | # CONFIG_SCSI_DH is not set | ||
| 460 | CONFIG_ATA=y | 468 | CONFIG_ATA=y |
| 461 | # CONFIG_ATA_NONSTANDARD is not set | 469 | # CONFIG_ATA_NONSTANDARD is not set |
| 462 | CONFIG_SATA_PMP=y | 470 | CONFIG_SATA_PMP=y |
| @@ -523,12 +531,15 @@ CONFIG_SATA_MV=y | |||
| 523 | # | 531 | # |
| 524 | # IEEE 1394 (FireWire) support | 532 | # IEEE 1394 (FireWire) support |
| 525 | # | 533 | # |
| 534 | |||
| 535 | # | ||
| 536 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 537 | # | ||
| 526 | # CONFIG_FIREWIRE is not set | 538 | # CONFIG_FIREWIRE is not set |
| 527 | # CONFIG_IEEE1394 is not set | 539 | # CONFIG_IEEE1394 is not set |
| 528 | # CONFIG_I2O is not set | 540 | # CONFIG_I2O is not set |
| 529 | # CONFIG_MACINTOSH_DRIVERS is not set | 541 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 530 | CONFIG_NETDEVICES=y | 542 | CONFIG_NETDEVICES=y |
| 531 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 532 | # CONFIG_DUMMY is not set | 543 | # CONFIG_DUMMY is not set |
| 533 | # CONFIG_BONDING is not set | 544 | # CONFIG_BONDING is not set |
| 534 | # CONFIG_MACVLAN is not set | 545 | # CONFIG_MACVLAN is not set |
| @@ -594,7 +605,6 @@ CONFIG_NETDEV_1000=y | |||
| 594 | # CONFIG_DL2K is not set | 605 | # CONFIG_DL2K is not set |
| 595 | # CONFIG_E1000 is not set | 606 | # CONFIG_E1000 is not set |
| 596 | # CONFIG_E1000E is not set | 607 | # CONFIG_E1000E is not set |
| 597 | # CONFIG_E1000E_ENABLED is not set | ||
| 598 | # CONFIG_IP1000 is not set | 608 | # CONFIG_IP1000 is not set |
| 599 | # CONFIG_IGB is not set | 609 | # CONFIG_IGB is not set |
| 600 | # CONFIG_NS83820 is not set | 610 | # CONFIG_NS83820 is not set |
| @@ -611,6 +621,7 @@ CONFIG_TSI108_ETH=y | |||
| 611 | # CONFIG_MV643XX_ETH is not set | 621 | # CONFIG_MV643XX_ETH is not set |
| 612 | # CONFIG_QLA3XXX is not set | 622 | # CONFIG_QLA3XXX is not set |
| 613 | # CONFIG_ATL1 is not set | 623 | # CONFIG_ATL1 is not set |
| 624 | # CONFIG_ATL1E is not set | ||
| 614 | CONFIG_NETDEV_10000=y | 625 | CONFIG_NETDEV_10000=y |
| 615 | # CONFIG_CHELSIO_T1 is not set | 626 | # CONFIG_CHELSIO_T1 is not set |
| 616 | # CONFIG_CHELSIO_T3 is not set | 627 | # CONFIG_CHELSIO_T3 is not set |
| @@ -716,6 +727,8 @@ CONFIG_GEN_RTC=y | |||
| 716 | CONFIG_DEVPORT=y | 727 | CONFIG_DEVPORT=y |
| 717 | # CONFIG_I2C is not set | 728 | # CONFIG_I2C is not set |
| 718 | # CONFIG_SPI is not set | 729 | # CONFIG_SPI is not set |
| 730 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 731 | # CONFIG_GPIOLIB is not set | ||
| 719 | # CONFIG_W1 is not set | 732 | # CONFIG_W1 is not set |
| 720 | # CONFIG_POWER_SUPPLY is not set | 733 | # CONFIG_POWER_SUPPLY is not set |
| 721 | CONFIG_HWMON=y | 734 | CONFIG_HWMON=y |
| @@ -736,6 +749,7 @@ CONFIG_HWMON=y | |||
| 736 | # CONFIG_SENSORS_W83627EHF is not set | 749 | # CONFIG_SENSORS_W83627EHF is not set |
| 737 | # CONFIG_HWMON_DEBUG_CHIP is not set | 750 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 738 | # CONFIG_THERMAL is not set | 751 | # CONFIG_THERMAL is not set |
| 752 | # CONFIG_THERMAL_HWMON is not set | ||
| 739 | # CONFIG_WATCHDOG is not set | 753 | # CONFIG_WATCHDOG is not set |
| 740 | 754 | ||
| 741 | # | 755 | # |
| @@ -747,8 +761,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 747 | # | 761 | # |
| 748 | # Multifunction device drivers | 762 | # Multifunction device drivers |
| 749 | # | 763 | # |
| 764 | # CONFIG_MFD_CORE is not set | ||
| 750 | # CONFIG_MFD_SM501 is not set | 765 | # CONFIG_MFD_SM501 is not set |
| 751 | # CONFIG_HTC_PASIC3 is not set | 766 | # CONFIG_HTC_PASIC3 is not set |
| 767 | # CONFIG_MFD_TMIO is not set | ||
| 752 | 768 | ||
| 753 | # | 769 | # |
| 754 | # Multimedia devices | 770 | # Multimedia devices |
| @@ -780,10 +796,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 780 | # Display device support | 796 | # Display device support |
| 781 | # | 797 | # |
| 782 | # CONFIG_DISPLAY_SUPPORT is not set | 798 | # CONFIG_DISPLAY_SUPPORT is not set |
| 783 | |||
| 784 | # | ||
| 785 | # Sound | ||
| 786 | # | ||
| 787 | # CONFIG_SOUND is not set | 799 | # CONFIG_SOUND is not set |
| 788 | CONFIG_HID_SUPPORT=y | 800 | CONFIG_HID_SUPPORT=y |
| 789 | CONFIG_HID=y | 801 | CONFIG_HID=y |
| @@ -798,6 +810,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 798 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 810 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 799 | 811 | ||
| 800 | # | 812 | # |
| 813 | # Enable Host or Gadget support to see Inventra options | ||
| 814 | # | ||
| 815 | |||
| 816 | # | ||
| 801 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 817 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 802 | # | 818 | # |
| 803 | # CONFIG_USB_GADGET is not set | 819 | # CONFIG_USB_GADGET is not set |
| @@ -875,6 +891,7 @@ CONFIG_TMPFS=y | |||
| 875 | # CONFIG_CRAMFS is not set | 891 | # CONFIG_CRAMFS is not set |
| 876 | # CONFIG_VXFS_FS is not set | 892 | # CONFIG_VXFS_FS is not set |
| 877 | # CONFIG_MINIX_FS is not set | 893 | # CONFIG_MINIX_FS is not set |
| 894 | # CONFIG_OMFS_FS is not set | ||
| 878 | # CONFIG_HPFS_FS is not set | 895 | # CONFIG_HPFS_FS is not set |
| 879 | # CONFIG_QNX4FS_FS is not set | 896 | # CONFIG_QNX4FS_FS is not set |
| 880 | # CONFIG_ROMFS_FS is not set | 897 | # CONFIG_ROMFS_FS is not set |
| @@ -884,12 +901,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 884 | CONFIG_NFS_FS=y | 901 | CONFIG_NFS_FS=y |
| 885 | # CONFIG_NFS_V3 is not set | 902 | # CONFIG_NFS_V3 is not set |
| 886 | # CONFIG_NFS_V4 is not set | 903 | # CONFIG_NFS_V4 is not set |
| 887 | # CONFIG_NFSD is not set | ||
| 888 | CONFIG_ROOT_NFS=y | 904 | CONFIG_ROOT_NFS=y |
| 905 | # CONFIG_NFSD is not set | ||
| 889 | CONFIG_LOCKD=y | 906 | CONFIG_LOCKD=y |
| 890 | CONFIG_NFS_COMMON=y | 907 | CONFIG_NFS_COMMON=y |
| 891 | CONFIG_SUNRPC=y | 908 | CONFIG_SUNRPC=y |
| 892 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 893 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 909 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 894 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 910 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 895 | # CONFIG_SMB_FS is not set | 911 | # CONFIG_SMB_FS is not set |
| @@ -929,6 +945,7 @@ CONFIG_BITREVERSE=y | |||
| 929 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 945 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 930 | # CONFIG_CRC_CCITT is not set | 946 | # CONFIG_CRC_CCITT is not set |
| 931 | # CONFIG_CRC16 is not set | 947 | # CONFIG_CRC16 is not set |
| 948 | CONFIG_CRC_T10DIF=y | ||
| 932 | # CONFIG_CRC_ITU_T is not set | 949 | # CONFIG_CRC_ITU_T is not set |
| 933 | CONFIG_CRC32=y | 950 | CONFIG_CRC32=y |
| 934 | # CONFIG_CRC7 is not set | 951 | # CONFIG_CRC7 is not set |
| @@ -954,7 +971,16 @@ CONFIG_FRAME_WARN=1024 | |||
| 954 | # CONFIG_SLUB_DEBUG_ON is not set | 971 | # CONFIG_SLUB_DEBUG_ON is not set |
| 955 | # CONFIG_SLUB_STATS is not set | 972 | # CONFIG_SLUB_STATS is not set |
| 956 | # CONFIG_DEBUG_BUGVERBOSE is not set | 973 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 974 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 975 | # CONFIG_LATENCYTOP is not set | ||
| 976 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 977 | CONFIG_HAVE_FTRACE=y | ||
| 978 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 979 | # CONFIG_FTRACE is not set | ||
| 980 | # CONFIG_SCHED_TRACER is not set | ||
| 981 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 957 | # CONFIG_SAMPLES is not set | 982 | # CONFIG_SAMPLES is not set |
| 983 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 958 | # CONFIG_IRQSTACKS is not set | 984 | # CONFIG_IRQSTACKS is not set |
| 959 | # CONFIG_BOOTX_TEXT is not set | 985 | # CONFIG_BOOTX_TEXT is not set |
| 960 | # CONFIG_PPC_EARLY_DEBUG is not set | 986 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -1007,6 +1033,10 @@ CONFIG_CRYPTO=y | |||
| 1007 | # CONFIG_CRYPTO_MD4 is not set | 1033 | # CONFIG_CRYPTO_MD4 is not set |
| 1008 | # CONFIG_CRYPTO_MD5 is not set | 1034 | # CONFIG_CRYPTO_MD5 is not set |
| 1009 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1035 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1036 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1037 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1038 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1039 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1010 | # CONFIG_CRYPTO_SHA1 is not set | 1040 | # CONFIG_CRYPTO_SHA1 is not set |
| 1011 | # CONFIG_CRYPTO_SHA256 is not set | 1041 | # CONFIG_CRYPTO_SHA256 is not set |
| 1012 | # CONFIG_CRYPTO_SHA512 is not set | 1042 | # CONFIG_CRYPTO_SHA512 is not set |
diff --git a/arch/powerpc/configs/mpc8272_ads_defconfig b/arch/powerpc/configs/mpc8272_ads_defconfig index 30d7834b7db1..7c435c84c875 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:12 2008 | 4 | # Thu Aug 21 00:52:07 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_6xx=y | |||
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_ALTIVEC is not set | ||
| 18 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
| 19 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
| 20 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -31,12 +32,14 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
| 33 | CONFIG_STACKTRACE_SUPPORT=y | 34 | CONFIG_STACKTRACE_SUPPORT=y |
| 35 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 34 | CONFIG_LOCKDEP_SUPPORT=y | 36 | CONFIG_LOCKDEP_SUPPORT=y |
| 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 36 | CONFIG_ARCH_HAS_ILOG2_U32=y | 38 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 37 | CONFIG_GENERIC_HWEIGHT=y | 39 | CONFIG_GENERIC_HWEIGHT=y |
| 38 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 40 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 39 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 41 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 42 | CONFIG_GENERIC_GPIO=y | ||
| 40 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 43 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
| 41 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
| 42 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
| @@ -45,11 +48,13 @@ CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | |||
| 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
| 46 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
| 47 | CONFIG_OF=y | 50 | CONFIG_OF=y |
| 48 | # CONFIG_PPC_UDBG_16550 is not set | 51 | CONFIG_PPC_UDBG_16550=y |
| 49 | # CONFIG_GENERIC_TBSYNC is not set | 52 | # CONFIG_GENERIC_TBSYNC is not set |
| 50 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 51 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 52 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 53 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 54 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 55 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -81,7 +86,6 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 81 | CONFIG_SYSCTL=y | 86 | CONFIG_SYSCTL=y |
| 82 | CONFIG_EMBEDDED=y | 87 | CONFIG_EMBEDDED=y |
| 83 | CONFIG_SYSCTL_SYSCALL=y | 88 | CONFIG_SYSCTL_SYSCALL=y |
| 84 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 85 | CONFIG_KALLSYMS=y | 89 | CONFIG_KALLSYMS=y |
| 86 | CONFIG_KALLSYMS_ALL=y | 90 | CONFIG_KALLSYMS_ALL=y |
| 87 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 91 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -89,6 +93,7 @@ CONFIG_HOTPLUG=y | |||
| 89 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
| 90 | CONFIG_BUG=y | 94 | CONFIG_BUG=y |
| 91 | CONFIG_ELF_CORE=y | 95 | CONFIG_ELF_CORE=y |
| 96 | CONFIG_PCSPKR_PLATFORM=y | ||
| 92 | CONFIG_COMPAT_BRK=y | 97 | CONFIG_COMPAT_BRK=y |
| 93 | CONFIG_BASE_FULL=y | 98 | CONFIG_BASE_FULL=y |
| 94 | CONFIG_FUTEX=y | 99 | CONFIG_FUTEX=y |
| @@ -106,10 +111,16 @@ CONFIG_SLUB=y | |||
| 106 | # CONFIG_PROFILING is not set | 111 | # CONFIG_PROFILING is not set |
| 107 | # CONFIG_MARKERS is not set | 112 | # CONFIG_MARKERS is not set |
| 108 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
| 114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 115 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 109 | CONFIG_HAVE_KPROBES=y | 116 | CONFIG_HAVE_KPROBES=y |
| 110 | CONFIG_HAVE_KRETPROBES=y | 117 | CONFIG_HAVE_KRETPROBES=y |
| 118 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 111 | # CONFIG_HAVE_DMA_ATTRS is not set | 119 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 120 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 121 | CONFIG_HAVE_CLK=y | ||
| 112 | CONFIG_PROC_PAGE_MONITOR=y | 122 | CONFIG_PROC_PAGE_MONITOR=y |
| 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 113 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
| 114 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
| 115 | # CONFIG_TINY_SHMEM is not set | 126 | # CONFIG_TINY_SHMEM is not set |
| @@ -119,6 +130,7 @@ CONFIG_BLOCK=y | |||
| 119 | # CONFIG_LBD is not set | 130 | # CONFIG_LBD is not set |
| 120 | # CONFIG_BLK_DEV_IO_TRACE is not set | 131 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 121 | # CONFIG_LSF is not set | 132 | # CONFIG_LSF is not set |
| 133 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 122 | 134 | ||
| 123 | # | 135 | # |
| 124 | # IO Schedulers | 136 | # IO Schedulers |
| @@ -137,14 +149,16 @@ CONFIG_CLASSIC_RCU=y | |||
| 137 | # | 149 | # |
| 138 | # Platform support | 150 | # Platform support |
| 139 | # | 151 | # |
| 140 | # CONFIG_PPC_MULTIPLATFORM is not set | 152 | CONFIG_PPC_MULTIPLATFORM=y |
| 141 | CONFIG_PPC_82xx=y | 153 | CONFIG_CLASSIC32=y |
| 142 | # CONFIG_PPC_83xx is not set | 154 | CONFIG_PPC_CHRP=y |
| 143 | # CONFIG_PPC_86xx is not set | 155 | # CONFIG_MPC5121_ADS is not set |
| 144 | # CONFIG_PPC_MPC512x is not set | 156 | # CONFIG_MPC5121_GENERIC is not set |
| 145 | # CONFIG_PPC_MPC5121 is not set | 157 | # CONFIG_PPC_MPC52xx is not set |
| 158 | CONFIG_PPC_PMAC=y | ||
| 146 | # CONFIG_PPC_CELL is not set | 159 | # CONFIG_PPC_CELL is not set |
| 147 | # CONFIG_PPC_CELL_NATIVE is not set | 160 | # CONFIG_PPC_CELL_NATIVE is not set |
| 161 | CONFIG_PPC_82xx=y | ||
| 148 | CONFIG_MPC8272_ADS=y | 162 | CONFIG_MPC8272_ADS=y |
| 149 | # CONFIG_PQ2FADS is not set | 163 | # CONFIG_PQ2FADS is not set |
| 150 | # CONFIG_EP8248E is not set | 164 | # CONFIG_EP8248E is not set |
| @@ -152,19 +166,27 @@ CONFIG_PQ2ADS=y | |||
| 152 | CONFIG_8260=y | 166 | CONFIG_8260=y |
| 153 | CONFIG_8272=y | 167 | CONFIG_8272=y |
| 154 | CONFIG_PQ2_ADS_PCI_PIC=y | 168 | CONFIG_PQ2_ADS_PCI_PIC=y |
| 169 | # CONFIG_PPC_83xx is not set | ||
| 170 | # CONFIG_PPC_86xx is not set | ||
| 171 | # CONFIG_EMBEDDED6xx is not set | ||
| 172 | CONFIG_PPC_NATIVE=y | ||
| 173 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 155 | # CONFIG_IPIC is not set | 174 | # CONFIG_IPIC is not set |
| 156 | # CONFIG_MPIC is not set | 175 | CONFIG_MPIC=y |
| 157 | # CONFIG_MPIC_WEIRD is not set | 176 | # CONFIG_MPIC_WEIRD is not set |
| 158 | # CONFIG_PPC_I8259 is not set | 177 | CONFIG_PPC_I8259=y |
| 159 | # CONFIG_PPC_RTAS is not set | 178 | CONFIG_PPC_RTAS=y |
| 179 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 180 | CONFIG_RTAS_PROC=y | ||
| 160 | # CONFIG_MMIO_NVRAM is not set | 181 | # CONFIG_MMIO_NVRAM is not set |
| 161 | # CONFIG_PPC_MPC106 is not set | 182 | CONFIG_PPC_MPC106=y |
| 162 | # CONFIG_PPC_970_NAP is not set | 183 | # CONFIG_PPC_970_NAP is not set |
| 163 | # CONFIG_PPC_INDIRECT_IO is not set | 184 | # CONFIG_PPC_INDIRECT_IO is not set |
| 164 | # CONFIG_GENERIC_IOMAP is not set | 185 | # CONFIG_GENERIC_IOMAP is not set |
| 165 | # CONFIG_CPU_FREQ is not set | 186 | # CONFIG_CPU_FREQ is not set |
| 187 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 188 | # CONFIG_TAU is not set | ||
| 166 | CONFIG_CPM2=y | 189 | CONFIG_CPM2=y |
| 167 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 168 | # CONFIG_FSL_ULI1575 is not set | 190 | # CONFIG_FSL_ULI1575 is not set |
| 169 | CONFIG_CPM=y | 191 | CONFIG_CPM=y |
| 170 | 192 | ||
| @@ -181,7 +203,7 @@ CONFIG_HZ_250=y | |||
| 181 | # CONFIG_HZ_300 is not set | 203 | # CONFIG_HZ_300 is not set |
| 182 | # CONFIG_HZ_1000 is not set | 204 | # CONFIG_HZ_1000 is not set |
| 183 | CONFIG_HZ=250 | 205 | CONFIG_HZ=250 |
| 184 | # CONFIG_SCHED_HRTICK is not set | 206 | CONFIG_SCHED_HRTICK=y |
| 185 | CONFIG_PREEMPT_NONE=y | 207 | CONFIG_PREEMPT_NONE=y |
| 186 | # CONFIG_PREEMPT_VOLUNTARY is not set | 208 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 187 | # CONFIG_PREEMPT is not set | 209 | # CONFIG_PREEMPT is not set |
| @@ -199,6 +221,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 199 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 221 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 200 | CONFIG_PAGEFLAGS_EXTENDED=y | 222 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 201 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 223 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 224 | CONFIG_MIGRATION=y | ||
| 202 | # CONFIG_RESOURCES_64BIT is not set | 225 | # CONFIG_RESOURCES_64BIT is not set |
| 203 | CONFIG_ZONE_DMA_FLAG=1 | 226 | CONFIG_ZONE_DMA_FLAG=1 |
| 204 | CONFIG_BOUNCE=y | 227 | CONFIG_BOUNCE=y |
| @@ -206,6 +229,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 206 | CONFIG_FORCE_MAX_ZONEORDER=11 | 229 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 207 | CONFIG_PROC_DEVICETREE=y | 230 | CONFIG_PROC_DEVICETREE=y |
| 208 | # CONFIG_CMDLINE_BOOL is not set | 231 | # CONFIG_CMDLINE_BOOL is not set |
| 232 | CONFIG_EXTRA_TARGETS="" | ||
| 209 | # CONFIG_PM is not set | 233 | # CONFIG_PM is not set |
| 210 | CONFIG_SECCOMP=y | 234 | CONFIG_SECCOMP=y |
| 211 | CONFIG_ISA_DMA_API=y | 235 | CONFIG_ISA_DMA_API=y |
| @@ -213,9 +237,11 @@ CONFIG_ISA_DMA_API=y | |||
| 213 | # | 237 | # |
| 214 | # Bus options | 238 | # Bus options |
| 215 | # | 239 | # |
| 240 | # CONFIG_ISA is not set | ||
| 216 | CONFIG_ZONE_DMA=y | 241 | CONFIG_ZONE_DMA=y |
| 217 | CONFIG_PPC_INDIRECT_PCI=y | 242 | CONFIG_PPC_INDIRECT_PCI=y |
| 218 | CONFIG_FSL_SOC=y | 243 | CONFIG_FSL_SOC=y |
| 244 | CONFIG_PPC_PCI_CHOICE=y | ||
| 219 | CONFIG_PCI=y | 245 | CONFIG_PCI=y |
| 220 | CONFIG_PCI_DOMAINS=y | 246 | CONFIG_PCI_DOMAINS=y |
| 221 | CONFIG_PCI_SYSCALL=y | 247 | CONFIG_PCI_SYSCALL=y |
| @@ -242,10 +268,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 242 | CONFIG_KERNEL_START=0xc0000000 | 268 | CONFIG_KERNEL_START=0xc0000000 |
| 243 | CONFIG_PHYSICAL_START=0x00000000 | 269 | CONFIG_PHYSICAL_START=0x00000000 |
| 244 | CONFIG_TASK_SIZE=0xc0000000 | 270 | CONFIG_TASK_SIZE=0xc0000000 |
| 245 | |||
| 246 | # | ||
| 247 | # Networking | ||
| 248 | # | ||
| 249 | CONFIG_NET=y | 271 | CONFIG_NET=y |
| 250 | 272 | ||
| 251 | # | 273 | # |
| @@ -446,9 +468,11 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 446 | # | 468 | # |
| 447 | # CONFIG_MTD_UBI is not set | 469 | # CONFIG_MTD_UBI is not set |
| 448 | CONFIG_OF_DEVICE=y | 470 | CONFIG_OF_DEVICE=y |
| 471 | CONFIG_OF_GPIO=y | ||
| 449 | # CONFIG_PARPORT is not set | 472 | # CONFIG_PARPORT is not set |
| 450 | CONFIG_BLK_DEV=y | 473 | CONFIG_BLK_DEV=y |
| 451 | # CONFIG_BLK_DEV_FD is not set | 474 | # CONFIG_BLK_DEV_FD is not set |
| 475 | # CONFIG_MAC_FLOPPY is not set | ||
| 452 | # CONFIG_BLK_CPQ_DA is not set | 476 | # CONFIG_BLK_CPQ_DA is not set |
| 453 | # CONFIG_BLK_CPQ_CISS_DA is not set | 477 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 454 | # CONFIG_BLK_DEV_DAC960 is not set | 478 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -460,6 +484,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
| 460 | # CONFIG_BLK_DEV_RAM is not set | 484 | # CONFIG_BLK_DEV_RAM is not set |
| 461 | # CONFIG_CDROM_PKTCDVD is not set | 485 | # CONFIG_CDROM_PKTCDVD is not set |
| 462 | # CONFIG_ATA_OVER_ETH is not set | 486 | # CONFIG_ATA_OVER_ETH is not set |
| 487 | # CONFIG_BLK_DEV_HD is not set | ||
| 463 | # CONFIG_MISC_DEVICES is not set | 488 | # CONFIG_MISC_DEVICES is not set |
| 464 | CONFIG_HAVE_IDE=y | 489 | CONFIG_HAVE_IDE=y |
| 465 | # CONFIG_IDE is not set | 490 | # CONFIG_IDE is not set |
| @@ -480,13 +505,12 @@ CONFIG_HAVE_IDE=y | |||
| 480 | # | 505 | # |
| 481 | 506 | ||
| 482 | # | 507 | # |
| 483 | # An alternative FireWire stack is available with EXPERIMENTAL=y | 508 | # A new alternative FireWire stack is available with EXPERIMENTAL=y |
| 484 | # | 509 | # |
| 485 | # CONFIG_IEEE1394 is not set | 510 | # CONFIG_IEEE1394 is not set |
| 486 | # CONFIG_I2O is not set | 511 | # CONFIG_I2O is not set |
| 487 | # CONFIG_MACINTOSH_DRIVERS is not set | 512 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 488 | CONFIG_NETDEVICES=y | 513 | CONFIG_NETDEVICES=y |
| 489 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 490 | # CONFIG_DUMMY is not set | 514 | # CONFIG_DUMMY is not set |
| 491 | # CONFIG_BONDING is not set | 515 | # CONFIG_BONDING is not set |
| 492 | # CONFIG_EQUALIZER is not set | 516 | # CONFIG_EQUALIZER is not set |
| @@ -510,8 +534,11 @@ CONFIG_DAVICOM_PHY=y | |||
| 510 | # CONFIG_REALTEK_PHY is not set | 534 | # CONFIG_REALTEK_PHY is not set |
| 511 | # CONFIG_FIXED_PHY is not set | 535 | # CONFIG_FIXED_PHY is not set |
| 512 | CONFIG_MDIO_BITBANG=y | 536 | CONFIG_MDIO_BITBANG=y |
| 537 | # CONFIG_MDIO_OF_GPIO is not set | ||
| 513 | CONFIG_NET_ETHERNET=y | 538 | CONFIG_NET_ETHERNET=y |
| 514 | CONFIG_MII=y | 539 | CONFIG_MII=y |
| 540 | # CONFIG_MACE is not set | ||
| 541 | # CONFIG_BMAC is not set | ||
| 515 | # CONFIG_HAPPYMEAL is not set | 542 | # CONFIG_HAPPYMEAL is not set |
| 516 | # CONFIG_SUNGEM is not set | 543 | # CONFIG_SUNGEM is not set |
| 517 | # CONFIG_CASSINI is not set | 544 | # CONFIG_CASSINI is not set |
| @@ -533,7 +560,6 @@ CONFIG_NETDEV_1000=y | |||
| 533 | # CONFIG_DL2K is not set | 560 | # CONFIG_DL2K is not set |
| 534 | # CONFIG_E1000 is not set | 561 | # CONFIG_E1000 is not set |
| 535 | # CONFIG_E1000E is not set | 562 | # CONFIG_E1000E is not set |
| 536 | # CONFIG_E1000E_ENABLED is not set | ||
| 537 | # CONFIG_IGB is not set | 563 | # CONFIG_IGB is not set |
| 538 | # CONFIG_NS83820 is not set | 564 | # CONFIG_NS83820 is not set |
| 539 | # CONFIG_HAMACHI is not set | 565 | # CONFIG_HAMACHI is not set |
| @@ -545,6 +571,7 @@ CONFIG_NETDEV_1000=y | |||
| 545 | # CONFIG_TIGON3 is not set | 571 | # CONFIG_TIGON3 is not set |
| 546 | # CONFIG_BNX2 is not set | 572 | # CONFIG_BNX2 is not set |
| 547 | # CONFIG_GIANFAR is not set | 573 | # CONFIG_GIANFAR is not set |
| 574 | # CONFIG_MV643XX_ETH is not set | ||
| 548 | # CONFIG_QLA3XXX is not set | 575 | # CONFIG_QLA3XXX is not set |
| 549 | CONFIG_NETDEV_10000=y | 576 | CONFIG_NETDEV_10000=y |
| 550 | # CONFIG_CHELSIO_T1 is not set | 577 | # CONFIG_CHELSIO_T1 is not set |
| @@ -610,6 +637,7 @@ CONFIG_KEYBOARD_ATKBD=y | |||
| 610 | # CONFIG_KEYBOARD_XTKBD is not set | 637 | # CONFIG_KEYBOARD_XTKBD is not set |
| 611 | # CONFIG_KEYBOARD_NEWTON is not set | 638 | # CONFIG_KEYBOARD_NEWTON is not set |
| 612 | # CONFIG_KEYBOARD_STOWAWAY is not set | 639 | # CONFIG_KEYBOARD_STOWAWAY is not set |
| 640 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 613 | CONFIG_INPUT_MOUSE=y | 641 | CONFIG_INPUT_MOUSE=y |
| 614 | CONFIG_MOUSE_PS2=y | 642 | CONFIG_MOUSE_PS2=y |
| 615 | CONFIG_MOUSE_PS2_ALPS=y | 643 | CONFIG_MOUSE_PS2_ALPS=y |
| @@ -620,6 +648,7 @@ CONFIG_MOUSE_PS2_TRACKPOINT=y | |||
| 620 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 648 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| 621 | # CONFIG_MOUSE_SERIAL is not set | 649 | # CONFIG_MOUSE_SERIAL is not set |
| 622 | # CONFIG_MOUSE_VSXXXAA is not set | 650 | # CONFIG_MOUSE_VSXXXAA is not set |
| 651 | # CONFIG_MOUSE_GPIO is not set | ||
| 623 | # CONFIG_INPUT_JOYSTICK is not set | 652 | # CONFIG_INPUT_JOYSTICK is not set |
| 624 | # CONFIG_INPUT_TABLET is not set | 653 | # CONFIG_INPUT_TABLET is not set |
| 625 | # CONFIG_INPUT_TOUCHSCREEN is not set | 654 | # CONFIG_INPUT_TOUCHSCREEN is not set |
| @@ -634,6 +663,7 @@ CONFIG_SERIO_SERPORT=y | |||
| 634 | # CONFIG_SERIO_PCIPS2 is not set | 663 | # CONFIG_SERIO_PCIPS2 is not set |
| 635 | CONFIG_SERIO_LIBPS2=y | 664 | CONFIG_SERIO_LIBPS2=y |
| 636 | # CONFIG_SERIO_RAW is not set | 665 | # CONFIG_SERIO_RAW is not set |
| 666 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 637 | # CONFIG_GAMEPORT is not set | 667 | # CONFIG_GAMEPORT is not set |
| 638 | 668 | ||
| 639 | # | 669 | # |
| @@ -654,6 +684,7 @@ CONFIG_DEVKMEM=y | |||
| 654 | # CONFIG_SERIAL_UARTLITE is not set | 684 | # CONFIG_SERIAL_UARTLITE is not set |
| 655 | CONFIG_SERIAL_CORE=y | 685 | CONFIG_SERIAL_CORE=y |
| 656 | CONFIG_SERIAL_CORE_CONSOLE=y | 686 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 687 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 657 | CONFIG_SERIAL_CPM=y | 688 | CONFIG_SERIAL_CPM=y |
| 658 | CONFIG_SERIAL_CPM_CONSOLE=y | 689 | CONFIG_SERIAL_CPM_CONSOLE=y |
| 659 | CONFIG_SERIAL_CPM_SCC1=y | 690 | CONFIG_SERIAL_CPM_SCC1=y |
| @@ -666,6 +697,8 @@ CONFIG_SERIAL_CPM_SCC4=y | |||
| 666 | CONFIG_UNIX98_PTYS=y | 697 | CONFIG_UNIX98_PTYS=y |
| 667 | CONFIG_LEGACY_PTYS=y | 698 | CONFIG_LEGACY_PTYS=y |
| 668 | CONFIG_LEGACY_PTY_COUNT=256 | 699 | CONFIG_LEGACY_PTY_COUNT=256 |
| 700 | # CONFIG_BRIQ_PANEL is not set | ||
| 701 | # CONFIG_HVC_RTAS is not set | ||
| 669 | # CONFIG_IPMI_HANDLER is not set | 702 | # CONFIG_IPMI_HANDLER is not set |
| 670 | CONFIG_HW_RANDOM=y | 703 | CONFIG_HW_RANDOM=y |
| 671 | # CONFIG_NVRAM is not set | 704 | # CONFIG_NVRAM is not set |
| @@ -676,10 +709,28 @@ CONFIG_HW_RANDOM=y | |||
| 676 | CONFIG_DEVPORT=y | 709 | CONFIG_DEVPORT=y |
| 677 | # CONFIG_I2C is not set | 710 | # CONFIG_I2C is not set |
| 678 | # CONFIG_SPI is not set | 711 | # CONFIG_SPI is not set |
| 712 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 713 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | ||
| 714 | CONFIG_GPIOLIB=y | ||
| 715 | # CONFIG_DEBUG_GPIO is not set | ||
| 716 | |||
| 717 | # | ||
| 718 | # I2C GPIO expanders: | ||
| 719 | # | ||
| 720 | |||
| 721 | # | ||
| 722 | # PCI GPIO expanders: | ||
| 723 | # | ||
| 724 | # CONFIG_GPIO_BT8XX is not set | ||
| 725 | |||
| 726 | # | ||
| 727 | # SPI GPIO expanders: | ||
| 728 | # | ||
| 679 | # CONFIG_W1 is not set | 729 | # CONFIG_W1 is not set |
| 680 | # CONFIG_POWER_SUPPLY is not set | 730 | # CONFIG_POWER_SUPPLY is not set |
| 681 | # CONFIG_HWMON is not set | 731 | # CONFIG_HWMON is not set |
| 682 | # CONFIG_THERMAL is not set | 732 | # CONFIG_THERMAL is not set |
| 733 | # CONFIG_THERMAL_HWMON is not set | ||
| 683 | # CONFIG_WATCHDOG is not set | 734 | # CONFIG_WATCHDOG is not set |
| 684 | 735 | ||
| 685 | # | 736 | # |
| @@ -691,8 +742,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 691 | # | 742 | # |
| 692 | # Multifunction device drivers | 743 | # Multifunction device drivers |
| 693 | # | 744 | # |
| 745 | # CONFIG_MFD_CORE is not set | ||
| 694 | # CONFIG_MFD_SM501 is not set | 746 | # CONFIG_MFD_SM501 is not set |
| 695 | # CONFIG_HTC_PASIC3 is not set | 747 | # CONFIG_HTC_PASIC3 is not set |
| 748 | # CONFIG_MFD_TMIO is not set | ||
| 696 | 749 | ||
| 697 | # | 750 | # |
| 698 | # Multimedia devices | 751 | # Multimedia devices |
| @@ -724,10 +777,6 @@ CONFIG_DAB=y | |||
| 724 | # Display device support | 777 | # Display device support |
| 725 | # | 778 | # |
| 726 | # CONFIG_DISPLAY_SUPPORT is not set | 779 | # CONFIG_DISPLAY_SUPPORT is not set |
| 727 | |||
| 728 | # | ||
| 729 | # Sound | ||
| 730 | # | ||
| 731 | # CONFIG_SOUND is not set | 780 | # CONFIG_SOUND is not set |
| 732 | # CONFIG_HID_SUPPORT is not set | 781 | # CONFIG_HID_SUPPORT is not set |
| 733 | # CONFIG_USB_SUPPORT is not set | 782 | # CONFIG_USB_SUPPORT is not set |
| @@ -798,6 +847,7 @@ CONFIG_TMPFS=y | |||
| 798 | CONFIG_CRAMFS=y | 847 | CONFIG_CRAMFS=y |
| 799 | # CONFIG_VXFS_FS is not set | 848 | # CONFIG_VXFS_FS is not set |
| 800 | # CONFIG_MINIX_FS is not set | 849 | # CONFIG_MINIX_FS is not set |
| 850 | # CONFIG_OMFS_FS is not set | ||
| 801 | # CONFIG_HPFS_FS is not set | 851 | # CONFIG_HPFS_FS is not set |
| 802 | # CONFIG_QNX4FS_FS is not set | 852 | # CONFIG_QNX4FS_FS is not set |
| 803 | # CONFIG_ROMFS_FS is not set | 853 | # CONFIG_ROMFS_FS is not set |
| @@ -807,8 +857,8 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 807 | CONFIG_NFS_FS=y | 857 | CONFIG_NFS_FS=y |
| 808 | CONFIG_NFS_V3=y | 858 | CONFIG_NFS_V3=y |
| 809 | CONFIG_NFS_V3_ACL=y | 859 | CONFIG_NFS_V3_ACL=y |
| 810 | # CONFIG_NFSD is not set | ||
| 811 | CONFIG_ROOT_NFS=y | 860 | CONFIG_ROOT_NFS=y |
| 861 | # CONFIG_NFSD is not set | ||
| 812 | CONFIG_LOCKD=y | 862 | CONFIG_LOCKD=y |
| 813 | CONFIG_LOCKD_V4=y | 863 | CONFIG_LOCKD_V4=y |
| 814 | CONFIG_NFS_ACL_SUPPORT=y | 864 | CONFIG_NFS_ACL_SUPPORT=y |
| @@ -888,6 +938,7 @@ CONFIG_BITREVERSE=y | |||
| 888 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 938 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 889 | CONFIG_CRC_CCITT=y | 939 | CONFIG_CRC_CCITT=y |
| 890 | # CONFIG_CRC16 is not set | 940 | # CONFIG_CRC16 is not set |
| 941 | # CONFIG_CRC_T10DIF is not set | ||
| 891 | # CONFIG_CRC_ITU_T is not set | 942 | # CONFIG_CRC_ITU_T is not set |
| 892 | CONFIG_CRC32=y | 943 | CONFIG_CRC32=y |
| 893 | # CONFIG_CRC7 is not set | 944 | # CONFIG_CRC7 is not set |
| @@ -914,6 +965,8 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 914 | CONFIG_DEBUG_KERNEL=y | 965 | CONFIG_DEBUG_KERNEL=y |
| 915 | # CONFIG_DEBUG_SHIRQ is not set | 966 | # CONFIG_DEBUG_SHIRQ is not set |
| 916 | CONFIG_DETECT_SOFTLOCKUP=y | 967 | CONFIG_DETECT_SOFTLOCKUP=y |
| 968 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 969 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 917 | CONFIG_SCHED_DEBUG=y | 970 | CONFIG_SCHED_DEBUG=y |
| 918 | # CONFIG_SCHEDSTATS is not set | 971 | # CONFIG_SCHEDSTATS is not set |
| 919 | # CONFIG_TIMER_STATS is not set | 972 | # CONFIG_TIMER_STATS is not set |
| @@ -931,19 +984,31 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 931 | CONFIG_DEBUG_INFO=y | 984 | CONFIG_DEBUG_INFO=y |
| 932 | # CONFIG_DEBUG_VM is not set | 985 | # CONFIG_DEBUG_VM is not set |
| 933 | # CONFIG_DEBUG_WRITECOUNT is not set | 986 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 987 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 934 | # CONFIG_DEBUG_LIST is not set | 988 | # CONFIG_DEBUG_LIST is not set |
| 935 | # CONFIG_DEBUG_SG is not set | 989 | # CONFIG_DEBUG_SG is not set |
| 936 | # CONFIG_BOOT_PRINTK_DELAY is not set | 990 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 991 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 937 | # CONFIG_BACKTRACE_SELF_TEST is not set | 992 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 938 | # CONFIG_FAULT_INJECTION is not set | 993 | # CONFIG_FAULT_INJECTION is not set |
| 994 | # CONFIG_LATENCYTOP is not set | ||
| 995 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 996 | CONFIG_HAVE_FTRACE=y | ||
| 997 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 998 | # CONFIG_FTRACE is not set | ||
| 999 | # CONFIG_SCHED_TRACER is not set | ||
| 1000 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 939 | # CONFIG_SAMPLES is not set | 1001 | # CONFIG_SAMPLES is not set |
| 1002 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 940 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1003 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 941 | # CONFIG_DEBUG_STACK_USAGE is not set | 1004 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 942 | # CONFIG_DEBUG_PAGEALLOC is not set | 1005 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 943 | # CONFIG_DEBUGGER is not set | 1006 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 944 | # CONFIG_KGDB_CONSOLE is not set | 1007 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1008 | # CONFIG_XMON is not set | ||
| 945 | # CONFIG_IRQSTACKS is not set | 1009 | # CONFIG_IRQSTACKS is not set |
| 946 | CONFIG_BDI_SWITCH=y | 1010 | CONFIG_BDI_SWITCH=y |
| 1011 | # CONFIG_BOOTX_TEXT is not set | ||
| 947 | # CONFIG_PPC_EARLY_DEBUG is not set | 1012 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 948 | 1013 | ||
| 949 | # | 1014 | # |
| @@ -951,6 +1016,7 @@ CONFIG_BDI_SWITCH=y | |||
| 951 | # | 1016 | # |
| 952 | # CONFIG_KEYS is not set | 1017 | # CONFIG_KEYS is not set |
| 953 | # CONFIG_SECURITY is not set | 1018 | # CONFIG_SECURITY is not set |
| 1019 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
| 954 | CONFIG_CRYPTO=y | 1020 | CONFIG_CRYPTO=y |
| 955 | 1021 | ||
| 956 | # | 1022 | # |
| @@ -991,6 +1057,10 @@ CONFIG_CRYPTO_PCBC=y | |||
| 991 | # CONFIG_CRYPTO_MD4 is not set | 1057 | # CONFIG_CRYPTO_MD4 is not set |
| 992 | CONFIG_CRYPTO_MD5=y | 1058 | CONFIG_CRYPTO_MD5=y |
| 993 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1059 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1060 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1061 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1062 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1063 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 994 | # CONFIG_CRYPTO_SHA1 is not set | 1064 | # CONFIG_CRYPTO_SHA1 is not set |
| 995 | # CONFIG_CRYPTO_SHA256 is not set | 1065 | # CONFIG_CRYPTO_SHA256 is not set |
| 996 | # CONFIG_CRYPTO_SHA512 is not set | 1066 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1021,6 +1091,6 @@ CONFIG_CRYPTO_DES=y | |||
| 1021 | # CONFIG_CRYPTO_DEFLATE is not set | 1091 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1022 | # CONFIG_CRYPTO_LZO is not set | 1092 | # CONFIG_CRYPTO_LZO is not set |
| 1023 | # CONFIG_CRYPTO_HW is not set | 1093 | # CONFIG_CRYPTO_HW is not set |
| 1024 | # CONFIG_PPC_CLOCK is not set | 1094 | CONFIG_PPC_CLOCK=y |
| 1025 | CONFIG_PPC_LIB_RHEAP=y | 1095 | CONFIG_PPC_LIB_RHEAP=y |
| 1026 | # CONFIG_VIRTUALIZATION is not set | 1096 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/mpc83xx_defconfig b/arch/powerpc/configs/mpc83xx_defconfig index 4293c8be06e1..916e3df7cc45 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:14 2008 | 4 | # Thu Aug 21 07:16:25 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -16,6 +16,7 @@ CONFIG_6xx=y | |||
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 18 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | ||
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| 20 | CONFIG_PPC_STD_MMU_32=y | 21 | CONFIG_PPC_STD_MMU_32=y |
| 21 | # CONFIG_PPC_MM_SLICES is not set | 22 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -32,12 +33,14 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 38 | CONFIG_GENERIC_HWEIGHT=y | 40 | CONFIG_GENERIC_HWEIGHT=y |
| 39 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 41 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 40 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 42 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 43 | CONFIG_GENERIC_GPIO=y | ||
| 41 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 44 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
| 42 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
| 43 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
| @@ -51,6 +54,10 @@ CONFIG_PPC_UDBG_16550=y | |||
| 51 | CONFIG_AUDIT_ARCH=y | 54 | CONFIG_AUDIT_ARCH=y |
| 52 | CONFIG_GENERIC_BUG=y | 55 | CONFIG_GENERIC_BUG=y |
| 53 | CONFIG_DEFAULT_UIMAGE=y | 56 | CONFIG_DEFAULT_UIMAGE=y |
| 57 | CONFIG_REDBOOT=y | ||
| 58 | CONFIG_HIBERNATE_32=y | ||
| 59 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 60 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 61 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 62 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -88,13 +95,13 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 88 | CONFIG_SYSCTL=y | 95 | CONFIG_SYSCTL=y |
| 89 | CONFIG_EMBEDDED=y | 96 | CONFIG_EMBEDDED=y |
| 90 | CONFIG_SYSCTL_SYSCALL=y | 97 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 92 | CONFIG_KALLSYMS=y | 98 | CONFIG_KALLSYMS=y |
| 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 94 | CONFIG_HOTPLUG=y | 100 | CONFIG_HOTPLUG=y |
| 95 | CONFIG_PRINTK=y | 101 | CONFIG_PRINTK=y |
| 96 | CONFIG_BUG=y | 102 | CONFIG_BUG=y |
| 97 | CONFIG_ELF_CORE=y | 103 | CONFIG_ELF_CORE=y |
| 104 | CONFIG_PCSPKR_PLATFORM=y | ||
| 98 | CONFIG_COMPAT_BRK=y | 105 | CONFIG_COMPAT_BRK=y |
| 99 | CONFIG_BASE_FULL=y | 106 | CONFIG_BASE_FULL=y |
| 100 | CONFIG_FUTEX=y | 107 | CONFIG_FUTEX=y |
| @@ -112,10 +119,16 @@ CONFIG_SLAB=y | |||
| 112 | # CONFIG_MARKERS is not set | 119 | # CONFIG_MARKERS is not set |
| 113 | CONFIG_HAVE_OPROFILE=y | 120 | CONFIG_HAVE_OPROFILE=y |
| 114 | # CONFIG_KPROBES is not set | 121 | # CONFIG_KPROBES is not set |
| 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 123 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 124 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 125 | CONFIG_HAVE_KRETPROBES=y |
| 126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 127 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 128 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 129 | # CONFIG_HAVE_CLK is not set | ||
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 130 | CONFIG_PROC_PAGE_MONITOR=y |
| 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | 134 | # CONFIG_TINY_SHMEM is not set |
| @@ -126,12 +139,13 @@ CONFIG_MODULE_UNLOAD=y | |||
| 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 139 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 127 | # CONFIG_MODVERSIONS is not set | 140 | # CONFIG_MODVERSIONS is not set |
| 128 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 141 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 129 | # CONFIG_KMOD is not set | 142 | CONFIG_KMOD=y |
| 130 | CONFIG_BLOCK=y | 143 | CONFIG_BLOCK=y |
| 131 | # CONFIG_LBD is not set | 144 | # CONFIG_LBD is not set |
| 132 | # CONFIG_BLK_DEV_IO_TRACE is not set | 145 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 133 | # CONFIG_LSF is not set | 146 | # CONFIG_LSF is not set |
| 134 | # CONFIG_BLK_DEV_BSG is not set | 147 | # CONFIG_BLK_DEV_BSG is not set |
| 148 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 135 | 149 | ||
| 136 | # | 150 | # |
| 137 | # IO Schedulers | 151 | # IO Schedulers |
| @@ -150,40 +164,52 @@ CONFIG_CLASSIC_RCU=y | |||
| 150 | # | 164 | # |
| 151 | # Platform support | 165 | # Platform support |
| 152 | # | 166 | # |
| 153 | # CONFIG_PPC_MULTIPLATFORM is not set | 167 | CONFIG_PPC_MULTIPLATFORM=y |
| 154 | # CONFIG_PPC_82xx is not set | 168 | CONFIG_CLASSIC32=y |
| 155 | CONFIG_PPC_83xx=y | 169 | CONFIG_PPC_CHRP=y |
| 156 | # CONFIG_PPC_86xx is not set | 170 | # CONFIG_MPC5121_ADS is not set |
| 157 | # CONFIG_PPC_MPC512x is not set | 171 | # CONFIG_MPC5121_GENERIC is not set |
| 158 | # CONFIG_PPC_MPC5121 is not set | 172 | # CONFIG_PPC_MPC52xx is not set |
| 173 | CONFIG_PPC_PMAC=y | ||
| 159 | # CONFIG_PPC_CELL is not set | 174 | # CONFIG_PPC_CELL is not set |
| 160 | # CONFIG_PPC_CELL_NATIVE is not set | 175 | # CONFIG_PPC_CELL_NATIVE is not set |
| 176 | # CONFIG_PPC_82xx is not set | ||
| 161 | # CONFIG_PQ2ADS is not set | 177 | # CONFIG_PQ2ADS is not set |
| 162 | CONFIG_MPC83xx=y | 178 | CONFIG_PPC_83xx=y |
| 163 | CONFIG_MPC831x_RDB=y | 179 | CONFIG_MPC831x_RDB=y |
| 164 | CONFIG_MPC832x_MDS=y | 180 | CONFIG_MPC832x_MDS=y |
| 165 | CONFIG_MPC832x_RDB=y | 181 | CONFIG_MPC832x_RDB=y |
| 166 | CONFIG_MPC834x_MDS=y | 182 | CONFIG_MPC834x_MDS=y |
| 167 | CONFIG_MPC834x_ITX=y | 183 | CONFIG_MPC834x_ITX=y |
| 168 | CONFIG_MPC836x_MDS=y | 184 | CONFIG_MPC836x_MDS=y |
| 185 | CONFIG_MPC836x_RDK=y | ||
| 169 | CONFIG_MPC837x_MDS=y | 186 | CONFIG_MPC837x_MDS=y |
| 170 | CONFIG_MPC837x_RDB=y | 187 | CONFIG_MPC837x_RDB=y |
| 171 | CONFIG_SBC834x=y | 188 | CONFIG_SBC834x=y |
| 189 | CONFIG_ASP834x=y | ||
| 172 | CONFIG_PPC_MPC831x=y | 190 | CONFIG_PPC_MPC831x=y |
| 173 | CONFIG_PPC_MPC832x=y | 191 | CONFIG_PPC_MPC832x=y |
| 174 | CONFIG_PPC_MPC834x=y | 192 | CONFIG_PPC_MPC834x=y |
| 175 | CONFIG_PPC_MPC837x=y | 193 | CONFIG_PPC_MPC837x=y |
| 194 | # CONFIG_PPC_86xx is not set | ||
| 195 | # CONFIG_EMBEDDED6xx is not set | ||
| 196 | CONFIG_PPC_NATIVE=y | ||
| 197 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 176 | CONFIG_IPIC=y | 198 | CONFIG_IPIC=y |
| 177 | # CONFIG_MPIC is not set | 199 | CONFIG_MPIC=y |
| 178 | # CONFIG_MPIC_WEIRD is not set | 200 | # CONFIG_MPIC_WEIRD is not set |
| 179 | # CONFIG_PPC_I8259 is not set | 201 | CONFIG_PPC_I8259=y |
| 180 | # CONFIG_PPC_RTAS is not set | 202 | CONFIG_PPC_RTAS=y |
| 203 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 204 | CONFIG_RTAS_PROC=y | ||
| 181 | # CONFIG_MMIO_NVRAM is not set | 205 | # CONFIG_MMIO_NVRAM is not set |
| 182 | # CONFIG_PPC_MPC106 is not set | 206 | CONFIG_PPC_MPC106=y |
| 183 | # CONFIG_PPC_970_NAP is not set | 207 | # CONFIG_PPC_970_NAP is not set |
| 184 | # CONFIG_PPC_INDIRECT_IO is not set | 208 | # CONFIG_PPC_INDIRECT_IO is not set |
| 185 | # CONFIG_GENERIC_IOMAP is not set | 209 | # CONFIG_GENERIC_IOMAP is not set |
| 186 | # CONFIG_CPU_FREQ is not set | 210 | # CONFIG_CPU_FREQ is not set |
| 211 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 212 | # CONFIG_TAU is not set | ||
| 187 | CONFIG_QUICC_ENGINE=y | 213 | CONFIG_QUICC_ENGINE=y |
| 188 | # CONFIG_FSL_ULI1575 is not set | 214 | # CONFIG_FSL_ULI1575 is not set |
| 189 | 215 | ||
| @@ -211,6 +237,7 @@ CONFIG_MATH_EMULATION=y | |||
| 211 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 237 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 212 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 238 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 213 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 239 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 240 | # CONFIG_KEXEC is not set | ||
| 214 | CONFIG_ARCH_FLATMEM_ENABLE=y | 241 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 215 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 242 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 216 | CONFIG_SELECT_MEMORY_MODEL=y | 243 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -223,6 +250,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 223 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 250 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 224 | CONFIG_PAGEFLAGS_EXTENDED=y | 251 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 225 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 252 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 253 | CONFIG_MIGRATION=y | ||
| 226 | # CONFIG_RESOURCES_64BIT is not set | 254 | # CONFIG_RESOURCES_64BIT is not set |
| 227 | CONFIG_ZONE_DMA_FLAG=1 | 255 | CONFIG_ZONE_DMA_FLAG=1 |
| 228 | CONFIG_BOUNCE=y | 256 | CONFIG_BOUNCE=y |
| @@ -230,6 +258,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 230 | CONFIG_FORCE_MAX_ZONEORDER=11 | 258 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 231 | CONFIG_PROC_DEVICETREE=y | 259 | CONFIG_PROC_DEVICETREE=y |
| 232 | # CONFIG_CMDLINE_BOOL is not set | 260 | # CONFIG_CMDLINE_BOOL is not set |
| 261 | CONFIG_EXTRA_TARGETS="" | ||
| 233 | # CONFIG_PM is not set | 262 | # CONFIG_PM is not set |
| 234 | CONFIG_SECCOMP=y | 263 | CONFIG_SECCOMP=y |
| 235 | CONFIG_ISA_DMA_API=y | 264 | CONFIG_ISA_DMA_API=y |
| @@ -237,15 +266,24 @@ CONFIG_ISA_DMA_API=y | |||
| 237 | # | 266 | # |
| 238 | # Bus options | 267 | # Bus options |
| 239 | # | 268 | # |
| 269 | # CONFIG_ISA is not set | ||
| 240 | CONFIG_ZONE_DMA=y | 270 | CONFIG_ZONE_DMA=y |
| 241 | CONFIG_GENERIC_ISA_DMA=y | 271 | CONFIG_GENERIC_ISA_DMA=y |
| 242 | CONFIG_PPC_INDIRECT_PCI=y | 272 | CONFIG_PPC_INDIRECT_PCI=y |
| 243 | CONFIG_FSL_SOC=y | 273 | CONFIG_FSL_SOC=y |
| 244 | # CONFIG_PCI is not set | 274 | CONFIG_FSL_PCI=y |
| 245 | # CONFIG_PCI_DOMAINS is not set | 275 | CONFIG_FSL_LBC=y |
| 246 | # CONFIG_PCI_SYSCALL is not set | 276 | CONFIG_FSL_GTM=y |
| 247 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 277 | CONFIG_PPC_PCI_CHOICE=y |
| 278 | CONFIG_PCI=y | ||
| 279 | CONFIG_PCI_DOMAINS=y | ||
| 280 | CONFIG_PCI_SYSCALL=y | ||
| 281 | # CONFIG_PCIEPORTBUS is not set | ||
| 282 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
| 283 | # CONFIG_PCI_MSI is not set | ||
| 284 | CONFIG_PCI_LEGACY=y | ||
| 248 | # CONFIG_PCCARD is not set | 285 | # CONFIG_PCCARD is not set |
| 286 | # CONFIG_HOTPLUG_PCI is not set | ||
| 249 | # CONFIG_HAS_RAPIDIO is not set | 287 | # CONFIG_HAS_RAPIDIO is not set |
| 250 | 288 | ||
| 251 | # | 289 | # |
| @@ -261,10 +299,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 261 | CONFIG_KERNEL_START=0xc0000000 | 299 | CONFIG_KERNEL_START=0xc0000000 |
| 262 | CONFIG_PHYSICAL_START=0x00000000 | 300 | CONFIG_PHYSICAL_START=0x00000000 |
| 263 | CONFIG_TASK_SIZE=0xc0000000 | 301 | CONFIG_TASK_SIZE=0xc0000000 |
| 264 | |||
| 265 | # | ||
| 266 | # Networking | ||
| 267 | # | ||
| 268 | CONFIG_NET=y | 302 | CONFIG_NET=y |
| 269 | 303 | ||
| 270 | # | 304 | # |
| @@ -412,11 +446,13 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 412 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 446 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
| 413 | # CONFIG_MTD_PHYSMAP is not set | 447 | # CONFIG_MTD_PHYSMAP is not set |
| 414 | CONFIG_MTD_PHYSMAP_OF=y | 448 | CONFIG_MTD_PHYSMAP_OF=y |
| 449 | # CONFIG_MTD_INTEL_VR_NOR is not set | ||
| 415 | # CONFIG_MTD_PLATRAM is not set | 450 | # CONFIG_MTD_PLATRAM is not set |
| 416 | 451 | ||
| 417 | # | 452 | # |
| 418 | # Self-contained MTD device drivers | 453 | # Self-contained MTD device drivers |
| 419 | # | 454 | # |
| 455 | # CONFIG_MTD_PMC551 is not set | ||
| 420 | # CONFIG_MTD_SLRAM is not set | 456 | # CONFIG_MTD_SLRAM is not set |
| 421 | # CONFIG_MTD_PHRAM is not set | 457 | # CONFIG_MTD_PHRAM is not set |
| 422 | # CONFIG_MTD_MTDRAM is not set | 458 | # CONFIG_MTD_MTDRAM is not set |
| @@ -434,10 +470,12 @@ CONFIG_MTD_NAND_VERIFY_WRITE=y | |||
| 434 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set | 470 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set |
| 435 | CONFIG_MTD_NAND_IDS=y | 471 | CONFIG_MTD_NAND_IDS=y |
| 436 | # CONFIG_MTD_NAND_DISKONCHIP is not set | 472 | # CONFIG_MTD_NAND_DISKONCHIP is not set |
| 473 | # CONFIG_MTD_NAND_CAFE is not set | ||
| 437 | # CONFIG_MTD_NAND_NANDSIM is not set | 474 | # CONFIG_MTD_NAND_NANDSIM is not set |
| 438 | # CONFIG_MTD_NAND_PLATFORM is not set | 475 | # CONFIG_MTD_NAND_PLATFORM is not set |
| 439 | # CONFIG_MTD_ALAUDA is not set | 476 | # CONFIG_MTD_ALAUDA is not set |
| 440 | CONFIG_MTD_NAND_FSL_ELBC=y | 477 | CONFIG_MTD_NAND_FSL_ELBC=y |
| 478 | # CONFIG_MTD_NAND_FSL_UPM is not set | ||
| 441 | # CONFIG_MTD_ONENAND is not set | 479 | # CONFIG_MTD_ONENAND is not set |
| 442 | 480 | ||
| 443 | # | 481 | # |
| @@ -445,14 +483,21 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
| 445 | # | 483 | # |
| 446 | # CONFIG_MTD_UBI is not set | 484 | # CONFIG_MTD_UBI is not set |
| 447 | CONFIG_OF_DEVICE=y | 485 | CONFIG_OF_DEVICE=y |
| 486 | CONFIG_OF_GPIO=y | ||
| 448 | CONFIG_OF_I2C=y | 487 | CONFIG_OF_I2C=y |
| 449 | # CONFIG_PARPORT is not set | 488 | # CONFIG_PARPORT is not set |
| 450 | CONFIG_BLK_DEV=y | 489 | CONFIG_BLK_DEV=y |
| 451 | # CONFIG_BLK_DEV_FD is not set | 490 | # CONFIG_BLK_DEV_FD is not set |
| 491 | # CONFIG_MAC_FLOPPY is not set | ||
| 492 | # CONFIG_BLK_CPQ_DA is not set | ||
| 493 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
| 494 | # CONFIG_BLK_DEV_DAC960 is not set | ||
| 495 | # CONFIG_BLK_DEV_UMEM is not set | ||
| 452 | # CONFIG_BLK_DEV_COW_COMMON is not set | 496 | # CONFIG_BLK_DEV_COW_COMMON is not set |
| 453 | CONFIG_BLK_DEV_LOOP=y | 497 | CONFIG_BLK_DEV_LOOP=y |
| 454 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 498 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
| 455 | # CONFIG_BLK_DEV_NBD is not set | 499 | # CONFIG_BLK_DEV_NBD is not set |
| 500 | # CONFIG_BLK_DEV_SX8 is not set | ||
| 456 | # CONFIG_BLK_DEV_UB is not set | 501 | # CONFIG_BLK_DEV_UB is not set |
| 457 | CONFIG_BLK_DEV_RAM=y | 502 | CONFIG_BLK_DEV_RAM=y |
| 458 | CONFIG_BLK_DEV_RAM_COUNT=16 | 503 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| @@ -460,9 +505,14 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 460 | # CONFIG_BLK_DEV_XIP is not set | 505 | # CONFIG_BLK_DEV_XIP is not set |
| 461 | # CONFIG_CDROM_PKTCDVD is not set | 506 | # CONFIG_CDROM_PKTCDVD is not set |
| 462 | # CONFIG_ATA_OVER_ETH is not set | 507 | # CONFIG_ATA_OVER_ETH is not set |
| 508 | # CONFIG_BLK_DEV_HD is not set | ||
| 463 | CONFIG_MISC_DEVICES=y | 509 | CONFIG_MISC_DEVICES=y |
| 510 | # CONFIG_PHANTOM is not set | ||
| 464 | # CONFIG_EEPROM_93CX6 is not set | 511 | # CONFIG_EEPROM_93CX6 is not set |
| 512 | # CONFIG_SGI_IOC4 is not set | ||
| 513 | # CONFIG_TIFM_CORE is not set | ||
| 465 | # CONFIG_ENCLOSURE_SERVICES is not set | 514 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 515 | # CONFIG_HP_ILO is not set | ||
| 466 | CONFIG_HAVE_IDE=y | 516 | CONFIG_HAVE_IDE=y |
| 467 | # CONFIG_IDE is not set | 517 | # CONFIG_IDE is not set |
| 468 | 518 | ||
| @@ -505,24 +555,128 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 505 | # CONFIG_SCSI_SRP_ATTRS is not set | 555 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 506 | CONFIG_SCSI_LOWLEVEL=y | 556 | CONFIG_SCSI_LOWLEVEL=y |
| 507 | # CONFIG_ISCSI_TCP is not set | 557 | # CONFIG_ISCSI_TCP is not set |
| 558 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
| 559 | # CONFIG_SCSI_3W_9XXX is not set | ||
| 560 | # CONFIG_SCSI_ACARD is not set | ||
| 561 | # CONFIG_SCSI_AACRAID is not set | ||
| 562 | # CONFIG_SCSI_AIC7XXX is not set | ||
| 563 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
| 564 | # CONFIG_SCSI_AIC79XX is not set | ||
| 565 | # CONFIG_SCSI_AIC94XX is not set | ||
| 566 | # CONFIG_SCSI_DPT_I2O is not set | ||
| 567 | # CONFIG_SCSI_ADVANSYS is not set | ||
| 568 | # CONFIG_SCSI_ARCMSR is not set | ||
| 569 | # CONFIG_MEGARAID_NEWGEN is not set | ||
| 570 | # CONFIG_MEGARAID_LEGACY is not set | ||
| 571 | # CONFIG_MEGARAID_SAS is not set | ||
| 572 | # CONFIG_SCSI_HPTIOP is not set | ||
| 573 | # CONFIG_SCSI_BUSLOGIC is not set | ||
| 574 | # CONFIG_SCSI_DMX3191D is not set | ||
| 575 | # CONFIG_SCSI_EATA is not set | ||
| 576 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
| 577 | # CONFIG_SCSI_GDTH is not set | ||
| 578 | # CONFIG_SCSI_IPS is not set | ||
| 579 | # CONFIG_SCSI_INITIO is not set | ||
| 580 | # CONFIG_SCSI_INIA100 is not set | ||
| 581 | # CONFIG_SCSI_MVSAS is not set | ||
| 582 | # CONFIG_SCSI_STEX is not set | ||
| 583 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
| 584 | # CONFIG_SCSI_IPR is not set | ||
| 585 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
| 586 | # CONFIG_SCSI_QLA_FC is not set | ||
| 587 | # CONFIG_SCSI_QLA_ISCSI is not set | ||
| 588 | # CONFIG_SCSI_LPFC is not set | ||
| 589 | # CONFIG_SCSI_DC395x is not set | ||
| 590 | # CONFIG_SCSI_DC390T is not set | ||
| 591 | # CONFIG_SCSI_NSP32 is not set | ||
| 508 | # CONFIG_SCSI_DEBUG is not set | 592 | # CONFIG_SCSI_DEBUG is not set |
| 593 | # CONFIG_SCSI_MESH is not set | ||
| 594 | # CONFIG_SCSI_MAC53C94 is not set | ||
| 595 | # CONFIG_SCSI_SRP is not set | ||
| 596 | # CONFIG_SCSI_DH is not set | ||
| 509 | CONFIG_ATA=y | 597 | CONFIG_ATA=y |
| 510 | # CONFIG_ATA_NONSTANDARD is not set | 598 | # CONFIG_ATA_NONSTANDARD is not set |
| 511 | CONFIG_SATA_PMP=y | 599 | CONFIG_SATA_PMP=y |
| 600 | # CONFIG_SATA_AHCI is not set | ||
| 601 | # CONFIG_SATA_SIL24 is not set | ||
| 512 | CONFIG_SATA_FSL=y | 602 | CONFIG_SATA_FSL=y |
| 513 | CONFIG_ATA_SFF=y | 603 | CONFIG_ATA_SFF=y |
| 604 | # CONFIG_SATA_SVW is not set | ||
| 605 | # CONFIG_ATA_PIIX is not set | ||
| 514 | # CONFIG_SATA_MV is not set | 606 | # CONFIG_SATA_MV is not set |
| 607 | # CONFIG_SATA_NV is not set | ||
| 608 | # CONFIG_PDC_ADMA is not set | ||
| 609 | # CONFIG_SATA_QSTOR is not set | ||
| 610 | # CONFIG_SATA_PROMISE is not set | ||
| 611 | # CONFIG_SATA_SX4 is not set | ||
| 612 | # CONFIG_SATA_SIL is not set | ||
| 613 | # CONFIG_SATA_SIS is not set | ||
| 614 | # CONFIG_SATA_ULI is not set | ||
| 615 | # CONFIG_SATA_VIA is not set | ||
| 616 | # CONFIG_SATA_VITESSE is not set | ||
| 617 | # CONFIG_SATA_INIC162X is not set | ||
| 618 | # CONFIG_PATA_ALI is not set | ||
| 619 | # CONFIG_PATA_AMD is not set | ||
| 620 | # CONFIG_PATA_ARTOP is not set | ||
| 621 | # CONFIG_PATA_ATIIXP is not set | ||
| 622 | # CONFIG_PATA_CMD640_PCI is not set | ||
| 623 | # CONFIG_PATA_CMD64X is not set | ||
| 624 | # CONFIG_PATA_CS5520 is not set | ||
| 625 | # CONFIG_PATA_CS5530 is not set | ||
| 626 | # CONFIG_PATA_CYPRESS is not set | ||
| 627 | # CONFIG_PATA_EFAR is not set | ||
| 628 | # CONFIG_ATA_GENERIC is not set | ||
| 629 | # CONFIG_PATA_HPT366 is not set | ||
| 630 | # CONFIG_PATA_HPT37X is not set | ||
| 631 | # CONFIG_PATA_HPT3X2N is not set | ||
| 632 | # CONFIG_PATA_HPT3X3 is not set | ||
| 633 | # CONFIG_PATA_IT821X is not set | ||
| 634 | # CONFIG_PATA_IT8213 is not set | ||
| 635 | # CONFIG_PATA_JMICRON is not set | ||
| 636 | # CONFIG_PATA_TRIFLEX is not set | ||
| 637 | # CONFIG_PATA_MARVELL is not set | ||
| 638 | # CONFIG_PATA_MPIIX is not set | ||
| 639 | # CONFIG_PATA_OLDPIIX is not set | ||
| 640 | # CONFIG_PATA_NETCELL is not set | ||
| 641 | # CONFIG_PATA_NINJA32 is not set | ||
| 642 | # CONFIG_PATA_NS87410 is not set | ||
| 643 | # CONFIG_PATA_NS87415 is not set | ||
| 644 | # CONFIG_PATA_OPTI is not set | ||
| 645 | # CONFIG_PATA_OPTIDMA is not set | ||
| 646 | # CONFIG_PATA_PDC_OLD is not set | ||
| 647 | # CONFIG_PATA_RADISYS is not set | ||
| 648 | # CONFIG_PATA_RZ1000 is not set | ||
| 649 | # CONFIG_PATA_SC1200 is not set | ||
| 650 | # CONFIG_PATA_SERVERWORKS is not set | ||
| 651 | # CONFIG_PATA_PDC2027X is not set | ||
| 652 | # CONFIG_PATA_SIL680 is not set | ||
| 653 | # CONFIG_PATA_SIS is not set | ||
| 654 | # CONFIG_PATA_VIA is not set | ||
| 655 | # CONFIG_PATA_WINBOND is not set | ||
| 515 | # CONFIG_PATA_PLATFORM is not set | 656 | # CONFIG_PATA_PLATFORM is not set |
| 657 | # CONFIG_PATA_SCH is not set | ||
| 516 | # CONFIG_MD is not set | 658 | # CONFIG_MD is not set |
| 659 | # CONFIG_FUSION is not set | ||
| 660 | |||
| 661 | # | ||
| 662 | # IEEE 1394 (FireWire) support | ||
| 663 | # | ||
| 664 | |||
| 665 | # | ||
| 666 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 667 | # | ||
| 668 | # CONFIG_FIREWIRE is not set | ||
| 669 | # CONFIG_IEEE1394 is not set | ||
| 670 | # CONFIG_I2O is not set | ||
| 517 | # CONFIG_MACINTOSH_DRIVERS is not set | 671 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 518 | CONFIG_NETDEVICES=y | 672 | CONFIG_NETDEVICES=y |
| 519 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 520 | # CONFIG_DUMMY is not set | 673 | # CONFIG_DUMMY is not set |
| 521 | # CONFIG_BONDING is not set | 674 | # CONFIG_BONDING is not set |
| 522 | # CONFIG_MACVLAN is not set | 675 | # CONFIG_MACVLAN is not set |
| 523 | # CONFIG_EQUALIZER is not set | 676 | # CONFIG_EQUALIZER is not set |
| 524 | # CONFIG_TUN is not set | 677 | # CONFIG_TUN is not set |
| 525 | # CONFIG_VETH is not set | 678 | # CONFIG_VETH is not set |
| 679 | # CONFIG_ARCNET is not set | ||
| 526 | CONFIG_PHYLIB=y | 680 | CONFIG_PHYLIB=y |
| 527 | 681 | ||
| 528 | # | 682 | # |
| @@ -542,21 +696,60 @@ CONFIG_ICPLUS_PHY=y | |||
| 542 | # CONFIG_MDIO_BITBANG is not set | 696 | # CONFIG_MDIO_BITBANG is not set |
| 543 | CONFIG_NET_ETHERNET=y | 697 | CONFIG_NET_ETHERNET=y |
| 544 | CONFIG_MII=y | 698 | CONFIG_MII=y |
| 699 | # CONFIG_MACE is not set | ||
| 700 | # CONFIG_BMAC is not set | ||
| 701 | # CONFIG_HAPPYMEAL is not set | ||
| 702 | # CONFIG_SUNGEM is not set | ||
| 703 | # CONFIG_CASSINI is not set | ||
| 704 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 705 | # CONFIG_NET_TULIP is not set | ||
| 706 | # CONFIG_HP100 is not set | ||
| 545 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 707 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 546 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 708 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 547 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 709 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| 548 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 710 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 711 | # CONFIG_NET_PCI is not set | ||
| 549 | # CONFIG_B44 is not set | 712 | # CONFIG_B44 is not set |
| 550 | CONFIG_NETDEV_1000=y | 713 | CONFIG_NETDEV_1000=y |
| 551 | # CONFIG_E1000E_ENABLED is not set | 714 | # CONFIG_ACENIC is not set |
| 715 | # CONFIG_DL2K is not set | ||
| 716 | # CONFIG_E1000 is not set | ||
| 717 | # CONFIG_E1000E is not set | ||
| 718 | # CONFIG_IP1000 is not set | ||
| 719 | # CONFIG_IGB is not set | ||
| 720 | # CONFIG_NS83820 is not set | ||
| 721 | # CONFIG_HAMACHI is not set | ||
| 722 | # CONFIG_YELLOWFIN is not set | ||
| 723 | # CONFIG_R8169 is not set | ||
| 724 | # CONFIG_SIS190 is not set | ||
| 725 | # CONFIG_SKGE is not set | ||
| 726 | # CONFIG_SKY2 is not set | ||
| 727 | # CONFIG_VIA_VELOCITY is not set | ||
| 728 | # CONFIG_TIGON3 is not set | ||
| 729 | # CONFIG_BNX2 is not set | ||
| 552 | CONFIG_GIANFAR=y | 730 | CONFIG_GIANFAR=y |
| 553 | # CONFIG_GFAR_NAPI is not set | ||
| 554 | CONFIG_UCC_GETH=y | 731 | CONFIG_UCC_GETH=y |
| 555 | # CONFIG_UGETH_NAPI is not set | ||
| 556 | # CONFIG_UGETH_MAGIC_PACKET is not set | 732 | # CONFIG_UGETH_MAGIC_PACKET is not set |
| 557 | # CONFIG_UGETH_FILTERING is not set | 733 | # CONFIG_UGETH_FILTERING is not set |
| 558 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 734 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
| 735 | # CONFIG_MV643XX_ETH is not set | ||
| 736 | # CONFIG_QLA3XXX is not set | ||
| 737 | # CONFIG_ATL1 is not set | ||
| 738 | # CONFIG_ATL1E is not set | ||
| 559 | CONFIG_NETDEV_10000=y | 739 | CONFIG_NETDEV_10000=y |
| 740 | # CONFIG_CHELSIO_T1 is not set | ||
| 741 | # CONFIG_CHELSIO_T3 is not set | ||
| 742 | # CONFIG_IXGBE is not set | ||
| 743 | # CONFIG_IXGB is not set | ||
| 744 | # CONFIG_S2IO is not set | ||
| 745 | # CONFIG_MYRI10GE is not set | ||
| 746 | # CONFIG_NETXEN_NIC is not set | ||
| 747 | # CONFIG_NIU is not set | ||
| 748 | # CONFIG_MLX4_CORE is not set | ||
| 749 | # CONFIG_TEHUTI is not set | ||
| 750 | # CONFIG_BNX2X is not set | ||
| 751 | # CONFIG_SFC is not set | ||
| 752 | # CONFIG_TR is not set | ||
| 560 | 753 | ||
| 561 | # | 754 | # |
| 562 | # Wireless LAN | 755 | # Wireless LAN |
| @@ -574,8 +767,11 @@ CONFIG_NETDEV_10000=y | |||
| 574 | # CONFIG_USB_RTL8150 is not set | 767 | # CONFIG_USB_RTL8150 is not set |
| 575 | # CONFIG_USB_USBNET is not set | 768 | # CONFIG_USB_USBNET is not set |
| 576 | # CONFIG_WAN is not set | 769 | # CONFIG_WAN is not set |
| 770 | # CONFIG_FDDI is not set | ||
| 771 | # CONFIG_HIPPI is not set | ||
| 577 | # CONFIG_PPP is not set | 772 | # CONFIG_PPP is not set |
| 578 | # CONFIG_SLIP is not set | 773 | # CONFIG_SLIP is not set |
| 774 | # CONFIG_NET_FC is not set | ||
| 579 | # CONFIG_NETCONSOLE is not set | 775 | # CONFIG_NETCONSOLE is not set |
| 580 | # CONFIG_NETPOLL is not set | 776 | # CONFIG_NETPOLL is not set |
| 581 | # CONFIG_NET_POLL_CONTROLLER is not set | 777 | # CONFIG_NET_POLL_CONTROLLER is not set |
| @@ -619,12 +815,14 @@ CONFIG_INPUT=y | |||
| 619 | # CONFIG_VT is not set | 815 | # CONFIG_VT is not set |
| 620 | CONFIG_DEVKMEM=y | 816 | CONFIG_DEVKMEM=y |
| 621 | # CONFIG_SERIAL_NONSTANDARD is not set | 817 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 818 | # CONFIG_NOZOMI is not set | ||
| 622 | 819 | ||
| 623 | # | 820 | # |
| 624 | # Serial drivers | 821 | # Serial drivers |
| 625 | # | 822 | # |
| 626 | CONFIG_SERIAL_8250=y | 823 | CONFIG_SERIAL_8250=y |
| 627 | CONFIG_SERIAL_8250_CONSOLE=y | 824 | CONFIG_SERIAL_8250_CONSOLE=y |
| 825 | CONFIG_SERIAL_8250_PCI=y | ||
| 628 | CONFIG_SERIAL_8250_NR_UARTS=4 | 826 | CONFIG_SERIAL_8250_NR_UARTS=4 |
| 629 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | 827 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 |
| 630 | # CONFIG_SERIAL_8250_EXTENDED is not set | 828 | # CONFIG_SERIAL_8250_EXTENDED is not set |
| @@ -635,43 +833,95 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 635 | # CONFIG_SERIAL_UARTLITE is not set | 833 | # CONFIG_SERIAL_UARTLITE is not set |
| 636 | CONFIG_SERIAL_CORE=y | 834 | CONFIG_SERIAL_CORE=y |
| 637 | CONFIG_SERIAL_CORE_CONSOLE=y | 835 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 836 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 837 | # CONFIG_SERIAL_JSM is not set | ||
| 638 | # CONFIG_SERIAL_OF_PLATFORM is not set | 838 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 639 | # CONFIG_SERIAL_QE is not set | 839 | # CONFIG_SERIAL_QE is not set |
| 640 | CONFIG_UNIX98_PTYS=y | 840 | CONFIG_UNIX98_PTYS=y |
| 641 | CONFIG_LEGACY_PTYS=y | 841 | CONFIG_LEGACY_PTYS=y |
| 642 | CONFIG_LEGACY_PTY_COUNT=256 | 842 | CONFIG_LEGACY_PTY_COUNT=256 |
| 843 | # CONFIG_BRIQ_PANEL is not set | ||
| 844 | # CONFIG_HVC_RTAS is not set | ||
| 643 | # CONFIG_IPMI_HANDLER is not set | 845 | # CONFIG_IPMI_HANDLER is not set |
| 644 | # CONFIG_HW_RANDOM is not set | 846 | CONFIG_HW_RANDOM=y |
| 645 | # CONFIG_NVRAM is not set | 847 | # CONFIG_NVRAM is not set |
| 646 | CONFIG_GEN_RTC=y | 848 | CONFIG_GEN_RTC=y |
| 647 | # CONFIG_GEN_RTC_X is not set | 849 | # CONFIG_GEN_RTC_X is not set |
| 648 | # CONFIG_R3964 is not set | 850 | # CONFIG_R3964 is not set |
| 851 | # CONFIG_APPLICOM is not set | ||
| 649 | # CONFIG_RAW_DRIVER is not set | 852 | # CONFIG_RAW_DRIVER is not set |
| 650 | # CONFIG_TCG_TPM is not set | 853 | # CONFIG_TCG_TPM is not set |
| 854 | CONFIG_DEVPORT=y | ||
| 651 | CONFIG_I2C=y | 855 | CONFIG_I2C=y |
| 652 | CONFIG_I2C_BOARDINFO=y | 856 | CONFIG_I2C_BOARDINFO=y |
| 653 | CONFIG_I2C_CHARDEV=y | 857 | CONFIG_I2C_CHARDEV=y |
| 858 | CONFIG_I2C_HELPER_AUTO=y | ||
| 654 | 859 | ||
| 655 | # | 860 | # |
| 656 | # I2C Hardware Bus support | 861 | # I2C Hardware Bus support |
| 657 | # | 862 | # |
| 863 | |||
| 864 | # | ||
| 865 | # PC SMBus host controller drivers | ||
| 866 | # | ||
| 867 | # CONFIG_I2C_ALI1535 is not set | ||
| 868 | # CONFIG_I2C_ALI1563 is not set | ||
| 869 | # CONFIG_I2C_ALI15X3 is not set | ||
| 870 | # CONFIG_I2C_AMD756 is not set | ||
| 871 | # CONFIG_I2C_AMD8111 is not set | ||
| 872 | # CONFIG_I2C_I801 is not set | ||
| 873 | # CONFIG_I2C_ISCH is not set | ||
| 874 | # CONFIG_I2C_PIIX4 is not set | ||
| 875 | # CONFIG_I2C_NFORCE2 is not set | ||
| 876 | # CONFIG_I2C_SIS5595 is not set | ||
| 877 | # CONFIG_I2C_SIS630 is not set | ||
| 878 | # CONFIG_I2C_SIS96X is not set | ||
| 879 | # CONFIG_I2C_VIA is not set | ||
| 880 | # CONFIG_I2C_VIAPRO is not set | ||
| 881 | |||
| 882 | # | ||
| 883 | # Mac SMBus host controller drivers | ||
| 884 | # | ||
| 885 | # CONFIG_I2C_HYDRA is not set | ||
| 886 | CONFIG_I2C_POWERMAC=y | ||
| 887 | |||
| 888 | # | ||
| 889 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 890 | # | ||
| 891 | # CONFIG_I2C_GPIO is not set | ||
| 658 | CONFIG_I2C_MPC=y | 892 | CONFIG_I2C_MPC=y |
| 659 | # CONFIG_I2C_OCORES is not set | 893 | # CONFIG_I2C_OCORES is not set |
| 660 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 661 | # CONFIG_I2C_SIMTEC is not set | 894 | # CONFIG_I2C_SIMTEC is not set |
| 895 | |||
| 896 | # | ||
| 897 | # External I2C/SMBus adapter drivers | ||
| 898 | # | ||
| 899 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 662 | # CONFIG_I2C_TAOS_EVM is not set | 900 | # CONFIG_I2C_TAOS_EVM is not set |
| 663 | # CONFIG_I2C_STUB is not set | ||
| 664 | # CONFIG_I2C_TINY_USB is not set | 901 | # CONFIG_I2C_TINY_USB is not set |
| 902 | |||
| 903 | # | ||
| 904 | # Graphics adapter I2C/DDC channel drivers | ||
| 905 | # | ||
| 906 | # CONFIG_I2C_VOODOO3 is not set | ||
| 907 | |||
| 908 | # | ||
| 909 | # Other I2C/SMBus bus drivers | ||
| 910 | # | ||
| 665 | # CONFIG_I2C_PCA_PLATFORM is not set | 911 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 912 | # CONFIG_I2C_STUB is not set | ||
| 666 | 913 | ||
| 667 | # | 914 | # |
| 668 | # Miscellaneous I2C Chip support | 915 | # Miscellaneous I2C Chip support |
| 669 | # | 916 | # |
| 670 | # CONFIG_DS1682 is not set | 917 | # CONFIG_DS1682 is not set |
| 918 | # CONFIG_AT24 is not set | ||
| 671 | # CONFIG_SENSORS_EEPROM is not set | 919 | # CONFIG_SENSORS_EEPROM is not set |
| 672 | # CONFIG_SENSORS_PCF8574 is not set | 920 | # CONFIG_SENSORS_PCF8574 is not set |
| 673 | # CONFIG_PCF8575 is not set | 921 | # CONFIG_PCF8575 is not set |
| 922 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 674 | # CONFIG_SENSORS_PCF8591 is not set | 923 | # CONFIG_SENSORS_PCF8591 is not set |
| 924 | # CONFIG_TPS65010 is not set | ||
| 675 | # CONFIG_SENSORS_MAX6875 is not set | 925 | # CONFIG_SENSORS_MAX6875 is not set |
| 676 | # CONFIG_SENSORS_TSL2550 is not set | 926 | # CONFIG_SENSORS_TSL2550 is not set |
| 677 | # CONFIG_I2C_DEBUG_CORE is not set | 927 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -679,10 +929,31 @@ CONFIG_I2C_MPC=y | |||
| 679 | # CONFIG_I2C_DEBUG_BUS is not set | 929 | # CONFIG_I2C_DEBUG_BUS is not set |
| 680 | # CONFIG_I2C_DEBUG_CHIP is not set | 930 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 681 | # CONFIG_SPI is not set | 931 | # CONFIG_SPI is not set |
| 932 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 933 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | ||
| 934 | CONFIG_GPIOLIB=y | ||
| 935 | # CONFIG_GPIO_SYSFS is not set | ||
| 936 | |||
| 937 | # | ||
| 938 | # I2C GPIO expanders: | ||
| 939 | # | ||
| 940 | # CONFIG_GPIO_MAX732X is not set | ||
| 941 | # CONFIG_GPIO_PCA953X is not set | ||
| 942 | # CONFIG_GPIO_PCF857X is not set | ||
| 943 | |||
| 944 | # | ||
| 945 | # PCI GPIO expanders: | ||
| 946 | # | ||
| 947 | # CONFIG_GPIO_BT8XX is not set | ||
| 948 | |||
| 949 | # | ||
| 950 | # SPI GPIO expanders: | ||
| 951 | # | ||
| 682 | # CONFIG_W1 is not set | 952 | # CONFIG_W1 is not set |
| 683 | # CONFIG_POWER_SUPPLY is not set | 953 | # CONFIG_POWER_SUPPLY is not set |
| 684 | CONFIG_HWMON=y | 954 | CONFIG_HWMON=y |
| 685 | # CONFIG_HWMON_VID is not set | 955 | # CONFIG_HWMON_VID is not set |
| 956 | # CONFIG_SENSORS_AD7414 is not set | ||
| 686 | # CONFIG_SENSORS_AD7418 is not set | 957 | # CONFIG_SENSORS_AD7418 is not set |
| 687 | # CONFIG_SENSORS_ADM1021 is not set | 958 | # CONFIG_SENSORS_ADM1021 is not set |
| 688 | # CONFIG_SENSORS_ADM1025 is not set | 959 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -692,8 +963,10 @@ CONFIG_HWMON=y | |||
| 692 | # CONFIG_SENSORS_ADM9240 is not set | 963 | # CONFIG_SENSORS_ADM9240 is not set |
| 693 | # CONFIG_SENSORS_ADT7470 is not set | 964 | # CONFIG_SENSORS_ADT7470 is not set |
| 694 | # CONFIG_SENSORS_ADT7473 is not set | 965 | # CONFIG_SENSORS_ADT7473 is not set |
| 966 | # CONFIG_SENSORS_AMS is not set | ||
| 695 | # CONFIG_SENSORS_ATXP1 is not set | 967 | # CONFIG_SENSORS_ATXP1 is not set |
| 696 | # CONFIG_SENSORS_DS1621 is not set | 968 | # CONFIG_SENSORS_DS1621 is not set |
| 969 | # CONFIG_SENSORS_I5K_AMB is not set | ||
| 697 | # CONFIG_SENSORS_F71805F is not set | 970 | # CONFIG_SENSORS_F71805F is not set |
| 698 | # CONFIG_SENSORS_F71882FG is not set | 971 | # CONFIG_SENSORS_F71882FG is not set |
| 699 | # CONFIG_SENSORS_F75375S is not set | 972 | # CONFIG_SENSORS_F75375S is not set |
| @@ -715,13 +988,16 @@ CONFIG_HWMON=y | |||
| 715 | # CONFIG_SENSORS_MAX6650 is not set | 988 | # CONFIG_SENSORS_MAX6650 is not set |
| 716 | # CONFIG_SENSORS_PC87360 is not set | 989 | # CONFIG_SENSORS_PC87360 is not set |
| 717 | # CONFIG_SENSORS_PC87427 is not set | 990 | # CONFIG_SENSORS_PC87427 is not set |
| 991 | # CONFIG_SENSORS_SIS5595 is not set | ||
| 718 | # CONFIG_SENSORS_DME1737 is not set | 992 | # CONFIG_SENSORS_DME1737 is not set |
| 719 | # CONFIG_SENSORS_SMSC47M1 is not set | 993 | # CONFIG_SENSORS_SMSC47M1 is not set |
| 720 | # CONFIG_SENSORS_SMSC47M192 is not set | 994 | # CONFIG_SENSORS_SMSC47M192 is not set |
| 721 | # CONFIG_SENSORS_SMSC47B397 is not set | 995 | # CONFIG_SENSORS_SMSC47B397 is not set |
| 722 | # CONFIG_SENSORS_ADS7828 is not set | 996 | # CONFIG_SENSORS_ADS7828 is not set |
| 723 | # CONFIG_SENSORS_THMC50 is not set | 997 | # CONFIG_SENSORS_THMC50 is not set |
| 998 | # CONFIG_SENSORS_VIA686A is not set | ||
| 724 | # CONFIG_SENSORS_VT1211 is not set | 999 | # CONFIG_SENSORS_VT1211 is not set |
| 1000 | # CONFIG_SENSORS_VT8231 is not set | ||
| 725 | # CONFIG_SENSORS_W83781D is not set | 1001 | # CONFIG_SENSORS_W83781D is not set |
| 726 | # CONFIG_SENSORS_W83791D is not set | 1002 | # CONFIG_SENSORS_W83791D is not set |
| 727 | # CONFIG_SENSORS_W83792D is not set | 1003 | # CONFIG_SENSORS_W83792D is not set |
| @@ -732,6 +1008,7 @@ CONFIG_HWMON=y | |||
| 732 | # CONFIG_SENSORS_W83627EHF is not set | 1008 | # CONFIG_SENSORS_W83627EHF is not set |
| 733 | # CONFIG_HWMON_DEBUG_CHIP is not set | 1009 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 734 | # CONFIG_THERMAL is not set | 1010 | # CONFIG_THERMAL is not set |
| 1011 | # CONFIG_THERMAL_HWMON is not set | ||
| 735 | CONFIG_WATCHDOG=y | 1012 | CONFIG_WATCHDOG=y |
| 736 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 1013 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 737 | 1014 | ||
| @@ -739,7 +1016,15 @@ CONFIG_WATCHDOG=y | |||
| 739 | # Watchdog Device Drivers | 1016 | # Watchdog Device Drivers |
| 740 | # | 1017 | # |
| 741 | # CONFIG_SOFT_WATCHDOG is not set | 1018 | # CONFIG_SOFT_WATCHDOG is not set |
| 742 | CONFIG_83xx_WDT=y | 1019 | # CONFIG_ALIM7101_WDT is not set |
| 1020 | # CONFIG_8xxx_WDT is not set | ||
| 1021 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 1022 | |||
| 1023 | # | ||
| 1024 | # PCI-based Watchdog Cards | ||
| 1025 | # | ||
| 1026 | # CONFIG_PCIPCWATCHDOG is not set | ||
| 1027 | # CONFIG_WDTPCI is not set | ||
| 743 | 1028 | ||
| 744 | # | 1029 | # |
| 745 | # USB-based Watchdog Cards | 1030 | # USB-based Watchdog Cards |
| @@ -755,8 +1040,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 755 | # | 1040 | # |
| 756 | # Multifunction device drivers | 1041 | # Multifunction device drivers |
| 757 | # | 1042 | # |
| 1043 | # CONFIG_MFD_CORE is not set | ||
| 758 | # CONFIG_MFD_SM501 is not set | 1044 | # CONFIG_MFD_SM501 is not set |
| 759 | # CONFIG_HTC_PASIC3 is not set | 1045 | # CONFIG_HTC_PASIC3 is not set |
| 1046 | # CONFIG_MFD_TMIO is not set | ||
| 760 | 1047 | ||
| 761 | # | 1048 | # |
| 762 | # Multimedia devices | 1049 | # Multimedia devices |
| @@ -778,6 +1065,8 @@ CONFIG_DAB=y | |||
| 778 | # | 1065 | # |
| 779 | # Graphics support | 1066 | # Graphics support |
| 780 | # | 1067 | # |
| 1068 | # CONFIG_AGP is not set | ||
| 1069 | # CONFIG_DRM is not set | ||
| 781 | # CONFIG_VGASTATE is not set | 1070 | # CONFIG_VGASTATE is not set |
| 782 | CONFIG_VIDEO_OUTPUT_CONTROL=m | 1071 | CONFIG_VIDEO_OUTPUT_CONTROL=m |
| 783 | # CONFIG_FB is not set | 1072 | # CONFIG_FB is not set |
| @@ -787,10 +1076,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 787 | # Display device support | 1076 | # Display device support |
| 788 | # | 1077 | # |
| 789 | # CONFIG_DISPLAY_SUPPORT is not set | 1078 | # CONFIG_DISPLAY_SUPPORT is not set |
| 790 | |||
| 791 | # | ||
| 792 | # Sound | ||
| 793 | # | ||
| 794 | # CONFIG_SOUND is not set | 1079 | # CONFIG_SOUND is not set |
| 795 | CONFIG_HID_SUPPORT=y | 1080 | CONFIG_HID_SUPPORT=y |
| 796 | CONFIG_HID=y | 1081 | CONFIG_HID=y |
| @@ -806,7 +1091,7 @@ CONFIG_USB_HID=y | |||
| 806 | # CONFIG_USB_HIDDEV is not set | 1091 | # CONFIG_USB_HIDDEV is not set |
| 807 | CONFIG_USB_SUPPORT=y | 1092 | CONFIG_USB_SUPPORT=y |
| 808 | CONFIG_USB_ARCH_HAS_HCD=y | 1093 | CONFIG_USB_ARCH_HAS_HCD=y |
| 809 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 1094 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 810 | CONFIG_USB_ARCH_HAS_EHCI=y | 1095 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 811 | CONFIG_USB=y | 1096 | CONFIG_USB=y |
| 812 | # CONFIG_USB_DEBUG is not set | 1097 | # CONFIG_USB_DEBUG is not set |
| @@ -821,6 +1106,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 821 | # CONFIG_USB_OTG is not set | 1106 | # CONFIG_USB_OTG is not set |
| 822 | # CONFIG_USB_OTG_WHITELIST is not set | 1107 | # CONFIG_USB_OTG_WHITELIST is not set |
| 823 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1108 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1109 | CONFIG_USB_MON=y | ||
| 824 | 1110 | ||
| 825 | # | 1111 | # |
| 826 | # USB Host Controller Drivers | 1112 | # USB Host Controller Drivers |
| @@ -833,6 +1119,8 @@ CONFIG_USB_EHCI_FSL=y | |||
| 833 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1119 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 834 | # CONFIG_USB_ISP116X_HCD is not set | 1120 | # CONFIG_USB_ISP116X_HCD is not set |
| 835 | # CONFIG_USB_ISP1760_HCD is not set | 1121 | # CONFIG_USB_ISP1760_HCD is not set |
| 1122 | # CONFIG_USB_OHCI_HCD is not set | ||
| 1123 | # CONFIG_USB_UHCI_HCD is not set | ||
| 836 | # CONFIG_USB_SL811_HCD is not set | 1124 | # CONFIG_USB_SL811_HCD is not set |
| 837 | # CONFIG_USB_R8A66597_HCD is not set | 1125 | # CONFIG_USB_R8A66597_HCD is not set |
| 838 | 1126 | ||
| @@ -858,7 +1146,6 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 858 | # | 1146 | # |
| 859 | # CONFIG_USB_MDC800 is not set | 1147 | # CONFIG_USB_MDC800 is not set |
| 860 | # CONFIG_USB_MICROTEK is not set | 1148 | # CONFIG_USB_MICROTEK is not set |
| 861 | CONFIG_USB_MON=y | ||
| 862 | 1149 | ||
| 863 | # | 1150 | # |
| 864 | # USB port drivers | 1151 | # USB port drivers |
| @@ -871,7 +1158,6 @@ CONFIG_USB_MON=y | |||
| 871 | # CONFIG_USB_EMI62 is not set | 1158 | # CONFIG_USB_EMI62 is not set |
| 872 | # CONFIG_USB_EMI26 is not set | 1159 | # CONFIG_USB_EMI26 is not set |
| 873 | # CONFIG_USB_ADUTUX is not set | 1160 | # CONFIG_USB_ADUTUX is not set |
| 874 | # CONFIG_USB_AUERSWALD is not set | ||
| 875 | # CONFIG_USB_RIO500 is not set | 1161 | # CONFIG_USB_RIO500 is not set |
| 876 | # CONFIG_USB_LEGOTOWER is not set | 1162 | # CONFIG_USB_LEGOTOWER is not set |
| 877 | # CONFIG_USB_LCD is not set | 1163 | # CONFIG_USB_LCD is not set |
| @@ -893,6 +1179,7 @@ CONFIG_USB_MON=y | |||
| 893 | # CONFIG_MEMSTICK is not set | 1179 | # CONFIG_MEMSTICK is not set |
| 894 | # CONFIG_NEW_LEDS is not set | 1180 | # CONFIG_NEW_LEDS is not set |
| 895 | # CONFIG_ACCESSIBILITY is not set | 1181 | # CONFIG_ACCESSIBILITY is not set |
| 1182 | # CONFIG_INFINIBAND is not set | ||
| 896 | # CONFIG_EDAC is not set | 1183 | # CONFIG_EDAC is not set |
| 897 | # CONFIG_RTC_CLASS is not set | 1184 | # CONFIG_RTC_CLASS is not set |
| 898 | # CONFIG_DMADEVICES is not set | 1185 | # CONFIG_DMADEVICES is not set |
| @@ -963,6 +1250,7 @@ CONFIG_TMPFS=y | |||
| 963 | # CONFIG_CRAMFS is not set | 1250 | # CONFIG_CRAMFS is not set |
| 964 | # CONFIG_VXFS_FS is not set | 1251 | # CONFIG_VXFS_FS is not set |
| 965 | # CONFIG_MINIX_FS is not set | 1252 | # CONFIG_MINIX_FS is not set |
| 1253 | # CONFIG_OMFS_FS is not set | ||
| 966 | # CONFIG_HPFS_FS is not set | 1254 | # CONFIG_HPFS_FS is not set |
| 967 | # CONFIG_QNX4FS_FS is not set | 1255 | # CONFIG_QNX4FS_FS is not set |
| 968 | # CONFIG_ROMFS_FS is not set | 1256 | # CONFIG_ROMFS_FS is not set |
| @@ -973,14 +1261,13 @@ CONFIG_NFS_FS=y | |||
| 973 | CONFIG_NFS_V3=y | 1261 | CONFIG_NFS_V3=y |
| 974 | # CONFIG_NFS_V3_ACL is not set | 1262 | # CONFIG_NFS_V3_ACL is not set |
| 975 | CONFIG_NFS_V4=y | 1263 | CONFIG_NFS_V4=y |
| 976 | # CONFIG_NFSD is not set | ||
| 977 | CONFIG_ROOT_NFS=y | 1264 | CONFIG_ROOT_NFS=y |
| 1265 | # CONFIG_NFSD is not set | ||
| 978 | CONFIG_LOCKD=y | 1266 | CONFIG_LOCKD=y |
| 979 | CONFIG_LOCKD_V4=y | 1267 | CONFIG_LOCKD_V4=y |
| 980 | CONFIG_NFS_COMMON=y | 1268 | CONFIG_NFS_COMMON=y |
| 981 | CONFIG_SUNRPC=y | 1269 | CONFIG_SUNRPC=y |
| 982 | CONFIG_SUNRPC_GSS=y | 1270 | CONFIG_SUNRPC_GSS=y |
| 983 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 984 | CONFIG_RPCSEC_GSS_KRB5=y | 1271 | CONFIG_RPCSEC_GSS_KRB5=y |
| 985 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1272 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 986 | # CONFIG_SMB_FS is not set | 1273 | # CONFIG_SMB_FS is not set |
| @@ -1014,6 +1301,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1014 | # CONFIG_DLM is not set | 1301 | # CONFIG_DLM is not set |
| 1015 | CONFIG_UCC_FAST=y | 1302 | CONFIG_UCC_FAST=y |
| 1016 | CONFIG_UCC=y | 1303 | CONFIG_UCC=y |
| 1304 | CONFIG_QE_GPIO=y | ||
| 1017 | 1305 | ||
| 1018 | # | 1306 | # |
| 1019 | # Library routines | 1307 | # Library routines |
| @@ -1022,6 +1310,7 @@ CONFIG_BITREVERSE=y | |||
| 1022 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1310 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1023 | # CONFIG_CRC_CCITT is not set | 1311 | # CONFIG_CRC_CCITT is not set |
| 1024 | # CONFIG_CRC16 is not set | 1312 | # CONFIG_CRC16 is not set |
| 1313 | CONFIG_CRC_T10DIF=y | ||
| 1025 | # CONFIG_CRC_ITU_T is not set | 1314 | # CONFIG_CRC_ITU_T is not set |
| 1026 | CONFIG_CRC32=y | 1315 | CONFIG_CRC32=y |
| 1027 | # CONFIG_CRC7 is not set | 1316 | # CONFIG_CRC7 is not set |
| @@ -1045,8 +1334,18 @@ CONFIG_FRAME_WARN=1024 | |||
| 1045 | # CONFIG_HEADERS_CHECK is not set | 1334 | # CONFIG_HEADERS_CHECK is not set |
| 1046 | # CONFIG_DEBUG_KERNEL is not set | 1335 | # CONFIG_DEBUG_KERNEL is not set |
| 1047 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1336 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1337 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1338 | # CONFIG_LATENCYTOP is not set | ||
| 1339 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1340 | CONFIG_HAVE_FTRACE=y | ||
| 1341 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1342 | # CONFIG_FTRACE is not set | ||
| 1343 | # CONFIG_SCHED_TRACER is not set | ||
| 1344 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1048 | # CONFIG_SAMPLES is not set | 1345 | # CONFIG_SAMPLES is not set |
| 1346 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1049 | # CONFIG_IRQSTACKS is not set | 1347 | # CONFIG_IRQSTACKS is not set |
| 1348 | # CONFIG_BOOTX_TEXT is not set | ||
| 1050 | # CONFIG_PPC_EARLY_DEBUG is not set | 1349 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1051 | 1350 | ||
| 1052 | # | 1351 | # |
| @@ -1061,12 +1360,14 @@ CONFIG_CRYPTO=y | |||
| 1061 | # Crypto core or helper | 1360 | # Crypto core or helper |
| 1062 | # | 1361 | # |
| 1063 | CONFIG_CRYPTO_ALGAPI=y | 1362 | CONFIG_CRYPTO_ALGAPI=y |
| 1363 | CONFIG_CRYPTO_AEAD=y | ||
| 1064 | CONFIG_CRYPTO_BLKCIPHER=y | 1364 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1365 | CONFIG_CRYPTO_HASH=y | ||
| 1065 | CONFIG_CRYPTO_MANAGER=y | 1366 | CONFIG_CRYPTO_MANAGER=y |
| 1066 | # CONFIG_CRYPTO_GF128MUL is not set | 1367 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1067 | # CONFIG_CRYPTO_NULL is not set | 1368 | # CONFIG_CRYPTO_NULL is not set |
| 1068 | # CONFIG_CRYPTO_CRYPTD is not set | 1369 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1069 | # CONFIG_CRYPTO_AUTHENC is not set | 1370 | CONFIG_CRYPTO_AUTHENC=y |
| 1070 | # CONFIG_CRYPTO_TEST is not set | 1371 | # CONFIG_CRYPTO_TEST is not set |
| 1071 | 1372 | ||
| 1072 | # | 1373 | # |
| @@ -1100,6 +1401,10 @@ CONFIG_CRYPTO_PCBC=m | |||
| 1100 | # CONFIG_CRYPTO_MD4 is not set | 1401 | # CONFIG_CRYPTO_MD4 is not set |
| 1101 | CONFIG_CRYPTO_MD5=y | 1402 | CONFIG_CRYPTO_MD5=y |
| 1102 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1403 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1404 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1405 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1406 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1407 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1103 | # CONFIG_CRYPTO_SHA1 is not set | 1408 | # CONFIG_CRYPTO_SHA1 is not set |
| 1104 | # CONFIG_CRYPTO_SHA256 is not set | 1409 | # CONFIG_CRYPTO_SHA256 is not set |
| 1105 | # CONFIG_CRYPTO_SHA512 is not set | 1410 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1131,6 +1436,8 @@ CONFIG_CRYPTO_DES=y | |||
| 1131 | # CONFIG_CRYPTO_DEFLATE is not set | 1436 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1132 | # CONFIG_CRYPTO_LZO is not set | 1437 | # CONFIG_CRYPTO_LZO is not set |
| 1133 | CONFIG_CRYPTO_HW=y | 1438 | CONFIG_CRYPTO_HW=y |
| 1439 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
| 1440 | CONFIG_CRYPTO_DEV_TALITOS=y | ||
| 1134 | # CONFIG_PPC_CLOCK is not set | 1441 | # CONFIG_PPC_CLOCK is not set |
| 1135 | CONFIG_PPC_LIB_RHEAP=y | 1442 | CONFIG_PPC_LIB_RHEAP=y |
| 1136 | # CONFIG_VIRTUALIZATION is not set | 1443 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/mpc85xx_defconfig b/arch/powerpc/configs/mpc85xx_defconfig index fa0170504b88..f0a13bebf50c 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 09:03:46 2008 | 4 | # Thu Aug 21 07:15:20 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_PPC_85xx=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_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| @@ -33,12 +34,14 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 39 | CONFIG_GENERIC_HWEIGHT=y | 41 | CONFIG_GENERIC_HWEIGHT=y |
| 40 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 42 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 41 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 43 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 44 | CONFIG_GENERIC_GPIO=y | ||
| 42 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 45 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
| 43 | CONFIG_PPC=y | 46 | CONFIG_PPC=y |
| 44 | CONFIG_EARLY_PRINTK=y | 47 | CONFIG_EARLY_PRINTK=y |
| @@ -92,7 +95,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 92 | CONFIG_SYSCTL=y | 95 | CONFIG_SYSCTL=y |
| 93 | CONFIG_EMBEDDED=y | 96 | CONFIG_EMBEDDED=y |
| 94 | CONFIG_SYSCTL_SYSCALL=y | 97 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 96 | CONFIG_KALLSYMS=y | 98 | CONFIG_KALLSYMS=y |
| 97 | CONFIG_KALLSYMS_ALL=y | 99 | CONFIG_KALLSYMS_ALL=y |
| 98 | CONFIG_KALLSYMS_EXTRA_PASS=y | 100 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -118,10 +120,16 @@ CONFIG_SLUB=y | |||
| 118 | # CONFIG_MARKERS is not set | 120 | # CONFIG_MARKERS is not set |
| 119 | CONFIG_HAVE_OPROFILE=y | 121 | CONFIG_HAVE_OPROFILE=y |
| 120 | # CONFIG_KPROBES is not set | 122 | # CONFIG_KPROBES is not set |
| 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 124 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 121 | CONFIG_HAVE_KPROBES=y | 125 | CONFIG_HAVE_KPROBES=y |
| 122 | CONFIG_HAVE_KRETPROBES=y | 126 | CONFIG_HAVE_KRETPROBES=y |
| 127 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 123 | # CONFIG_HAVE_DMA_ATTRS is not set | 128 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 129 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 130 | CONFIG_HAVE_CLK=y | ||
| 124 | CONFIG_PROC_PAGE_MONITOR=y | 131 | CONFIG_PROC_PAGE_MONITOR=y |
| 132 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 125 | CONFIG_SLABINFO=y | 133 | CONFIG_SLABINFO=y |
| 126 | CONFIG_RT_MUTEXES=y | 134 | CONFIG_RT_MUTEXES=y |
| 127 | # CONFIG_TINY_SHMEM is not set | 135 | # CONFIG_TINY_SHMEM is not set |
| @@ -138,6 +146,7 @@ CONFIG_LBD=y | |||
| 138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 146 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 139 | # CONFIG_LSF is not set | 147 | # CONFIG_LSF is not set |
| 140 | # CONFIG_BLK_DEV_BSG is not set | 148 | # CONFIG_BLK_DEV_BSG is not set |
| 149 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 141 | 150 | ||
| 142 | # | 151 | # |
| 143 | # IO Schedulers | 152 | # IO Schedulers |
| @@ -156,8 +165,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 156 | # | 165 | # |
| 157 | # Platform support | 166 | # Platform support |
| 158 | # | 167 | # |
| 159 | # CONFIG_PPC_MPC512x is not set | ||
| 160 | # CONFIG_PPC_MPC5121 is not set | ||
| 161 | # CONFIG_PPC_CELL is not set | 168 | # CONFIG_PPC_CELL is not set |
| 162 | # CONFIG_PPC_CELL_NATIVE is not set | 169 | # CONFIG_PPC_CELL_NATIVE is not set |
| 163 | # CONFIG_PQ2ADS is not set | 170 | # CONFIG_PQ2ADS is not set |
| @@ -166,11 +173,13 @@ CONFIG_MPC8540_ADS=y | |||
| 166 | CONFIG_MPC8560_ADS=y | 173 | CONFIG_MPC8560_ADS=y |
| 167 | CONFIG_MPC85xx_CDS=y | 174 | CONFIG_MPC85xx_CDS=y |
| 168 | CONFIG_MPC85xx_MDS=y | 175 | CONFIG_MPC85xx_MDS=y |
| 176 | CONFIG_MPC8536_DS=y | ||
| 169 | CONFIG_MPC85xx_DS=y | 177 | CONFIG_MPC85xx_DS=y |
| 170 | CONFIG_KSI8560=y | 178 | CONFIG_KSI8560=y |
| 171 | # CONFIG_STX_GP3 is not set | 179 | # CONFIG_STX_GP3 is not set |
| 172 | CONFIG_TQM8540=y | 180 | CONFIG_TQM8540=y |
| 173 | CONFIG_TQM8541=y | 181 | CONFIG_TQM8541=y |
| 182 | CONFIG_TQM8548=y | ||
| 174 | CONFIG_TQM8555=y | 183 | CONFIG_TQM8555=y |
| 175 | CONFIG_TQM8560=y | 184 | CONFIG_TQM8560=y |
| 176 | CONFIG_SBC8548=y | 185 | CONFIG_SBC8548=y |
| @@ -189,7 +198,6 @@ CONFIG_PPC_I8259=y | |||
| 189 | # CONFIG_CPU_FREQ is not set | 198 | # CONFIG_CPU_FREQ is not set |
| 190 | CONFIG_QUICC_ENGINE=y | 199 | CONFIG_QUICC_ENGINE=y |
| 191 | CONFIG_CPM2=y | 200 | CONFIG_CPM2=y |
| 192 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 193 | CONFIG_FSL_ULI1575=y | 201 | CONFIG_FSL_ULI1575=y |
| 194 | CONFIG_CPM=y | 202 | CONFIG_CPM=y |
| 195 | 203 | ||
| @@ -206,7 +214,7 @@ CONFIG_HZ_250=y | |||
| 206 | # CONFIG_HZ_300 is not set | 214 | # CONFIG_HZ_300 is not set |
| 207 | # CONFIG_HZ_1000 is not set | 215 | # CONFIG_HZ_1000 is not set |
| 208 | CONFIG_HZ=250 | 216 | CONFIG_HZ=250 |
| 209 | # CONFIG_SCHED_HRTICK is not set | 217 | CONFIG_SCHED_HRTICK=y |
| 210 | CONFIG_PREEMPT_NONE=y | 218 | CONFIG_PREEMPT_NONE=y |
| 211 | # CONFIG_PREEMPT_VOLUNTARY is not set | 219 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 212 | # CONFIG_PREEMPT is not set | 220 | # CONFIG_PREEMPT is not set |
| @@ -229,6 +237,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 229 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 237 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 230 | CONFIG_PAGEFLAGS_EXTENDED=y | 238 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 239 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 240 | CONFIG_MIGRATION=y | ||
| 232 | # CONFIG_RESOURCES_64BIT is not set | 241 | # CONFIG_RESOURCES_64BIT is not set |
| 233 | CONFIG_ZONE_DMA_FLAG=1 | 242 | CONFIG_ZONE_DMA_FLAG=1 |
| 234 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
| @@ -236,6 +245,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 236 | CONFIG_FORCE_MAX_ZONEORDER=11 | 245 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 237 | CONFIG_PROC_DEVICETREE=y | 246 | CONFIG_PROC_DEVICETREE=y |
| 238 | # CONFIG_CMDLINE_BOOL is not set | 247 | # CONFIG_CMDLINE_BOOL is not set |
| 248 | CONFIG_EXTRA_TARGETS="" | ||
| 239 | # CONFIG_PM is not set | 249 | # CONFIG_PM is not set |
| 240 | CONFIG_SECCOMP=y | 250 | CONFIG_SECCOMP=y |
| 241 | CONFIG_ISA_DMA_API=y | 251 | CONFIG_ISA_DMA_API=y |
| @@ -248,6 +258,7 @@ CONFIG_GENERIC_ISA_DMA=y | |||
| 248 | CONFIG_PPC_INDIRECT_PCI=y | 258 | CONFIG_PPC_INDIRECT_PCI=y |
| 249 | CONFIG_FSL_SOC=y | 259 | CONFIG_FSL_SOC=y |
| 250 | CONFIG_FSL_PCI=y | 260 | CONFIG_FSL_PCI=y |
| 261 | CONFIG_PPC_PCI_CHOICE=y | ||
| 251 | CONFIG_PCI=y | 262 | CONFIG_PCI=y |
| 252 | CONFIG_PCI_DOMAINS=y | 263 | CONFIG_PCI_DOMAINS=y |
| 253 | CONFIG_PCI_SYSCALL=y | 264 | CONFIG_PCI_SYSCALL=y |
| @@ -274,10 +285,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 274 | CONFIG_PHYSICAL_START=0x00000000 | 285 | CONFIG_PHYSICAL_START=0x00000000 |
| 275 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 286 | CONFIG_PHYSICAL_ALIGN=0x10000000 |
| 276 | CONFIG_TASK_SIZE=0xc0000000 | 287 | CONFIG_TASK_SIZE=0xc0000000 |
| 277 | |||
| 278 | # | ||
| 279 | # Networking | ||
| 280 | # | ||
| 281 | CONFIG_NET=y | 288 | CONFIG_NET=y |
| 282 | 289 | ||
| 283 | # | 290 | # |
| @@ -403,12 +410,15 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 403 | CONFIG_STANDALONE=y | 410 | CONFIG_STANDALONE=y |
| 404 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 411 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 405 | CONFIG_FW_LOADER=y | 412 | CONFIG_FW_LOADER=y |
| 413 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 414 | CONFIG_EXTRA_FIRMWARE="" | ||
| 406 | # CONFIG_DEBUG_DRIVER is not set | 415 | # CONFIG_DEBUG_DRIVER is not set |
| 407 | # CONFIG_DEBUG_DEVRES is not set | 416 | # CONFIG_DEBUG_DEVRES is not set |
| 408 | # CONFIG_SYS_HYPERVISOR is not set | 417 | # CONFIG_SYS_HYPERVISOR is not set |
| 409 | # CONFIG_CONNECTOR is not set | 418 | # CONFIG_CONNECTOR is not set |
| 410 | # CONFIG_MTD is not set | 419 | # CONFIG_MTD is not set |
| 411 | CONFIG_OF_DEVICE=y | 420 | CONFIG_OF_DEVICE=y |
| 421 | CONFIG_OF_GPIO=y | ||
| 412 | CONFIG_OF_I2C=y | 422 | CONFIG_OF_I2C=y |
| 413 | # CONFIG_PARPORT is not set | 423 | # CONFIG_PARPORT is not set |
| 414 | CONFIG_BLK_DEV=y | 424 | CONFIG_BLK_DEV=y |
| @@ -429,12 +439,14 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 429 | # CONFIG_BLK_DEV_XIP is not set | 439 | # CONFIG_BLK_DEV_XIP is not set |
| 430 | # CONFIG_CDROM_PKTCDVD is not set | 440 | # CONFIG_CDROM_PKTCDVD is not set |
| 431 | # CONFIG_ATA_OVER_ETH is not set | 441 | # CONFIG_ATA_OVER_ETH is not set |
| 442 | # CONFIG_BLK_DEV_HD is not set | ||
| 432 | CONFIG_MISC_DEVICES=y | 443 | CONFIG_MISC_DEVICES=y |
| 433 | # CONFIG_PHANTOM is not set | 444 | # CONFIG_PHANTOM is not set |
| 434 | # CONFIG_EEPROM_93CX6 is not set | 445 | # CONFIG_EEPROM_93CX6 is not set |
| 435 | # CONFIG_SGI_IOC4 is not set | 446 | # CONFIG_SGI_IOC4 is not set |
| 436 | # CONFIG_TIFM_CORE is not set | 447 | # CONFIG_TIFM_CORE is not set |
| 437 | # CONFIG_ENCLOSURE_SERVICES is not set | 448 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 449 | # CONFIG_HP_ILO is not set | ||
| 438 | CONFIG_HAVE_IDE=y | 450 | CONFIG_HAVE_IDE=y |
| 439 | # CONFIG_IDE is not set | 451 | # CONFIG_IDE is not set |
| 440 | 452 | ||
| @@ -514,6 +526,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 514 | # CONFIG_SCSI_NSP32 is not set | 526 | # CONFIG_SCSI_NSP32 is not set |
| 515 | # CONFIG_SCSI_DEBUG is not set | 527 | # CONFIG_SCSI_DEBUG is not set |
| 516 | # CONFIG_SCSI_SRP is not set | 528 | # CONFIG_SCSI_SRP is not set |
| 529 | # CONFIG_SCSI_DH is not set | ||
| 517 | CONFIG_ATA=y | 530 | CONFIG_ATA=y |
| 518 | # CONFIG_ATA_NONSTANDARD is not set | 531 | # CONFIG_ATA_NONSTANDARD is not set |
| 519 | CONFIG_SATA_PMP=y | 532 | CONFIG_SATA_PMP=y |
| @@ -581,12 +594,15 @@ CONFIG_PATA_ALI=y | |||
| 581 | # | 594 | # |
| 582 | # IEEE 1394 (FireWire) support | 595 | # IEEE 1394 (FireWire) support |
| 583 | # | 596 | # |
| 597 | |||
| 598 | # | ||
| 599 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 600 | # | ||
| 584 | # CONFIG_FIREWIRE is not set | 601 | # CONFIG_FIREWIRE is not set |
| 585 | # CONFIG_IEEE1394 is not set | 602 | # CONFIG_IEEE1394 is not set |
| 586 | # CONFIG_I2O is not set | 603 | # CONFIG_I2O is not set |
| 587 | # CONFIG_MACINTOSH_DRIVERS is not set | 604 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 588 | CONFIG_NETDEVICES=y | 605 | CONFIG_NETDEVICES=y |
| 589 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 590 | CONFIG_DUMMY=y | 606 | CONFIG_DUMMY=y |
| 591 | # CONFIG_BONDING is not set | 607 | # CONFIG_BONDING is not set |
| 592 | # CONFIG_MACVLAN is not set | 608 | # CONFIG_MACVLAN is not set |
| @@ -631,7 +647,6 @@ CONFIG_NETDEV_1000=y | |||
| 631 | # CONFIG_DL2K is not set | 647 | # CONFIG_DL2K is not set |
| 632 | # CONFIG_E1000 is not set | 648 | # CONFIG_E1000 is not set |
| 633 | # CONFIG_E1000E is not set | 649 | # CONFIG_E1000E is not set |
| 634 | # CONFIG_E1000E_ENABLED is not set | ||
| 635 | # CONFIG_IP1000 is not set | 650 | # CONFIG_IP1000 is not set |
| 636 | # CONFIG_IGB is not set | 651 | # CONFIG_IGB is not set |
| 637 | # CONFIG_NS83820 is not set | 652 | # CONFIG_NS83820 is not set |
| @@ -645,10 +660,10 @@ CONFIG_NETDEV_1000=y | |||
| 645 | # CONFIG_TIGON3 is not set | 660 | # CONFIG_TIGON3 is not set |
| 646 | # CONFIG_BNX2 is not set | 661 | # CONFIG_BNX2 is not set |
| 647 | CONFIG_GIANFAR=y | 662 | CONFIG_GIANFAR=y |
| 648 | CONFIG_GFAR_NAPI=y | ||
| 649 | # CONFIG_UCC_GETH is not set | 663 | # CONFIG_UCC_GETH is not set |
| 650 | # CONFIG_QLA3XXX is not set | 664 | # CONFIG_QLA3XXX is not set |
| 651 | # CONFIG_ATL1 is not set | 665 | # CONFIG_ATL1 is not set |
| 666 | # CONFIG_ATL1E is not set | ||
| 652 | CONFIG_NETDEV_10000=y | 667 | CONFIG_NETDEV_10000=y |
| 653 | # CONFIG_CHELSIO_T1 is not set | 668 | # CONFIG_CHELSIO_T1 is not set |
| 654 | # CONFIG_CHELSIO_T3 is not set | 669 | # CONFIG_CHELSIO_T3 is not set |
| @@ -725,12 +740,14 @@ CONFIG_SERIO_SERPORT=y | |||
| 725 | # CONFIG_SERIO_PCIPS2 is not set | 740 | # CONFIG_SERIO_PCIPS2 is not set |
| 726 | CONFIG_SERIO_LIBPS2=y | 741 | CONFIG_SERIO_LIBPS2=y |
| 727 | # CONFIG_SERIO_RAW is not set | 742 | # CONFIG_SERIO_RAW is not set |
| 743 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 728 | # CONFIG_GAMEPORT is not set | 744 | # CONFIG_GAMEPORT is not set |
| 729 | 745 | ||
| 730 | # | 746 | # |
| 731 | # Character devices | 747 | # Character devices |
| 732 | # | 748 | # |
| 733 | CONFIG_VT=y | 749 | CONFIG_VT=y |
| 750 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 734 | CONFIG_VT_CONSOLE=y | 751 | CONFIG_VT_CONSOLE=y |
| 735 | CONFIG_HW_CONSOLE=y | 752 | CONFIG_HW_CONSOLE=y |
| 736 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 753 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -776,44 +793,68 @@ CONFIG_DEVPORT=y | |||
| 776 | CONFIG_I2C=y | 793 | CONFIG_I2C=y |
| 777 | CONFIG_I2C_BOARDINFO=y | 794 | CONFIG_I2C_BOARDINFO=y |
| 778 | # CONFIG_I2C_CHARDEV is not set | 795 | # CONFIG_I2C_CHARDEV is not set |
| 796 | CONFIG_I2C_HELPER_AUTO=y | ||
| 779 | 797 | ||
| 780 | # | 798 | # |
| 781 | # I2C Hardware Bus support | 799 | # I2C Hardware Bus support |
| 782 | # | 800 | # |
| 801 | |||
| 802 | # | ||
| 803 | # PC SMBus host controller drivers | ||
| 804 | # | ||
| 783 | # CONFIG_I2C_ALI1535 is not set | 805 | # CONFIG_I2C_ALI1535 is not set |
| 784 | # CONFIG_I2C_ALI1563 is not set | 806 | # CONFIG_I2C_ALI1563 is not set |
| 785 | # CONFIG_I2C_ALI15X3 is not set | 807 | # CONFIG_I2C_ALI15X3 is not set |
| 786 | # CONFIG_I2C_AMD756 is not set | 808 | # CONFIG_I2C_AMD756 is not set |
| 787 | # CONFIG_I2C_AMD8111 is not set | 809 | # CONFIG_I2C_AMD8111 is not set |
| 788 | # CONFIG_I2C_I801 is not set | 810 | # CONFIG_I2C_I801 is not set |
| 789 | # CONFIG_I2C_I810 is not set | 811 | # CONFIG_I2C_ISCH is not set |
| 790 | # CONFIG_I2C_PIIX4 is not set | 812 | # CONFIG_I2C_PIIX4 is not set |
| 791 | CONFIG_I2C_MPC=y | ||
| 792 | # CONFIG_I2C_NFORCE2 is not set | 813 | # CONFIG_I2C_NFORCE2 is not set |
| 793 | # CONFIG_I2C_OCORES is not set | ||
| 794 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 795 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 796 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 797 | # CONFIG_I2C_SIMTEC is not set | ||
| 798 | # CONFIG_I2C_SIS5595 is not set | 814 | # CONFIG_I2C_SIS5595 is not set |
| 799 | # CONFIG_I2C_SIS630 is not set | 815 | # CONFIG_I2C_SIS630 is not set |
| 800 | # CONFIG_I2C_SIS96X is not set | 816 | # CONFIG_I2C_SIS96X is not set |
| 801 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 802 | # CONFIG_I2C_STUB is not set | ||
| 803 | # CONFIG_I2C_TINY_USB is not set | ||
| 804 | # CONFIG_I2C_VIA is not set | 817 | # CONFIG_I2C_VIA is not set |
| 805 | # CONFIG_I2C_VIAPRO is not set | 818 | # CONFIG_I2C_VIAPRO is not set |
| 819 | |||
| 820 | # | ||
| 821 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 822 | # | ||
| 823 | # CONFIG_I2C_CPM is not set | ||
| 824 | # CONFIG_I2C_GPIO is not set | ||
| 825 | CONFIG_I2C_MPC=y | ||
| 826 | # CONFIG_I2C_OCORES is not set | ||
| 827 | # CONFIG_I2C_SIMTEC is not set | ||
| 828 | |||
| 829 | # | ||
| 830 | # External I2C/SMBus adapter drivers | ||
| 831 | # | ||
| 832 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 833 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 834 | # CONFIG_I2C_TINY_USB is not set | ||
| 835 | |||
| 836 | # | ||
| 837 | # Graphics adapter I2C/DDC channel drivers | ||
| 838 | # | ||
| 806 | # CONFIG_I2C_VOODOO3 is not set | 839 | # CONFIG_I2C_VOODOO3 is not set |
| 840 | |||
| 841 | # | ||
| 842 | # Other I2C/SMBus bus drivers | ||
| 843 | # | ||
| 807 | # CONFIG_I2C_PCA_PLATFORM is not set | 844 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 845 | # CONFIG_I2C_STUB is not set | ||
| 808 | 846 | ||
| 809 | # | 847 | # |
| 810 | # Miscellaneous I2C Chip support | 848 | # Miscellaneous I2C Chip support |
| 811 | # | 849 | # |
| 812 | # CONFIG_DS1682 is not set | 850 | # CONFIG_DS1682 is not set |
| 851 | # CONFIG_AT24 is not set | ||
| 813 | CONFIG_SENSORS_EEPROM=y | 852 | CONFIG_SENSORS_EEPROM=y |
| 814 | # CONFIG_SENSORS_PCF8574 is not set | 853 | # CONFIG_SENSORS_PCF8574 is not set |
| 815 | # CONFIG_PCF8575 is not set | 854 | # CONFIG_PCF8575 is not set |
| 855 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 816 | # CONFIG_SENSORS_PCF8591 is not set | 856 | # CONFIG_SENSORS_PCF8591 is not set |
| 857 | # CONFIG_TPS65010 is not set | ||
| 817 | # CONFIG_SENSORS_MAX6875 is not set | 858 | # CONFIG_SENSORS_MAX6875 is not set |
| 818 | # CONFIG_SENSORS_TSL2550 is not set | 859 | # CONFIG_SENSORS_TSL2550 is not set |
| 819 | # CONFIG_I2C_DEBUG_CORE is not set | 860 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -821,10 +862,32 @@ CONFIG_SENSORS_EEPROM=y | |||
| 821 | # CONFIG_I2C_DEBUG_BUS is not set | 862 | # CONFIG_I2C_DEBUG_BUS is not set |
| 822 | # CONFIG_I2C_DEBUG_CHIP is not set | 863 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 823 | # CONFIG_SPI is not set | 864 | # CONFIG_SPI is not set |
| 865 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 866 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | ||
| 867 | CONFIG_GPIOLIB=y | ||
| 868 | # CONFIG_DEBUG_GPIO is not set | ||
| 869 | # CONFIG_GPIO_SYSFS is not set | ||
| 870 | |||
| 871 | # | ||
| 872 | # I2C GPIO expanders: | ||
| 873 | # | ||
| 874 | # CONFIG_GPIO_MAX732X is not set | ||
| 875 | # CONFIG_GPIO_PCA953X is not set | ||
| 876 | # CONFIG_GPIO_PCF857X is not set | ||
| 877 | |||
| 878 | # | ||
| 879 | # PCI GPIO expanders: | ||
| 880 | # | ||
| 881 | # CONFIG_GPIO_BT8XX is not set | ||
| 882 | |||
| 883 | # | ||
| 884 | # SPI GPIO expanders: | ||
| 885 | # | ||
| 824 | # CONFIG_W1 is not set | 886 | # CONFIG_W1 is not set |
| 825 | # CONFIG_POWER_SUPPLY is not set | 887 | # CONFIG_POWER_SUPPLY is not set |
| 826 | # CONFIG_HWMON is not set | 888 | # CONFIG_HWMON is not set |
| 827 | # CONFIG_THERMAL is not set | 889 | # CONFIG_THERMAL is not set |
| 890 | # CONFIG_THERMAL_HWMON is not set | ||
| 828 | # CONFIG_WATCHDOG is not set | 891 | # CONFIG_WATCHDOG is not set |
| 829 | 892 | ||
| 830 | # | 893 | # |
| @@ -836,8 +899,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 836 | # | 899 | # |
| 837 | # Multifunction device drivers | 900 | # Multifunction device drivers |
| 838 | # | 901 | # |
| 902 | # CONFIG_MFD_CORE is not set | ||
| 839 | # CONFIG_MFD_SM501 is not set | 903 | # CONFIG_MFD_SM501 is not set |
| 840 | # CONFIG_HTC_PASIC3 is not set | 904 | # CONFIG_HTC_PASIC3 is not set |
| 905 | # CONFIG_MFD_TMIO is not set | ||
| 841 | 906 | ||
| 842 | # | 907 | # |
| 843 | # Multimedia devices | 908 | # Multimedia devices |
| @@ -879,6 +944,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 879 | # CONFIG_DVB_TTUSB_BUDGET is not set | 944 | # CONFIG_DVB_TTUSB_BUDGET is not set |
| 880 | # CONFIG_DVB_TTUSB_DEC is not set | 945 | # CONFIG_DVB_TTUSB_DEC is not set |
| 881 | # CONFIG_DVB_CINERGYT2 is not set | 946 | # CONFIG_DVB_CINERGYT2 is not set |
| 947 | # CONFIG_DVB_SIANO_SMS1XXX is not set | ||
| 882 | 948 | ||
| 883 | # | 949 | # |
| 884 | # Supported FlexCopII (B2C2) Adapters | 950 | # Supported FlexCopII (B2C2) Adapters |
| @@ -925,6 +991,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 925 | # CONFIG_DVB_SP887X is not set | 991 | # CONFIG_DVB_SP887X is not set |
| 926 | # CONFIG_DVB_CX22700 is not set | 992 | # CONFIG_DVB_CX22700 is not set |
| 927 | # CONFIG_DVB_CX22702 is not set | 993 | # CONFIG_DVB_CX22702 is not set |
| 994 | # CONFIG_DVB_DRX397XD is not set | ||
| 928 | # CONFIG_DVB_L64781 is not set | 995 | # CONFIG_DVB_L64781 is not set |
| 929 | # CONFIG_DVB_TDA1004X is not set | 996 | # CONFIG_DVB_TDA1004X is not set |
| 930 | # CONFIG_DVB_NXT6000 is not set | 997 | # CONFIG_DVB_NXT6000 is not set |
| @@ -992,15 +1059,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 992 | CONFIG_VGA_CONSOLE=y | 1059 | CONFIG_VGA_CONSOLE=y |
| 993 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | 1060 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set |
| 994 | CONFIG_DUMMY_CONSOLE=y | 1061 | CONFIG_DUMMY_CONSOLE=y |
| 995 | |||
| 996 | # | ||
| 997 | # Sound | ||
| 998 | # | ||
| 999 | CONFIG_SOUND=y | 1062 | CONFIG_SOUND=y |
| 1000 | |||
| 1001 | # | ||
| 1002 | # Advanced Linux Sound Architecture | ||
| 1003 | # | ||
| 1004 | CONFIG_SND=y | 1063 | CONFIG_SND=y |
| 1005 | CONFIG_SND_TIMER=y | 1064 | CONFIG_SND_TIMER=y |
| 1006 | CONFIG_SND_PCM=y | 1065 | CONFIG_SND_PCM=y |
| @@ -1014,19 +1073,15 @@ CONFIG_SND_PCM_OSS_PLUGINS=y | |||
| 1014 | CONFIG_SND_VERBOSE_PROCFS=y | 1073 | CONFIG_SND_VERBOSE_PROCFS=y |
| 1015 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1074 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 1016 | # CONFIG_SND_DEBUG is not set | 1075 | # CONFIG_SND_DEBUG is not set |
| 1017 | 1076 | CONFIG_SND_VMASTER=y | |
| 1018 | # | ||
| 1019 | # Generic devices | ||
| 1020 | # | ||
| 1021 | CONFIG_SND_AC97_CODEC=y | 1077 | CONFIG_SND_AC97_CODEC=y |
| 1078 | CONFIG_SND_DRIVERS=y | ||
| 1022 | # CONFIG_SND_DUMMY is not set | 1079 | # CONFIG_SND_DUMMY is not set |
| 1023 | # CONFIG_SND_MTPAV is not set | 1080 | # CONFIG_SND_MTPAV is not set |
| 1024 | # CONFIG_SND_SERIAL_U16550 is not set | 1081 | # CONFIG_SND_SERIAL_U16550 is not set |
| 1025 | # CONFIG_SND_MPU401 is not set | 1082 | # CONFIG_SND_MPU401 is not set |
| 1026 | 1083 | # CONFIG_SND_AC97_POWER_SAVE is not set | |
| 1027 | # | 1084 | CONFIG_SND_PCI=y |
| 1028 | # PCI devices | ||
| 1029 | # | ||
| 1030 | # CONFIG_SND_AD1889 is not set | 1085 | # CONFIG_SND_AD1889 is not set |
| 1031 | # CONFIG_SND_ALS300 is not set | 1086 | # CONFIG_SND_ALS300 is not set |
| 1032 | # CONFIG_SND_ALS4000 is not set | 1087 | # CONFIG_SND_ALS4000 is not set |
| @@ -1088,39 +1143,12 @@ CONFIG_SND_INTEL8X0=y | |||
| 1088 | # CONFIG_SND_VIRTUOSO is not set | 1143 | # CONFIG_SND_VIRTUOSO is not set |
| 1089 | # CONFIG_SND_VX222 is not set | 1144 | # CONFIG_SND_VX222 is not set |
| 1090 | # CONFIG_SND_YMFPCI is not set | 1145 | # CONFIG_SND_YMFPCI is not set |
| 1091 | # CONFIG_SND_AC97_POWER_SAVE is not set | 1146 | CONFIG_SND_PPC=y |
| 1092 | 1147 | CONFIG_SND_USB=y | |
| 1093 | # | ||
| 1094 | # ALSA PowerMac devices | ||
| 1095 | # | ||
| 1096 | |||
| 1097 | # | ||
| 1098 | # ALSA PowerPC devices | ||
| 1099 | # | ||
| 1100 | |||
| 1101 | # | ||
| 1102 | # USB devices | ||
| 1103 | # | ||
| 1104 | # CONFIG_SND_USB_AUDIO is not set | 1148 | # CONFIG_SND_USB_AUDIO is not set |
| 1105 | # CONFIG_SND_USB_USX2Y is not set | 1149 | # CONFIG_SND_USB_USX2Y is not set |
| 1106 | # CONFIG_SND_USB_CAIAQ is not set | 1150 | # CONFIG_SND_USB_CAIAQ is not set |
| 1107 | |||
| 1108 | # | ||
| 1109 | # System on Chip audio support | ||
| 1110 | # | ||
| 1111 | # CONFIG_SND_SOC is not set | 1151 | # CONFIG_SND_SOC is not set |
| 1112 | |||
| 1113 | # | ||
| 1114 | # ALSA SoC audio for Freescale SOCs | ||
| 1115 | # | ||
| 1116 | |||
| 1117 | # | ||
| 1118 | # SoC Audio for the Texas Instruments OMAP | ||
| 1119 | # | ||
| 1120 | |||
| 1121 | # | ||
| 1122 | # Open Sound System | ||
| 1123 | # | ||
| 1124 | # CONFIG_SOUND_PRIME is not set | 1152 | # CONFIG_SOUND_PRIME is not set |
| 1125 | CONFIG_AC97_BUS=y | 1153 | CONFIG_AC97_BUS=y |
| 1126 | CONFIG_HID_SUPPORT=y | 1154 | CONFIG_HID_SUPPORT=y |
| @@ -1152,6 +1180,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 1152 | # CONFIG_USB_OTG is not set | 1180 | # CONFIG_USB_OTG is not set |
| 1153 | # CONFIG_USB_OTG_WHITELIST is not set | 1181 | # CONFIG_USB_OTG_WHITELIST is not set |
| 1154 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1182 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1183 | CONFIG_USB_MON=y | ||
| 1155 | 1184 | ||
| 1156 | # | 1185 | # |
| 1157 | # USB Host Controller Drivers | 1186 | # USB Host Controller Drivers |
| @@ -1175,6 +1204,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1175 | # CONFIG_USB_UHCI_HCD is not set | 1204 | # CONFIG_USB_UHCI_HCD is not set |
| 1176 | # CONFIG_USB_SL811_HCD is not set | 1205 | # CONFIG_USB_SL811_HCD is not set |
| 1177 | # CONFIG_USB_R8A66597_HCD is not set | 1206 | # CONFIG_USB_R8A66597_HCD is not set |
| 1207 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 1178 | 1208 | ||
| 1179 | # | 1209 | # |
| 1180 | # USB Device Class drivers | 1210 | # USB Device Class drivers |
| @@ -1203,6 +1233,7 @@ CONFIG_USB_STORAGE=y | |||
| 1203 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1233 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1204 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1234 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1205 | # CONFIG_USB_STORAGE_KARMA is not set | 1235 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1236 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1206 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1237 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1207 | # CONFIG_USB_LIBUSUAL is not set | 1238 | # CONFIG_USB_LIBUSUAL is not set |
| 1208 | 1239 | ||
| @@ -1211,7 +1242,6 @@ CONFIG_USB_STORAGE=y | |||
| 1211 | # | 1242 | # |
| 1212 | # CONFIG_USB_MDC800 is not set | 1243 | # CONFIG_USB_MDC800 is not set |
| 1213 | # CONFIG_USB_MICROTEK is not set | 1244 | # CONFIG_USB_MICROTEK is not set |
| 1214 | CONFIG_USB_MON=y | ||
| 1215 | 1245 | ||
| 1216 | # | 1246 | # |
| 1217 | # USB port drivers | 1247 | # USB port drivers |
| @@ -1224,7 +1254,6 @@ CONFIG_USB_MON=y | |||
| 1224 | # CONFIG_USB_EMI62 is not set | 1254 | # CONFIG_USB_EMI62 is not set |
| 1225 | # CONFIG_USB_EMI26 is not set | 1255 | # CONFIG_USB_EMI26 is not set |
| 1226 | # CONFIG_USB_ADUTUX is not set | 1256 | # CONFIG_USB_ADUTUX is not set |
| 1227 | # CONFIG_USB_AUERSWALD is not set | ||
| 1228 | # CONFIG_USB_RIO500 is not set | 1257 | # CONFIG_USB_RIO500 is not set |
| 1229 | # CONFIG_USB_LEGOTOWER is not set | 1258 | # CONFIG_USB_LEGOTOWER is not set |
| 1230 | # CONFIG_USB_LCD is not set | 1259 | # CONFIG_USB_LCD is not set |
| @@ -1285,6 +1314,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 1285 | # CONFIG_RTC_DRV_PCF8583 is not set | 1314 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 1286 | # CONFIG_RTC_DRV_M41T80 is not set | 1315 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1287 | # CONFIG_RTC_DRV_S35390A is not set | 1316 | # CONFIG_RTC_DRV_S35390A is not set |
| 1317 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1288 | 1318 | ||
| 1289 | # | 1319 | # |
| 1290 | # SPI RTC drivers | 1320 | # SPI RTC drivers |
| @@ -1318,6 +1348,7 @@ CONFIG_DMA_ENGINE=y | |||
| 1318 | # DMA Clients | 1348 | # DMA Clients |
| 1319 | # | 1349 | # |
| 1320 | # CONFIG_NET_DMA is not set | 1350 | # CONFIG_NET_DMA is not set |
| 1351 | # CONFIG_DMATEST is not set | ||
| 1321 | # CONFIG_UIO is not set | 1352 | # CONFIG_UIO is not set |
| 1322 | 1353 | ||
| 1323 | # | 1354 | # |
| @@ -1332,6 +1363,7 @@ CONFIG_EXT3_FS_XATTR=y | |||
| 1332 | # CONFIG_EXT3_FS_SECURITY is not set | 1363 | # CONFIG_EXT3_FS_SECURITY is not set |
| 1333 | # CONFIG_EXT4DEV_FS is not set | 1364 | # CONFIG_EXT4DEV_FS is not set |
| 1334 | CONFIG_JBD=y | 1365 | CONFIG_JBD=y |
| 1366 | # CONFIG_JBD_DEBUG is not set | ||
| 1335 | CONFIG_FS_MBCACHE=y | 1367 | CONFIG_FS_MBCACHE=y |
| 1336 | # CONFIG_REISERFS_FS is not set | 1368 | # CONFIG_REISERFS_FS is not set |
| 1337 | # CONFIG_JFS_FS is not set | 1369 | # CONFIG_JFS_FS is not set |
| @@ -1394,6 +1426,7 @@ CONFIG_EFS_FS=m | |||
| 1394 | CONFIG_CRAMFS=y | 1426 | CONFIG_CRAMFS=y |
| 1395 | CONFIG_VXFS_FS=m | 1427 | CONFIG_VXFS_FS=m |
| 1396 | # CONFIG_MINIX_FS is not set | 1428 | # CONFIG_MINIX_FS is not set |
| 1429 | # CONFIG_OMFS_FS is not set | ||
| 1397 | CONFIG_HPFS_FS=m | 1430 | CONFIG_HPFS_FS=m |
| 1398 | CONFIG_QNX4FS_FS=m | 1431 | CONFIG_QNX4FS_FS=m |
| 1399 | # CONFIG_ROMFS_FS is not set | 1432 | # CONFIG_ROMFS_FS is not set |
| @@ -1406,17 +1439,16 @@ CONFIG_NFS_FS=y | |||
| 1406 | CONFIG_NFS_V3=y | 1439 | CONFIG_NFS_V3=y |
| 1407 | # CONFIG_NFS_V3_ACL is not set | 1440 | # CONFIG_NFS_V3_ACL is not set |
| 1408 | CONFIG_NFS_V4=y | 1441 | CONFIG_NFS_V4=y |
| 1442 | CONFIG_ROOT_NFS=y | ||
| 1409 | CONFIG_NFSD=y | 1443 | CONFIG_NFSD=y |
| 1410 | # CONFIG_NFSD_V3 is not set | 1444 | # CONFIG_NFSD_V3 is not set |
| 1411 | # CONFIG_NFSD_V4 is not set | 1445 | # CONFIG_NFSD_V4 is not set |
| 1412 | CONFIG_ROOT_NFS=y | ||
| 1413 | CONFIG_LOCKD=y | 1446 | CONFIG_LOCKD=y |
| 1414 | CONFIG_LOCKD_V4=y | 1447 | CONFIG_LOCKD_V4=y |
| 1415 | CONFIG_EXPORTFS=y | 1448 | CONFIG_EXPORTFS=y |
| 1416 | CONFIG_NFS_COMMON=y | 1449 | CONFIG_NFS_COMMON=y |
| 1417 | CONFIG_SUNRPC=y | 1450 | CONFIG_SUNRPC=y |
| 1418 | CONFIG_SUNRPC_GSS=y | 1451 | CONFIG_SUNRPC_GSS=y |
| 1419 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1420 | CONFIG_RPCSEC_GSS_KRB5=y | 1452 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1421 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1453 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1422 | # CONFIG_SMB_FS is not set | 1454 | # CONFIG_SMB_FS is not set |
| @@ -1487,6 +1519,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1487 | # CONFIG_NLS_KOI8_U is not set | 1519 | # CONFIG_NLS_KOI8_U is not set |
| 1488 | CONFIG_NLS_UTF8=m | 1520 | CONFIG_NLS_UTF8=m |
| 1489 | # CONFIG_DLM is not set | 1521 | # CONFIG_DLM is not set |
| 1522 | # CONFIG_QE_GPIO is not set | ||
| 1490 | 1523 | ||
| 1491 | # | 1524 | # |
| 1492 | # Library routines | 1525 | # Library routines |
| @@ -1495,6 +1528,7 @@ CONFIG_BITREVERSE=y | |||
| 1495 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1528 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1496 | # CONFIG_CRC_CCITT is not set | 1529 | # CONFIG_CRC_CCITT is not set |
| 1497 | # CONFIG_CRC16 is not set | 1530 | # CONFIG_CRC16 is not set |
| 1531 | CONFIG_CRC_T10DIF=y | ||
| 1498 | CONFIG_CRC_ITU_T=m | 1532 | CONFIG_CRC_ITU_T=m |
| 1499 | CONFIG_CRC32=y | 1533 | CONFIG_CRC32=y |
| 1500 | # CONFIG_CRC7 is not set | 1534 | # CONFIG_CRC7 is not set |
| @@ -1515,11 +1549,13 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1515 | CONFIG_FRAME_WARN=1024 | 1549 | CONFIG_FRAME_WARN=1024 |
| 1516 | # CONFIG_MAGIC_SYSRQ is not set | 1550 | # CONFIG_MAGIC_SYSRQ is not set |
| 1517 | # CONFIG_UNUSED_SYMBOLS is not set | 1551 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1518 | # CONFIG_DEBUG_FS is not set | 1552 | CONFIG_DEBUG_FS=y |
| 1519 | # CONFIG_HEADERS_CHECK is not set | 1553 | # CONFIG_HEADERS_CHECK is not set |
| 1520 | CONFIG_DEBUG_KERNEL=y | 1554 | CONFIG_DEBUG_KERNEL=y |
| 1521 | # CONFIG_DEBUG_SHIRQ is not set | 1555 | # CONFIG_DEBUG_SHIRQ is not set |
| 1522 | CONFIG_DETECT_SOFTLOCKUP=y | 1556 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1557 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1558 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1523 | CONFIG_SCHED_DEBUG=y | 1559 | CONFIG_SCHED_DEBUG=y |
| 1524 | # CONFIG_SCHEDSTATS is not set | 1560 | # CONFIG_SCHEDSTATS is not set |
| 1525 | # CONFIG_TIMER_STATS is not set | 1561 | # CONFIG_TIMER_STATS is not set |
| @@ -1538,19 +1574,31 @@ CONFIG_SCHED_DEBUG=y | |||
| 1538 | CONFIG_DEBUG_INFO=y | 1574 | CONFIG_DEBUG_INFO=y |
| 1539 | # CONFIG_DEBUG_VM is not set | 1575 | # CONFIG_DEBUG_VM is not set |
| 1540 | # CONFIG_DEBUG_WRITECOUNT is not set | 1576 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1577 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1541 | # CONFIG_DEBUG_LIST is not set | 1578 | # CONFIG_DEBUG_LIST is not set |
| 1542 | # CONFIG_DEBUG_SG is not set | 1579 | # CONFIG_DEBUG_SG is not set |
| 1543 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1580 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1544 | # CONFIG_RCU_TORTURE_TEST is not set | 1581 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1545 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1582 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1546 | # CONFIG_FAULT_INJECTION is not set | 1583 | # CONFIG_FAULT_INJECTION is not set |
| 1584 | # CONFIG_LATENCYTOP is not set | ||
| 1585 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1586 | CONFIG_HAVE_FTRACE=y | ||
| 1587 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1588 | # CONFIG_FTRACE is not set | ||
| 1589 | # CONFIG_SCHED_TRACER is not set | ||
| 1590 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1547 | # CONFIG_SAMPLES is not set | 1591 | # CONFIG_SAMPLES is not set |
| 1592 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1593 | # CONFIG_KGDB is not set | ||
| 1548 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1594 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1549 | # CONFIG_DEBUG_STACK_USAGE is not set | 1595 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1550 | # CONFIG_DEBUG_PAGEALLOC is not set | 1596 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1551 | # CONFIG_DEBUGGER is not set | 1597 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1552 | # CONFIG_KGDB_CONSOLE is not set | 1598 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1599 | # CONFIG_XMON is not set | ||
| 1553 | # CONFIG_IRQSTACKS is not set | 1600 | # CONFIG_IRQSTACKS is not set |
| 1601 | CONFIG_VIRQ_DEBUG=y | ||
| 1554 | # CONFIG_BDI_SWITCH is not set | 1602 | # CONFIG_BDI_SWITCH is not set |
| 1555 | # CONFIG_PPC_EARLY_DEBUG is not set | 1603 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1556 | 1604 | ||
| @@ -1606,6 +1654,10 @@ CONFIG_CRYPTO_HMAC=y | |||
| 1606 | # CONFIG_CRYPTO_MD4 is not set | 1654 | # CONFIG_CRYPTO_MD4 is not set |
| 1607 | CONFIG_CRYPTO_MD5=y | 1655 | CONFIG_CRYPTO_MD5=y |
| 1608 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1656 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1657 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1658 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1659 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1660 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1609 | CONFIG_CRYPTO_SHA1=m | 1661 | CONFIG_CRYPTO_SHA1=m |
| 1610 | # CONFIG_CRYPTO_SHA256 is not set | 1662 | # CONFIG_CRYPTO_SHA256 is not set |
| 1611 | # CONFIG_CRYPTO_SHA512 is not set | 1663 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1638,6 +1690,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1638 | # CONFIG_CRYPTO_LZO is not set | 1690 | # CONFIG_CRYPTO_LZO is not set |
| 1639 | CONFIG_CRYPTO_HW=y | 1691 | CONFIG_CRYPTO_HW=y |
| 1640 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1692 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1641 | # CONFIG_PPC_CLOCK is not set | 1693 | # CONFIG_CRYPTO_DEV_TALITOS is not set |
| 1694 | CONFIG_PPC_CLOCK=y | ||
| 1642 | CONFIG_PPC_LIB_RHEAP=y | 1695 | CONFIG_PPC_LIB_RHEAP=y |
| 1643 | # CONFIG_VIRTUALIZATION is not set | 1696 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/mpc8610_hpcd_defconfig b/arch/powerpc/configs/mpc8610_hpcd_defconfig index cdf98ae3682b..1a9990731eb0 100644 --- a/arch/powerpc/configs/mpc8610_hpcd_defconfig +++ b/arch/powerpc/configs/mpc8610_hpcd_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.26 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Tue Jul 15 08:31:01 2008 | 4 | # Thu Aug 21 00:52:10 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 34 | CONFIG_STACKTRACE_SUPPORT=y |
| 35 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 36 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 38 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -91,7 +92,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 91 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 92 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 95 | CONFIG_KALLSYMS=y | 95 | CONFIG_KALLSYMS=y |
| 96 | # CONFIG_KALLSYMS_ALL is not set | 96 | # CONFIG_KALLSYMS_ALL is not set |
| 97 | CONFIG_KALLSYMS_EXTRA_PASS=y | 97 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -118,10 +118,16 @@ CONFIG_SLUB=y | |||
| 118 | # CONFIG_MARKERS 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 | ||
| 122 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 121 | CONFIG_HAVE_KPROBES=y | 123 | CONFIG_HAVE_KPROBES=y |
| 122 | CONFIG_HAVE_KRETPROBES=y | 124 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_DMA_ATTRS=y | 125 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 126 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 127 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 128 | # CONFIG_HAVE_CLK is not set | ||
| 124 | CONFIG_PROC_PAGE_MONITOR=y | 129 | CONFIG_PROC_PAGE_MONITOR=y |
| 130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 125 | CONFIG_SLABINFO=y | 131 | CONFIG_SLABINFO=y |
| 126 | CONFIG_RT_MUTEXES=y | 132 | CONFIG_RT_MUTEXES=y |
| 127 | # CONFIG_TINY_SHMEM is not set | 133 | # CONFIG_TINY_SHMEM is not set |
| @@ -138,6 +144,7 @@ CONFIG_BLOCK=y | |||
| 138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 144 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 139 | # CONFIG_LSF is not set | 145 | # CONFIG_LSF is not set |
| 140 | # CONFIG_BLK_DEV_BSG is not set | 146 | # CONFIG_BLK_DEV_BSG is not set |
| 147 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 141 | 148 | ||
| 142 | # | 149 | # |
| 143 | # IO Schedulers | 150 | # IO Schedulers |
| @@ -159,9 +166,8 @@ CONFIG_CLASSIC_RCU=y | |||
| 159 | CONFIG_PPC_MULTIPLATFORM=y | 166 | CONFIG_PPC_MULTIPLATFORM=y |
| 160 | CONFIG_CLASSIC32=y | 167 | CONFIG_CLASSIC32=y |
| 161 | CONFIG_PPC_CHRP=y | 168 | CONFIG_PPC_CHRP=y |
| 162 | # CONFIG_PPC_MPC512x is not set | ||
| 163 | # CONFIG_PPC_MPC5121 is not set | ||
| 164 | # CONFIG_MPC5121_ADS is not set | 169 | # CONFIG_MPC5121_ADS is not set |
| 170 | # CONFIG_MPC5121_GENERIC is not set | ||
| 165 | # CONFIG_PPC_MPC52xx is not set | 171 | # CONFIG_PPC_MPC52xx is not set |
| 166 | CONFIG_PPC_PMAC=y | 172 | CONFIG_PPC_PMAC=y |
| 167 | # CONFIG_PPC_CELL is not set | 173 | # CONFIG_PPC_CELL is not set |
| @@ -207,7 +213,7 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
| 207 | # CONFIG_HZ_300 is not set | 213 | # CONFIG_HZ_300 is not set |
| 208 | CONFIG_HZ_1000=y | 214 | CONFIG_HZ_1000=y |
| 209 | CONFIG_HZ=1000 | 215 | CONFIG_HZ=1000 |
| 210 | # CONFIG_SCHED_HRTICK is not set | 216 | CONFIG_SCHED_HRTICK=y |
| 211 | CONFIG_PREEMPT_NONE=y | 217 | CONFIG_PREEMPT_NONE=y |
| 212 | # CONFIG_PREEMPT_VOLUNTARY is not set | 218 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 213 | # CONFIG_PREEMPT is not set | 219 | # CONFIG_PREEMPT is not set |
| @@ -230,6 +236,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 230 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 236 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 231 | CONFIG_PAGEFLAGS_EXTENDED=y | 237 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 232 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 238 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 239 | CONFIG_MIGRATION=y | ||
| 233 | # CONFIG_RESOURCES_64BIT is not set | 240 | # CONFIG_RESOURCES_64BIT is not set |
| 234 | CONFIG_ZONE_DMA_FLAG=1 | 241 | CONFIG_ZONE_DMA_FLAG=1 |
| 235 | CONFIG_BOUNCE=y | 242 | CONFIG_BOUNCE=y |
| @@ -237,6 +244,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 237 | CONFIG_FORCE_MAX_ZONEORDER=12 | 244 | CONFIG_FORCE_MAX_ZONEORDER=12 |
| 238 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
| 239 | # CONFIG_CMDLINE_BOOL is not set | 246 | # CONFIG_CMDLINE_BOOL is not set |
| 247 | CONFIG_EXTRA_TARGETS="" | ||
| 240 | # CONFIG_PM is not set | 248 | # CONFIG_PM is not set |
| 241 | # CONFIG_SECCOMP is not set | 249 | # CONFIG_SECCOMP is not set |
| 242 | CONFIG_ISA_DMA_API=y | 250 | CONFIG_ISA_DMA_API=y |
| @@ -278,10 +286,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 278 | CONFIG_KERNEL_START=0xc0000000 | 286 | CONFIG_KERNEL_START=0xc0000000 |
| 279 | CONFIG_PHYSICAL_START=0x00000000 | 287 | CONFIG_PHYSICAL_START=0x00000000 |
| 280 | CONFIG_TASK_SIZE=0xc0000000 | 288 | CONFIG_TASK_SIZE=0xc0000000 |
| 281 | |||
| 282 | # | ||
| 283 | # Networking | ||
| 284 | # | ||
| 285 | CONFIG_NET=y | 289 | CONFIG_NET=y |
| 286 | 290 | ||
| 287 | # | 291 | # |
| @@ -391,6 +395,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 391 | CONFIG_STANDALONE=y | 395 | CONFIG_STANDALONE=y |
| 392 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 396 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 393 | CONFIG_FW_LOADER=y | 397 | CONFIG_FW_LOADER=y |
| 398 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 399 | CONFIG_EXTRA_FIRMWARE="" | ||
| 394 | # CONFIG_DEBUG_DRIVER is not set | 400 | # CONFIG_DEBUG_DRIVER is not set |
| 395 | # CONFIG_DEBUG_DEVRES is not set | 401 | # CONFIG_DEBUG_DEVRES is not set |
| 396 | # CONFIG_SYS_HYPERVISOR is not set | 402 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -503,18 +509,17 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 503 | # CONFIG_BLK_DEV_XIP is not set | 509 | # CONFIG_BLK_DEV_XIP is not set |
| 504 | # CONFIG_CDROM_PKTCDVD is not set | 510 | # CONFIG_CDROM_PKTCDVD is not set |
| 505 | # CONFIG_ATA_OVER_ETH is not set | 511 | # CONFIG_ATA_OVER_ETH is not set |
| 512 | # CONFIG_BLK_DEV_HD is not set | ||
| 506 | CONFIG_MISC_DEVICES=y | 513 | CONFIG_MISC_DEVICES=y |
| 507 | # CONFIG_PHANTOM is not set | 514 | # CONFIG_PHANTOM is not set |
| 508 | # CONFIG_EEPROM_93CX6 is not set | 515 | # CONFIG_EEPROM_93CX6 is not set |
| 509 | # CONFIG_SGI_IOC4 is not set | 516 | # CONFIG_SGI_IOC4 is not set |
| 510 | # CONFIG_TIFM_CORE is not set | 517 | # CONFIG_TIFM_CORE is not set |
| 511 | # CONFIG_ENCLOSURE_SERVICES is not set | 518 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 519 | # CONFIG_HP_ILO is not set | ||
| 512 | CONFIG_HAVE_IDE=y | 520 | CONFIG_HAVE_IDE=y |
| 513 | CONFIG_IDE=y | 521 | CONFIG_IDE=y |
| 514 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 515 | # CONFIG_BLK_DEV_IDE is not set | 522 | # CONFIG_BLK_DEV_IDE is not set |
| 516 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 517 | # CONFIG_BLK_DEV_HD is not set | ||
| 518 | 523 | ||
| 519 | # | 524 | # |
| 520 | # SCSI device support | 525 | # SCSI device support |
| @@ -593,6 +598,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 593 | # CONFIG_SCSI_MESH is not set | 598 | # CONFIG_SCSI_MESH is not set |
| 594 | # CONFIG_SCSI_MAC53C94 is not set | 599 | # CONFIG_SCSI_MAC53C94 is not set |
| 595 | # CONFIG_SCSI_SRP is not set | 600 | # CONFIG_SCSI_SRP is not set |
| 601 | # CONFIG_SCSI_DH is not set | ||
| 596 | CONFIG_ATA=y | 602 | CONFIG_ATA=y |
| 597 | # CONFIG_ATA_NONSTANDARD is not set | 603 | # CONFIG_ATA_NONSTANDARD is not set |
| 598 | CONFIG_SATA_PMP=y | 604 | CONFIG_SATA_PMP=y |
| @@ -669,7 +675,6 @@ CONFIG_PATA_ALI=y | |||
| 669 | # CONFIG_I2O is not set | 675 | # CONFIG_I2O is not set |
| 670 | # CONFIG_MACINTOSH_DRIVERS is not set | 676 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 671 | CONFIG_NETDEVICES=y | 677 | CONFIG_NETDEVICES=y |
| 672 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 673 | CONFIG_DUMMY=y | 678 | CONFIG_DUMMY=y |
| 674 | # CONFIG_BONDING is not set | 679 | # CONFIG_BONDING is not set |
| 675 | # CONFIG_MACVLAN is not set | 680 | # CONFIG_MACVLAN is not set |
| @@ -756,12 +761,14 @@ CONFIG_SERIO_SERPORT=y | |||
| 756 | # CONFIG_SERIO_PCIPS2 is not set | 761 | # CONFIG_SERIO_PCIPS2 is not set |
| 757 | CONFIG_SERIO_LIBPS2=y | 762 | CONFIG_SERIO_LIBPS2=y |
| 758 | # CONFIG_SERIO_RAW is not set | 763 | # CONFIG_SERIO_RAW is not set |
| 764 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 759 | # CONFIG_GAMEPORT is not set | 765 | # CONFIG_GAMEPORT is not set |
| 760 | 766 | ||
| 761 | # | 767 | # |
| 762 | # Character devices | 768 | # Character devices |
| 763 | # | 769 | # |
| 764 | CONFIG_VT=y | 770 | CONFIG_VT=y |
| 771 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 765 | CONFIG_VT_CONSOLE=y | 772 | CONFIG_VT_CONSOLE=y |
| 766 | CONFIG_HW_CONSOLE=y | 773 | CONFIG_HW_CONSOLE=y |
| 767 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 774 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -807,44 +814,69 @@ CONFIG_DEVPORT=y | |||
| 807 | CONFIG_I2C=y | 814 | CONFIG_I2C=y |
| 808 | CONFIG_I2C_BOARDINFO=y | 815 | CONFIG_I2C_BOARDINFO=y |
| 809 | # CONFIG_I2C_CHARDEV is not set | 816 | # CONFIG_I2C_CHARDEV is not set |
| 817 | CONFIG_I2C_HELPER_AUTO=y | ||
| 810 | 818 | ||
| 811 | # | 819 | # |
| 812 | # I2C Hardware Bus support | 820 | # I2C Hardware Bus support |
| 813 | # | 821 | # |
| 822 | |||
| 823 | # | ||
| 824 | # PC SMBus host controller drivers | ||
| 825 | # | ||
| 814 | # CONFIG_I2C_ALI1535 is not set | 826 | # CONFIG_I2C_ALI1535 is not set |
| 815 | # CONFIG_I2C_ALI1563 is not set | 827 | # CONFIG_I2C_ALI1563 is not set |
| 816 | # CONFIG_I2C_ALI15X3 is not set | 828 | # CONFIG_I2C_ALI15X3 is not set |
| 817 | # CONFIG_I2C_AMD756 is not set | 829 | # CONFIG_I2C_AMD756 is not set |
| 818 | # CONFIG_I2C_AMD8111 is not set | 830 | # CONFIG_I2C_AMD8111 is not set |
| 819 | # CONFIG_I2C_HYDRA is not set | ||
| 820 | # CONFIG_I2C_I801 is not set | 831 | # CONFIG_I2C_I801 is not set |
| 821 | # CONFIG_I2C_I810 is not set | 832 | # CONFIG_I2C_ISCH is not set |
| 822 | # CONFIG_I2C_PIIX4 is not set | 833 | # CONFIG_I2C_PIIX4 is not set |
| 823 | CONFIG_I2C_POWERMAC=y | ||
| 824 | CONFIG_I2C_MPC=y | ||
| 825 | # CONFIG_I2C_NFORCE2 is not set | 834 | # CONFIG_I2C_NFORCE2 is not set |
| 826 | # CONFIG_I2C_OCORES is not set | ||
| 827 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 828 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 829 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 830 | # CONFIG_I2C_SIMTEC is not set | ||
| 831 | # CONFIG_I2C_SIS5595 is not set | 835 | # CONFIG_I2C_SIS5595 is not set |
| 832 | # CONFIG_I2C_SIS630 is not set | 836 | # CONFIG_I2C_SIS630 is not set |
| 833 | # CONFIG_I2C_SIS96X is not set | 837 | # CONFIG_I2C_SIS96X is not set |
| 834 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 835 | # CONFIG_I2C_STUB is not set | ||
| 836 | # CONFIG_I2C_VIA is not set | 838 | # CONFIG_I2C_VIA is not set |
| 837 | # CONFIG_I2C_VIAPRO is not set | 839 | # CONFIG_I2C_VIAPRO is not set |
| 840 | |||
| 841 | # | ||
| 842 | # Mac SMBus host controller drivers | ||
| 843 | # | ||
| 844 | # CONFIG_I2C_HYDRA is not set | ||
| 845 | CONFIG_I2C_POWERMAC=y | ||
| 846 | |||
| 847 | # | ||
| 848 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 849 | # | ||
| 850 | CONFIG_I2C_MPC=y | ||
| 851 | # CONFIG_I2C_OCORES is not set | ||
| 852 | # CONFIG_I2C_SIMTEC is not set | ||
| 853 | |||
| 854 | # | ||
| 855 | # External I2C/SMBus adapter drivers | ||
| 856 | # | ||
| 857 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 858 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 859 | |||
| 860 | # | ||
| 861 | # Graphics adapter I2C/DDC channel drivers | ||
| 862 | # | ||
| 838 | # CONFIG_I2C_VOODOO3 is not set | 863 | # CONFIG_I2C_VOODOO3 is not set |
| 864 | |||
| 865 | # | ||
| 866 | # Other I2C/SMBus bus drivers | ||
| 867 | # | ||
| 839 | # CONFIG_I2C_PCA_PLATFORM is not set | 868 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 869 | # CONFIG_I2C_STUB is not set | ||
| 840 | 870 | ||
| 841 | # | 871 | # |
| 842 | # Miscellaneous I2C Chip support | 872 | # Miscellaneous I2C Chip support |
| 843 | # | 873 | # |
| 844 | # CONFIG_DS1682 is not set | 874 | # CONFIG_DS1682 is not set |
| 875 | # CONFIG_AT24 is not set | ||
| 845 | # CONFIG_SENSORS_EEPROM is not set | 876 | # CONFIG_SENSORS_EEPROM is not set |
| 846 | # CONFIG_SENSORS_PCF8574 is not set | 877 | # CONFIG_SENSORS_PCF8574 is not set |
| 847 | # CONFIG_PCF8575 is not set | 878 | # CONFIG_PCF8575 is not set |
| 879 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 848 | # CONFIG_SENSORS_PCF8591 is not set | 880 | # CONFIG_SENSORS_PCF8591 is not set |
| 849 | # CONFIG_SENSORS_MAX6875 is not set | 881 | # CONFIG_SENSORS_MAX6875 is not set |
| 850 | # CONFIG_SENSORS_TSL2550 is not set | 882 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -853,6 +885,8 @@ CONFIG_I2C_MPC=y | |||
| 853 | # CONFIG_I2C_DEBUG_BUS is not set | 885 | # CONFIG_I2C_DEBUG_BUS is not set |
| 854 | # CONFIG_I2C_DEBUG_CHIP is not set | 886 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 855 | # CONFIG_SPI is not set | 887 | # CONFIG_SPI is not set |
| 888 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 889 | # CONFIG_GPIOLIB is not set | ||
| 856 | # CONFIG_W1 is not set | 890 | # CONFIG_W1 is not set |
| 857 | # CONFIG_POWER_SUPPLY is not set | 891 | # CONFIG_POWER_SUPPLY is not set |
| 858 | # CONFIG_HWMON is not set | 892 | # CONFIG_HWMON is not set |
| @@ -869,8 +903,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 869 | # | 903 | # |
| 870 | # Multifunction device drivers | 904 | # Multifunction device drivers |
| 871 | # | 905 | # |
| 906 | # CONFIG_MFD_CORE is not set | ||
| 872 | # CONFIG_MFD_SM501 is not set | 907 | # CONFIG_MFD_SM501 is not set |
| 873 | # CONFIG_HTC_PASIC3 is not set | 908 | # CONFIG_HTC_PASIC3 is not set |
| 909 | # CONFIG_MFD_TMIO is not set | ||
| 874 | 910 | ||
| 875 | # | 911 | # |
| 876 | # Multimedia devices | 912 | # Multimedia devices |
| @@ -945,6 +981,7 @@ CONFIG_FB_CFB_IMAGEBLIT=y | |||
| 945 | # CONFIG_FB_TRIDENT is not set | 981 | # CONFIG_FB_TRIDENT is not set |
| 946 | # CONFIG_FB_ARK is not set | 982 | # CONFIG_FB_ARK is not set |
| 947 | # CONFIG_FB_PM3 is not set | 983 | # CONFIG_FB_PM3 is not set |
| 984 | # CONFIG_FB_CARMINE is not set | ||
| 948 | CONFIG_FB_FSL_DIU=y | 985 | CONFIG_FB_FSL_DIU=y |
| 949 | # CONFIG_FB_IBM_GXT4500 is not set | 986 | # CONFIG_FB_IBM_GXT4500 is not set |
| 950 | # CONFIG_FB_VIRTUAL is not set | 987 | # CONFIG_FB_VIRTUAL is not set |
| @@ -963,15 +1000,7 @@ CONFIG_VGA_CONSOLE=y | |||
| 963 | CONFIG_DUMMY_CONSOLE=y | 1000 | CONFIG_DUMMY_CONSOLE=y |
| 964 | # CONFIG_FRAMEBUFFER_CONSOLE is not set | 1001 | # CONFIG_FRAMEBUFFER_CONSOLE is not set |
| 965 | # CONFIG_LOGO is not set | 1002 | # CONFIG_LOGO is not set |
| 966 | |||
| 967 | # | ||
| 968 | # Sound | ||
| 969 | # | ||
| 970 | CONFIG_SOUND=y | 1003 | CONFIG_SOUND=y |
| 971 | |||
| 972 | # | ||
| 973 | # Advanced Linux Sound Architecture | ||
| 974 | # | ||
| 975 | CONFIG_SND=y | 1004 | CONFIG_SND=y |
| 976 | CONFIG_SND_TIMER=y | 1005 | CONFIG_SND_TIMER=y |
| 977 | CONFIG_SND_PCM=y | 1006 | CONFIG_SND_PCM=y |
| @@ -985,18 +1014,12 @@ CONFIG_SND_PCM_OSS_PLUGINS=y | |||
| 985 | CONFIG_SND_VERBOSE_PROCFS=y | 1014 | CONFIG_SND_VERBOSE_PROCFS=y |
| 986 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1015 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 987 | # CONFIG_SND_DEBUG is not set | 1016 | # CONFIG_SND_DEBUG is not set |
| 988 | 1017 | CONFIG_SND_DRIVERS=y | |
| 989 | # | ||
| 990 | # Generic devices | ||
| 991 | # | ||
| 992 | # CONFIG_SND_DUMMY is not set | 1018 | # CONFIG_SND_DUMMY is not set |
| 993 | # CONFIG_SND_MTPAV is not set | 1019 | # CONFIG_SND_MTPAV is not set |
| 994 | # CONFIG_SND_SERIAL_U16550 is not set | 1020 | # CONFIG_SND_SERIAL_U16550 is not set |
| 995 | # CONFIG_SND_MPU401 is not set | 1021 | # CONFIG_SND_MPU401 is not set |
| 996 | 1022 | CONFIG_SND_PCI=y | |
| 997 | # | ||
| 998 | # PCI devices | ||
| 999 | # | ||
| 1000 | # CONFIG_SND_AD1889 is not set | 1023 | # CONFIG_SND_AD1889 is not set |
| 1001 | # CONFIG_SND_ALS300 is not set | 1024 | # CONFIG_SND_ALS300 is not set |
| 1002 | # CONFIG_SND_ALS4000 is not set | 1025 | # CONFIG_SND_ALS4000 is not set |
| @@ -1058,42 +1081,14 @@ CONFIG_SND_VERBOSE_PROCFS=y | |||
| 1058 | # CONFIG_SND_VIRTUOSO is not set | 1081 | # CONFIG_SND_VIRTUOSO is not set |
| 1059 | # CONFIG_SND_VX222 is not set | 1082 | # CONFIG_SND_VX222 is not set |
| 1060 | # CONFIG_SND_YMFPCI is not set | 1083 | # CONFIG_SND_YMFPCI is not set |
| 1061 | 1084 | CONFIG_SND_PPC=y | |
| 1062 | # | ||
| 1063 | # ALSA PowerMac devices | ||
| 1064 | # | ||
| 1065 | # CONFIG_SND_POWERMAC is not set | 1085 | # CONFIG_SND_POWERMAC is not set |
| 1066 | |||
| 1067 | # | ||
| 1068 | # ALSA PowerPC devices | ||
| 1069 | # | ||
| 1070 | |||
| 1071 | # | ||
| 1072 | # Apple Onboard Audio driver | ||
| 1073 | # | ||
| 1074 | # CONFIG_SND_AOA is not set | 1086 | # CONFIG_SND_AOA is not set |
| 1075 | # CONFIG_SND_AOA_SOUNDBUS is not set | ||
| 1076 | |||
| 1077 | # | ||
| 1078 | # System on Chip audio support | ||
| 1079 | # | ||
| 1080 | CONFIG_SND_SOC=y | 1087 | CONFIG_SND_SOC=y |
| 1081 | |||
| 1082 | # | ||
| 1083 | # ALSA SoC audio for Freescale SOCs | ||
| 1084 | # | ||
| 1085 | CONFIG_SND_SOC_MPC8610=y | 1088 | CONFIG_SND_SOC_MPC8610=y |
| 1086 | CONFIG_SND_SOC_MPC8610_HPCD=y | 1089 | CONFIG_SND_SOC_MPC8610_HPCD=y |
| 1087 | |||
| 1088 | # | ||
| 1089 | # SoC Audio for the Texas Instruments OMAP | ||
| 1090 | # | ||
| 1091 | CONFIG_SND_SOC_CS4270=y | 1090 | CONFIG_SND_SOC_CS4270=y |
| 1092 | CONFIG_SND_SOC_CS4270_VD33_ERRATA=y | 1091 | CONFIG_SND_SOC_CS4270_VD33_ERRATA=y |
| 1093 | |||
| 1094 | # | ||
| 1095 | # Open Sound System | ||
| 1096 | # | ||
| 1097 | # CONFIG_SOUND_PRIME is not set | 1092 | # CONFIG_SOUND_PRIME is not set |
| 1098 | CONFIG_HID_SUPPORT=y | 1093 | CONFIG_HID_SUPPORT=y |
| 1099 | CONFIG_HID=y | 1094 | CONFIG_HID=y |
| @@ -1108,6 +1103,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1108 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1103 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1109 | 1104 | ||
| 1110 | # | 1105 | # |
| 1106 | # Enable Host or Gadget support to see Inventra options | ||
| 1107 | # | ||
| 1108 | |||
| 1109 | # | ||
| 1111 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1110 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 1112 | # | 1111 | # |
| 1113 | # CONFIG_USB_GADGET is not set | 1112 | # CONFIG_USB_GADGET is not set |
| @@ -1235,6 +1234,7 @@ CONFIG_TMPFS=y | |||
| 1235 | # CONFIG_CRAMFS is not set | 1234 | # CONFIG_CRAMFS is not set |
| 1236 | # CONFIG_VXFS_FS is not set | 1235 | # CONFIG_VXFS_FS is not set |
| 1237 | # CONFIG_MINIX_FS is not set | 1236 | # CONFIG_MINIX_FS is not set |
| 1237 | # CONFIG_OMFS_FS is not set | ||
| 1238 | # CONFIG_HPFS_FS is not set | 1238 | # CONFIG_HPFS_FS is not set |
| 1239 | # CONFIG_QNX4FS_FS is not set | 1239 | # CONFIG_QNX4FS_FS is not set |
| 1240 | # CONFIG_ROMFS_FS is not set | 1240 | # CONFIG_ROMFS_FS is not set |
| @@ -1245,16 +1245,15 @@ CONFIG_NFS_FS=y | |||
| 1245 | CONFIG_NFS_V3=y | 1245 | CONFIG_NFS_V3=y |
| 1246 | # CONFIG_NFS_V3_ACL is not set | 1246 | # CONFIG_NFS_V3_ACL is not set |
| 1247 | # CONFIG_NFS_V4 is not set | 1247 | # CONFIG_NFS_V4 is not set |
| 1248 | CONFIG_ROOT_NFS=y | ||
| 1248 | CONFIG_NFSD=y | 1249 | CONFIG_NFSD=y |
| 1249 | # CONFIG_NFSD_V3 is not set | 1250 | # CONFIG_NFSD_V3 is not set |
| 1250 | # CONFIG_NFSD_V4 is not set | 1251 | # CONFIG_NFSD_V4 is not set |
| 1251 | CONFIG_ROOT_NFS=y | ||
| 1252 | CONFIG_LOCKD=y | 1252 | CONFIG_LOCKD=y |
| 1253 | CONFIG_LOCKD_V4=y | 1253 | CONFIG_LOCKD_V4=y |
| 1254 | CONFIG_EXPORTFS=y | 1254 | CONFIG_EXPORTFS=y |
| 1255 | CONFIG_NFS_COMMON=y | 1255 | CONFIG_NFS_COMMON=y |
| 1256 | CONFIG_SUNRPC=y | 1256 | CONFIG_SUNRPC=y |
| 1257 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1258 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1257 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1259 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1258 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1260 | # CONFIG_SMB_FS is not set | 1259 | # CONFIG_SMB_FS is not set |
| @@ -1334,6 +1333,7 @@ CONFIG_BITREVERSE=y | |||
| 1334 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1333 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1335 | # CONFIG_CRC_CCITT is not set | 1334 | # CONFIG_CRC_CCITT is not set |
| 1336 | # CONFIG_CRC16 is not set | 1335 | # CONFIG_CRC16 is not set |
| 1336 | CONFIG_CRC_T10DIF=y | ||
| 1337 | # CONFIG_CRC_ITU_T is not set | 1337 | # CONFIG_CRC_ITU_T is not set |
| 1338 | CONFIG_CRC32=y | 1338 | CONFIG_CRC32=y |
| 1339 | # CONFIG_CRC7 is not set | 1339 | # CONFIG_CRC7 is not set |
| @@ -1358,6 +1358,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 1358 | CONFIG_DEBUG_KERNEL=y | 1358 | CONFIG_DEBUG_KERNEL=y |
| 1359 | CONFIG_DEBUG_SHIRQ=y | 1359 | CONFIG_DEBUG_SHIRQ=y |
| 1360 | CONFIG_DETECT_SOFTLOCKUP=y | 1360 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1361 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1362 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1361 | CONFIG_SCHED_DEBUG=y | 1363 | CONFIG_SCHED_DEBUG=y |
| 1362 | # CONFIG_SCHEDSTATS is not set | 1364 | # CONFIG_SCHEDSTATS is not set |
| 1363 | # CONFIG_TIMER_STATS is not set | 1365 | # CONFIG_TIMER_STATS is not set |
| @@ -1376,19 +1378,29 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 1376 | CONFIG_DEBUG_INFO=y | 1378 | CONFIG_DEBUG_INFO=y |
| 1377 | # CONFIG_DEBUG_VM is not set | 1379 | # CONFIG_DEBUG_VM is not set |
| 1378 | # CONFIG_DEBUG_WRITECOUNT is not set | 1380 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1381 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1379 | # CONFIG_DEBUG_LIST is not set | 1382 | # CONFIG_DEBUG_LIST is not set |
| 1380 | # CONFIG_DEBUG_SG is not set | 1383 | # CONFIG_DEBUG_SG is not set |
| 1381 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1384 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1382 | # CONFIG_RCU_TORTURE_TEST is not set | 1385 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1383 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1386 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1384 | # CONFIG_FAULT_INJECTION is not set | 1387 | # CONFIG_FAULT_INJECTION is not set |
| 1388 | # CONFIG_LATENCYTOP is not set | ||
| 1389 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1390 | CONFIG_HAVE_FTRACE=y | ||
| 1391 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1392 | # CONFIG_FTRACE is not set | ||
| 1393 | # CONFIG_SCHED_TRACER is not set | ||
| 1394 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1385 | # CONFIG_SAMPLES is not set | 1395 | # CONFIG_SAMPLES is not set |
| 1396 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1397 | # CONFIG_KGDB is not set | ||
| 1386 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1398 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1387 | # CONFIG_DEBUG_STACK_USAGE is not set | 1399 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1388 | # CONFIG_DEBUG_PAGEALLOC is not set | 1400 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1389 | # CONFIG_DEBUGGER is not set | ||
| 1390 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1401 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1391 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1402 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1403 | # CONFIG_XMON is not set | ||
| 1392 | # CONFIG_IRQSTACKS is not set | 1404 | # CONFIG_IRQSTACKS is not set |
| 1393 | # CONFIG_BDI_SWITCH is not set | 1405 | # CONFIG_BDI_SWITCH is not set |
| 1394 | # CONFIG_BOOTX_TEXT is not set | 1406 | # CONFIG_BOOTX_TEXT is not set |
| @@ -1443,6 +1455,10 @@ CONFIG_CRYPTO=y | |||
| 1443 | # CONFIG_CRYPTO_MD4 is not set | 1455 | # CONFIG_CRYPTO_MD4 is not set |
| 1444 | # CONFIG_CRYPTO_MD5 is not set | 1456 | # CONFIG_CRYPTO_MD5 is not set |
| 1445 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1457 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1458 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1459 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1460 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1461 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1446 | # CONFIG_CRYPTO_SHA1 is not set | 1462 | # CONFIG_CRYPTO_SHA1 is not set |
| 1447 | # CONFIG_CRYPTO_SHA256 is not set | 1463 | # CONFIG_CRYPTO_SHA256 is not set |
| 1448 | # CONFIG_CRYPTO_SHA512 is not set | 1464 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1475,6 +1491,7 @@ CONFIG_CRYPTO=y | |||
| 1475 | # CONFIG_CRYPTO_LZO is not set | 1491 | # CONFIG_CRYPTO_LZO is not set |
| 1476 | CONFIG_CRYPTO_HW=y | 1492 | CONFIG_CRYPTO_HW=y |
| 1477 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1493 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1494 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1478 | # CONFIG_PPC_CLOCK is not set | 1495 | # CONFIG_PPC_CLOCK is not set |
| 1479 | CONFIG_PPC_LIB_RHEAP=y | 1496 | CONFIG_PPC_LIB_RHEAP=y |
| 1480 | # CONFIG_VIRTUALIZATION is not set | 1497 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/mpc8641_hpcn_defconfig b/arch/powerpc/configs/mpc8641_hpcn_defconfig index 867b8c0215f3..ea09be31b6ea 100644 --- a/arch/powerpc/configs/mpc8641_hpcn_defconfig +++ b/arch/powerpc/configs/mpc8641_hpcn_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:15 2008 | 4 | # Thu Aug 21 00:52:11 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -33,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -92,7 +93,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 92 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 93 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 94 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 96 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
| 97 | CONFIG_KALLSYMS_ALL=y | 97 | CONFIG_KALLSYMS_ALL=y |
| 98 | CONFIG_KALLSYMS_EXTRA_PASS=y | 98 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -100,6 +100,7 @@ CONFIG_HOTPLUG=y | |||
| 100 | CONFIG_PRINTK=y | 100 | CONFIG_PRINTK=y |
| 101 | CONFIG_BUG=y | 101 | CONFIG_BUG=y |
| 102 | CONFIG_ELF_CORE=y | 102 | CONFIG_ELF_CORE=y |
| 103 | CONFIG_PCSPKR_PLATFORM=y | ||
| 103 | CONFIG_COMPAT_BRK=y | 104 | CONFIG_COMPAT_BRK=y |
| 104 | CONFIG_BASE_FULL=y | 105 | CONFIG_BASE_FULL=y |
| 105 | CONFIG_FUTEX=y | 106 | CONFIG_FUTEX=y |
| @@ -118,10 +119,16 @@ CONFIG_SLUB=y | |||
| 118 | # CONFIG_MARKERS is not set | 119 | # 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 |
| 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 123 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 121 | CONFIG_HAVE_KPROBES=y | 124 | CONFIG_HAVE_KPROBES=y |
| 122 | CONFIG_HAVE_KRETPROBES=y | 125 | CONFIG_HAVE_KRETPROBES=y |
| 126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 123 | # CONFIG_HAVE_DMA_ATTRS is not set | 127 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 128 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
| 129 | # CONFIG_HAVE_CLK is not set | ||
| 124 | CONFIG_PROC_PAGE_MONITOR=y | 130 | CONFIG_PROC_PAGE_MONITOR=y |
| 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 125 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
| 126 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
| 127 | # CONFIG_TINY_SHMEM is not set | 134 | # CONFIG_TINY_SHMEM is not set |
| @@ -139,6 +146,7 @@ CONFIG_LBD=y | |||
| 139 | # CONFIG_BLK_DEV_IO_TRACE is not set | 146 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 140 | # CONFIG_LSF is not set | 147 | # CONFIG_LSF is not set |
| 141 | # CONFIG_BLK_DEV_BSG is not set | 148 | # CONFIG_BLK_DEV_BSG is not set |
| 149 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 142 | 150 | ||
| 143 | # | 151 | # |
| 144 | # IO Schedulers | 152 | # IO Schedulers |
| @@ -157,30 +165,40 @@ CONFIG_CLASSIC_RCU=y | |||
| 157 | # | 165 | # |
| 158 | # Platform support | 166 | # Platform support |
| 159 | # | 167 | # |
| 160 | # CONFIG_PPC_MULTIPLATFORM is not set | 168 | CONFIG_PPC_MULTIPLATFORM=y |
| 161 | # CONFIG_PPC_82xx is not set | 169 | CONFIG_CLASSIC32=y |
| 162 | # CONFIG_PPC_83xx is not set | 170 | CONFIG_PPC_CHRP=y |
| 163 | CONFIG_PPC_86xx=y | 171 | # CONFIG_MPC5121_ADS is not set |
| 164 | # CONFIG_PPC_MPC512x is not set | 172 | # CONFIG_MPC5121_GENERIC is not set |
| 165 | # CONFIG_PPC_MPC5121 is not set | 173 | # CONFIG_PPC_MPC52xx is not set |
| 174 | CONFIG_PPC_PMAC=y | ||
| 166 | # CONFIG_PPC_CELL is not set | 175 | # CONFIG_PPC_CELL is not set |
| 167 | # CONFIG_PPC_CELL_NATIVE is not set | 176 | # CONFIG_PPC_CELL_NATIVE is not set |
| 177 | # CONFIG_PPC_82xx is not set | ||
| 168 | # CONFIG_PQ2ADS is not set | 178 | # CONFIG_PQ2ADS is not set |
| 179 | # CONFIG_PPC_83xx is not set | ||
| 180 | CONFIG_PPC_86xx=y | ||
| 169 | CONFIG_MPC8641_HPCN=y | 181 | CONFIG_MPC8641_HPCN=y |
| 170 | # CONFIG_SBC8641D is not set | 182 | # CONFIG_SBC8641D is not set |
| 171 | # CONFIG_MPC8610_HPCD is not set | 183 | # CONFIG_MPC8610_HPCD is not set |
| 172 | CONFIG_MPC8641=y | 184 | CONFIG_MPC8641=y |
| 185 | CONFIG_PPC_NATIVE=y | ||
| 186 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 173 | # CONFIG_IPIC is not set | 187 | # CONFIG_IPIC is not set |
| 174 | CONFIG_MPIC=y | 188 | CONFIG_MPIC=y |
| 175 | # CONFIG_MPIC_WEIRD is not set | 189 | # CONFIG_MPIC_WEIRD is not set |
| 176 | CONFIG_PPC_I8259=y | 190 | CONFIG_PPC_I8259=y |
| 177 | # CONFIG_PPC_RTAS is not set | 191 | CONFIG_PPC_RTAS=y |
| 192 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 193 | CONFIG_RTAS_PROC=y | ||
| 178 | # CONFIG_MMIO_NVRAM is not set | 194 | # CONFIG_MMIO_NVRAM is not set |
| 179 | # CONFIG_PPC_MPC106 is not set | 195 | CONFIG_PPC_MPC106=y |
| 180 | # CONFIG_PPC_970_NAP is not set | 196 | # CONFIG_PPC_970_NAP is not set |
| 181 | # CONFIG_PPC_INDIRECT_IO is not set | 197 | # CONFIG_PPC_INDIRECT_IO is not set |
| 182 | # CONFIG_GENERIC_IOMAP is not set | 198 | # CONFIG_GENERIC_IOMAP is not set |
| 183 | # CONFIG_CPU_FREQ is not set | 199 | # CONFIG_CPU_FREQ is not set |
| 200 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 201 | # CONFIG_TAU is not set | ||
| 184 | CONFIG_FSL_ULI1575=y | 202 | CONFIG_FSL_ULI1575=y |
| 185 | 203 | ||
| 186 | # | 204 | # |
| @@ -196,16 +214,18 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
| 196 | # CONFIG_HZ_300 is not set | 214 | # CONFIG_HZ_300 is not set |
| 197 | CONFIG_HZ_1000=y | 215 | CONFIG_HZ_1000=y |
| 198 | CONFIG_HZ=1000 | 216 | CONFIG_HZ=1000 |
| 199 | # CONFIG_SCHED_HRTICK is not set | 217 | CONFIG_SCHED_HRTICK=y |
| 200 | CONFIG_PREEMPT_NONE=y | 218 | CONFIG_PREEMPT_NONE=y |
| 201 | # CONFIG_PREEMPT_VOLUNTARY is not set | 219 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 202 | # CONFIG_PREEMPT is not set | 220 | # CONFIG_PREEMPT is not set |
| 203 | CONFIG_BINFMT_ELF=y | 221 | CONFIG_BINFMT_ELF=y |
| 204 | CONFIG_BINFMT_MISC=m | 222 | CONFIG_BINFMT_MISC=m |
| 205 | # CONFIG_IOMMU_HELPER is not set | 223 | # CONFIG_IOMMU_HELPER is not set |
| 224 | # CONFIG_HOTPLUG_CPU is not set | ||
| 206 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 225 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 207 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 226 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 208 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 228 | # CONFIG_KEXEC is not set | ||
| 209 | # CONFIG_IRQ_ALL_CPUS is not set | 229 | # CONFIG_IRQ_ALL_CPUS is not set |
| 210 | CONFIG_ARCH_FLATMEM_ENABLE=y | 230 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 211 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 231 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| @@ -219,6 +239,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 239 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 220 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 242 | CONFIG_MIGRATION=y | ||
| 222 | # CONFIG_RESOURCES_64BIT is not set | 243 | # CONFIG_RESOURCES_64BIT is not set |
| 223 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
| 224 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
| @@ -226,6 +247,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 226 | CONFIG_FORCE_MAX_ZONEORDER=11 | 247 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 227 | CONFIG_PROC_DEVICETREE=y | 248 | CONFIG_PROC_DEVICETREE=y |
| 228 | # CONFIG_CMDLINE_BOOL is not set | 249 | # CONFIG_CMDLINE_BOOL is not set |
| 250 | CONFIG_EXTRA_TARGETS="" | ||
| 229 | # CONFIG_PM is not set | 251 | # CONFIG_PM is not set |
| 230 | CONFIG_SECCOMP=y | 252 | CONFIG_SECCOMP=y |
| 231 | CONFIG_ISA_DMA_API=y | 253 | CONFIG_ISA_DMA_API=y |
| @@ -233,11 +255,13 @@ CONFIG_ISA_DMA_API=y | |||
| 233 | # | 255 | # |
| 234 | # Bus options | 256 | # Bus options |
| 235 | # | 257 | # |
| 258 | # CONFIG_ISA is not set | ||
| 236 | CONFIG_ZONE_DMA=y | 259 | CONFIG_ZONE_DMA=y |
| 237 | CONFIG_GENERIC_ISA_DMA=y | 260 | CONFIG_GENERIC_ISA_DMA=y |
| 238 | CONFIG_PPC_INDIRECT_PCI=y | 261 | CONFIG_PPC_INDIRECT_PCI=y |
| 239 | CONFIG_FSL_SOC=y | 262 | CONFIG_FSL_SOC=y |
| 240 | CONFIG_FSL_PCI=y | 263 | CONFIG_FSL_PCI=y |
| 264 | CONFIG_PPC_PCI_CHOICE=y | ||
| 241 | CONFIG_PCI=y | 265 | CONFIG_PCI=y |
| 242 | CONFIG_PCI_DOMAINS=y | 266 | CONFIG_PCI_DOMAINS=y |
| 243 | CONFIG_PCI_SYSCALL=y | 267 | CONFIG_PCI_SYSCALL=y |
| @@ -264,10 +288,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 264 | CONFIG_KERNEL_START=0xc0000000 | 288 | CONFIG_KERNEL_START=0xc0000000 |
| 265 | CONFIG_PHYSICAL_START=0x00000000 | 289 | CONFIG_PHYSICAL_START=0x00000000 |
| 266 | CONFIG_TASK_SIZE=0xc0000000 | 290 | CONFIG_TASK_SIZE=0xc0000000 |
| 267 | |||
| 268 | # | ||
| 269 | # Networking | ||
| 270 | # | ||
| 271 | CONFIG_NET=y | 291 | CONFIG_NET=y |
| 272 | 292 | ||
| 273 | # | 293 | # |
| @@ -393,6 +413,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 393 | CONFIG_STANDALONE=y | 413 | CONFIG_STANDALONE=y |
| 394 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 414 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 395 | CONFIG_FW_LOADER=y | 415 | CONFIG_FW_LOADER=y |
| 416 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 417 | CONFIG_EXTRA_FIRMWARE="" | ||
| 396 | # CONFIG_DEBUG_DRIVER is not set | 418 | # CONFIG_DEBUG_DRIVER is not set |
| 397 | # CONFIG_DEBUG_DEVRES is not set | 419 | # CONFIG_DEBUG_DEVRES is not set |
| 398 | # CONFIG_SYS_HYPERVISOR is not set | 420 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -403,6 +425,7 @@ CONFIG_OF_I2C=y | |||
| 403 | # CONFIG_PARPORT is not set | 425 | # CONFIG_PARPORT is not set |
| 404 | CONFIG_BLK_DEV=y | 426 | CONFIG_BLK_DEV=y |
| 405 | # CONFIG_BLK_DEV_FD is not set | 427 | # CONFIG_BLK_DEV_FD is not set |
| 428 | # CONFIG_MAC_FLOPPY is not set | ||
| 406 | # CONFIG_BLK_CPQ_DA is not set | 429 | # CONFIG_BLK_CPQ_DA is not set |
| 407 | # CONFIG_BLK_CPQ_CISS_DA is not set | 430 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 408 | # CONFIG_BLK_DEV_DAC960 is not set | 431 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -419,12 +442,14 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 419 | # CONFIG_BLK_DEV_XIP is not set | 442 | # CONFIG_BLK_DEV_XIP is not set |
| 420 | # CONFIG_CDROM_PKTCDVD is not set | 443 | # CONFIG_CDROM_PKTCDVD is not set |
| 421 | # CONFIG_ATA_OVER_ETH is not set | 444 | # CONFIG_ATA_OVER_ETH is not set |
| 445 | # CONFIG_BLK_DEV_HD is not set | ||
| 422 | CONFIG_MISC_DEVICES=y | 446 | CONFIG_MISC_DEVICES=y |
| 423 | # CONFIG_PHANTOM is not set | 447 | # CONFIG_PHANTOM is not set |
| 424 | # CONFIG_EEPROM_93CX6 is not set | 448 | # CONFIG_EEPROM_93CX6 is not set |
| 425 | # CONFIG_SGI_IOC4 is not set | 449 | # CONFIG_SGI_IOC4 is not set |
| 426 | # CONFIG_TIFM_CORE is not set | 450 | # CONFIG_TIFM_CORE is not set |
| 427 | # CONFIG_ENCLOSURE_SERVICES is not set | 451 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 452 | # CONFIG_HP_ILO is not set | ||
| 428 | CONFIG_HAVE_IDE=y | 453 | CONFIG_HAVE_IDE=y |
| 429 | # CONFIG_IDE is not set | 454 | # CONFIG_IDE is not set |
| 430 | 455 | ||
| @@ -503,7 +528,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 503 | # CONFIG_SCSI_DC390T is not set | 528 | # CONFIG_SCSI_DC390T is not set |
| 504 | # CONFIG_SCSI_NSP32 is not set | 529 | # CONFIG_SCSI_NSP32 is not set |
| 505 | # CONFIG_SCSI_DEBUG is not set | 530 | # CONFIG_SCSI_DEBUG is not set |
| 531 | # CONFIG_SCSI_MESH is not set | ||
| 532 | # CONFIG_SCSI_MAC53C94 is not set | ||
| 506 | # CONFIG_SCSI_SRP is not set | 533 | # CONFIG_SCSI_SRP is not set |
| 534 | # CONFIG_SCSI_DH is not set | ||
| 507 | CONFIG_ATA=y | 535 | CONFIG_ATA=y |
| 508 | # CONFIG_ATA_NONSTANDARD is not set | 536 | # CONFIG_ATA_NONSTANDARD is not set |
| 509 | CONFIG_SATA_PMP=y | 537 | CONFIG_SATA_PMP=y |
| @@ -571,12 +599,15 @@ CONFIG_PATA_ALI=y | |||
| 571 | # | 599 | # |
| 572 | # IEEE 1394 (FireWire) support | 600 | # IEEE 1394 (FireWire) support |
| 573 | # | 601 | # |
| 602 | |||
| 603 | # | ||
| 604 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 605 | # | ||
| 574 | # CONFIG_FIREWIRE is not set | 606 | # CONFIG_FIREWIRE is not set |
| 575 | # CONFIG_IEEE1394 is not set | 607 | # CONFIG_IEEE1394 is not set |
| 576 | # CONFIG_I2O is not set | 608 | # CONFIG_I2O is not set |
| 577 | # CONFIG_MACINTOSH_DRIVERS is not set | 609 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 578 | CONFIG_NETDEVICES=y | 610 | CONFIG_NETDEVICES=y |
| 579 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 580 | CONFIG_DUMMY=y | 611 | CONFIG_DUMMY=y |
| 581 | # CONFIG_BONDING is not set | 612 | # CONFIG_BONDING is not set |
| 582 | # CONFIG_MACVLAN is not set | 613 | # CONFIG_MACVLAN is not set |
| @@ -603,6 +634,8 @@ CONFIG_VITESSE_PHY=y | |||
| 603 | # CONFIG_MDIO_BITBANG is not set | 634 | # CONFIG_MDIO_BITBANG is not set |
| 604 | CONFIG_NET_ETHERNET=y | 635 | CONFIG_NET_ETHERNET=y |
| 605 | CONFIG_MII=y | 636 | CONFIG_MII=y |
| 637 | # CONFIG_MACE is not set | ||
| 638 | # CONFIG_BMAC is not set | ||
| 606 | # CONFIG_HAPPYMEAL is not set | 639 | # CONFIG_HAPPYMEAL is not set |
| 607 | # CONFIG_SUNGEM is not set | 640 | # CONFIG_SUNGEM is not set |
| 608 | # CONFIG_CASSINI is not set | 641 | # CONFIG_CASSINI is not set |
| @@ -620,7 +653,6 @@ CONFIG_NETDEV_1000=y | |||
| 620 | # CONFIG_DL2K is not set | 653 | # CONFIG_DL2K is not set |
| 621 | # CONFIG_E1000 is not set | 654 | # CONFIG_E1000 is not set |
| 622 | # CONFIG_E1000E is not set | 655 | # CONFIG_E1000E is not set |
| 623 | # CONFIG_E1000E_ENABLED is not set | ||
| 624 | # CONFIG_IP1000 is not set | 656 | # CONFIG_IP1000 is not set |
| 625 | # CONFIG_IGB is not set | 657 | # CONFIG_IGB is not set |
| 626 | # CONFIG_NS83820 is not set | 658 | # CONFIG_NS83820 is not set |
| @@ -634,9 +666,10 @@ CONFIG_NETDEV_1000=y | |||
| 634 | # CONFIG_TIGON3 is not set | 666 | # CONFIG_TIGON3 is not set |
| 635 | # CONFIG_BNX2 is not set | 667 | # CONFIG_BNX2 is not set |
| 636 | CONFIG_GIANFAR=y | 668 | CONFIG_GIANFAR=y |
| 637 | CONFIG_GFAR_NAPI=y | 669 | # CONFIG_MV643XX_ETH is not set |
| 638 | # CONFIG_QLA3XXX is not set | 670 | # CONFIG_QLA3XXX is not set |
| 639 | # CONFIG_ATL1 is not set | 671 | # CONFIG_ATL1 is not set |
| 672 | # CONFIG_ATL1E is not set | ||
| 640 | CONFIG_NETDEV_10000=y | 673 | CONFIG_NETDEV_10000=y |
| 641 | # CONFIG_CHELSIO_T1 is not set | 674 | # CONFIG_CHELSIO_T1 is not set |
| 642 | # CONFIG_CHELSIO_T3 is not set | 675 | # CONFIG_CHELSIO_T3 is not set |
| @@ -713,12 +746,14 @@ CONFIG_SERIO_SERPORT=y | |||
| 713 | # CONFIG_SERIO_PCIPS2 is not set | 746 | # CONFIG_SERIO_PCIPS2 is not set |
| 714 | CONFIG_SERIO_LIBPS2=y | 747 | CONFIG_SERIO_LIBPS2=y |
| 715 | # CONFIG_SERIO_RAW is not set | 748 | # CONFIG_SERIO_RAW is not set |
| 749 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 716 | # CONFIG_GAMEPORT is not set | 750 | # CONFIG_GAMEPORT is not set |
| 717 | 751 | ||
| 718 | # | 752 | # |
| 719 | # Character devices | 753 | # Character devices |
| 720 | # | 754 | # |
| 721 | CONFIG_VT=y | 755 | CONFIG_VT=y |
| 756 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 722 | CONFIG_VT_CONSOLE=y | 757 | CONFIG_VT_CONSOLE=y |
| 723 | CONFIG_HW_CONSOLE=y | 758 | CONFIG_HW_CONSOLE=y |
| 724 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 759 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -746,11 +781,14 @@ CONFIG_SERIAL_8250_RSA=y | |||
| 746 | # CONFIG_SERIAL_UARTLITE is not set | 781 | # CONFIG_SERIAL_UARTLITE is not set |
| 747 | CONFIG_SERIAL_CORE=y | 782 | CONFIG_SERIAL_CORE=y |
| 748 | CONFIG_SERIAL_CORE_CONSOLE=y | 783 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 784 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 749 | # CONFIG_SERIAL_JSM is not set | 785 | # CONFIG_SERIAL_JSM is not set |
| 750 | # CONFIG_SERIAL_OF_PLATFORM is not set | 786 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 751 | CONFIG_UNIX98_PTYS=y | 787 | CONFIG_UNIX98_PTYS=y |
| 752 | CONFIG_LEGACY_PTYS=y | 788 | CONFIG_LEGACY_PTYS=y |
| 753 | CONFIG_LEGACY_PTY_COUNT=256 | 789 | CONFIG_LEGACY_PTY_COUNT=256 |
| 790 | # CONFIG_BRIQ_PANEL is not set | ||
| 791 | # CONFIG_HVC_RTAS is not set | ||
| 754 | # CONFIG_IPMI_HANDLER is not set | 792 | # CONFIG_IPMI_HANDLER is not set |
| 755 | # CONFIG_HW_RANDOM is not set | 793 | # CONFIG_HW_RANDOM is not set |
| 756 | CONFIG_NVRAM=y | 794 | CONFIG_NVRAM=y |
| @@ -762,43 +800,70 @@ CONFIG_DEVPORT=y | |||
| 762 | CONFIG_I2C=y | 800 | CONFIG_I2C=y |
| 763 | CONFIG_I2C_BOARDINFO=y | 801 | CONFIG_I2C_BOARDINFO=y |
| 764 | # CONFIG_I2C_CHARDEV is not set | 802 | # CONFIG_I2C_CHARDEV is not set |
| 803 | CONFIG_I2C_HELPER_AUTO=y | ||
| 765 | 804 | ||
| 766 | # | 805 | # |
| 767 | # I2C Hardware Bus support | 806 | # I2C Hardware Bus support |
| 768 | # | 807 | # |
| 808 | |||
| 809 | # | ||
| 810 | # PC SMBus host controller drivers | ||
| 811 | # | ||
| 769 | # CONFIG_I2C_ALI1535 is not set | 812 | # CONFIG_I2C_ALI1535 is not set |
| 770 | # CONFIG_I2C_ALI1563 is not set | 813 | # CONFIG_I2C_ALI1563 is not set |
| 771 | # CONFIG_I2C_ALI15X3 is not set | 814 | # CONFIG_I2C_ALI15X3 is not set |
| 772 | # CONFIG_I2C_AMD756 is not set | 815 | # CONFIG_I2C_AMD756 is not set |
| 773 | # CONFIG_I2C_AMD8111 is not set | 816 | # CONFIG_I2C_AMD8111 is not set |
| 774 | # CONFIG_I2C_I801 is not set | 817 | # CONFIG_I2C_I801 is not set |
| 775 | # CONFIG_I2C_I810 is not set | 818 | # CONFIG_I2C_ISCH is not set |
| 776 | # CONFIG_I2C_PIIX4 is not set | 819 | # CONFIG_I2C_PIIX4 is not set |
| 777 | CONFIG_I2C_MPC=y | ||
| 778 | # CONFIG_I2C_NFORCE2 is not set | 820 | # CONFIG_I2C_NFORCE2 is not set |
| 779 | # CONFIG_I2C_OCORES is not set | ||
| 780 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 781 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 782 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 783 | # CONFIG_I2C_SIMTEC is not set | ||
| 784 | # CONFIG_I2C_SIS5595 is not set | 821 | # CONFIG_I2C_SIS5595 is not set |
| 785 | # CONFIG_I2C_SIS630 is not set | 822 | # CONFIG_I2C_SIS630 is not set |
| 786 | # CONFIG_I2C_SIS96X is not set | 823 | # CONFIG_I2C_SIS96X is not set |
| 787 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 788 | # CONFIG_I2C_STUB is not set | ||
| 789 | # CONFIG_I2C_TINY_USB is not set | ||
| 790 | # CONFIG_I2C_VIA is not set | 824 | # CONFIG_I2C_VIA is not set |
| 791 | # CONFIG_I2C_VIAPRO is not set | 825 | # CONFIG_I2C_VIAPRO is not set |
| 826 | |||
| 827 | # | ||
| 828 | # Mac SMBus host controller drivers | ||
| 829 | # | ||
| 830 | # CONFIG_I2C_HYDRA is not set | ||
| 831 | CONFIG_I2C_POWERMAC=y | ||
| 832 | |||
| 833 | # | ||
| 834 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 835 | # | ||
| 836 | CONFIG_I2C_MPC=y | ||
| 837 | # CONFIG_I2C_OCORES is not set | ||
| 838 | # CONFIG_I2C_SIMTEC is not set | ||
| 839 | |||
| 840 | # | ||
| 841 | # External I2C/SMBus adapter drivers | ||
| 842 | # | ||
| 843 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 844 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 845 | # CONFIG_I2C_TINY_USB is not set | ||
| 846 | |||
| 847 | # | ||
| 848 | # Graphics adapter I2C/DDC channel drivers | ||
| 849 | # | ||
| 792 | # CONFIG_I2C_VOODOO3 is not set | 850 | # CONFIG_I2C_VOODOO3 is not set |
| 851 | |||
| 852 | # | ||
| 853 | # Other I2C/SMBus bus drivers | ||
| 854 | # | ||
| 793 | # CONFIG_I2C_PCA_PLATFORM is not set | 855 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 856 | # CONFIG_I2C_STUB is not set | ||
| 794 | 857 | ||
| 795 | # | 858 | # |
| 796 | # Miscellaneous I2C Chip support | 859 | # Miscellaneous I2C Chip support |
| 797 | # | 860 | # |
| 798 | # CONFIG_DS1682 is not set | 861 | # CONFIG_DS1682 is not set |
| 862 | # CONFIG_AT24 is not set | ||
| 799 | CONFIG_SENSORS_EEPROM=y | 863 | CONFIG_SENSORS_EEPROM=y |
| 800 | # CONFIG_SENSORS_PCF8574 is not set | 864 | # CONFIG_SENSORS_PCF8574 is not set |
| 801 | # CONFIG_PCF8575 is not set | 865 | # CONFIG_PCF8575 is not set |
| 866 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 802 | # CONFIG_SENSORS_PCF8591 is not set | 867 | # CONFIG_SENSORS_PCF8591 is not set |
| 803 | # CONFIG_SENSORS_MAX6875 is not set | 868 | # CONFIG_SENSORS_MAX6875 is not set |
| 804 | # CONFIG_SENSORS_TSL2550 is not set | 869 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -807,10 +872,13 @@ CONFIG_SENSORS_EEPROM=y | |||
| 807 | # CONFIG_I2C_DEBUG_BUS is not set | 872 | # CONFIG_I2C_DEBUG_BUS is not set |
| 808 | # CONFIG_I2C_DEBUG_CHIP is not set | 873 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 809 | # CONFIG_SPI is not set | 874 | # CONFIG_SPI is not set |
| 875 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 876 | # CONFIG_GPIOLIB is not set | ||
| 810 | # CONFIG_W1 is not set | 877 | # CONFIG_W1 is not set |
| 811 | # CONFIG_POWER_SUPPLY is not set | 878 | # CONFIG_POWER_SUPPLY is not set |
| 812 | # CONFIG_HWMON is not set | 879 | # CONFIG_HWMON is not set |
| 813 | # CONFIG_THERMAL is not set | 880 | # CONFIG_THERMAL is not set |
| 881 | # CONFIG_THERMAL_HWMON is not set | ||
| 814 | # CONFIG_WATCHDOG is not set | 882 | # CONFIG_WATCHDOG is not set |
| 815 | 883 | ||
| 816 | # | 884 | # |
| @@ -822,8 +890,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 822 | # | 890 | # |
| 823 | # Multifunction device drivers | 891 | # Multifunction device drivers |
| 824 | # | 892 | # |
| 893 | # CONFIG_MFD_CORE is not set | ||
| 825 | # CONFIG_MFD_SM501 is not set | 894 | # CONFIG_MFD_SM501 is not set |
| 826 | # CONFIG_HTC_PASIC3 is not set | 895 | # CONFIG_HTC_PASIC3 is not set |
| 896 | # CONFIG_MFD_TMIO is not set | ||
| 827 | 897 | ||
| 828 | # | 898 | # |
| 829 | # Multimedia devices | 899 | # Multimedia devices |
| @@ -865,6 +935,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 865 | # CONFIG_DVB_TTUSB_BUDGET is not set | 935 | # CONFIG_DVB_TTUSB_BUDGET is not set |
| 866 | # CONFIG_DVB_TTUSB_DEC is not set | 936 | # CONFIG_DVB_TTUSB_DEC is not set |
| 867 | # CONFIG_DVB_CINERGYT2 is not set | 937 | # CONFIG_DVB_CINERGYT2 is not set |
| 938 | # CONFIG_DVB_SIANO_SMS1XXX is not set | ||
| 868 | 939 | ||
| 869 | # | 940 | # |
| 870 | # Supported FlexCopII (B2C2) Adapters | 941 | # Supported FlexCopII (B2C2) Adapters |
| @@ -911,6 +982,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 911 | # CONFIG_DVB_SP887X is not set | 982 | # CONFIG_DVB_SP887X is not set |
| 912 | # CONFIG_DVB_CX22700 is not set | 983 | # CONFIG_DVB_CX22700 is not set |
| 913 | # CONFIG_DVB_CX22702 is not set | 984 | # CONFIG_DVB_CX22702 is not set |
| 985 | # CONFIG_DVB_DRX397XD is not set | ||
| 914 | # CONFIG_DVB_L64781 is not set | 986 | # CONFIG_DVB_L64781 is not set |
| 915 | # CONFIG_DVB_TDA1004X is not set | 987 | # CONFIG_DVB_TDA1004X is not set |
| 916 | # CONFIG_DVB_NXT6000 is not set | 988 | # CONFIG_DVB_NXT6000 is not set |
| @@ -978,15 +1050,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 978 | CONFIG_VGA_CONSOLE=y | 1050 | CONFIG_VGA_CONSOLE=y |
| 979 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | 1051 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set |
| 980 | CONFIG_DUMMY_CONSOLE=y | 1052 | CONFIG_DUMMY_CONSOLE=y |
| 981 | |||
| 982 | # | ||
| 983 | # Sound | ||
| 984 | # | ||
| 985 | CONFIG_SOUND=y | 1053 | CONFIG_SOUND=y |
| 986 | |||
| 987 | # | ||
| 988 | # Advanced Linux Sound Architecture | ||
| 989 | # | ||
| 990 | CONFIG_SND=y | 1054 | CONFIG_SND=y |
| 991 | CONFIG_SND_TIMER=y | 1055 | CONFIG_SND_TIMER=y |
| 992 | CONFIG_SND_PCM=y | 1056 | CONFIG_SND_PCM=y |
| @@ -1000,19 +1064,15 @@ CONFIG_SND_PCM_OSS_PLUGINS=y | |||
| 1000 | CONFIG_SND_VERBOSE_PROCFS=y | 1064 | CONFIG_SND_VERBOSE_PROCFS=y |
| 1001 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1065 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 1002 | # CONFIG_SND_DEBUG is not set | 1066 | # CONFIG_SND_DEBUG is not set |
| 1003 | 1067 | CONFIG_SND_VMASTER=y | |
| 1004 | # | ||
| 1005 | # Generic devices | ||
| 1006 | # | ||
| 1007 | CONFIG_SND_AC97_CODEC=y | 1068 | CONFIG_SND_AC97_CODEC=y |
| 1069 | CONFIG_SND_DRIVERS=y | ||
| 1008 | # CONFIG_SND_DUMMY is not set | 1070 | # CONFIG_SND_DUMMY is not set |
| 1009 | # CONFIG_SND_MTPAV is not set | 1071 | # CONFIG_SND_MTPAV is not set |
| 1010 | # CONFIG_SND_SERIAL_U16550 is not set | 1072 | # CONFIG_SND_SERIAL_U16550 is not set |
| 1011 | # CONFIG_SND_MPU401 is not set | 1073 | # CONFIG_SND_MPU401 is not set |
| 1012 | 1074 | # CONFIG_SND_AC97_POWER_SAVE is not set | |
| 1013 | # | 1075 | CONFIG_SND_PCI=y |
| 1014 | # PCI devices | ||
| 1015 | # | ||
| 1016 | # CONFIG_SND_AD1889 is not set | 1076 | # CONFIG_SND_AD1889 is not set |
| 1017 | # CONFIG_SND_ALS300 is not set | 1077 | # CONFIG_SND_ALS300 is not set |
| 1018 | # CONFIG_SND_ALS4000 is not set | 1078 | # CONFIG_SND_ALS4000 is not set |
| @@ -1074,39 +1134,14 @@ CONFIG_SND_INTEL8X0=y | |||
| 1074 | # CONFIG_SND_VIRTUOSO is not set | 1134 | # CONFIG_SND_VIRTUOSO is not set |
| 1075 | # CONFIG_SND_VX222 is not set | 1135 | # CONFIG_SND_VX222 is not set |
| 1076 | # CONFIG_SND_YMFPCI is not set | 1136 | # CONFIG_SND_YMFPCI is not set |
| 1077 | # CONFIG_SND_AC97_POWER_SAVE is not set | 1137 | CONFIG_SND_PPC=y |
| 1078 | 1138 | # CONFIG_SND_POWERMAC is not set | |
| 1079 | # | 1139 | # CONFIG_SND_AOA is not set |
| 1080 | # ALSA PowerMac devices | 1140 | CONFIG_SND_USB=y |
| 1081 | # | ||
| 1082 | |||
| 1083 | # | ||
| 1084 | # ALSA PowerPC devices | ||
| 1085 | # | ||
| 1086 | |||
| 1087 | # | ||
| 1088 | # USB devices | ||
| 1089 | # | ||
| 1090 | # CONFIG_SND_USB_AUDIO is not set | 1141 | # CONFIG_SND_USB_AUDIO is not set |
| 1091 | # CONFIG_SND_USB_USX2Y is not set | 1142 | # CONFIG_SND_USB_USX2Y is not set |
| 1092 | # CONFIG_SND_USB_CAIAQ is not set | 1143 | # CONFIG_SND_USB_CAIAQ is not set |
| 1093 | |||
| 1094 | # | ||
| 1095 | # System on Chip audio support | ||
| 1096 | # | ||
| 1097 | # CONFIG_SND_SOC is not set | 1144 | # CONFIG_SND_SOC is not set |
| 1098 | |||
| 1099 | # | ||
| 1100 | # ALSA SoC audio for Freescale SOCs | ||
| 1101 | # | ||
| 1102 | |||
| 1103 | # | ||
| 1104 | # SoC Audio for the Texas Instruments OMAP | ||
| 1105 | # | ||
| 1106 | |||
| 1107 | # | ||
| 1108 | # Open Sound System | ||
| 1109 | # | ||
| 1110 | # CONFIG_SOUND_PRIME is not set | 1145 | # CONFIG_SOUND_PRIME is not set |
| 1111 | CONFIG_AC97_BUS=y | 1146 | CONFIG_AC97_BUS=y |
| 1112 | CONFIG_HID_SUPPORT=y | 1147 | CONFIG_HID_SUPPORT=y |
| @@ -1138,6 +1173,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 1138 | # CONFIG_USB_OTG is not set | 1173 | # CONFIG_USB_OTG is not set |
| 1139 | # CONFIG_USB_OTG_WHITELIST is not set | 1174 | # CONFIG_USB_OTG_WHITELIST is not set |
| 1140 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1175 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1176 | CONFIG_USB_MON=y | ||
| 1141 | 1177 | ||
| 1142 | # | 1178 | # |
| 1143 | # USB Host Controller Drivers | 1179 | # USB Host Controller Drivers |
| @@ -1189,6 +1225,7 @@ CONFIG_USB_STORAGE=y | |||
| 1189 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1225 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1190 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1226 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1191 | # CONFIG_USB_STORAGE_KARMA is not set | 1227 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1228 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1192 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1229 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1193 | # CONFIG_USB_LIBUSUAL is not set | 1230 | # CONFIG_USB_LIBUSUAL is not set |
| 1194 | 1231 | ||
| @@ -1197,7 +1234,6 @@ CONFIG_USB_STORAGE=y | |||
| 1197 | # | 1234 | # |
| 1198 | # CONFIG_USB_MDC800 is not set | 1235 | # CONFIG_USB_MDC800 is not set |
| 1199 | # CONFIG_USB_MICROTEK is not set | 1236 | # CONFIG_USB_MICROTEK is not set |
| 1200 | CONFIG_USB_MON=y | ||
| 1201 | 1237 | ||
| 1202 | # | 1238 | # |
| 1203 | # USB port drivers | 1239 | # USB port drivers |
| @@ -1210,7 +1246,6 @@ CONFIG_USB_MON=y | |||
| 1210 | # CONFIG_USB_EMI62 is not set | 1246 | # CONFIG_USB_EMI62 is not set |
| 1211 | # CONFIG_USB_EMI26 is not set | 1247 | # CONFIG_USB_EMI26 is not set |
| 1212 | # CONFIG_USB_ADUTUX is not set | 1248 | # CONFIG_USB_ADUTUX is not set |
| 1213 | # CONFIG_USB_AUERSWALD is not set | ||
| 1214 | # CONFIG_USB_RIO500 is not set | 1249 | # CONFIG_USB_RIO500 is not set |
| 1215 | # CONFIG_USB_LEGOTOWER is not set | 1250 | # CONFIG_USB_LEGOTOWER is not set |
| 1216 | # CONFIG_USB_LCD is not set | 1251 | # CONFIG_USB_LCD is not set |
| @@ -1264,6 +1299,7 @@ CONFIG_RTC_INTF_DEV=y | |||
| 1264 | # CONFIG_RTC_DRV_PCF8583 is not set | 1299 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 1265 | # CONFIG_RTC_DRV_M41T80 is not set | 1300 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1266 | # CONFIG_RTC_DRV_S35390A is not set | 1301 | # CONFIG_RTC_DRV_S35390A is not set |
| 1302 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1267 | 1303 | ||
| 1268 | # | 1304 | # |
| 1269 | # SPI RTC drivers | 1305 | # SPI RTC drivers |
| @@ -1362,6 +1398,7 @@ CONFIG_EFS_FS=m | |||
| 1362 | CONFIG_CRAMFS=y | 1398 | CONFIG_CRAMFS=y |
| 1363 | CONFIG_VXFS_FS=m | 1399 | CONFIG_VXFS_FS=m |
| 1364 | # CONFIG_MINIX_FS is not set | 1400 | # CONFIG_MINIX_FS is not set |
| 1401 | # CONFIG_OMFS_FS is not set | ||
| 1365 | CONFIG_HPFS_FS=m | 1402 | CONFIG_HPFS_FS=m |
| 1366 | CONFIG_QNX4FS_FS=m | 1403 | CONFIG_QNX4FS_FS=m |
| 1367 | # CONFIG_ROMFS_FS is not set | 1404 | # CONFIG_ROMFS_FS is not set |
| @@ -1374,17 +1411,16 @@ CONFIG_NFS_FS=y | |||
| 1374 | CONFIG_NFS_V3=y | 1411 | CONFIG_NFS_V3=y |
| 1375 | # CONFIG_NFS_V3_ACL is not set | 1412 | # CONFIG_NFS_V3_ACL is not set |
| 1376 | CONFIG_NFS_V4=y | 1413 | CONFIG_NFS_V4=y |
| 1414 | CONFIG_ROOT_NFS=y | ||
| 1377 | CONFIG_NFSD=y | 1415 | CONFIG_NFSD=y |
| 1378 | # CONFIG_NFSD_V3 is not set | 1416 | # CONFIG_NFSD_V3 is not set |
| 1379 | # CONFIG_NFSD_V4 is not set | 1417 | # CONFIG_NFSD_V4 is not set |
| 1380 | CONFIG_ROOT_NFS=y | ||
| 1381 | CONFIG_LOCKD=y | 1418 | CONFIG_LOCKD=y |
| 1382 | CONFIG_LOCKD_V4=y | 1419 | CONFIG_LOCKD_V4=y |
| 1383 | CONFIG_EXPORTFS=y | 1420 | CONFIG_EXPORTFS=y |
| 1384 | CONFIG_NFS_COMMON=y | 1421 | CONFIG_NFS_COMMON=y |
| 1385 | CONFIG_SUNRPC=y | 1422 | CONFIG_SUNRPC=y |
| 1386 | CONFIG_SUNRPC_GSS=y | 1423 | CONFIG_SUNRPC_GSS=y |
| 1387 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1388 | CONFIG_RPCSEC_GSS_KRB5=y | 1424 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1389 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1425 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1390 | # CONFIG_SMB_FS is not set | 1426 | # CONFIG_SMB_FS is not set |
| @@ -1463,6 +1499,7 @@ CONFIG_BITREVERSE=y | |||
| 1463 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1499 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1464 | # CONFIG_CRC_CCITT is not set | 1500 | # CONFIG_CRC_CCITT is not set |
| 1465 | # CONFIG_CRC16 is not set | 1501 | # CONFIG_CRC16 is not set |
| 1502 | CONFIG_CRC_T10DIF=y | ||
| 1466 | CONFIG_CRC_ITU_T=m | 1503 | CONFIG_CRC_ITU_T=m |
| 1467 | CONFIG_CRC32=y | 1504 | CONFIG_CRC32=y |
| 1468 | # CONFIG_CRC7 is not set | 1505 | # CONFIG_CRC7 is not set |
| @@ -1488,6 +1525,8 @@ CONFIG_FRAME_WARN=1024 | |||
| 1488 | CONFIG_DEBUG_KERNEL=y | 1525 | CONFIG_DEBUG_KERNEL=y |
| 1489 | # CONFIG_DEBUG_SHIRQ is not set | 1526 | # CONFIG_DEBUG_SHIRQ is not set |
| 1490 | CONFIG_DETECT_SOFTLOCKUP=y | 1527 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1528 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1529 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1491 | CONFIG_SCHED_DEBUG=y | 1530 | CONFIG_SCHED_DEBUG=y |
| 1492 | # CONFIG_SCHEDSTATS is not set | 1531 | # CONFIG_SCHEDSTATS is not set |
| 1493 | # CONFIG_TIMER_STATS is not set | 1532 | # CONFIG_TIMER_STATS is not set |
| @@ -1506,19 +1545,32 @@ CONFIG_SCHED_DEBUG=y | |||
| 1506 | CONFIG_DEBUG_INFO=y | 1545 | CONFIG_DEBUG_INFO=y |
| 1507 | # CONFIG_DEBUG_VM is not set | 1546 | # CONFIG_DEBUG_VM is not set |
| 1508 | # CONFIG_DEBUG_WRITECOUNT is not set | 1547 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1548 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1509 | # CONFIG_DEBUG_LIST is not set | 1549 | # CONFIG_DEBUG_LIST is not set |
| 1510 | # CONFIG_DEBUG_SG is not set | 1550 | # CONFIG_DEBUG_SG is not set |
| 1511 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1551 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1512 | # CONFIG_RCU_TORTURE_TEST is not set | 1552 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1513 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1553 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1514 | # CONFIG_FAULT_INJECTION is not set | 1554 | # CONFIG_FAULT_INJECTION is not set |
| 1555 | # CONFIG_LATENCYTOP is not set | ||
| 1556 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1557 | CONFIG_HAVE_FTRACE=y | ||
| 1558 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1559 | # CONFIG_FTRACE is not set | ||
| 1560 | # CONFIG_SCHED_TRACER is not set | ||
| 1561 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1515 | # CONFIG_SAMPLES is not set | 1562 | # CONFIG_SAMPLES is not set |
| 1563 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1564 | # CONFIG_KGDB is not set | ||
| 1516 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1565 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1517 | # CONFIG_DEBUG_STACK_USAGE is not set | 1566 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1518 | # CONFIG_DEBUG_PAGEALLOC is not set | 1567 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1519 | # CONFIG_DEBUGGER is not set | 1568 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1569 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1570 | # CONFIG_XMON is not set | ||
| 1520 | # CONFIG_IRQSTACKS is not set | 1571 | # CONFIG_IRQSTACKS is not set |
| 1521 | # CONFIG_BDI_SWITCH is not set | 1572 | # CONFIG_BDI_SWITCH is not set |
| 1573 | # CONFIG_BOOTX_TEXT is not set | ||
| 1522 | # CONFIG_PPC_EARLY_DEBUG is not set | 1574 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1523 | 1575 | ||
| 1524 | # | 1576 | # |
| @@ -1573,6 +1625,10 @@ CONFIG_CRYPTO_HMAC=y | |||
| 1573 | # CONFIG_CRYPTO_MD4 is not set | 1625 | # CONFIG_CRYPTO_MD4 is not set |
| 1574 | CONFIG_CRYPTO_MD5=y | 1626 | CONFIG_CRYPTO_MD5=y |
| 1575 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1627 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1628 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1629 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1630 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1631 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1576 | CONFIG_CRYPTO_SHA1=m | 1632 | CONFIG_CRYPTO_SHA1=m |
| 1577 | # CONFIG_CRYPTO_SHA256 is not set | 1633 | # CONFIG_CRYPTO_SHA256 is not set |
| 1578 | # CONFIG_CRYPTO_SHA512 is not set | 1634 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1605,5 +1661,6 @@ CONFIG_CRYPTO_DES=y | |||
| 1605 | # CONFIG_CRYPTO_LZO is not set | 1661 | # CONFIG_CRYPTO_LZO is not set |
| 1606 | CONFIG_CRYPTO_HW=y | 1662 | CONFIG_CRYPTO_HW=y |
| 1607 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1663 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1664 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1608 | # CONFIG_PPC_CLOCK is not set | 1665 | # CONFIG_PPC_CLOCK is not set |
| 1609 | # CONFIG_VIRTUALIZATION is not set | 1666 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/mpc866_ads_defconfig b/arch/powerpc/configs/mpc866_ads_defconfig index 46fffbcd3f99..1501c4336b3d 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:16 2008 | 4 | # Thu Aug 21 00:52:11 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -29,6 +29,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 30 | CONFIG_IRQ_PER_CPU=y | 30 | CONFIG_IRQ_PER_CPU=y |
| 31 | CONFIG_STACKTRACE_SUPPORT=y | 31 | CONFIG_STACKTRACE_SUPPORT=y |
| 32 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 32 | CONFIG_LOCKDEP_SUPPORT=y | 33 | CONFIG_LOCKDEP_SUPPORT=y |
| 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -106,10 +107,16 @@ CONFIG_SLUB=y | |||
| 106 | # CONFIG_PROFILING is not set | 107 | # CONFIG_PROFILING is not set |
| 107 | # CONFIG_MARKERS is not set | 108 | # CONFIG_MARKERS is not set |
| 108 | CONFIG_HAVE_OPROFILE=y | 109 | CONFIG_HAVE_OPROFILE=y |
| 110 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 111 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 109 | CONFIG_HAVE_KPROBES=y | 112 | CONFIG_HAVE_KPROBES=y |
| 110 | CONFIG_HAVE_KRETPROBES=y | 113 | CONFIG_HAVE_KRETPROBES=y |
| 114 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 111 | # CONFIG_HAVE_DMA_ATTRS is not set | 115 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 116 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 117 | CONFIG_HAVE_CLK=y | ||
| 112 | CONFIG_PROC_PAGE_MONITOR=y | 118 | CONFIG_PROC_PAGE_MONITOR=y |
| 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 113 | CONFIG_SLABINFO=y | 120 | CONFIG_SLABINFO=y |
| 114 | CONFIG_RT_MUTEXES=y | 121 | CONFIG_RT_MUTEXES=y |
| 115 | # CONFIG_TINY_SHMEM is not set | 122 | # CONFIG_TINY_SHMEM is not set |
| @@ -120,6 +127,7 @@ CONFIG_BLOCK=y | |||
| 120 | # CONFIG_BLK_DEV_IO_TRACE is not set | 127 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 121 | # CONFIG_LSF is not set | 128 | # CONFIG_LSF is not set |
| 122 | # CONFIG_BLK_DEV_BSG is not set | 129 | # CONFIG_BLK_DEV_BSG is not set |
| 130 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 123 | 131 | ||
| 124 | # | 132 | # |
| 125 | # IO Schedulers | 133 | # IO Schedulers |
| @@ -138,8 +146,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 138 | # | 146 | # |
| 139 | # Platform support | 147 | # Platform support |
| 140 | # | 148 | # |
| 141 | # CONFIG_PPC_MPC512x is not set | ||
| 142 | # CONFIG_PPC_MPC5121 is not set | ||
| 143 | # CONFIG_PPC_CELL is not set | 149 | # CONFIG_PPC_CELL is not set |
| 144 | # CONFIG_PPC_CELL_NATIVE is not set | 150 | # CONFIG_PPC_CELL_NATIVE is not set |
| 145 | CONFIG_CPM1=y | 151 | CONFIG_CPM1=y |
| @@ -157,6 +163,7 @@ CONFIG_MPC86XADS=y | |||
| 157 | # Generic MPC8xx Options | 163 | # Generic MPC8xx Options |
| 158 | # | 164 | # |
| 159 | CONFIG_8xx_COPYBACK=y | 165 | CONFIG_8xx_COPYBACK=y |
| 166 | # CONFIG_8xx_GPIO is not set | ||
| 160 | CONFIG_8xx_CPU6=y | 167 | CONFIG_8xx_CPU6=y |
| 161 | CONFIG_8xx_CPU15=y | 168 | CONFIG_8xx_CPU15=y |
| 162 | CONFIG_NO_UCODE_PATCH=y | 169 | CONFIG_NO_UCODE_PATCH=y |
| @@ -175,7 +182,6 @@ CONFIG_NO_UCODE_PATCH=y | |||
| 175 | # CONFIG_PPC_INDIRECT_IO is not set | 182 | # CONFIG_PPC_INDIRECT_IO is not set |
| 176 | # CONFIG_GENERIC_IOMAP is not set | 183 | # CONFIG_GENERIC_IOMAP is not set |
| 177 | # CONFIG_CPU_FREQ is not set | 184 | # CONFIG_CPU_FREQ is not set |
| 178 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 179 | # CONFIG_FSL_ULI1575 is not set | 185 | # CONFIG_FSL_ULI1575 is not set |
| 180 | CONFIG_CPM=y | 186 | CONFIG_CPM=y |
| 181 | 187 | ||
| @@ -192,7 +198,7 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
| 192 | # CONFIG_HZ_300 is not set | 198 | # CONFIG_HZ_300 is not set |
| 193 | CONFIG_HZ_1000=y | 199 | CONFIG_HZ_1000=y |
| 194 | CONFIG_HZ=1000 | 200 | CONFIG_HZ=1000 |
| 195 | # CONFIG_SCHED_HRTICK is not set | 201 | CONFIG_SCHED_HRTICK=y |
| 196 | CONFIG_PREEMPT_NONE=y | 202 | CONFIG_PREEMPT_NONE=y |
| 197 | # CONFIG_PREEMPT_VOLUNTARY is not set | 203 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 198 | # CONFIG_PREEMPT is not set | 204 | # CONFIG_PREEMPT is not set |
| @@ -215,6 +221,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 215 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 221 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 216 | CONFIG_PAGEFLAGS_EXTENDED=y | 222 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 217 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 223 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 224 | CONFIG_MIGRATION=y | ||
| 218 | # CONFIG_RESOURCES_64BIT is not set | 225 | # CONFIG_RESOURCES_64BIT is not set |
| 219 | CONFIG_ZONE_DMA_FLAG=1 | 226 | CONFIG_ZONE_DMA_FLAG=1 |
| 220 | CONFIG_BOUNCE=y | 227 | CONFIG_BOUNCE=y |
| @@ -222,6 +229,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 222 | CONFIG_FORCE_MAX_ZONEORDER=11 | 229 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 223 | # CONFIG_PROC_DEVICETREE is not set | 230 | # CONFIG_PROC_DEVICETREE is not set |
| 224 | # CONFIG_CMDLINE_BOOL is not set | 231 | # CONFIG_CMDLINE_BOOL is not set |
| 232 | CONFIG_EXTRA_TARGETS="" | ||
| 225 | # CONFIG_PM is not set | 233 | # CONFIG_PM is not set |
| 226 | # CONFIG_SECCOMP is not set | 234 | # CONFIG_SECCOMP is not set |
| 227 | CONFIG_ISA_DMA_API=y | 235 | CONFIG_ISA_DMA_API=y |
| @@ -253,10 +261,6 @@ CONFIG_PHYSICAL_START=0x00000000 | |||
| 253 | CONFIG_TASK_SIZE=0x80000000 | 261 | CONFIG_TASK_SIZE=0x80000000 |
| 254 | CONFIG_CONSISTENT_START=0xfd000000 | 262 | CONFIG_CONSISTENT_START=0xfd000000 |
| 255 | CONFIG_CONSISTENT_SIZE=0x00200000 | 263 | CONFIG_CONSISTENT_SIZE=0x00200000 |
| 256 | |||
| 257 | # | ||
| 258 | # Networking | ||
| 259 | # | ||
| 260 | CONFIG_NET=y | 264 | CONFIG_NET=y |
| 261 | 265 | ||
| 262 | # | 266 | # |
| @@ -361,6 +365,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
| 361 | # CONFIG_BLK_DEV_RAM is not set | 365 | # CONFIG_BLK_DEV_RAM is not set |
| 362 | # CONFIG_CDROM_PKTCDVD is not set | 366 | # CONFIG_CDROM_PKTCDVD is not set |
| 363 | # CONFIG_ATA_OVER_ETH is not set | 367 | # CONFIG_ATA_OVER_ETH is not set |
| 368 | # CONFIG_BLK_DEV_HD is not set | ||
| 364 | CONFIG_MISC_DEVICES=y | 369 | CONFIG_MISC_DEVICES=y |
| 365 | # CONFIG_EEPROM_93CX6 is not set | 370 | # CONFIG_EEPROM_93CX6 is not set |
| 366 | # CONFIG_ENCLOSURE_SERVICES is not set | 371 | # CONFIG_ENCLOSURE_SERVICES is not set |
| @@ -378,7 +383,6 @@ CONFIG_HAVE_IDE=y | |||
| 378 | # CONFIG_MD is not set | 383 | # CONFIG_MD is not set |
| 379 | # CONFIG_MACINTOSH_DRIVERS is not set | 384 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 380 | CONFIG_NETDEVICES=y | 385 | CONFIG_NETDEVICES=y |
| 381 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 382 | # CONFIG_DUMMY is not set | 386 | # CONFIG_DUMMY is not set |
| 383 | # CONFIG_BONDING is not set | 387 | # CONFIG_BONDING is not set |
| 384 | # CONFIG_MACVLAN is not set | 388 | # CONFIG_MACVLAN is not set |
| @@ -414,7 +418,6 @@ CONFIG_FS_ENET_HAS_SCC=y | |||
| 414 | CONFIG_FS_ENET_HAS_FEC=y | 418 | CONFIG_FS_ENET_HAS_FEC=y |
| 415 | CONFIG_FS_ENET_MDIO_FEC=y | 419 | CONFIG_FS_ENET_MDIO_FEC=y |
| 416 | CONFIG_NETDEV_1000=y | 420 | CONFIG_NETDEV_1000=y |
| 417 | # CONFIG_E1000E_ENABLED is not set | ||
| 418 | # CONFIG_GIANFAR is not set | 421 | # CONFIG_GIANFAR is not set |
| 419 | CONFIG_NETDEV_10000=y | 422 | CONFIG_NETDEV_10000=y |
| 420 | 423 | ||
| @@ -484,6 +487,7 @@ CONFIG_SERIO_I8042=y | |||
| 484 | CONFIG_SERIO_SERPORT=y | 487 | CONFIG_SERIO_SERPORT=y |
| 485 | CONFIG_SERIO_LIBPS2=y | 488 | CONFIG_SERIO_LIBPS2=y |
| 486 | # CONFIG_SERIO_RAW is not set | 489 | # CONFIG_SERIO_RAW is not set |
| 490 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 487 | # CONFIG_GAMEPORT is not set | 491 | # CONFIG_GAMEPORT is not set |
| 488 | 492 | ||
| 489 | # | 493 | # |
| @@ -524,6 +528,8 @@ CONFIG_GEN_RTC=y | |||
| 524 | # CONFIG_TCG_TPM is not set | 528 | # CONFIG_TCG_TPM is not set |
| 525 | # CONFIG_I2C is not set | 529 | # CONFIG_I2C is not set |
| 526 | # CONFIG_SPI is not set | 530 | # CONFIG_SPI is not set |
| 531 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 532 | # CONFIG_GPIOLIB is not set | ||
| 527 | # CONFIG_W1 is not set | 533 | # CONFIG_W1 is not set |
| 528 | # CONFIG_POWER_SUPPLY is not set | 534 | # CONFIG_POWER_SUPPLY is not set |
| 529 | CONFIG_HWMON=y | 535 | CONFIG_HWMON=y |
| @@ -540,6 +546,7 @@ CONFIG_HWMON=y | |||
| 540 | # CONFIG_SENSORS_W83627EHF is not set | 546 | # CONFIG_SENSORS_W83627EHF is not set |
| 541 | # CONFIG_HWMON_DEBUG_CHIP is not set | 547 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 542 | # CONFIG_THERMAL is not set | 548 | # CONFIG_THERMAL is not set |
| 549 | # CONFIG_THERMAL_HWMON is not set | ||
| 543 | # CONFIG_WATCHDOG is not set | 550 | # CONFIG_WATCHDOG is not set |
| 544 | 551 | ||
| 545 | # | 552 | # |
| @@ -551,8 +558,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 551 | # | 558 | # |
| 552 | # Multifunction device drivers | 559 | # Multifunction device drivers |
| 553 | # | 560 | # |
| 561 | # CONFIG_MFD_CORE is not set | ||
| 554 | # CONFIG_MFD_SM501 is not set | 562 | # CONFIG_MFD_SM501 is not set |
| 555 | # CONFIG_HTC_PASIC3 is not set | 563 | # CONFIG_HTC_PASIC3 is not set |
| 564 | # CONFIG_MFD_TMIO is not set | ||
| 556 | 565 | ||
| 557 | # | 566 | # |
| 558 | # Multimedia devices | 567 | # Multimedia devices |
| @@ -582,10 +591,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 582 | # Display device support | 591 | # Display device support |
| 583 | # | 592 | # |
| 584 | # CONFIG_DISPLAY_SUPPORT is not set | 593 | # CONFIG_DISPLAY_SUPPORT is not set |
| 585 | |||
| 586 | # | ||
| 587 | # Sound | ||
| 588 | # | ||
| 589 | # CONFIG_SOUND is not set | 594 | # CONFIG_SOUND is not set |
| 590 | CONFIG_HID_SUPPORT=y | 595 | CONFIG_HID_SUPPORT=y |
| 591 | CONFIG_HID=y | 596 | CONFIG_HID=y |
| @@ -599,6 +604,10 @@ CONFIG_USB_SUPPORT=y | |||
| 599 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 604 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 600 | 605 | ||
| 601 | # | 606 | # |
| 607 | # Enable Host or Gadget support to see Inventra options | ||
| 608 | # | ||
| 609 | |||
| 610 | # | ||
| 602 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 611 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 603 | # | 612 | # |
| 604 | # CONFIG_USB_GADGET is not set | 613 | # CONFIG_USB_GADGET is not set |
| @@ -677,6 +686,7 @@ CONFIG_TMPFS=y | |||
| 677 | CONFIG_CRAMFS=y | 686 | CONFIG_CRAMFS=y |
| 678 | # CONFIG_VXFS_FS is not set | 687 | # CONFIG_VXFS_FS is not set |
| 679 | # CONFIG_MINIX_FS is not set | 688 | # CONFIG_MINIX_FS is not set |
| 689 | # CONFIG_OMFS_FS is not set | ||
| 680 | # CONFIG_HPFS_FS is not set | 690 | # CONFIG_HPFS_FS is not set |
| 681 | # CONFIG_QNX4FS_FS is not set | 691 | # CONFIG_QNX4FS_FS is not set |
| 682 | # CONFIG_ROMFS_FS is not set | 692 | # CONFIG_ROMFS_FS is not set |
| @@ -687,13 +697,12 @@ CONFIG_NFS_FS=y | |||
| 687 | CONFIG_NFS_V3=y | 697 | CONFIG_NFS_V3=y |
| 688 | # CONFIG_NFS_V3_ACL is not set | 698 | # CONFIG_NFS_V3_ACL is not set |
| 689 | # CONFIG_NFS_V4 is not set | 699 | # CONFIG_NFS_V4 is not set |
| 690 | # CONFIG_NFSD is not set | ||
| 691 | CONFIG_ROOT_NFS=y | 700 | CONFIG_ROOT_NFS=y |
| 701 | # CONFIG_NFSD is not set | ||
| 692 | CONFIG_LOCKD=y | 702 | CONFIG_LOCKD=y |
| 693 | CONFIG_LOCKD_V4=y | 703 | CONFIG_LOCKD_V4=y |
| 694 | CONFIG_NFS_COMMON=y | 704 | CONFIG_NFS_COMMON=y |
| 695 | CONFIG_SUNRPC=y | 705 | CONFIG_SUNRPC=y |
| 696 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 697 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 706 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 698 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 707 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 699 | # CONFIG_SMB_FS is not set | 708 | # CONFIG_SMB_FS is not set |
| @@ -733,6 +742,7 @@ CONFIG_BITREVERSE=y | |||
| 733 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 742 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 734 | CONFIG_CRC_CCITT=y | 743 | CONFIG_CRC_CCITT=y |
| 735 | # CONFIG_CRC16 is not set | 744 | # CONFIG_CRC16 is not set |
| 745 | # CONFIG_CRC_T10DIF is not set | ||
| 736 | # CONFIG_CRC_ITU_T is not set | 746 | # CONFIG_CRC_ITU_T is not set |
| 737 | CONFIG_CRC32=y | 747 | CONFIG_CRC32=y |
| 738 | # CONFIG_CRC7 is not set | 748 | # CONFIG_CRC7 is not set |
| @@ -758,7 +768,15 @@ CONFIG_FRAME_WARN=1024 | |||
| 758 | # CONFIG_DEBUG_KERNEL is not set | 768 | # CONFIG_DEBUG_KERNEL is not set |
| 759 | # CONFIG_SLUB_DEBUG_ON is not set | 769 | # CONFIG_SLUB_DEBUG_ON is not set |
| 760 | # CONFIG_SLUB_STATS is not set | 770 | # CONFIG_SLUB_STATS is not set |
| 771 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 772 | # CONFIG_LATENCYTOP is not set | ||
| 773 | CONFIG_HAVE_FTRACE=y | ||
| 774 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 775 | # CONFIG_FTRACE is not set | ||
| 776 | # CONFIG_SCHED_TRACER is not set | ||
| 777 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 761 | # CONFIG_SAMPLES is not set | 778 | # CONFIG_SAMPLES is not set |
| 779 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 762 | # CONFIG_IRQSTACKS is not set | 780 | # CONFIG_IRQSTACKS is not set |
| 763 | # CONFIG_PPC_EARLY_DEBUG is not set | 781 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 764 | 782 | ||
| @@ -810,6 +828,10 @@ CONFIG_CRYPTO=y | |||
| 810 | # CONFIG_CRYPTO_MD4 is not set | 828 | # CONFIG_CRYPTO_MD4 is not set |
| 811 | # CONFIG_CRYPTO_MD5 is not set | 829 | # CONFIG_CRYPTO_MD5 is not set |
| 812 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 830 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 831 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 832 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 833 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 834 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 813 | # CONFIG_CRYPTO_SHA1 is not set | 835 | # CONFIG_CRYPTO_SHA1 is not set |
| 814 | # CONFIG_CRYPTO_SHA256 is not set | 836 | # CONFIG_CRYPTO_SHA256 is not set |
| 815 | # CONFIG_CRYPTO_SHA512 is not set | 837 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -841,6 +863,7 @@ CONFIG_CRYPTO=y | |||
| 841 | # CONFIG_CRYPTO_DEFLATE is not set | 863 | # CONFIG_CRYPTO_DEFLATE is not set |
| 842 | # CONFIG_CRYPTO_LZO is not set | 864 | # CONFIG_CRYPTO_LZO is not set |
| 843 | CONFIG_CRYPTO_HW=y | 865 | CONFIG_CRYPTO_HW=y |
| 844 | # CONFIG_PPC_CLOCK is not set | 866 | # CONFIG_CRYPTO_DEV_TALITOS is not set |
| 867 | CONFIG_PPC_CLOCK=y | ||
| 845 | CONFIG_PPC_LIB_RHEAP=y | 868 | CONFIG_PPC_LIB_RHEAP=y |
| 846 | # CONFIG_VIRTUALIZATION is not set | 869 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/mpc885_ads_defconfig b/arch/powerpc/configs/mpc885_ads_defconfig index 9df78973005e..fc3f6dc58126 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:17 2008 | 4 | # Thu Aug 21 00:52:12 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -29,6 +29,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 30 | CONFIG_IRQ_PER_CPU=y | 30 | CONFIG_IRQ_PER_CPU=y |
| 31 | CONFIG_STACKTRACE_SUPPORT=y | 31 | CONFIG_STACKTRACE_SUPPORT=y |
| 32 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 32 | CONFIG_LOCKDEP_SUPPORT=y | 33 | CONFIG_LOCKDEP_SUPPORT=y |
| 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 35 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -108,10 +109,16 @@ CONFIG_SLUB=y | |||
| 108 | # CONFIG_PROFILING is not set | 109 | # CONFIG_PROFILING is not set |
| 109 | # CONFIG_MARKERS is not set | 110 | # CONFIG_MARKERS is not set |
| 110 | CONFIG_HAVE_OPROFILE=y | 111 | CONFIG_HAVE_OPROFILE=y |
| 112 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 113 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 111 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
| 112 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
| 116 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 113 | # CONFIG_HAVE_DMA_ATTRS is not set | 117 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 118 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 119 | CONFIG_HAVE_CLK=y | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 120 | CONFIG_PROC_PAGE_MONITOR=y |
| 121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 115 | CONFIG_SLABINFO=y | 122 | CONFIG_SLABINFO=y |
| 116 | # CONFIG_TINY_SHMEM is not set | 123 | # CONFIG_TINY_SHMEM is not set |
| 117 | CONFIG_BASE_SMALL=1 | 124 | CONFIG_BASE_SMALL=1 |
| @@ -121,6 +128,7 @@ CONFIG_BLOCK=y | |||
| 121 | # CONFIG_BLK_DEV_IO_TRACE is not set | 128 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 122 | # CONFIG_LSF is not set | 129 | # CONFIG_LSF is not set |
| 123 | # CONFIG_BLK_DEV_BSG is not set | 130 | # CONFIG_BLK_DEV_BSG is not set |
| 131 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 124 | 132 | ||
| 125 | # | 133 | # |
| 126 | # IO Schedulers | 134 | # IO Schedulers |
| @@ -139,8 +147,6 @@ CONFIG_CLASSIC_RCU=y | |||
| 139 | # | 147 | # |
| 140 | # Platform support | 148 | # Platform support |
| 141 | # | 149 | # |
| 142 | # CONFIG_PPC_MPC512x is not set | ||
| 143 | # CONFIG_PPC_MPC5121 is not set | ||
| 144 | # CONFIG_PPC_CELL is not set | 150 | # CONFIG_PPC_CELL is not set |
| 145 | # CONFIG_PPC_CELL_NATIVE is not set | 151 | # CONFIG_PPC_CELL_NATIVE is not set |
| 146 | CONFIG_CPM1=y | 152 | CONFIG_CPM1=y |
| @@ -165,6 +171,7 @@ CONFIG_MPC8xx_SECOND_ETH_FEC2=y | |||
| 165 | # Generic MPC8xx Options | 171 | # Generic MPC8xx Options |
| 166 | # | 172 | # |
| 167 | CONFIG_8xx_COPYBACK=y | 173 | CONFIG_8xx_COPYBACK=y |
| 174 | # CONFIG_8xx_GPIO is not set | ||
| 168 | # CONFIG_8xx_CPU6 is not set | 175 | # CONFIG_8xx_CPU6 is not set |
| 169 | CONFIG_8xx_CPU15=y | 176 | CONFIG_8xx_CPU15=y |
| 170 | CONFIG_NO_UCODE_PATCH=y | 177 | CONFIG_NO_UCODE_PATCH=y |
| @@ -183,7 +190,6 @@ CONFIG_NO_UCODE_PATCH=y | |||
| 183 | # CONFIG_PPC_INDIRECT_IO is not set | 190 | # CONFIG_PPC_INDIRECT_IO is not set |
| 184 | # CONFIG_GENERIC_IOMAP is not set | 191 | # CONFIG_GENERIC_IOMAP is not set |
| 185 | # CONFIG_CPU_FREQ is not set | 192 | # CONFIG_CPU_FREQ is not set |
| 186 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 187 | # CONFIG_FSL_ULI1575 is not set | 193 | # CONFIG_FSL_ULI1575 is not set |
| 188 | CONFIG_CPM=y | 194 | CONFIG_CPM=y |
| 189 | 195 | ||
| @@ -200,7 +206,7 @@ CONFIG_HZ_100=y | |||
| 200 | # CONFIG_HZ_300 is not set | 206 | # CONFIG_HZ_300 is not set |
| 201 | # CONFIG_HZ_1000 is not set | 207 | # CONFIG_HZ_1000 is not set |
| 202 | CONFIG_HZ=100 | 208 | CONFIG_HZ=100 |
| 203 | # CONFIG_SCHED_HRTICK is not set | 209 | CONFIG_SCHED_HRTICK=y |
| 204 | CONFIG_PREEMPT_NONE=y | 210 | CONFIG_PREEMPT_NONE=y |
| 205 | # CONFIG_PREEMPT_VOLUNTARY is not set | 211 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 206 | # CONFIG_PREEMPT is not set | 212 | # CONFIG_PREEMPT is not set |
| @@ -224,6 +230,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 224 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 230 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 225 | CONFIG_PAGEFLAGS_EXTENDED=y | 231 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 226 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 232 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 233 | CONFIG_MIGRATION=y | ||
| 227 | # CONFIG_RESOURCES_64BIT is not set | 234 | # CONFIG_RESOURCES_64BIT is not set |
| 228 | CONFIG_ZONE_DMA_FLAG=1 | 235 | CONFIG_ZONE_DMA_FLAG=1 |
| 229 | CONFIG_BOUNCE=y | 236 | CONFIG_BOUNCE=y |
| @@ -231,6 +238,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 238 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 232 | CONFIG_PROC_DEVICETREE=y | 239 | CONFIG_PROC_DEVICETREE=y |
| 233 | # CONFIG_CMDLINE_BOOL is not set | 240 | # CONFIG_CMDLINE_BOOL is not set |
| 241 | CONFIG_EXTRA_TARGETS="" | ||
| 234 | # CONFIG_PM is not set | 242 | # CONFIG_PM is not set |
| 235 | # CONFIG_SECCOMP is not set | 243 | # CONFIG_SECCOMP is not set |
| 236 | CONFIG_ISA_DMA_API=y | 244 | CONFIG_ISA_DMA_API=y |
| @@ -263,10 +271,6 @@ CONFIG_PHYSICAL_START=0x00000000 | |||
| 263 | CONFIG_TASK_SIZE=0x80000000 | 271 | CONFIG_TASK_SIZE=0x80000000 |
| 264 | CONFIG_CONSISTENT_START=0xfd000000 | 272 | CONFIG_CONSISTENT_START=0xfd000000 |
| 265 | CONFIG_CONSISTENT_SIZE=0x00200000 | 273 | CONFIG_CONSISTENT_SIZE=0x00200000 |
| 266 | |||
| 267 | # | ||
| 268 | # Networking | ||
| 269 | # | ||
| 270 | CONFIG_NET=y | 274 | CONFIG_NET=y |
| 271 | 275 | ||
| 272 | # | 276 | # |
| @@ -453,7 +457,6 @@ CONFIG_HAVE_IDE=y | |||
| 453 | # CONFIG_MD is not set | 457 | # CONFIG_MD is not set |
| 454 | # CONFIG_MACINTOSH_DRIVERS is not set | 458 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 455 | CONFIG_NETDEVICES=y | 459 | CONFIG_NETDEVICES=y |
| 456 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 457 | # CONFIG_DUMMY is not set | 460 | # CONFIG_DUMMY is not set |
| 458 | # CONFIG_BONDING is not set | 461 | # CONFIG_BONDING is not set |
| 459 | # CONFIG_MACVLAN is not set | 462 | # CONFIG_MACVLAN is not set |
| @@ -555,10 +558,13 @@ CONFIG_GEN_RTC=y | |||
| 555 | # CONFIG_TCG_TPM is not set | 558 | # CONFIG_TCG_TPM is not set |
| 556 | # CONFIG_I2C is not set | 559 | # CONFIG_I2C is not set |
| 557 | # CONFIG_SPI is not set | 560 | # CONFIG_SPI is not set |
| 561 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 562 | # CONFIG_GPIOLIB is not set | ||
| 558 | # CONFIG_W1 is not set | 563 | # CONFIG_W1 is not set |
| 559 | # CONFIG_POWER_SUPPLY is not set | 564 | # CONFIG_POWER_SUPPLY is not set |
| 560 | # CONFIG_HWMON is not set | 565 | # CONFIG_HWMON is not set |
| 561 | # CONFIG_THERMAL is not set | 566 | # CONFIG_THERMAL is not set |
| 567 | # CONFIG_THERMAL_HWMON is not set | ||
| 562 | # CONFIG_WATCHDOG is not set | 568 | # CONFIG_WATCHDOG is not set |
| 563 | 569 | ||
| 564 | # | 570 | # |
| @@ -570,8 +576,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 570 | # | 576 | # |
| 571 | # Multifunction device drivers | 577 | # Multifunction device drivers |
| 572 | # | 578 | # |
| 579 | # CONFIG_MFD_CORE is not set | ||
| 573 | # CONFIG_MFD_SM501 is not set | 580 | # CONFIG_MFD_SM501 is not set |
| 574 | # CONFIG_HTC_PASIC3 is not set | 581 | # CONFIG_HTC_PASIC3 is not set |
| 582 | # CONFIG_MFD_TMIO is not set | ||
| 575 | 583 | ||
| 576 | # | 584 | # |
| 577 | # Multimedia devices | 585 | # Multimedia devices |
| @@ -601,10 +609,6 @@ CONFIG_DAB=y | |||
| 601 | # Display device support | 609 | # Display device support |
| 602 | # | 610 | # |
| 603 | # CONFIG_DISPLAY_SUPPORT is not set | 611 | # CONFIG_DISPLAY_SUPPORT is not set |
| 604 | |||
| 605 | # | ||
| 606 | # Sound | ||
| 607 | # | ||
| 608 | # CONFIG_SOUND is not set | 612 | # CONFIG_SOUND is not set |
| 609 | # CONFIG_USB_SUPPORT is not set | 613 | # CONFIG_USB_SUPPORT is not set |
| 610 | # CONFIG_MMC is not set | 614 | # CONFIG_MMC is not set |
| @@ -673,6 +677,7 @@ CONFIG_TMPFS=y | |||
| 673 | CONFIG_CRAMFS=y | 677 | CONFIG_CRAMFS=y |
| 674 | # CONFIG_VXFS_FS is not set | 678 | # CONFIG_VXFS_FS is not set |
| 675 | # CONFIG_MINIX_FS is not set | 679 | # CONFIG_MINIX_FS is not set |
| 680 | # CONFIG_OMFS_FS is not set | ||
| 676 | # CONFIG_HPFS_FS is not set | 681 | # CONFIG_HPFS_FS is not set |
| 677 | # CONFIG_QNX4FS_FS is not set | 682 | # CONFIG_QNX4FS_FS is not set |
| 678 | # CONFIG_ROMFS_FS is not set | 683 | # CONFIG_ROMFS_FS is not set |
| @@ -683,13 +688,12 @@ CONFIG_NFS_FS=y | |||
| 683 | CONFIG_NFS_V3=y | 688 | CONFIG_NFS_V3=y |
| 684 | # CONFIG_NFS_V3_ACL is not set | 689 | # CONFIG_NFS_V3_ACL is not set |
| 685 | # CONFIG_NFS_V4 is not set | 690 | # CONFIG_NFS_V4 is not set |
| 686 | # CONFIG_NFSD is not set | ||
| 687 | CONFIG_ROOT_NFS=y | 691 | CONFIG_ROOT_NFS=y |
| 692 | # CONFIG_NFSD is not set | ||
| 688 | CONFIG_LOCKD=y | 693 | CONFIG_LOCKD=y |
| 689 | CONFIG_LOCKD_V4=y | 694 | CONFIG_LOCKD_V4=y |
| 690 | CONFIG_NFS_COMMON=y | 695 | CONFIG_NFS_COMMON=y |
| 691 | CONFIG_SUNRPC=y | 696 | CONFIG_SUNRPC=y |
| 692 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 693 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 697 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 694 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 698 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 695 | # CONFIG_SMB_FS is not set | 699 | # CONFIG_SMB_FS is not set |
| @@ -728,6 +732,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 728 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 732 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 729 | # CONFIG_CRC_CCITT is not set | 733 | # CONFIG_CRC_CCITT is not set |
| 730 | # CONFIG_CRC16 is not set | 734 | # CONFIG_CRC16 is not set |
| 735 | # CONFIG_CRC_T10DIF is not set | ||
| 731 | # CONFIG_CRC_ITU_T is not set | 736 | # CONFIG_CRC_ITU_T is not set |
| 732 | # CONFIG_CRC32 is not set | 737 | # CONFIG_CRC32 is not set |
| 733 | # CONFIG_CRC7 is not set | 738 | # CONFIG_CRC7 is not set |
| @@ -752,6 +757,8 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 752 | CONFIG_DEBUG_KERNEL=y | 757 | CONFIG_DEBUG_KERNEL=y |
| 753 | # CONFIG_DEBUG_SHIRQ is not set | 758 | # CONFIG_DEBUG_SHIRQ is not set |
| 754 | CONFIG_DETECT_SOFTLOCKUP=y | 759 | CONFIG_DETECT_SOFTLOCKUP=y |
| 760 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 761 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 755 | CONFIG_SCHED_DEBUG=y | 762 | CONFIG_SCHED_DEBUG=y |
| 756 | # CONFIG_SCHEDSTATS is not set | 763 | # CONFIG_SCHEDSTATS is not set |
| 757 | # CONFIG_TIMER_STATS is not set | 764 | # CONFIG_TIMER_STATS is not set |
| @@ -767,16 +774,28 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 767 | CONFIG_DEBUG_INFO=y | 774 | CONFIG_DEBUG_INFO=y |
| 768 | # CONFIG_DEBUG_VM is not set | 775 | # CONFIG_DEBUG_VM is not set |
| 769 | # CONFIG_DEBUG_WRITECOUNT is not set | 776 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 777 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 770 | # CONFIG_DEBUG_LIST is not set | 778 | # CONFIG_DEBUG_LIST is not set |
| 771 | # CONFIG_DEBUG_SG is not set | 779 | # CONFIG_DEBUG_SG is not set |
| 772 | # CONFIG_BOOT_PRINTK_DELAY is not set | 780 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 781 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 773 | # CONFIG_BACKTRACE_SELF_TEST is not set | 782 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 774 | # CONFIG_FAULT_INJECTION is not set | 783 | # CONFIG_FAULT_INJECTION is not set |
| 784 | # CONFIG_LATENCYTOP is not set | ||
| 785 | CONFIG_HAVE_FTRACE=y | ||
| 786 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 787 | # CONFIG_FTRACE is not set | ||
| 788 | # CONFIG_SCHED_TRACER is not set | ||
| 789 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 775 | # CONFIG_SAMPLES is not set | 790 | # CONFIG_SAMPLES is not set |
| 791 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 792 | # CONFIG_KGDB is not set | ||
| 776 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 793 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 777 | # CONFIG_DEBUG_STACK_USAGE is not set | 794 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 778 | # CONFIG_DEBUG_PAGEALLOC is not set | 795 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 779 | # CONFIG_DEBUGGER is not set | 796 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 797 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 798 | # CONFIG_XMON is not set | ||
| 780 | # CONFIG_IRQSTACKS is not set | 799 | # CONFIG_IRQSTACKS is not set |
| 781 | # CONFIG_BDI_SWITCH is not set | 800 | # CONFIG_BDI_SWITCH is not set |
| 782 | # CONFIG_PPC_EARLY_DEBUG is not set | 801 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -788,6 +807,6 @@ CONFIG_DEBUG_INFO=y | |||
| 788 | # CONFIG_SECURITY is not set | 807 | # CONFIG_SECURITY is not set |
| 789 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 808 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 790 | # CONFIG_CRYPTO is not set | 809 | # CONFIG_CRYPTO is not set |
| 791 | # CONFIG_PPC_CLOCK is not set | 810 | CONFIG_PPC_CLOCK=y |
| 792 | CONFIG_PPC_LIB_RHEAP=y | 811 | CONFIG_PPC_LIB_RHEAP=y |
| 793 | # CONFIG_VIRTUALIZATION is not set | 812 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/pmac32_defconfig b/arch/powerpc/configs/pmac32_defconfig index 3688e4bb6fc2..80481f270133 100644 --- a/arch/powerpc/configs/pmac32_defconfig +++ b/arch/powerpc/configs/pmac32_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.26-rc3 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Tue May 20 20:02:24 2008 | 4 | # Tue Aug 26 13:20:26 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 34 | CONFIG_STACKTRACE_SUPPORT=y |
| 35 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 36 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 38 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -93,9 +94,8 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 93 | CONFIG_SYSCTL=y | 94 | CONFIG_SYSCTL=y |
| 94 | # CONFIG_EMBEDDED is not set | 95 | # CONFIG_EMBEDDED is not set |
| 95 | CONFIG_SYSCTL_SYSCALL=y | 96 | CONFIG_SYSCTL_SYSCALL=y |
| 96 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 97 | CONFIG_KALLSYMS=y | 97 | CONFIG_KALLSYMS=y |
| 98 | # CONFIG_KALLSYMS_ALL is not set | 98 | CONFIG_KALLSYMS_ALL=y |
| 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 100 | CONFIG_HOTPLUG=y | 100 | CONFIG_HOTPLUG=y |
| 101 | CONFIG_PRINTK=y | 101 | CONFIG_PRINTK=y |
| @@ -120,10 +120,16 @@ CONFIG_PROFILING=y | |||
| 120 | CONFIG_OPROFILE=y | 120 | CONFIG_OPROFILE=y |
| 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 | ||
| 124 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 123 | CONFIG_HAVE_KPROBES=y | 125 | CONFIG_HAVE_KPROBES=y |
| 124 | CONFIG_HAVE_KRETPROBES=y | 126 | CONFIG_HAVE_KRETPROBES=y |
| 127 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 125 | # CONFIG_HAVE_DMA_ATTRS is not set | 128 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 129 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 130 | # CONFIG_HAVE_CLK is not set | ||
| 126 | CONFIG_PROC_PAGE_MONITOR=y | 131 | CONFIG_PROC_PAGE_MONITOR=y |
| 132 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 127 | CONFIG_SLABINFO=y | 133 | CONFIG_SLABINFO=y |
| 128 | CONFIG_RT_MUTEXES=y | 134 | CONFIG_RT_MUTEXES=y |
| 129 | # CONFIG_TINY_SHMEM is not set | 135 | # CONFIG_TINY_SHMEM is not set |
| @@ -140,6 +146,7 @@ CONFIG_LBD=y | |||
| 140 | # CONFIG_BLK_DEV_IO_TRACE is not set | 146 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 141 | CONFIG_LSF=y | 147 | CONFIG_LSF=y |
| 142 | CONFIG_BLK_DEV_BSG=y | 148 | CONFIG_BLK_DEV_BSG=y |
| 149 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 143 | 150 | ||
| 144 | # | 151 | # |
| 145 | # IO Schedulers | 152 | # IO Schedulers |
| @@ -159,19 +166,18 @@ CONFIG_CLASSIC_RCU=y | |||
| 159 | # Platform support | 166 | # Platform support |
| 160 | # | 167 | # |
| 161 | CONFIG_PPC_MULTIPLATFORM=y | 168 | CONFIG_PPC_MULTIPLATFORM=y |
| 162 | # CONFIG_PPC_82xx is not set | ||
| 163 | # CONFIG_PPC_83xx is not set | ||
| 164 | # CONFIG_PPC_86xx is not set | ||
| 165 | CONFIG_CLASSIC32=y | 169 | CONFIG_CLASSIC32=y |
| 166 | # CONFIG_PPC_CHRP is not set | 170 | # CONFIG_PPC_CHRP is not set |
| 167 | # CONFIG_PPC_MPC512x is not set | ||
| 168 | # CONFIG_PPC_MPC5121 is not set | ||
| 169 | # CONFIG_MPC5121_ADS is not set | 171 | # CONFIG_MPC5121_ADS is not set |
| 172 | # CONFIG_MPC5121_GENERIC is not set | ||
| 170 | # CONFIG_PPC_MPC52xx is not set | 173 | # CONFIG_PPC_MPC52xx is not set |
| 171 | CONFIG_PPC_PMAC=y | 174 | CONFIG_PPC_PMAC=y |
| 172 | # CONFIG_PPC_CELL is not set | 175 | # CONFIG_PPC_CELL is not set |
| 173 | # CONFIG_PPC_CELL_NATIVE is not set | 176 | # CONFIG_PPC_CELL_NATIVE is not set |
| 177 | # CONFIG_PPC_82xx is not set | ||
| 174 | # CONFIG_PQ2ADS is not set | 178 | # CONFIG_PQ2ADS is not set |
| 179 | # CONFIG_PPC_83xx is not set | ||
| 180 | # CONFIG_PPC_86xx is not set | ||
| 175 | # CONFIG_EMBEDDED6xx is not set | 181 | # CONFIG_EMBEDDED6xx is not set |
| 176 | CONFIG_PPC_NATIVE=y | 182 | CONFIG_PPC_NATIVE=y |
| 177 | # CONFIG_IPIC is not set | 183 | # CONFIG_IPIC is not set |
| @@ -221,7 +227,7 @@ CONFIG_HZ_250=y | |||
| 221 | # CONFIG_HZ_300 is not set | 227 | # CONFIG_HZ_300 is not set |
| 222 | # CONFIG_HZ_1000 is not set | 228 | # CONFIG_HZ_1000 is not set |
| 223 | CONFIG_HZ=250 | 229 | CONFIG_HZ=250 |
| 224 | # CONFIG_SCHED_HRTICK is not set | 230 | CONFIG_SCHED_HRTICK=y |
| 225 | CONFIG_PREEMPT_NONE=y | 231 | CONFIG_PREEMPT_NONE=y |
| 226 | # CONFIG_PREEMPT_VOLUNTARY is not set | 232 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 227 | # CONFIG_PREEMPT is not set | 233 | # CONFIG_PREEMPT is not set |
| @@ -244,6 +250,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 244 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 250 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 245 | CONFIG_PAGEFLAGS_EXTENDED=y | 251 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 246 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 252 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 253 | # CONFIG_MIGRATION is not set | ||
| 247 | # CONFIG_RESOURCES_64BIT is not set | 254 | # CONFIG_RESOURCES_64BIT is not set |
| 248 | CONFIG_ZONE_DMA_FLAG=1 | 255 | CONFIG_ZONE_DMA_FLAG=1 |
| 249 | CONFIG_BOUNCE=y | 256 | CONFIG_BOUNCE=y |
| @@ -251,6 +258,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 251 | CONFIG_FORCE_MAX_ZONEORDER=11 | 258 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 252 | CONFIG_PROC_DEVICETREE=y | 259 | CONFIG_PROC_DEVICETREE=y |
| 253 | # CONFIG_CMDLINE_BOOL is not set | 260 | # CONFIG_CMDLINE_BOOL is not set |
| 261 | CONFIG_EXTRA_TARGETS="" | ||
| 254 | CONFIG_ARCH_WANTS_FREEZER_CONTROL=y | 262 | CONFIG_ARCH_WANTS_FREEZER_CONTROL=y |
| 255 | CONFIG_PM=y | 263 | CONFIG_PM=y |
| 256 | CONFIG_PM_DEBUG=y | 264 | CONFIG_PM_DEBUG=y |
| @@ -314,10 +322,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 314 | CONFIG_KERNEL_START=0xc0000000 | 322 | CONFIG_KERNEL_START=0xc0000000 |
| 315 | CONFIG_PHYSICAL_START=0x00000000 | 323 | CONFIG_PHYSICAL_START=0x00000000 |
| 316 | CONFIG_TASK_SIZE=0xc0000000 | 324 | CONFIG_TASK_SIZE=0xc0000000 |
| 317 | |||
| 318 | # | ||
| 319 | # Networking | ||
| 320 | # | ||
| 321 | CONFIG_NET=y | 325 | CONFIG_NET=y |
| 322 | 326 | ||
| 323 | # | 327 | # |
| @@ -501,7 +505,6 @@ CONFIG_IP_DCCP_TFRC_LIB=m | |||
| 501 | # CONFIG_WAN_ROUTER is not set | 505 | # CONFIG_WAN_ROUTER is not set |
| 502 | # CONFIG_NET_SCHED is not set | 506 | # CONFIG_NET_SCHED is not set |
| 503 | CONFIG_NET_CLS_ROUTE=y | 507 | CONFIG_NET_CLS_ROUTE=y |
| 504 | CONFIG_NET_SCH_FIFO=y | ||
| 505 | 508 | ||
| 506 | # | 509 | # |
| 507 | # Network testing | 510 | # Network testing |
| @@ -571,6 +574,7 @@ CONFIG_BT_HIDP=m | |||
| 571 | # | 574 | # |
| 572 | CONFIG_BT_HCIUSB=m | 575 | CONFIG_BT_HCIUSB=m |
| 573 | # CONFIG_BT_HCIUSB_SCO is not set | 576 | # CONFIG_BT_HCIUSB_SCO is not set |
| 577 | # CONFIG_BT_HCIBTUSB is not set | ||
| 574 | # CONFIG_BT_HCIUART is not set | 578 | # CONFIG_BT_HCIUART is not set |
| 575 | CONFIG_BT_HCIBCM203X=m | 579 | CONFIG_BT_HCIBCM203X=m |
| 576 | # CONFIG_BT_HCIBPA10X is not set | 580 | # CONFIG_BT_HCIBPA10X is not set |
| @@ -588,27 +592,18 @@ CONFIG_BT_HCIBFUSB=m | |||
| 588 | CONFIG_CFG80211=m | 592 | CONFIG_CFG80211=m |
| 589 | CONFIG_NL80211=y | 593 | CONFIG_NL80211=y |
| 590 | CONFIG_WIRELESS_EXT=y | 594 | CONFIG_WIRELESS_EXT=y |
| 595 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
| 591 | CONFIG_MAC80211=m | 596 | CONFIG_MAC80211=m |
| 592 | 597 | ||
| 593 | # | 598 | # |
| 594 | # Rate control algorithm selection | 599 | # Rate control algorithm selection |
| 595 | # | 600 | # |
| 601 | CONFIG_MAC80211_RC_PID=y | ||
| 596 | CONFIG_MAC80211_RC_DEFAULT_PID=y | 602 | CONFIG_MAC80211_RC_DEFAULT_PID=y |
| 597 | # CONFIG_MAC80211_RC_DEFAULT_NONE is not set | ||
| 598 | |||
| 599 | # | ||
| 600 | # Selecting 'y' for an algorithm will | ||
| 601 | # | ||
| 602 | |||
| 603 | # | ||
| 604 | # build the algorithm into mac80211. | ||
| 605 | # | ||
| 606 | CONFIG_MAC80211_RC_DEFAULT="pid" | 603 | CONFIG_MAC80211_RC_DEFAULT="pid" |
| 607 | CONFIG_MAC80211_RC_PID=y | ||
| 608 | # CONFIG_MAC80211_MESH is not set | 604 | # CONFIG_MAC80211_MESH is not set |
| 609 | CONFIG_MAC80211_LEDS=y | 605 | CONFIG_MAC80211_LEDS=y |
| 610 | # CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT is not set | 606 | # CONFIG_MAC80211_DEBUG_MENU is not set |
| 611 | # CONFIG_MAC80211_DEBUG is not set | ||
| 612 | CONFIG_IEEE80211=m | 607 | CONFIG_IEEE80211=m |
| 613 | # CONFIG_IEEE80211_DEBUG is not set | 608 | # CONFIG_IEEE80211_DEBUG is not set |
| 614 | CONFIG_IEEE80211_CRYPT_WEP=m | 609 | CONFIG_IEEE80211_CRYPT_WEP=m |
| @@ -628,6 +623,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 628 | # CONFIG_STANDALONE is not set | 623 | # CONFIG_STANDALONE is not set |
| 629 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 624 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 630 | CONFIG_FW_LOADER=y | 625 | CONFIG_FW_LOADER=y |
| 626 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 627 | CONFIG_EXTRA_FIRMWARE="" | ||
| 631 | # CONFIG_DEBUG_DRIVER is not set | 628 | # CONFIG_DEBUG_DRIVER is not set |
| 632 | # CONFIG_DEBUG_DEVRES is not set | 629 | # CONFIG_DEBUG_DEVRES is not set |
| 633 | # CONFIG_SYS_HYPERVISOR is not set | 630 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -656,12 +653,14 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 656 | # CONFIG_BLK_DEV_XIP is not set | 653 | # CONFIG_BLK_DEV_XIP is not set |
| 657 | # CONFIG_CDROM_PKTCDVD is not set | 654 | # CONFIG_CDROM_PKTCDVD is not set |
| 658 | # CONFIG_ATA_OVER_ETH is not set | 655 | # CONFIG_ATA_OVER_ETH is not set |
| 656 | # CONFIG_BLK_DEV_HD is not set | ||
| 659 | CONFIG_MISC_DEVICES=y | 657 | CONFIG_MISC_DEVICES=y |
| 660 | # CONFIG_PHANTOM is not set | 658 | # CONFIG_PHANTOM is not set |
| 661 | # CONFIG_EEPROM_93CX6 is not set | 659 | # CONFIG_EEPROM_93CX6 is not set |
| 662 | # CONFIG_SGI_IOC4 is not set | 660 | # CONFIG_SGI_IOC4 is not set |
| 663 | # CONFIG_TIFM_CORE is not set | 661 | # CONFIG_TIFM_CORE is not set |
| 664 | # CONFIG_ENCLOSURE_SERVICES is not set | 662 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 663 | # CONFIG_HP_ILO is not set | ||
| 665 | CONFIG_HAVE_IDE=y | 664 | CONFIG_HAVE_IDE=y |
| 666 | CONFIG_IDE=y | 665 | CONFIG_IDE=y |
| 667 | CONFIG_BLK_DEV_IDE=y | 666 | CONFIG_BLK_DEV_IDE=y |
| @@ -669,6 +668,8 @@ CONFIG_BLK_DEV_IDE=y | |||
| 669 | # | 668 | # |
| 670 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 669 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 671 | # | 670 | # |
| 671 | CONFIG_IDE_TIMINGS=y | ||
| 672 | CONFIG_IDE_ATAPI=y | ||
| 672 | # CONFIG_BLK_DEV_IDE_SATA is not set | 673 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 673 | CONFIG_BLK_DEV_IDEDISK=y | 674 | CONFIG_BLK_DEV_IDEDISK=y |
| 674 | # CONFIG_IDEDISK_MULTI_MODE is not set | 675 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| @@ -685,7 +686,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 685 | # | 686 | # |
| 686 | # IDE chipset support/bugfixes | 687 | # IDE chipset support/bugfixes |
| 687 | # | 688 | # |
| 688 | # CONFIG_IDE_GENERIC is not set | ||
| 689 | # CONFIG_BLK_DEV_PLATFORM is not set | 689 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 690 | CONFIG_BLK_DEV_IDEDMA_SFF=y | 690 | CONFIG_BLK_DEV_IDEDMA_SFF=y |
| 691 | 691 | ||
| @@ -703,10 +703,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 703 | # CONFIG_BLK_DEV_AMD74XX is not set | 703 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 704 | # CONFIG_BLK_DEV_CMD64X is not set | 704 | # CONFIG_BLK_DEV_CMD64X is not set |
| 705 | # CONFIG_BLK_DEV_TRIFLEX is not set | 705 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 706 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 707 | # CONFIG_BLK_DEV_CS5520 is not set | 706 | # CONFIG_BLK_DEV_CS5520 is not set |
| 708 | # CONFIG_BLK_DEV_CS5530 is not set | 707 | # CONFIG_BLK_DEV_CS5530 is not set |
| 709 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 710 | # CONFIG_BLK_DEV_HPT366 is not set | 708 | # CONFIG_BLK_DEV_HPT366 is not set |
| 711 | # CONFIG_BLK_DEV_JMICRON is not set | 709 | # CONFIG_BLK_DEV_JMICRON is not set |
| 712 | # CONFIG_BLK_DEV_SC1200 is not set | 710 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -727,8 +725,6 @@ CONFIG_BLK_DEV_IDE_PMAC=y | |||
| 727 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y | 725 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y |
| 728 | CONFIG_BLK_DEV_IDEDMA_PMAC=y | 726 | CONFIG_BLK_DEV_IDEDMA_PMAC=y |
| 729 | CONFIG_BLK_DEV_IDEDMA=y | 727 | CONFIG_BLK_DEV_IDEDMA=y |
| 730 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 731 | # CONFIG_BLK_DEV_HD is not set | ||
| 732 | 728 | ||
| 733 | # | 729 | # |
| 734 | # SCSI device support | 730 | # SCSI device support |
| @@ -820,6 +816,7 @@ CONFIG_SCSI_MESH_RESET_DELAY_MS=4000 | |||
| 820 | CONFIG_SCSI_MAC53C94=y | 816 | CONFIG_SCSI_MAC53C94=y |
| 821 | # CONFIG_SCSI_SRP is not set | 817 | # CONFIG_SCSI_SRP is not set |
| 822 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | 818 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set |
| 819 | # CONFIG_SCSI_DH is not set | ||
| 823 | # CONFIG_ATA is not set | 820 | # CONFIG_ATA is not set |
| 824 | CONFIG_MD=y | 821 | CONFIG_MD=y |
| 825 | CONFIG_BLK_DEV_MD=m | 822 | CONFIG_BLK_DEV_MD=m |
| @@ -844,30 +841,22 @@ CONFIG_DM_ZERO=m | |||
| 844 | # | 841 | # |
| 845 | # IEEE 1394 (FireWire) support | 842 | # IEEE 1394 (FireWire) support |
| 846 | # | 843 | # |
| 847 | # CONFIG_FIREWIRE is not set | ||
| 848 | CONFIG_IEEE1394=m | ||
| 849 | |||
| 850 | # | ||
| 851 | # Subsystem Options | ||
| 852 | # | ||
| 853 | # CONFIG_IEEE1394_VERBOSEDEBUG is not set | ||
| 854 | 844 | ||
| 855 | # | 845 | # |
| 856 | # Controllers | 846 | # Enable only one of the two stacks, unless you know what you are doing |
| 857 | # | 847 | # |
| 858 | # CONFIG_IEEE1394_PCILYNX is not set | 848 | # CONFIG_FIREWIRE is not set |
| 849 | CONFIG_IEEE1394=m | ||
| 859 | CONFIG_IEEE1394_OHCI1394=m | 850 | CONFIG_IEEE1394_OHCI1394=m |
| 860 | 851 | # CONFIG_IEEE1394_PCILYNX is not set | |
| 861 | # | ||
| 862 | # Protocols | ||
| 863 | # | ||
| 864 | CONFIG_IEEE1394_VIDEO1394=m | ||
| 865 | CONFIG_IEEE1394_SBP2=m | 852 | CONFIG_IEEE1394_SBP2=m |
| 866 | # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set | 853 | # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set |
| 867 | # CONFIG_IEEE1394_ETH1394_ROM_ENTRY is not set | 854 | # CONFIG_IEEE1394_ETH1394_ROM_ENTRY is not set |
| 868 | # CONFIG_IEEE1394_ETH1394 is not set | 855 | # CONFIG_IEEE1394_ETH1394 is not set |
| 869 | CONFIG_IEEE1394_DV1394=m | ||
| 870 | CONFIG_IEEE1394_RAWIO=m | 856 | CONFIG_IEEE1394_RAWIO=m |
| 857 | CONFIG_IEEE1394_VIDEO1394=m | ||
| 858 | CONFIG_IEEE1394_DV1394=m | ||
| 859 | # CONFIG_IEEE1394_VERBOSEDEBUG is not set | ||
| 871 | # CONFIG_I2O is not set | 860 | # CONFIG_I2O is not set |
| 872 | CONFIG_MACINTOSH_DRIVERS=y | 861 | CONFIG_MACINTOSH_DRIVERS=y |
| 873 | CONFIG_ADB=y | 862 | CONFIG_ADB=y |
| @@ -887,7 +876,6 @@ CONFIG_THERM_ADT746X=m | |||
| 887 | # CONFIG_ANSLCD is not set | 876 | # CONFIG_ANSLCD is not set |
| 888 | CONFIG_PMAC_RACKMETER=m | 877 | CONFIG_PMAC_RACKMETER=m |
| 889 | CONFIG_NETDEVICES=y | 878 | CONFIG_NETDEVICES=y |
| 890 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 891 | CONFIG_DUMMY=m | 879 | CONFIG_DUMMY=m |
| 892 | # CONFIG_BONDING is not set | 880 | # CONFIG_BONDING is not set |
| 893 | # CONFIG_MACVLAN is not set | 881 | # CONFIG_MACVLAN is not set |
| @@ -936,7 +924,6 @@ CONFIG_NETDEV_1000=y | |||
| 936 | # CONFIG_DL2K is not set | 924 | # CONFIG_DL2K is not set |
| 937 | # CONFIG_E1000 is not set | 925 | # CONFIG_E1000 is not set |
| 938 | # CONFIG_E1000E is not set | 926 | # CONFIG_E1000E is not set |
| 939 | # CONFIG_E1000E_ENABLED is not set | ||
| 940 | # CONFIG_IP1000 is not set | 927 | # CONFIG_IP1000 is not set |
| 941 | # CONFIG_IGB is not set | 928 | # CONFIG_IGB is not set |
| 942 | # CONFIG_NS83820 is not set | 929 | # CONFIG_NS83820 is not set |
| @@ -952,6 +939,7 @@ CONFIG_NETDEV_1000=y | |||
| 952 | # CONFIG_MV643XX_ETH is not set | 939 | # CONFIG_MV643XX_ETH is not set |
| 953 | # CONFIG_QLA3XXX is not set | 940 | # CONFIG_QLA3XXX is not set |
| 954 | # CONFIG_ATL1 is not set | 941 | # CONFIG_ATL1 is not set |
| 942 | # CONFIG_ATL1E is not set | ||
| 955 | CONFIG_NETDEV_10000=y | 943 | CONFIG_NETDEV_10000=y |
| 956 | # CONFIG_CHELSIO_T1 is not set | 944 | # CONFIG_CHELSIO_T1 is not set |
| 957 | # CONFIG_CHELSIO_T3 is not set | 945 | # CONFIG_CHELSIO_T3 is not set |
| @@ -994,13 +982,15 @@ CONFIG_PRISM54=m | |||
| 994 | # CONFIG_RTL8180 is not set | 982 | # CONFIG_RTL8180 is not set |
| 995 | # CONFIG_RTL8187 is not set | 983 | # CONFIG_RTL8187 is not set |
| 996 | # CONFIG_ADM8211 is not set | 984 | # CONFIG_ADM8211 is not set |
| 985 | # CONFIG_MAC80211_HWSIM is not set | ||
| 997 | CONFIG_P54_COMMON=m | 986 | CONFIG_P54_COMMON=m |
| 998 | # CONFIG_P54_USB is not set | 987 | # CONFIG_P54_USB is not set |
| 999 | # CONFIG_P54_PCI is not set | 988 | # CONFIG_P54_PCI is not set |
| 1000 | # CONFIG_ATH5K is not set | 989 | # CONFIG_ATH5K is not set |
| 990 | # CONFIG_ATH9K is not set | ||
| 1001 | # CONFIG_IWLCORE is not set | 991 | # CONFIG_IWLCORE is not set |
| 1002 | # CONFIG_IWLWIFI_LEDS is not set | 992 | # CONFIG_IWLWIFI_LEDS is not set |
| 1003 | # CONFIG_IWL4965 is not set | 993 | # CONFIG_IWLAGN is not set |
| 1004 | # CONFIG_IWL3945 is not set | 994 | # CONFIG_IWL3945 is not set |
| 1005 | # CONFIG_HOSTAP is not set | 995 | # CONFIG_HOSTAP is not set |
| 1006 | CONFIG_B43=m | 996 | CONFIG_B43=m |
| @@ -1095,6 +1085,7 @@ CONFIG_INPUT_MOUSE=y | |||
| 1095 | # CONFIG_MOUSE_PS2 is not set | 1085 | # CONFIG_MOUSE_PS2 is not set |
| 1096 | # CONFIG_MOUSE_SERIAL is not set | 1086 | # CONFIG_MOUSE_SERIAL is not set |
| 1097 | # CONFIG_MOUSE_APPLETOUCH is not set | 1087 | # CONFIG_MOUSE_APPLETOUCH is not set |
| 1088 | # CONFIG_MOUSE_BCM5974 is not set | ||
| 1098 | # CONFIG_MOUSE_VSXXXAA is not set | 1089 | # CONFIG_MOUSE_VSXXXAA is not set |
| 1099 | # CONFIG_INPUT_JOYSTICK is not set | 1090 | # CONFIG_INPUT_JOYSTICK is not set |
| 1100 | # CONFIG_INPUT_TABLET is not set | 1091 | # CONFIG_INPUT_TABLET is not set |
| @@ -1109,12 +1100,14 @@ CONFIG_SERIO=y | |||
| 1109 | # CONFIG_SERIO_SERPORT is not set | 1100 | # CONFIG_SERIO_SERPORT is not set |
| 1110 | # CONFIG_SERIO_PCIPS2 is not set | 1101 | # CONFIG_SERIO_PCIPS2 is not set |
| 1111 | # CONFIG_SERIO_RAW is not set | 1102 | # CONFIG_SERIO_RAW is not set |
| 1103 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 1112 | # CONFIG_GAMEPORT is not set | 1104 | # CONFIG_GAMEPORT is not set |
| 1113 | 1105 | ||
| 1114 | # | 1106 | # |
| 1115 | # Character devices | 1107 | # Character devices |
| 1116 | # | 1108 | # |
| 1117 | CONFIG_VT=y | 1109 | CONFIG_VT=y |
| 1110 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 1118 | CONFIG_VT_CONSOLE=y | 1111 | CONFIG_VT_CONSOLE=y |
| 1119 | CONFIG_HW_CONSOLE=y | 1112 | CONFIG_HW_CONSOLE=y |
| 1120 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 1113 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -1165,45 +1158,70 @@ CONFIG_DEVPORT=y | |||
| 1165 | CONFIG_I2C=y | 1158 | CONFIG_I2C=y |
| 1166 | CONFIG_I2C_BOARDINFO=y | 1159 | CONFIG_I2C_BOARDINFO=y |
| 1167 | CONFIG_I2C_CHARDEV=m | 1160 | CONFIG_I2C_CHARDEV=m |
| 1161 | CONFIG_I2C_HELPER_AUTO=y | ||
| 1168 | CONFIG_I2C_ALGOBIT=y | 1162 | CONFIG_I2C_ALGOBIT=y |
| 1169 | 1163 | ||
| 1170 | # | 1164 | # |
| 1171 | # I2C Hardware Bus support | 1165 | # I2C Hardware Bus support |
| 1172 | # | 1166 | # |
| 1167 | |||
| 1168 | # | ||
| 1169 | # PC SMBus host controller drivers | ||
| 1170 | # | ||
| 1173 | # CONFIG_I2C_ALI1535 is not set | 1171 | # CONFIG_I2C_ALI1535 is not set |
| 1174 | # CONFIG_I2C_ALI1563 is not set | 1172 | # CONFIG_I2C_ALI1563 is not set |
| 1175 | # CONFIG_I2C_ALI15X3 is not set | 1173 | # CONFIG_I2C_ALI15X3 is not set |
| 1176 | # CONFIG_I2C_AMD756 is not set | 1174 | # CONFIG_I2C_AMD756 is not set |
| 1177 | # CONFIG_I2C_AMD8111 is not set | 1175 | # CONFIG_I2C_AMD8111 is not set |
| 1178 | # CONFIG_I2C_I801 is not set | 1176 | # CONFIG_I2C_I801 is not set |
| 1179 | # CONFIG_I2C_I810 is not set | 1177 | # CONFIG_I2C_ISCH is not set |
| 1180 | # CONFIG_I2C_PIIX4 is not set | 1178 | # CONFIG_I2C_PIIX4 is not set |
| 1181 | CONFIG_I2C_POWERMAC=y | ||
| 1182 | # CONFIG_I2C_MPC is not set | ||
| 1183 | # CONFIG_I2C_NFORCE2 is not set | 1179 | # CONFIG_I2C_NFORCE2 is not set |
| 1184 | # CONFIG_I2C_OCORES is not set | ||
| 1185 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 1186 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 1187 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 1188 | # CONFIG_I2C_SIMTEC is not set | ||
| 1189 | # CONFIG_I2C_SIS5595 is not set | 1180 | # CONFIG_I2C_SIS5595 is not set |
| 1190 | # CONFIG_I2C_SIS630 is not set | 1181 | # CONFIG_I2C_SIS630 is not set |
| 1191 | # CONFIG_I2C_SIS96X is not set | 1182 | # CONFIG_I2C_SIS96X is not set |
| 1192 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 1193 | # CONFIG_I2C_STUB is not set | ||
| 1194 | # CONFIG_I2C_TINY_USB is not set | ||
| 1195 | # CONFIG_I2C_VIA is not set | 1183 | # CONFIG_I2C_VIA is not set |
| 1196 | # CONFIG_I2C_VIAPRO is not set | 1184 | # CONFIG_I2C_VIAPRO is not set |
| 1185 | |||
| 1186 | # | ||
| 1187 | # Mac SMBus host controller drivers | ||
| 1188 | # | ||
| 1189 | CONFIG_I2C_POWERMAC=y | ||
| 1190 | |||
| 1191 | # | ||
| 1192 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 1193 | # | ||
| 1194 | # CONFIG_I2C_MPC is not set | ||
| 1195 | # CONFIG_I2C_OCORES is not set | ||
| 1196 | # CONFIG_I2C_SIMTEC is not set | ||
| 1197 | |||
| 1198 | # | ||
| 1199 | # External I2C/SMBus adapter drivers | ||
| 1200 | # | ||
| 1201 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 1202 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 1203 | # CONFIG_I2C_TINY_USB is not set | ||
| 1204 | |||
| 1205 | # | ||
| 1206 | # Graphics adapter I2C/DDC channel drivers | ||
| 1207 | # | ||
| 1197 | # CONFIG_I2C_VOODOO3 is not set | 1208 | # CONFIG_I2C_VOODOO3 is not set |
| 1209 | |||
| 1210 | # | ||
| 1211 | # Other I2C/SMBus bus drivers | ||
| 1212 | # | ||
| 1198 | # CONFIG_I2C_PCA_PLATFORM is not set | 1213 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 1214 | # CONFIG_I2C_STUB is not set | ||
| 1199 | 1215 | ||
| 1200 | # | 1216 | # |
| 1201 | # Miscellaneous I2C Chip support | 1217 | # Miscellaneous I2C Chip support |
| 1202 | # | 1218 | # |
| 1203 | # CONFIG_DS1682 is not set | 1219 | # CONFIG_DS1682 is not set |
| 1220 | # CONFIG_AT24 is not set | ||
| 1204 | # CONFIG_SENSORS_EEPROM is not set | 1221 | # CONFIG_SENSORS_EEPROM is not set |
| 1205 | # CONFIG_SENSORS_PCF8574 is not set | 1222 | # CONFIG_SENSORS_PCF8574 is not set |
| 1206 | # CONFIG_PCF8575 is not set | 1223 | # CONFIG_PCF8575 is not set |
| 1224 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 1207 | # CONFIG_SENSORS_PCF8591 is not set | 1225 | # CONFIG_SENSORS_PCF8591 is not set |
| 1208 | # CONFIG_SENSORS_MAX6875 is not set | 1226 | # CONFIG_SENSORS_MAX6875 is not set |
| 1209 | # CONFIG_SENSORS_TSL2550 is not set | 1227 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -1212,6 +1230,8 @@ CONFIG_I2C_POWERMAC=y | |||
| 1212 | # CONFIG_I2C_DEBUG_BUS is not set | 1230 | # CONFIG_I2C_DEBUG_BUS is not set |
| 1213 | # CONFIG_I2C_DEBUG_CHIP is not set | 1231 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 1214 | # CONFIG_SPI is not set | 1232 | # CONFIG_SPI is not set |
| 1233 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 1234 | # CONFIG_GPIOLIB is not set | ||
| 1215 | # CONFIG_W1 is not set | 1235 | # CONFIG_W1 is not set |
| 1216 | CONFIG_POWER_SUPPLY=y | 1236 | CONFIG_POWER_SUPPLY=y |
| 1217 | # CONFIG_POWER_SUPPLY_DEBUG is not set | 1237 | # CONFIG_POWER_SUPPLY_DEBUG is not set |
| @@ -1221,6 +1241,7 @@ CONFIG_APM_POWER=y | |||
| 1221 | CONFIG_BATTERY_PMU=y | 1241 | CONFIG_BATTERY_PMU=y |
| 1222 | # CONFIG_HWMON is not set | 1242 | # CONFIG_HWMON is not set |
| 1223 | # CONFIG_THERMAL is not set | 1243 | # CONFIG_THERMAL is not set |
| 1244 | # CONFIG_THERMAL_HWMON is not set | ||
| 1224 | # CONFIG_WATCHDOG is not set | 1245 | # CONFIG_WATCHDOG is not set |
| 1225 | 1246 | ||
| 1226 | # | 1247 | # |
| @@ -1241,8 +1262,10 @@ CONFIG_SSB_DRIVER_PCICORE=y | |||
| 1241 | # | 1262 | # |
| 1242 | # Multifunction device drivers | 1263 | # Multifunction device drivers |
| 1243 | # | 1264 | # |
| 1265 | # CONFIG_MFD_CORE is not set | ||
| 1244 | # CONFIG_MFD_SM501 is not set | 1266 | # CONFIG_MFD_SM501 is not set |
| 1245 | # CONFIG_HTC_PASIC3 is not set | 1267 | # CONFIG_HTC_PASIC3 is not set |
| 1268 | # CONFIG_MFD_TMIO is not set | ||
| 1246 | 1269 | ||
| 1247 | # | 1270 | # |
| 1248 | # Multimedia devices | 1271 | # Multimedia devices |
| @@ -1343,10 +1366,13 @@ CONFIG_FB_3DFX=y | |||
| 1343 | # CONFIG_FB_TRIDENT is not set | 1366 | # CONFIG_FB_TRIDENT is not set |
| 1344 | # CONFIG_FB_ARK is not set | 1367 | # CONFIG_FB_ARK is not set |
| 1345 | # CONFIG_FB_PM3 is not set | 1368 | # CONFIG_FB_PM3 is not set |
| 1369 | # CONFIG_FB_CARMINE is not set | ||
| 1346 | # CONFIG_FB_IBM_GXT4500 is not set | 1370 | # CONFIG_FB_IBM_GXT4500 is not set |
| 1347 | # CONFIG_FB_VIRTUAL is not set | 1371 | # CONFIG_FB_VIRTUAL is not set |
| 1348 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 1372 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
| 1349 | CONFIG_LCD_CLASS_DEVICE=m | 1373 | CONFIG_LCD_CLASS_DEVICE=m |
| 1374 | # CONFIG_LCD_ILI9320 is not set | ||
| 1375 | # CONFIG_LCD_PLATFORM is not set | ||
| 1350 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 1376 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
| 1351 | # CONFIG_BACKLIGHT_CORGI is not set | 1377 | # CONFIG_BACKLIGHT_CORGI is not set |
| 1352 | 1378 | ||
| @@ -1374,15 +1400,7 @@ CONFIG_LOGO=y | |||
| 1374 | CONFIG_LOGO_LINUX_MONO=y | 1400 | CONFIG_LOGO_LINUX_MONO=y |
| 1375 | CONFIG_LOGO_LINUX_VGA16=y | 1401 | CONFIG_LOGO_LINUX_VGA16=y |
| 1376 | CONFIG_LOGO_LINUX_CLUT224=y | 1402 | CONFIG_LOGO_LINUX_CLUT224=y |
| 1377 | |||
| 1378 | # | ||
| 1379 | # Sound | ||
| 1380 | # | ||
| 1381 | CONFIG_SOUND=m | 1403 | CONFIG_SOUND=m |
| 1382 | |||
| 1383 | # | ||
| 1384 | # Advanced Linux Sound Architecture | ||
| 1385 | # | ||
| 1386 | CONFIG_SND=m | 1404 | CONFIG_SND=m |
| 1387 | CONFIG_SND_TIMER=m | 1405 | CONFIG_SND_TIMER=m |
| 1388 | CONFIG_SND_PCM=m | 1406 | CONFIG_SND_PCM=m |
| @@ -1400,19 +1418,13 @@ CONFIG_SND_SUPPORT_OLD_API=y | |||
| 1400 | CONFIG_SND_VERBOSE_PROCFS=y | 1418 | CONFIG_SND_VERBOSE_PROCFS=y |
| 1401 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1419 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 1402 | # CONFIG_SND_DEBUG is not set | 1420 | # CONFIG_SND_DEBUG is not set |
| 1403 | 1421 | CONFIG_SND_DRIVERS=y | |
| 1404 | # | ||
| 1405 | # Generic devices | ||
| 1406 | # | ||
| 1407 | CONFIG_SND_DUMMY=m | 1422 | CONFIG_SND_DUMMY=m |
| 1408 | # CONFIG_SND_VIRMIDI is not set | 1423 | # CONFIG_SND_VIRMIDI is not set |
| 1409 | # CONFIG_SND_MTPAV is not set | 1424 | # CONFIG_SND_MTPAV is not set |
| 1410 | # CONFIG_SND_SERIAL_U16550 is not set | 1425 | # CONFIG_SND_SERIAL_U16550 is not set |
| 1411 | # CONFIG_SND_MPU401 is not set | 1426 | # CONFIG_SND_MPU401 is not set |
| 1412 | 1427 | CONFIG_SND_PCI=y | |
| 1413 | # | ||
| 1414 | # PCI devices | ||
| 1415 | # | ||
| 1416 | # CONFIG_SND_AD1889 is not set | 1428 | # CONFIG_SND_AD1889 is not set |
| 1417 | # CONFIG_SND_ALS300 is not set | 1429 | # CONFIG_SND_ALS300 is not set |
| 1418 | # CONFIG_SND_ALS4000 is not set | 1430 | # CONFIG_SND_ALS4000 is not set |
| @@ -1474,20 +1486,9 @@ CONFIG_SND_DUMMY=m | |||
| 1474 | # CONFIG_SND_VIRTUOSO is not set | 1486 | # CONFIG_SND_VIRTUOSO is not set |
| 1475 | # CONFIG_SND_VX222 is not set | 1487 | # CONFIG_SND_VX222 is not set |
| 1476 | # CONFIG_SND_YMFPCI is not set | 1488 | # CONFIG_SND_YMFPCI is not set |
| 1477 | 1489 | CONFIG_SND_PPC=y | |
| 1478 | # | ||
| 1479 | # ALSA PowerMac devices | ||
| 1480 | # | ||
| 1481 | CONFIG_SND_POWERMAC=m | 1490 | CONFIG_SND_POWERMAC=m |
| 1482 | CONFIG_SND_POWERMAC_AUTO_DRC=y | 1491 | CONFIG_SND_POWERMAC_AUTO_DRC=y |
| 1483 | |||
| 1484 | # | ||
| 1485 | # ALSA PowerPC devices | ||
| 1486 | # | ||
| 1487 | |||
| 1488 | # | ||
| 1489 | # Apple Onboard Audio driver | ||
| 1490 | # | ||
| 1491 | CONFIG_SND_AOA=m | 1492 | CONFIG_SND_AOA=m |
| 1492 | CONFIG_SND_AOA_FABRIC_LAYOUT=m | 1493 | CONFIG_SND_AOA_FABRIC_LAYOUT=m |
| 1493 | CONFIG_SND_AOA_ONYX=m | 1494 | CONFIG_SND_AOA_ONYX=m |
| @@ -1495,36 +1496,14 @@ CONFIG_SND_AOA_TAS=m | |||
| 1495 | CONFIG_SND_AOA_TOONIE=m | 1496 | CONFIG_SND_AOA_TOONIE=m |
| 1496 | CONFIG_SND_AOA_SOUNDBUS=m | 1497 | CONFIG_SND_AOA_SOUNDBUS=m |
| 1497 | CONFIG_SND_AOA_SOUNDBUS_I2S=m | 1498 | CONFIG_SND_AOA_SOUNDBUS_I2S=m |
| 1498 | 1499 | CONFIG_SND_USB=y | |
| 1499 | # | ||
| 1500 | # USB devices | ||
| 1501 | # | ||
| 1502 | CONFIG_SND_USB_AUDIO=m | 1500 | CONFIG_SND_USB_AUDIO=m |
| 1503 | # CONFIG_SND_USB_USX2Y is not set | 1501 | # CONFIG_SND_USB_USX2Y is not set |
| 1504 | # CONFIG_SND_USB_CAIAQ is not set | 1502 | # CONFIG_SND_USB_CAIAQ is not set |
| 1505 | 1503 | CONFIG_SND_PCMCIA=y | |
| 1506 | # | ||
| 1507 | # PCMCIA devices | ||
| 1508 | # | ||
| 1509 | # CONFIG_SND_VXPOCKET is not set | 1504 | # CONFIG_SND_VXPOCKET is not set |
| 1510 | # CONFIG_SND_PDAUDIOCF is not set | 1505 | # CONFIG_SND_PDAUDIOCF is not set |
| 1511 | |||
| 1512 | # | ||
| 1513 | # System on Chip audio support | ||
| 1514 | # | ||
| 1515 | # CONFIG_SND_SOC is not set | 1506 | # CONFIG_SND_SOC is not set |
| 1516 | |||
| 1517 | # | ||
| 1518 | # ALSA SoC audio for Freescale SOCs | ||
| 1519 | # | ||
| 1520 | |||
| 1521 | # | ||
| 1522 | # SoC Audio for the Texas Instruments OMAP | ||
| 1523 | # | ||
| 1524 | |||
| 1525 | # | ||
| 1526 | # Open Sound System | ||
| 1527 | # | ||
| 1528 | # CONFIG_SOUND_PRIME is not set | 1507 | # CONFIG_SOUND_PRIME is not set |
| 1529 | CONFIG_HID_SUPPORT=y | 1508 | CONFIG_HID_SUPPORT=y |
| 1530 | CONFIG_HID=y | 1509 | CONFIG_HID=y |
| @@ -1554,6 +1533,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 1554 | CONFIG_USB_DYNAMIC_MINORS=y | 1533 | CONFIG_USB_DYNAMIC_MINORS=y |
| 1555 | # CONFIG_USB_SUSPEND is not set | 1534 | # CONFIG_USB_SUSPEND is not set |
| 1556 | # CONFIG_USB_OTG is not set | 1535 | # CONFIG_USB_OTG is not set |
| 1536 | CONFIG_USB_MON=y | ||
| 1557 | 1537 | ||
| 1558 | # | 1538 | # |
| 1559 | # USB Host Controller Drivers | 1539 | # USB Host Controller Drivers |
| @@ -1579,6 +1559,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1579 | # | 1559 | # |
| 1580 | CONFIG_USB_ACM=m | 1560 | CONFIG_USB_ACM=m |
| 1581 | CONFIG_USB_PRINTER=m | 1561 | CONFIG_USB_PRINTER=m |
| 1562 | # CONFIG_USB_WDM is not set | ||
| 1582 | 1563 | ||
| 1583 | # | 1564 | # |
| 1584 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1565 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1600,6 +1581,7 @@ CONFIG_USB_STORAGE=m | |||
| 1600 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1581 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1601 | CONFIG_USB_STORAGE_ONETOUCH=y | 1582 | CONFIG_USB_STORAGE_ONETOUCH=y |
| 1602 | # CONFIG_USB_STORAGE_KARMA is not set | 1583 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1584 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1603 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1585 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1604 | # CONFIG_USB_LIBUSUAL is not set | 1586 | # CONFIG_USB_LIBUSUAL is not set |
| 1605 | 1587 | ||
| @@ -1608,7 +1590,6 @@ CONFIG_USB_STORAGE_ONETOUCH=y | |||
| 1608 | # | 1590 | # |
| 1609 | # CONFIG_USB_MDC800 is not set | 1591 | # CONFIG_USB_MDC800 is not set |
| 1610 | # CONFIG_USB_MICROTEK is not set | 1592 | # CONFIG_USB_MICROTEK is not set |
| 1611 | CONFIG_USB_MON=y | ||
| 1612 | 1593 | ||
| 1613 | # | 1594 | # |
| 1614 | # USB port drivers | 1595 | # USB port drivers |
| @@ -1617,7 +1598,6 @@ CONFIG_USB_SERIAL=m | |||
| 1617 | CONFIG_USB_EZUSB=y | 1598 | CONFIG_USB_EZUSB=y |
| 1618 | # CONFIG_USB_SERIAL_GENERIC is not set | 1599 | # CONFIG_USB_SERIAL_GENERIC is not set |
| 1619 | # CONFIG_USB_SERIAL_AIRCABLE is not set | 1600 | # CONFIG_USB_SERIAL_AIRCABLE is not set |
| 1620 | # CONFIG_USB_SERIAL_AIRPRIME is not set | ||
| 1621 | # CONFIG_USB_SERIAL_ARK3116 is not set | 1601 | # CONFIG_USB_SERIAL_ARK3116 is not set |
| 1622 | # CONFIG_USB_SERIAL_BELKIN is not set | 1602 | # CONFIG_USB_SERIAL_BELKIN is not set |
| 1623 | # CONFIG_USB_SERIAL_CH341 is not set | 1603 | # CONFIG_USB_SERIAL_CH341 is not set |
| @@ -1676,7 +1656,6 @@ CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | |||
| 1676 | # CONFIG_USB_EMI62 is not set | 1656 | # CONFIG_USB_EMI62 is not set |
| 1677 | # CONFIG_USB_EMI26 is not set | 1657 | # CONFIG_USB_EMI26 is not set |
| 1678 | # CONFIG_USB_ADUTUX is not set | 1658 | # CONFIG_USB_ADUTUX is not set |
| 1679 | # CONFIG_USB_AUERSWALD is not set | ||
| 1680 | # CONFIG_USB_RIO500 is not set | 1659 | # CONFIG_USB_RIO500 is not set |
| 1681 | # CONFIG_USB_LEGOTOWER is not set | 1660 | # CONFIG_USB_LEGOTOWER is not set |
| 1682 | # CONFIG_USB_LCD is not set | 1661 | # CONFIG_USB_LCD is not set |
| @@ -1693,6 +1672,7 @@ CONFIG_USB_APPLEDISPLAY=m | |||
| 1693 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1672 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1694 | # CONFIG_USB_IOWARRIOR is not set | 1673 | # CONFIG_USB_IOWARRIOR is not set |
| 1695 | # CONFIG_USB_TEST is not set | 1674 | # CONFIG_USB_TEST is not set |
| 1675 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1696 | # CONFIG_USB_GADGET is not set | 1676 | # CONFIG_USB_GADGET is not set |
| 1697 | # CONFIG_MMC is not set | 1677 | # CONFIG_MMC is not set |
| 1698 | # CONFIG_MEMSTICK is not set | 1678 | # CONFIG_MEMSTICK is not set |
| @@ -1702,6 +1682,8 @@ CONFIG_LEDS_CLASS=y | |||
| 1702 | # | 1682 | # |
| 1703 | # LED drivers | 1683 | # LED drivers |
| 1704 | # | 1684 | # |
| 1685 | # CONFIG_LEDS_PCA9532 is not set | ||
| 1686 | # CONFIG_LEDS_PCA955X is not set | ||
| 1705 | 1687 | ||
| 1706 | # | 1688 | # |
| 1707 | # LED Triggers | 1689 | # LED Triggers |
| @@ -1789,6 +1771,7 @@ CONFIG_HFSPLUS_FS=m | |||
| 1789 | # CONFIG_CRAMFS is not set | 1771 | # CONFIG_CRAMFS is not set |
| 1790 | # CONFIG_VXFS_FS is not set | 1772 | # CONFIG_VXFS_FS is not set |
| 1791 | # CONFIG_MINIX_FS is not set | 1773 | # CONFIG_MINIX_FS is not set |
| 1774 | # CONFIG_OMFS_FS is not set | ||
| 1792 | # CONFIG_HPFS_FS is not set | 1775 | # CONFIG_HPFS_FS is not set |
| 1793 | # CONFIG_QNX4FS_FS is not set | 1776 | # CONFIG_QNX4FS_FS is not set |
| 1794 | # CONFIG_ROMFS_FS is not set | 1777 | # CONFIG_ROMFS_FS is not set |
| @@ -1811,7 +1794,6 @@ CONFIG_NFS_ACL_SUPPORT=y | |||
| 1811 | CONFIG_NFS_COMMON=y | 1794 | CONFIG_NFS_COMMON=y |
| 1812 | CONFIG_SUNRPC=y | 1795 | CONFIG_SUNRPC=y |
| 1813 | CONFIG_SUNRPC_GSS=y | 1796 | CONFIG_SUNRPC_GSS=y |
| 1814 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1815 | CONFIG_RPCSEC_GSS_KRB5=y | 1797 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1816 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1798 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1817 | CONFIG_SMB_FS=m | 1799 | CONFIG_SMB_FS=m |
| @@ -1891,6 +1873,7 @@ CONFIG_BITREVERSE=y | |||
| 1891 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1873 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1892 | CONFIG_CRC_CCITT=y | 1874 | CONFIG_CRC_CCITT=y |
| 1893 | CONFIG_CRC16=y | 1875 | CONFIG_CRC16=y |
| 1876 | CONFIG_CRC_T10DIF=y | ||
| 1894 | CONFIG_CRC_ITU_T=m | 1877 | CONFIG_CRC_ITU_T=m |
| 1895 | CONFIG_CRC32=y | 1878 | CONFIG_CRC32=y |
| 1896 | # CONFIG_CRC7 is not set | 1879 | # CONFIG_CRC7 is not set |
| @@ -1921,8 +1904,10 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 1921 | CONFIG_DEBUG_KERNEL=y | 1904 | CONFIG_DEBUG_KERNEL=y |
| 1922 | # CONFIG_DEBUG_SHIRQ is not set | 1905 | # CONFIG_DEBUG_SHIRQ is not set |
| 1923 | CONFIG_DETECT_SOFTLOCKUP=y | 1906 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1907 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1908 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1924 | CONFIG_SCHED_DEBUG=y | 1909 | CONFIG_SCHED_DEBUG=y |
| 1925 | # CONFIG_SCHEDSTATS is not set | 1910 | CONFIG_SCHEDSTATS=y |
| 1926 | # CONFIG_TIMER_STATS is not set | 1911 | # CONFIG_TIMER_STATS is not set |
| 1927 | # CONFIG_DEBUG_OBJECTS is not set | 1912 | # CONFIG_DEBUG_OBJECTS is not set |
| 1928 | # CONFIG_SLUB_DEBUG_ON is not set | 1913 | # CONFIG_SLUB_DEBUG_ON is not set |
| @@ -1933,24 +1918,38 @@ CONFIG_SCHED_DEBUG=y | |||
| 1933 | # CONFIG_DEBUG_MUTEXES is not set | 1918 | # CONFIG_DEBUG_MUTEXES is not set |
| 1934 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1919 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1935 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 1920 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
| 1921 | CONFIG_STACKTRACE=y | ||
| 1936 | # CONFIG_DEBUG_KOBJECT is not set | 1922 | # CONFIG_DEBUG_KOBJECT is not set |
| 1937 | CONFIG_DEBUG_BUGVERBOSE=y | 1923 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1938 | # CONFIG_DEBUG_INFO is not set | 1924 | # CONFIG_DEBUG_INFO is not set |
| 1939 | # CONFIG_DEBUG_VM is not set | 1925 | # CONFIG_DEBUG_VM is not set |
| 1940 | # CONFIG_DEBUG_WRITECOUNT is not set | 1926 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1927 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 1941 | # CONFIG_DEBUG_LIST is not set | 1928 | # CONFIG_DEBUG_LIST is not set |
| 1942 | # CONFIG_DEBUG_SG is not set | 1929 | # CONFIG_DEBUG_SG is not set |
| 1930 | CONFIG_FRAME_POINTER=y | ||
| 1943 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1931 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1944 | # CONFIG_RCU_TORTURE_TEST is not set | 1932 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1945 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1933 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1946 | # CONFIG_FAULT_INJECTION is not set | 1934 | # CONFIG_FAULT_INJECTION is not set |
| 1935 | CONFIG_LATENCYTOP=y | ||
| 1936 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1937 | CONFIG_HAVE_FTRACE=y | ||
| 1938 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1939 | # CONFIG_FTRACE is not set | ||
| 1940 | # CONFIG_SCHED_TRACER is not set | ||
| 1941 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1947 | # CONFIG_SAMPLES is not set | 1942 | # CONFIG_SAMPLES is not set |
| 1943 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1944 | # CONFIG_KGDB is not set | ||
| 1948 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1945 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1949 | # CONFIG_DEBUG_STACK_USAGE is not set | 1946 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1950 | CONFIG_DEBUGGER=y | 1947 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1948 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1951 | CONFIG_XMON=y | 1949 | CONFIG_XMON=y |
| 1952 | CONFIG_XMON_DEFAULT=y | 1950 | CONFIG_XMON_DEFAULT=y |
| 1953 | CONFIG_XMON_DISASSEMBLY=y | 1951 | CONFIG_XMON_DISASSEMBLY=y |
| 1952 | CONFIG_DEBUGGER=y | ||
| 1954 | CONFIG_IRQSTACKS=y | 1953 | CONFIG_IRQSTACKS=y |
| 1955 | # CONFIG_BDI_SWITCH is not set | 1954 | # CONFIG_BDI_SWITCH is not set |
| 1956 | CONFIG_BOOTX_TEXT=y | 1955 | CONFIG_BOOTX_TEXT=y |
| @@ -2009,6 +2008,10 @@ CONFIG_CRYPTO_CRC32C=m | |||
| 2009 | CONFIG_CRYPTO_MD4=m | 2008 | CONFIG_CRYPTO_MD4=m |
| 2010 | CONFIG_CRYPTO_MD5=y | 2009 | CONFIG_CRYPTO_MD5=y |
| 2011 | CONFIG_CRYPTO_MICHAEL_MIC=m | 2010 | CONFIG_CRYPTO_MICHAEL_MIC=m |
| 2011 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 2012 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 2013 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 2014 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 2012 | CONFIG_CRYPTO_SHA1=y | 2015 | CONFIG_CRYPTO_SHA1=y |
| 2013 | CONFIG_CRYPTO_SHA256=m | 2016 | CONFIG_CRYPTO_SHA256=m |
| 2014 | CONFIG_CRYPTO_SHA512=m | 2017 | CONFIG_CRYPTO_SHA512=m |
diff --git a/arch/powerpc/configs/ppc64_defconfig b/arch/powerpc/configs/ppc64_defconfig index ce250bc98584..fc5930caeb5f 100644 --- a/arch/powerpc/configs/ppc64_defconfig +++ b/arch/powerpc/configs/ppc64_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.26-rc6 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 16 21:11:19 2008 | 4 | # Tue Aug 26 13:22:03 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_POWER4=y | |||
| 14 | # CONFIG_TUNE_CELL is not set | 14 | # CONFIG_TUNE_CELL is not set |
| 15 | CONFIG_PPC_FPU=y | 15 | CONFIG_PPC_FPU=y |
| 16 | CONFIG_ALTIVEC=y | 16 | CONFIG_ALTIVEC=y |
| 17 | CONFIG_VSX=y | ||
| 17 | CONFIG_PPC_STD_MMU=y | 18 | CONFIG_PPC_STD_MMU=y |
| 18 | CONFIG_PPC_MM_SLICES=y | 19 | CONFIG_PPC_MM_SLICES=y |
| 19 | CONFIG_VIRT_CPU_ACCOUNTING=y | 20 | CONFIG_VIRT_CPU_ACCOUNTING=y |
| @@ -31,6 +32,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 31 | CONFIG_HAVE_SETUP_PER_CPU_AREA=y | 32 | CONFIG_HAVE_SETUP_PER_CPU_AREA=y |
| 32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
| 33 | CONFIG_STACKTRACE_SUPPORT=y | 34 | CONFIG_STACKTRACE_SUPPORT=y |
| 35 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 34 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 36 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| @@ -105,7 +107,6 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 105 | CONFIG_SYSCTL=y | 107 | CONFIG_SYSCTL=y |
| 106 | # CONFIG_EMBEDDED is not set | 108 | # CONFIG_EMBEDDED is not set |
| 107 | CONFIG_SYSCTL_SYSCALL=y | 109 | CONFIG_SYSCTL_SYSCALL=y |
| 108 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 109 | CONFIG_KALLSYMS=y | 110 | CONFIG_KALLSYMS=y |
| 110 | CONFIG_KALLSYMS_ALL=y | 111 | CONFIG_KALLSYMS_ALL=y |
| 111 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 112 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -129,14 +130,20 @@ CONFIG_SLUB_DEBUG=y | |||
| 129 | CONFIG_SLUB=y | 130 | CONFIG_SLUB=y |
| 130 | # CONFIG_SLOB is not set | 131 | # CONFIG_SLOB is not set |
| 131 | CONFIG_PROFILING=y | 132 | CONFIG_PROFILING=y |
| 132 | # CONFIG_MARKERS is not set | 133 | CONFIG_MARKERS=y |
| 133 | CONFIG_OPROFILE=y | 134 | CONFIG_OPROFILE=y |
| 134 | CONFIG_HAVE_OPROFILE=y | 135 | CONFIG_HAVE_OPROFILE=y |
| 135 | # CONFIG_KPROBES is not set | 136 | # CONFIG_KPROBES is not set |
| 137 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 138 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 136 | CONFIG_HAVE_KPROBES=y | 139 | CONFIG_HAVE_KPROBES=y |
| 137 | CONFIG_HAVE_KRETPROBES=y | 140 | CONFIG_HAVE_KRETPROBES=y |
| 138 | # CONFIG_HAVE_DMA_ATTRS is not set | 141 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 142 | CONFIG_HAVE_DMA_ATTRS=y | ||
| 143 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
| 144 | # CONFIG_HAVE_CLK is not set | ||
| 139 | CONFIG_PROC_PAGE_MONITOR=y | 145 | CONFIG_PROC_PAGE_MONITOR=y |
| 146 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 140 | CONFIG_SLABINFO=y | 147 | CONFIG_SLABINFO=y |
| 141 | CONFIG_RT_MUTEXES=y | 148 | CONFIG_RT_MUTEXES=y |
| 142 | # CONFIG_TINY_SHMEM is not set | 149 | # CONFIG_TINY_SHMEM is not set |
| @@ -152,6 +159,7 @@ CONFIG_STOP_MACHINE=y | |||
| 152 | CONFIG_BLOCK=y | 159 | CONFIG_BLOCK=y |
| 153 | CONFIG_BLK_DEV_IO_TRACE=y | 160 | CONFIG_BLK_DEV_IO_TRACE=y |
| 154 | CONFIG_BLK_DEV_BSG=y | 161 | CONFIG_BLK_DEV_BSG=y |
| 162 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 155 | CONFIG_BLOCK_COMPAT=y | 163 | CONFIG_BLOCK_COMPAT=y |
| 156 | 164 | ||
| 157 | # | 165 | # |
| @@ -172,14 +180,13 @@ CONFIG_CLASSIC_RCU=y | |||
| 172 | # Platform support | 180 | # Platform support |
| 173 | # | 181 | # |
| 174 | CONFIG_PPC_MULTIPLATFORM=y | 182 | CONFIG_PPC_MULTIPLATFORM=y |
| 175 | # CONFIG_PPC_82xx is not set | ||
| 176 | # CONFIG_PPC_83xx is not set | ||
| 177 | # CONFIG_PPC_86xx is not set | ||
| 178 | CONFIG_PPC_PSERIES=y | 183 | CONFIG_PPC_PSERIES=y |
| 179 | CONFIG_PPC_SPLPAR=y | 184 | CONFIG_PPC_SPLPAR=y |
| 180 | CONFIG_EEH=y | 185 | CONFIG_EEH=y |
| 181 | CONFIG_SCANLOG=m | 186 | CONFIG_SCANLOG=m |
| 182 | CONFIG_LPARCFG=y | 187 | CONFIG_LPARCFG=y |
| 188 | CONFIG_PPC_SMLPAR=y | ||
| 189 | CONFIG_CMM=y | ||
| 183 | CONFIG_PPC_ISERIES=y | 190 | CONFIG_PPC_ISERIES=y |
| 184 | 191 | ||
| 185 | # | 192 | # |
| @@ -189,8 +196,6 @@ CONFIG_VIODASD=y | |||
| 189 | CONFIG_VIOCD=m | 196 | CONFIG_VIOCD=m |
| 190 | CONFIG_VIOTAPE=m | 197 | CONFIG_VIOTAPE=m |
| 191 | CONFIG_VIOPATH=y | 198 | CONFIG_VIOPATH=y |
| 192 | # CONFIG_PPC_MPC512x is not set | ||
| 193 | # CONFIG_PPC_MPC5121 is not set | ||
| 194 | CONFIG_PPC_PMAC=y | 199 | CONFIG_PPC_PMAC=y |
| 195 | CONFIG_PPC_PMAC64=y | 200 | CONFIG_PPC_PMAC64=y |
| 196 | CONFIG_PPC_MAPLE=y | 201 | CONFIG_PPC_MAPLE=y |
| @@ -213,11 +218,15 @@ CONFIG_PPC_CELLEB=y | |||
| 213 | # | 218 | # |
| 214 | CONFIG_SPU_FS=m | 219 | CONFIG_SPU_FS=m |
| 215 | CONFIG_SPU_FS_64K_LS=y | 220 | CONFIG_SPU_FS_64K_LS=y |
| 221 | # CONFIG_SPU_TRACE is not set | ||
| 216 | CONFIG_SPU_BASE=y | 222 | CONFIG_SPU_BASE=y |
| 217 | CONFIG_CBE_RAS=y | 223 | CONFIG_CBE_RAS=y |
| 224 | CONFIG_PPC_IBM_CELL_RESETBUTTON=y | ||
| 225 | CONFIG_PPC_IBM_CELL_POWERBUTTON=m | ||
| 218 | CONFIG_CBE_THERM=m | 226 | CONFIG_CBE_THERM=m |
| 219 | CONFIG_CBE_CPUFREQ=m | 227 | CONFIG_CBE_CPUFREQ=m |
| 220 | CONFIG_CBE_CPUFREQ_PMI=m | 228 | CONFIG_CBE_CPUFREQ_PMI=m |
| 229 | CONFIG_CBE_CPUFREQ_SPU_GOVERNOR=m | ||
| 221 | CONFIG_OPROFILE_CELL=y | 230 | CONFIG_OPROFILE_CELL=y |
| 222 | # CONFIG_PQ2ADS is not set | 231 | # CONFIG_PQ2ADS is not set |
| 223 | CONFIG_PPC_NATIVE=y | 232 | CONFIG_PPC_NATIVE=y |
| @@ -279,7 +288,7 @@ CONFIG_HZ_250=y | |||
| 279 | # CONFIG_HZ_300 is not set | 288 | # CONFIG_HZ_300 is not set |
| 280 | # CONFIG_HZ_1000 is not set | 289 | # CONFIG_HZ_1000 is not set |
| 281 | CONFIG_HZ=250 | 290 | CONFIG_HZ=250 |
| 282 | # CONFIG_SCHED_HRTICK is not set | 291 | CONFIG_SCHED_HRTICK=y |
| 283 | CONFIG_PREEMPT_NONE=y | 292 | CONFIG_PREEMPT_NONE=y |
| 284 | # CONFIG_PREEMPT_VOLUNTARY is not set | 293 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 285 | # CONFIG_PREEMPT is not set | 294 | # CONFIG_PREEMPT is not set |
| @@ -315,8 +324,10 @@ CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y | |||
| 315 | CONFIG_SPARSEMEM_VMEMMAP=y | 324 | CONFIG_SPARSEMEM_VMEMMAP=y |
| 316 | CONFIG_MEMORY_HOTPLUG=y | 325 | CONFIG_MEMORY_HOTPLUG=y |
| 317 | CONFIG_MEMORY_HOTPLUG_SPARSE=y | 326 | CONFIG_MEMORY_HOTPLUG_SPARSE=y |
| 327 | CONFIG_MEMORY_HOTREMOVE=y | ||
| 318 | CONFIG_PAGEFLAGS_EXTENDED=y | 328 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 319 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 329 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 330 | CONFIG_MIGRATION=y | ||
| 320 | CONFIG_RESOURCES_64BIT=y | 331 | CONFIG_RESOURCES_64BIT=y |
| 321 | CONFIG_ZONE_DMA_FLAG=1 | 332 | CONFIG_ZONE_DMA_FLAG=1 |
| 322 | CONFIG_BOUNCE=y | 333 | CONFIG_BOUNCE=y |
| @@ -327,6 +338,7 @@ CONFIG_FORCE_MAX_ZONEORDER=13 | |||
| 327 | # CONFIG_SCHED_SMT is not set | 338 | # CONFIG_SCHED_SMT is not set |
| 328 | CONFIG_PROC_DEVICETREE=y | 339 | CONFIG_PROC_DEVICETREE=y |
| 329 | # CONFIG_CMDLINE_BOOL is not set | 340 | # CONFIG_CMDLINE_BOOL is not set |
| 341 | CONFIG_EXTRA_TARGETS="" | ||
| 330 | CONFIG_ARCH_WANTS_FREEZER_CONTROL=y | 342 | CONFIG_ARCH_WANTS_FREEZER_CONTROL=y |
| 331 | # CONFIG_PM is not set | 343 | # CONFIG_PM is not set |
| 332 | CONFIG_SECCOMP=y | 344 | CONFIG_SECCOMP=y |
| @@ -370,10 +382,6 @@ CONFIG_HOTPLUG_PCI_RPA_DLPAR=m | |||
| 370 | CONFIG_PAGE_OFFSET=0xc000000000000000 | 382 | CONFIG_PAGE_OFFSET=0xc000000000000000 |
| 371 | CONFIG_KERNEL_START=0xc000000000000000 | 383 | CONFIG_KERNEL_START=0xc000000000000000 |
| 372 | CONFIG_PHYSICAL_START=0x00000000 | 384 | CONFIG_PHYSICAL_START=0x00000000 |
| 373 | |||
| 374 | # | ||
| 375 | # Networking | ||
| 376 | # | ||
| 377 | CONFIG_NET=y | 385 | CONFIG_NET=y |
| 378 | 386 | ||
| 379 | # | 387 | # |
| @@ -387,6 +395,7 @@ CONFIG_XFRM_USER=m | |||
| 387 | # CONFIG_XFRM_SUB_POLICY is not set | 395 | # CONFIG_XFRM_SUB_POLICY is not set |
| 388 | # CONFIG_XFRM_MIGRATE is not set | 396 | # CONFIG_XFRM_MIGRATE is not set |
| 389 | # CONFIG_XFRM_STATISTICS is not set | 397 | # CONFIG_XFRM_STATISTICS is not set |
| 398 | CONFIG_XFRM_IPCOMP=m | ||
| 390 | CONFIG_NET_KEY=m | 399 | CONFIG_NET_KEY=m |
| 391 | # CONFIG_NET_KEY_MIGRATE is not set | 400 | # CONFIG_NET_KEY_MIGRATE is not set |
| 392 | CONFIG_INET=y | 401 | CONFIG_INET=y |
| @@ -578,6 +587,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 578 | CONFIG_STANDALONE=y | 587 | CONFIG_STANDALONE=y |
| 579 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 588 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 580 | CONFIG_FW_LOADER=y | 589 | CONFIG_FW_LOADER=y |
| 590 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 591 | CONFIG_EXTRA_FIRMWARE="" | ||
| 581 | # CONFIG_DEBUG_DRIVER is not set | 592 | # CONFIG_DEBUG_DRIVER is not set |
| 582 | # CONFIG_DEBUG_DEVRES is not set | 593 | # CONFIG_DEBUG_DEVRES is not set |
| 583 | # CONFIG_SYS_HYPERVISOR is not set | 594 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -603,12 +614,14 @@ CONFIG_BLK_DEV_RAM_SIZE=65536 | |||
| 603 | # CONFIG_BLK_DEV_XIP is not set | 614 | # CONFIG_BLK_DEV_XIP is not set |
| 604 | # CONFIG_CDROM_PKTCDVD is not set | 615 | # CONFIG_CDROM_PKTCDVD is not set |
| 605 | # CONFIG_ATA_OVER_ETH is not set | 616 | # CONFIG_ATA_OVER_ETH is not set |
| 617 | # CONFIG_BLK_DEV_HD is not set | ||
| 606 | CONFIG_MISC_DEVICES=y | 618 | CONFIG_MISC_DEVICES=y |
| 607 | # CONFIG_PHANTOM is not set | 619 | # CONFIG_PHANTOM is not set |
| 608 | # CONFIG_EEPROM_93CX6 is not set | 620 | # CONFIG_EEPROM_93CX6 is not set |
| 609 | # CONFIG_SGI_IOC4 is not set | 621 | # CONFIG_SGI_IOC4 is not set |
| 610 | # CONFIG_TIFM_CORE is not set | 622 | # CONFIG_TIFM_CORE is not set |
| 611 | # CONFIG_ENCLOSURE_SERVICES is not set | 623 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 624 | # CONFIG_HP_ILO is not set | ||
| 612 | CONFIG_HAVE_IDE=y | 625 | CONFIG_HAVE_IDE=y |
| 613 | CONFIG_IDE=y | 626 | CONFIG_IDE=y |
| 614 | CONFIG_BLK_DEV_IDE=y | 627 | CONFIG_BLK_DEV_IDE=y |
| @@ -616,6 +629,7 @@ CONFIG_BLK_DEV_IDE=y | |||
| 616 | # | 629 | # |
| 617 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 630 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 618 | # | 631 | # |
| 632 | CONFIG_IDE_TIMINGS=y | ||
| 619 | # CONFIG_BLK_DEV_IDE_SATA is not set | 633 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 620 | CONFIG_BLK_DEV_IDEDISK=y | 634 | CONFIG_BLK_DEV_IDEDISK=y |
| 621 | # CONFIG_IDEDISK_MULTI_MODE is not set | 635 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| @@ -649,10 +663,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 649 | CONFIG_BLK_DEV_AMD74XX=y | 663 | CONFIG_BLK_DEV_AMD74XX=y |
| 650 | # CONFIG_BLK_DEV_CMD64X is not set | 664 | # CONFIG_BLK_DEV_CMD64X is not set |
| 651 | # CONFIG_BLK_DEV_TRIFLEX is not set | 665 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 652 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 653 | # CONFIG_BLK_DEV_CS5520 is not set | 666 | # CONFIG_BLK_DEV_CS5520 is not set |
| 654 | # CONFIG_BLK_DEV_CS5530 is not set | 667 | # CONFIG_BLK_DEV_CS5530 is not set |
| 655 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 656 | # CONFIG_BLK_DEV_HPT366 is not set | 668 | # CONFIG_BLK_DEV_HPT366 is not set |
| 657 | # CONFIG_BLK_DEV_JMICRON is not set | 669 | # CONFIG_BLK_DEV_JMICRON is not set |
| 658 | # CONFIG_BLK_DEV_SC1200 is not set | 670 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -674,8 +686,6 @@ CONFIG_BLK_DEV_IDE_PMAC=y | |||
| 674 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y | 686 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y |
| 675 | CONFIG_BLK_DEV_IDEDMA_PMAC=y | 687 | CONFIG_BLK_DEV_IDEDMA_PMAC=y |
| 676 | CONFIG_BLK_DEV_IDEDMA=y | 688 | CONFIG_BLK_DEV_IDEDMA=y |
| 677 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 678 | # CONFIG_BLK_DEV_HD is not set | ||
| 679 | 689 | ||
| 680 | # | 690 | # |
| 681 | # SCSI device support | 691 | # SCSI device support |
| @@ -737,6 +747,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 737 | # CONFIG_SCSI_GDTH is not set | 747 | # CONFIG_SCSI_GDTH is not set |
| 738 | # CONFIG_SCSI_IPS is not set | 748 | # CONFIG_SCSI_IPS is not set |
| 739 | CONFIG_SCSI_IBMVSCSI=y | 749 | CONFIG_SCSI_IBMVSCSI=y |
| 750 | CONFIG_SCSI_IBMVFC=m | ||
| 751 | CONFIG_SCSI_IBMVFC_TRACE=y | ||
| 740 | # CONFIG_SCSI_INITIO is not set | 752 | # CONFIG_SCSI_INITIO is not set |
| 741 | # CONFIG_SCSI_INIA100 is not set | 753 | # CONFIG_SCSI_INIA100 is not set |
| 742 | # CONFIG_SCSI_MVSAS is not set | 754 | # CONFIG_SCSI_MVSAS is not set |
| @@ -758,6 +770,7 @@ CONFIG_SCSI_LPFC=m | |||
| 758 | CONFIG_SCSI_DEBUG=m | 770 | CONFIG_SCSI_DEBUG=m |
| 759 | # CONFIG_SCSI_SRP is not set | 771 | # CONFIG_SCSI_SRP is not set |
| 760 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | 772 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set |
| 773 | # CONFIG_SCSI_DH is not set | ||
| 761 | CONFIG_ATA=y | 774 | CONFIG_ATA=y |
| 762 | CONFIG_ATA_NONSTANDARD=y | 775 | CONFIG_ATA_NONSTANDARD=y |
| 763 | CONFIG_SATA_PMP=y | 776 | CONFIG_SATA_PMP=y |
| @@ -837,9 +850,6 @@ CONFIG_DM_SNAPSHOT=m | |||
| 837 | CONFIG_DM_MIRROR=m | 850 | CONFIG_DM_MIRROR=m |
| 838 | CONFIG_DM_ZERO=m | 851 | CONFIG_DM_ZERO=m |
| 839 | CONFIG_DM_MULTIPATH=m | 852 | CONFIG_DM_MULTIPATH=m |
| 840 | CONFIG_DM_MULTIPATH_EMC=m | ||
| 841 | # CONFIG_DM_MULTIPATH_RDAC is not set | ||
| 842 | # CONFIG_DM_MULTIPATH_HP is not set | ||
| 843 | # CONFIG_DM_DELAY is not set | 853 | # CONFIG_DM_DELAY is not set |
| 844 | # CONFIG_DM_UEVENT is not set | 854 | # CONFIG_DM_UEVENT is not set |
| 845 | # CONFIG_FUSION is not set | 855 | # CONFIG_FUSION is not set |
| @@ -847,29 +857,21 @@ CONFIG_DM_MULTIPATH_EMC=m | |||
| 847 | # | 857 | # |
| 848 | # IEEE 1394 (FireWire) support | 858 | # IEEE 1394 (FireWire) support |
| 849 | # | 859 | # |
| 850 | # CONFIG_FIREWIRE is not set | ||
| 851 | CONFIG_IEEE1394=y | ||
| 852 | |||
| 853 | # | ||
| 854 | # Subsystem Options | ||
| 855 | # | ||
| 856 | # CONFIG_IEEE1394_VERBOSEDEBUG is not set | ||
| 857 | 860 | ||
| 858 | # | 861 | # |
| 859 | # Controllers | 862 | # Enable only one of the two stacks, unless you know what you are doing |
| 860 | # | 863 | # |
| 861 | # CONFIG_IEEE1394_PCILYNX is not set | 864 | # CONFIG_FIREWIRE is not set |
| 865 | CONFIG_IEEE1394=y | ||
| 862 | CONFIG_IEEE1394_OHCI1394=y | 866 | CONFIG_IEEE1394_OHCI1394=y |
| 863 | 867 | # CONFIG_IEEE1394_PCILYNX is not set | |
| 864 | # | ||
| 865 | # Protocols | ||
| 866 | # | ||
| 867 | CONFIG_IEEE1394_VIDEO1394=m | ||
| 868 | CONFIG_IEEE1394_SBP2=m | 868 | CONFIG_IEEE1394_SBP2=m |
| 869 | CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y | 869 | CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y |
| 870 | CONFIG_IEEE1394_ETH1394=m | 870 | CONFIG_IEEE1394_ETH1394=m |
| 871 | CONFIG_IEEE1394_DV1394=m | ||
| 872 | CONFIG_IEEE1394_RAWIO=y | 871 | CONFIG_IEEE1394_RAWIO=y |
| 872 | CONFIG_IEEE1394_VIDEO1394=m | ||
| 873 | CONFIG_IEEE1394_DV1394=m | ||
| 874 | # CONFIG_IEEE1394_VERBOSEDEBUG is not set | ||
| 873 | # CONFIG_I2O is not set | 875 | # CONFIG_I2O is not set |
| 874 | CONFIG_MACINTOSH_DRIVERS=y | 876 | CONFIG_MACINTOSH_DRIVERS=y |
| 875 | CONFIG_ADB_PMU=y | 877 | CONFIG_ADB_PMU=y |
| @@ -884,7 +886,6 @@ CONFIG_WINDFARM_PM112=y | |||
| 884 | CONFIG_WINDFARM_PM121=y | 886 | CONFIG_WINDFARM_PM121=y |
| 885 | # CONFIG_PMAC_RACKMETER is not set | 887 | # CONFIG_PMAC_RACKMETER is not set |
| 886 | CONFIG_NETDEVICES=y | 888 | CONFIG_NETDEVICES=y |
| 887 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 888 | CONFIG_DUMMY=m | 889 | CONFIG_DUMMY=m |
| 889 | CONFIG_BONDING=m | 890 | CONFIG_BONDING=m |
| 890 | # CONFIG_MACVLAN is not set | 891 | # CONFIG_MACVLAN is not set |
| @@ -942,6 +943,7 @@ CONFIG_E100=y | |||
| 942 | # CONFIG_SIS900 is not set | 943 | # CONFIG_SIS900 is not set |
| 943 | # CONFIG_EPIC100 is not set | 944 | # CONFIG_EPIC100 is not set |
| 944 | # CONFIG_SUNDANCE is not set | 945 | # CONFIG_SUNDANCE is not set |
| 946 | # CONFIG_TLAN is not set | ||
| 945 | # CONFIG_VIA_RHINE is not set | 947 | # CONFIG_VIA_RHINE is not set |
| 946 | # CONFIG_SC92031 is not set | 948 | # CONFIG_SC92031 is not set |
| 947 | CONFIG_NETDEV_1000=y | 949 | CONFIG_NETDEV_1000=y |
| @@ -949,10 +951,8 @@ CONFIG_ACENIC=y | |||
| 949 | CONFIG_ACENIC_OMIT_TIGON_I=y | 951 | CONFIG_ACENIC_OMIT_TIGON_I=y |
| 950 | # CONFIG_DL2K is not set | 952 | # CONFIG_DL2K is not set |
| 951 | CONFIG_E1000=y | 953 | CONFIG_E1000=y |
| 952 | # CONFIG_E1000_NAPI is not set | ||
| 953 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 954 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
| 954 | # CONFIG_E1000E is not set | 955 | # CONFIG_E1000E is not set |
| 955 | # CONFIG_E1000E_ENABLED is not set | ||
| 956 | # CONFIG_IP1000 is not set | 956 | # CONFIG_IP1000 is not set |
| 957 | # CONFIG_IGB is not set | 957 | # CONFIG_IGB is not set |
| 958 | # CONFIG_NS83820 is not set | 958 | # CONFIG_NS83820 is not set |
| @@ -968,13 +968,13 @@ CONFIG_TIGON3=y | |||
| 968 | CONFIG_SPIDER_NET=m | 968 | CONFIG_SPIDER_NET=m |
| 969 | # CONFIG_QLA3XXX is not set | 969 | # CONFIG_QLA3XXX is not set |
| 970 | # CONFIG_ATL1 is not set | 970 | # CONFIG_ATL1 is not set |
| 971 | # CONFIG_ATL1E is not set | ||
| 971 | CONFIG_NETDEV_10000=y | 972 | CONFIG_NETDEV_10000=y |
| 972 | # CONFIG_CHELSIO_T1 is not set | 973 | # CONFIG_CHELSIO_T1 is not set |
| 973 | # CONFIG_CHELSIO_T3 is not set | 974 | # CONFIG_CHELSIO_T3 is not set |
| 974 | CONFIG_EHEA=m | 975 | CONFIG_EHEA=m |
| 975 | # CONFIG_IXGBE is not set | 976 | # CONFIG_IXGBE is not set |
| 976 | CONFIG_IXGB=m | 977 | CONFIG_IXGB=m |
| 977 | # CONFIG_IXGB_NAPI is not set | ||
| 978 | # CONFIG_S2IO is not set | 978 | # CONFIG_S2IO is not set |
| 979 | # CONFIG_MYRI10GE is not set | 979 | # CONFIG_MYRI10GE is not set |
| 980 | # CONFIG_NETXEN_NIC is not set | 980 | # CONFIG_NETXEN_NIC is not set |
| @@ -1068,6 +1068,7 @@ CONFIG_MOUSE_PS2_TRACKPOINT=y | |||
| 1068 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 1068 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| 1069 | # CONFIG_MOUSE_SERIAL is not set | 1069 | # CONFIG_MOUSE_SERIAL is not set |
| 1070 | # CONFIG_MOUSE_APPLETOUCH is not set | 1070 | # CONFIG_MOUSE_APPLETOUCH is not set |
| 1071 | # CONFIG_MOUSE_BCM5974 is not set | ||
| 1071 | # CONFIG_MOUSE_VSXXXAA is not set | 1072 | # CONFIG_MOUSE_VSXXXAA is not set |
| 1072 | # CONFIG_INPUT_JOYSTICK is not set | 1073 | # CONFIG_INPUT_JOYSTICK is not set |
| 1073 | # CONFIG_INPUT_TABLET is not set | 1074 | # CONFIG_INPUT_TABLET is not set |
| @@ -1090,12 +1091,14 @@ CONFIG_SERIO_I8042=y | |||
| 1090 | # CONFIG_SERIO_PCIPS2 is not set | 1091 | # CONFIG_SERIO_PCIPS2 is not set |
| 1091 | CONFIG_SERIO_LIBPS2=y | 1092 | CONFIG_SERIO_LIBPS2=y |
| 1092 | # CONFIG_SERIO_RAW is not set | 1093 | # CONFIG_SERIO_RAW is not set |
| 1094 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 1093 | # CONFIG_GAMEPORT is not set | 1095 | # CONFIG_GAMEPORT is not set |
| 1094 | 1096 | ||
| 1095 | # | 1097 | # |
| 1096 | # Character devices | 1098 | # Character devices |
| 1097 | # | 1099 | # |
| 1098 | CONFIG_VT=y | 1100 | CONFIG_VT=y |
| 1101 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 1099 | CONFIG_VT_CONSOLE=y | 1102 | CONFIG_VT_CONSOLE=y |
| 1100 | CONFIG_HW_CONSOLE=y | 1103 | CONFIG_HW_CONSOLE=y |
| 1101 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 1104 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -1131,11 +1134,13 @@ CONFIG_UNIX98_PTYS=y | |||
| 1131 | CONFIG_LEGACY_PTYS=y | 1134 | CONFIG_LEGACY_PTYS=y |
| 1132 | CONFIG_LEGACY_PTY_COUNT=256 | 1135 | CONFIG_LEGACY_PTY_COUNT=256 |
| 1133 | CONFIG_HVC_DRIVER=y | 1136 | CONFIG_HVC_DRIVER=y |
| 1137 | CONFIG_HVC_IRQ=y | ||
| 1134 | CONFIG_HVC_CONSOLE=y | 1138 | CONFIG_HVC_CONSOLE=y |
| 1135 | CONFIG_HVC_ISERIES=y | 1139 | CONFIG_HVC_ISERIES=y |
| 1136 | CONFIG_HVC_RTAS=y | 1140 | CONFIG_HVC_RTAS=y |
| 1137 | CONFIG_HVC_BEAT=y | 1141 | CONFIG_HVC_BEAT=y |
| 1138 | CONFIG_HVCS=m | 1142 | CONFIG_HVCS=m |
| 1143 | CONFIG_IBM_BSR=m | ||
| 1139 | # CONFIG_IPMI_HANDLER is not set | 1144 | # CONFIG_IPMI_HANDLER is not set |
| 1140 | # CONFIG_HW_RANDOM is not set | 1145 | # CONFIG_HW_RANDOM is not set |
| 1141 | # CONFIG_R3964 is not set | 1146 | # CONFIG_R3964 is not set |
| @@ -1156,45 +1161,70 @@ CONFIG_DEVPORT=y | |||
| 1156 | CONFIG_I2C=y | 1161 | CONFIG_I2C=y |
| 1157 | CONFIG_I2C_BOARDINFO=y | 1162 | CONFIG_I2C_BOARDINFO=y |
| 1158 | CONFIG_I2C_CHARDEV=y | 1163 | CONFIG_I2C_CHARDEV=y |
| 1164 | CONFIG_I2C_HELPER_AUTO=y | ||
| 1159 | CONFIG_I2C_ALGOBIT=y | 1165 | CONFIG_I2C_ALGOBIT=y |
| 1160 | 1166 | ||
| 1161 | # | 1167 | # |
| 1162 | # I2C Hardware Bus support | 1168 | # I2C Hardware Bus support |
| 1163 | # | 1169 | # |
| 1170 | |||
| 1171 | # | ||
| 1172 | # PC SMBus host controller drivers | ||
| 1173 | # | ||
| 1164 | # CONFIG_I2C_ALI1535 is not set | 1174 | # CONFIG_I2C_ALI1535 is not set |
| 1165 | # CONFIG_I2C_ALI1563 is not set | 1175 | # CONFIG_I2C_ALI1563 is not set |
| 1166 | # CONFIG_I2C_ALI15X3 is not set | 1176 | # CONFIG_I2C_ALI15X3 is not set |
| 1167 | # CONFIG_I2C_AMD756 is not set | 1177 | # CONFIG_I2C_AMD756 is not set |
| 1168 | CONFIG_I2C_AMD8111=y | 1178 | CONFIG_I2C_AMD8111=y |
| 1169 | # CONFIG_I2C_I801 is not set | 1179 | # CONFIG_I2C_I801 is not set |
| 1170 | # CONFIG_I2C_I810 is not set | 1180 | # CONFIG_I2C_ISCH is not set |
| 1171 | # CONFIG_I2C_PIIX4 is not set | 1181 | # CONFIG_I2C_PIIX4 is not set |
| 1172 | CONFIG_I2C_POWERMAC=y | ||
| 1173 | # CONFIG_I2C_NFORCE2 is not set | 1182 | # CONFIG_I2C_NFORCE2 is not set |
| 1174 | # CONFIG_I2C_OCORES is not set | ||
| 1175 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 1176 | CONFIG_I2C_PASEMI=y | ||
| 1177 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 1178 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 1179 | # CONFIG_I2C_SIMTEC is not set | ||
| 1180 | # CONFIG_I2C_SIS5595 is not set | 1183 | # CONFIG_I2C_SIS5595 is not set |
| 1181 | # CONFIG_I2C_SIS630 is not set | 1184 | # CONFIG_I2C_SIS630 is not set |
| 1182 | # CONFIG_I2C_SIS96X is not set | 1185 | # CONFIG_I2C_SIS96X is not set |
| 1183 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 1184 | # CONFIG_I2C_STUB is not set | ||
| 1185 | # CONFIG_I2C_TINY_USB is not set | ||
| 1186 | # CONFIG_I2C_VIA is not set | 1186 | # CONFIG_I2C_VIA is not set |
| 1187 | # CONFIG_I2C_VIAPRO is not set | 1187 | # CONFIG_I2C_VIAPRO is not set |
| 1188 | |||
| 1189 | # | ||
| 1190 | # Mac SMBus host controller drivers | ||
| 1191 | # | ||
| 1192 | CONFIG_I2C_POWERMAC=y | ||
| 1193 | |||
| 1194 | # | ||
| 1195 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 1196 | # | ||
| 1197 | # CONFIG_I2C_OCORES is not set | ||
| 1198 | CONFIG_I2C_PASEMI=y | ||
| 1199 | # CONFIG_I2C_SIMTEC is not set | ||
| 1200 | |||
| 1201 | # | ||
| 1202 | # External I2C/SMBus adapter drivers | ||
| 1203 | # | ||
| 1204 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 1205 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 1206 | # CONFIG_I2C_TINY_USB is not set | ||
| 1207 | |||
| 1208 | # | ||
| 1209 | # Graphics adapter I2C/DDC channel drivers | ||
| 1210 | # | ||
| 1188 | # CONFIG_I2C_VOODOO3 is not set | 1211 | # CONFIG_I2C_VOODOO3 is not set |
| 1212 | |||
| 1213 | # | ||
| 1214 | # Other I2C/SMBus bus drivers | ||
| 1215 | # | ||
| 1189 | # CONFIG_I2C_PCA_PLATFORM is not set | 1216 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 1217 | # CONFIG_I2C_STUB is not set | ||
| 1190 | 1218 | ||
| 1191 | # | 1219 | # |
| 1192 | # Miscellaneous I2C Chip support | 1220 | # Miscellaneous I2C Chip support |
| 1193 | # | 1221 | # |
| 1194 | # CONFIG_DS1682 is not set | 1222 | # CONFIG_DS1682 is not set |
| 1223 | # CONFIG_AT24 is not set | ||
| 1195 | # CONFIG_SENSORS_EEPROM is not set | 1224 | # CONFIG_SENSORS_EEPROM is not set |
| 1196 | # CONFIG_SENSORS_PCF8574 is not set | 1225 | # CONFIG_SENSORS_PCF8574 is not set |
| 1197 | # CONFIG_PCF8575 is not set | 1226 | # CONFIG_PCF8575 is not set |
| 1227 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 1198 | # CONFIG_SENSORS_PCF8591 is not set | 1228 | # CONFIG_SENSORS_PCF8591 is not set |
| 1199 | # CONFIG_SENSORS_MAX6875 is not set | 1229 | # CONFIG_SENSORS_MAX6875 is not set |
| 1200 | # CONFIG_SENSORS_TSL2550 is not set | 1230 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -1203,10 +1233,13 @@ CONFIG_I2C_PASEMI=y | |||
| 1203 | # CONFIG_I2C_DEBUG_BUS is not set | 1233 | # CONFIG_I2C_DEBUG_BUS is not set |
| 1204 | # CONFIG_I2C_DEBUG_CHIP is not set | 1234 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 1205 | # CONFIG_SPI is not set | 1235 | # CONFIG_SPI is not set |
| 1236 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 1237 | # CONFIG_GPIOLIB is not set | ||
| 1206 | # CONFIG_W1 is not set | 1238 | # CONFIG_W1 is not set |
| 1207 | # CONFIG_POWER_SUPPLY is not set | 1239 | # CONFIG_POWER_SUPPLY is not set |
| 1208 | # CONFIG_HWMON is not set | 1240 | # CONFIG_HWMON is not set |
| 1209 | # CONFIG_THERMAL is not set | 1241 | # CONFIG_THERMAL is not set |
| 1242 | # CONFIG_THERMAL_HWMON is not set | ||
| 1210 | # CONFIG_WATCHDOG is not set | 1243 | # CONFIG_WATCHDOG is not set |
| 1211 | 1244 | ||
| 1212 | # | 1245 | # |
| @@ -1218,8 +1251,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 1218 | # | 1251 | # |
| 1219 | # Multifunction device drivers | 1252 | # Multifunction device drivers |
| 1220 | # | 1253 | # |
| 1254 | # CONFIG_MFD_CORE is not set | ||
| 1221 | # CONFIG_MFD_SM501 is not set | 1255 | # CONFIG_MFD_SM501 is not set |
| 1222 | # CONFIG_HTC_PASIC3 is not set | 1256 | # CONFIG_HTC_PASIC3 is not set |
| 1257 | # CONFIG_MFD_TMIO is not set | ||
| 1223 | 1258 | ||
| 1224 | # | 1259 | # |
| 1225 | # Multimedia devices | 1260 | # Multimedia devices |
| @@ -1299,10 +1334,13 @@ CONFIG_FB_RADEON_BACKLIGHT=y | |||
| 1299 | # CONFIG_FB_TRIDENT is not set | 1334 | # CONFIG_FB_TRIDENT is not set |
| 1300 | # CONFIG_FB_ARK is not set | 1335 | # CONFIG_FB_ARK is not set |
| 1301 | # CONFIG_FB_PM3 is not set | 1336 | # CONFIG_FB_PM3 is not set |
| 1337 | # CONFIG_FB_CARMINE is not set | ||
| 1302 | CONFIG_FB_IBM_GXT4500=y | 1338 | CONFIG_FB_IBM_GXT4500=y |
| 1303 | # CONFIG_FB_VIRTUAL is not set | 1339 | # CONFIG_FB_VIRTUAL is not set |
| 1304 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 1340 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
| 1305 | CONFIG_LCD_CLASS_DEVICE=y | 1341 | CONFIG_LCD_CLASS_DEVICE=y |
| 1342 | # CONFIG_LCD_ILI9320 is not set | ||
| 1343 | # CONFIG_LCD_PLATFORM is not set | ||
| 1306 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 1344 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
| 1307 | # CONFIG_BACKLIGHT_CORGI is not set | 1345 | # CONFIG_BACKLIGHT_CORGI is not set |
| 1308 | 1346 | ||
| @@ -1331,15 +1369,7 @@ CONFIG_FB_LOGO_EXTRA=y | |||
| 1331 | CONFIG_LOGO_LINUX_MONO=y | 1369 | CONFIG_LOGO_LINUX_MONO=y |
| 1332 | CONFIG_LOGO_LINUX_VGA16=y | 1370 | CONFIG_LOGO_LINUX_VGA16=y |
| 1333 | CONFIG_LOGO_LINUX_CLUT224=y | 1371 | CONFIG_LOGO_LINUX_CLUT224=y |
| 1334 | |||
| 1335 | # | ||
| 1336 | # Sound | ||
| 1337 | # | ||
| 1338 | CONFIG_SOUND=m | 1372 | CONFIG_SOUND=m |
| 1339 | |||
| 1340 | # | ||
| 1341 | # Advanced Linux Sound Architecture | ||
| 1342 | # | ||
| 1343 | CONFIG_SND=m | 1373 | CONFIG_SND=m |
| 1344 | CONFIG_SND_TIMER=m | 1374 | CONFIG_SND_TIMER=m |
| 1345 | CONFIG_SND_PCM=m | 1375 | CONFIG_SND_PCM=m |
| @@ -1355,19 +1385,13 @@ CONFIG_SND_SUPPORT_OLD_API=y | |||
| 1355 | CONFIG_SND_VERBOSE_PROCFS=y | 1385 | CONFIG_SND_VERBOSE_PROCFS=y |
| 1356 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1386 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 1357 | # CONFIG_SND_DEBUG is not set | 1387 | # CONFIG_SND_DEBUG is not set |
| 1358 | 1388 | CONFIG_SND_DRIVERS=y | |
| 1359 | # | ||
| 1360 | # Generic devices | ||
| 1361 | # | ||
| 1362 | # CONFIG_SND_DUMMY is not set | 1389 | # CONFIG_SND_DUMMY is not set |
| 1363 | # CONFIG_SND_VIRMIDI is not set | 1390 | # CONFIG_SND_VIRMIDI is not set |
| 1364 | # CONFIG_SND_MTPAV is not set | 1391 | # CONFIG_SND_MTPAV is not set |
| 1365 | # CONFIG_SND_SERIAL_U16550 is not set | 1392 | # CONFIG_SND_SERIAL_U16550 is not set |
| 1366 | # CONFIG_SND_MPU401 is not set | 1393 | # CONFIG_SND_MPU401 is not set |
| 1367 | 1394 | CONFIG_SND_PCI=y | |
| 1368 | # | ||
| 1369 | # PCI devices | ||
| 1370 | # | ||
| 1371 | # CONFIG_SND_AD1889 is not set | 1395 | # CONFIG_SND_AD1889 is not set |
| 1372 | # CONFIG_SND_ALS300 is not set | 1396 | # CONFIG_SND_ALS300 is not set |
| 1373 | # CONFIG_SND_ALS4000 is not set | 1397 | # CONFIG_SND_ALS4000 is not set |
| @@ -1429,20 +1453,9 @@ CONFIG_SND_VERBOSE_PROCFS=y | |||
| 1429 | # CONFIG_SND_VIRTUOSO is not set | 1453 | # CONFIG_SND_VIRTUOSO is not set |
| 1430 | # CONFIG_SND_VX222 is not set | 1454 | # CONFIG_SND_VX222 is not set |
| 1431 | # CONFIG_SND_YMFPCI is not set | 1455 | # CONFIG_SND_YMFPCI is not set |
| 1432 | 1456 | CONFIG_SND_PPC=y | |
| 1433 | # | ||
| 1434 | # ALSA PowerMac devices | ||
| 1435 | # | ||
| 1436 | CONFIG_SND_POWERMAC=m | 1457 | CONFIG_SND_POWERMAC=m |
| 1437 | CONFIG_SND_POWERMAC_AUTO_DRC=y | 1458 | CONFIG_SND_POWERMAC_AUTO_DRC=y |
| 1438 | |||
| 1439 | # | ||
| 1440 | # ALSA PowerPC devices | ||
| 1441 | # | ||
| 1442 | |||
| 1443 | # | ||
| 1444 | # Apple Onboard Audio driver | ||
| 1445 | # | ||
| 1446 | CONFIG_SND_AOA=m | 1459 | CONFIG_SND_AOA=m |
| 1447 | CONFIG_SND_AOA_FABRIC_LAYOUT=m | 1460 | CONFIG_SND_AOA_FABRIC_LAYOUT=m |
| 1448 | CONFIG_SND_AOA_ONYX=m | 1461 | CONFIG_SND_AOA_ONYX=m |
| @@ -1450,36 +1463,14 @@ CONFIG_SND_AOA_TAS=m | |||
| 1450 | CONFIG_SND_AOA_TOONIE=m | 1463 | CONFIG_SND_AOA_TOONIE=m |
| 1451 | CONFIG_SND_AOA_SOUNDBUS=m | 1464 | CONFIG_SND_AOA_SOUNDBUS=m |
| 1452 | CONFIG_SND_AOA_SOUNDBUS_I2S=m | 1465 | CONFIG_SND_AOA_SOUNDBUS_I2S=m |
| 1453 | 1466 | CONFIG_SND_USB=y | |
| 1454 | # | ||
| 1455 | # USB devices | ||
| 1456 | # | ||
| 1457 | # CONFIG_SND_USB_AUDIO is not set | 1467 | # CONFIG_SND_USB_AUDIO is not set |
| 1458 | # CONFIG_SND_USB_USX2Y is not set | 1468 | # CONFIG_SND_USB_USX2Y is not set |
| 1459 | # CONFIG_SND_USB_CAIAQ is not set | 1469 | # CONFIG_SND_USB_CAIAQ is not set |
| 1460 | 1470 | CONFIG_SND_PCMCIA=y | |
| 1461 | # | ||
| 1462 | # PCMCIA devices | ||
| 1463 | # | ||
| 1464 | # CONFIG_SND_VXPOCKET is not set | 1471 | # CONFIG_SND_VXPOCKET is not set |
| 1465 | # CONFIG_SND_PDAUDIOCF is not set | 1472 | # CONFIG_SND_PDAUDIOCF is not set |
| 1466 | |||
| 1467 | # | ||
| 1468 | # System on Chip audio support | ||
| 1469 | # | ||
| 1470 | # CONFIG_SND_SOC is not set | 1473 | # CONFIG_SND_SOC is not set |
| 1471 | |||
| 1472 | # | ||
| 1473 | # ALSA SoC audio for Freescale SOCs | ||
| 1474 | # | ||
| 1475 | |||
| 1476 | # | ||
| 1477 | # SoC Audio for the Texas Instruments OMAP | ||
| 1478 | # | ||
| 1479 | |||
| 1480 | # | ||
| 1481 | # Open Sound System | ||
| 1482 | # | ||
| 1483 | # CONFIG_SOUND_PRIME is not set | 1474 | # CONFIG_SOUND_PRIME is not set |
| 1484 | CONFIG_HID_SUPPORT=y | 1475 | CONFIG_HID_SUPPORT=y |
| 1485 | CONFIG_HID=y | 1476 | CONFIG_HID=y |
| @@ -1508,6 +1499,7 @@ CONFIG_USB_DEVICEFS=y | |||
| 1508 | CONFIG_USB_DEVICE_CLASS=y | 1499 | CONFIG_USB_DEVICE_CLASS=y |
| 1509 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1500 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1510 | # CONFIG_USB_OTG is not set | 1501 | # CONFIG_USB_OTG is not set |
| 1502 | # CONFIG_USB_MON is not set | ||
| 1511 | 1503 | ||
| 1512 | # | 1504 | # |
| 1513 | # USB Host Controller Drivers | 1505 | # USB Host Controller Drivers |
| @@ -1556,6 +1548,7 @@ CONFIG_USB_STORAGE=m | |||
| 1556 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1548 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1557 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1549 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1558 | # CONFIG_USB_STORAGE_KARMA is not set | 1550 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1551 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1559 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1552 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1560 | # CONFIG_USB_LIBUSUAL is not set | 1553 | # CONFIG_USB_LIBUSUAL is not set |
| 1561 | 1554 | ||
| @@ -1564,7 +1557,6 @@ CONFIG_USB_STORAGE=m | |||
| 1564 | # | 1557 | # |
| 1565 | # CONFIG_USB_MDC800 is not set | 1558 | # CONFIG_USB_MDC800 is not set |
| 1566 | # CONFIG_USB_MICROTEK is not set | 1559 | # CONFIG_USB_MICROTEK is not set |
| 1567 | # CONFIG_USB_MON is not set | ||
| 1568 | 1560 | ||
| 1569 | # | 1561 | # |
| 1570 | # USB port drivers | 1562 | # USB port drivers |
| @@ -1577,7 +1569,6 @@ CONFIG_USB_STORAGE=m | |||
| 1577 | # CONFIG_USB_EMI62 is not set | 1569 | # CONFIG_USB_EMI62 is not set |
| 1578 | # CONFIG_USB_EMI26 is not set | 1570 | # CONFIG_USB_EMI26 is not set |
| 1579 | # CONFIG_USB_ADUTUX is not set | 1571 | # CONFIG_USB_ADUTUX is not set |
| 1580 | # CONFIG_USB_AUERSWALD is not set | ||
| 1581 | # CONFIG_USB_RIO500 is not set | 1572 | # CONFIG_USB_RIO500 is not set |
| 1582 | # CONFIG_USB_LEGOTOWER is not set | 1573 | # CONFIG_USB_LEGOTOWER is not set |
| 1583 | # CONFIG_USB_LCD is not set | 1574 | # CONFIG_USB_LCD is not set |
| @@ -1769,6 +1760,7 @@ CONFIG_HFSPLUS_FS=m | |||
| 1769 | CONFIG_CRAMFS=y | 1760 | CONFIG_CRAMFS=y |
| 1770 | # CONFIG_VXFS_FS is not set | 1761 | # CONFIG_VXFS_FS is not set |
| 1771 | # CONFIG_MINIX_FS is not set | 1762 | # CONFIG_MINIX_FS is not set |
| 1763 | # CONFIG_OMFS_FS is not set | ||
| 1772 | # CONFIG_HPFS_FS is not set | 1764 | # CONFIG_HPFS_FS is not set |
| 1773 | # CONFIG_QNX4FS_FS is not set | 1765 | # CONFIG_QNX4FS_FS is not set |
| 1774 | # CONFIG_ROMFS_FS is not set | 1766 | # CONFIG_ROMFS_FS is not set |
| @@ -1779,12 +1771,12 @@ CONFIG_NFS_FS=y | |||
| 1779 | CONFIG_NFS_V3=y | 1771 | CONFIG_NFS_V3=y |
| 1780 | CONFIG_NFS_V3_ACL=y | 1772 | CONFIG_NFS_V3_ACL=y |
| 1781 | CONFIG_NFS_V4=y | 1773 | CONFIG_NFS_V4=y |
| 1774 | CONFIG_ROOT_NFS=y | ||
| 1782 | CONFIG_NFSD=m | 1775 | CONFIG_NFSD=m |
| 1783 | CONFIG_NFSD_V2_ACL=y | 1776 | CONFIG_NFSD_V2_ACL=y |
| 1784 | CONFIG_NFSD_V3=y | 1777 | CONFIG_NFSD_V3=y |
| 1785 | CONFIG_NFSD_V3_ACL=y | 1778 | CONFIG_NFSD_V3_ACL=y |
| 1786 | CONFIG_NFSD_V4=y | 1779 | CONFIG_NFSD_V4=y |
| 1787 | CONFIG_ROOT_NFS=y | ||
| 1788 | CONFIG_LOCKD=y | 1780 | CONFIG_LOCKD=y |
| 1789 | CONFIG_LOCKD_V4=y | 1781 | CONFIG_LOCKD_V4=y |
| 1790 | CONFIG_EXPORTFS=m | 1782 | CONFIG_EXPORTFS=m |
| @@ -1793,7 +1785,6 @@ CONFIG_NFS_COMMON=y | |||
| 1793 | CONFIG_SUNRPC=y | 1785 | CONFIG_SUNRPC=y |
| 1794 | CONFIG_SUNRPC_GSS=y | 1786 | CONFIG_SUNRPC_GSS=y |
| 1795 | CONFIG_SUNRPC_XPRT_RDMA=m | 1787 | CONFIG_SUNRPC_XPRT_RDMA=m |
| 1796 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1797 | CONFIG_RPCSEC_GSS_KRB5=y | 1788 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1798 | CONFIG_RPCSEC_GSS_SPKM3=m | 1789 | CONFIG_RPCSEC_GSS_SPKM3=m |
| 1799 | # CONFIG_SMB_FS is not set | 1790 | # CONFIG_SMB_FS is not set |
| @@ -1878,6 +1869,7 @@ CONFIG_BITREVERSE=y | |||
| 1878 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1869 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1879 | CONFIG_CRC_CCITT=m | 1870 | CONFIG_CRC_CCITT=m |
| 1880 | # CONFIG_CRC16 is not set | 1871 | # CONFIG_CRC16 is not set |
| 1872 | CONFIG_CRC_T10DIF=y | ||
| 1881 | CONFIG_CRC_ITU_T=m | 1873 | CONFIG_CRC_ITU_T=m |
| 1882 | CONFIG_CRC32=y | 1874 | CONFIG_CRC32=y |
| 1883 | # CONFIG_CRC7 is not set | 1875 | # CONFIG_CRC7 is not set |
| @@ -1910,8 +1902,10 @@ CONFIG_DEBUG_FS=y | |||
| 1910 | CONFIG_DEBUG_KERNEL=y | 1902 | CONFIG_DEBUG_KERNEL=y |
| 1911 | # CONFIG_DEBUG_SHIRQ is not set | 1903 | # CONFIG_DEBUG_SHIRQ is not set |
| 1912 | CONFIG_DETECT_SOFTLOCKUP=y | 1904 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1905 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1906 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1913 | CONFIG_SCHED_DEBUG=y | 1907 | CONFIG_SCHED_DEBUG=y |
| 1914 | # CONFIG_SCHEDSTATS is not set | 1908 | CONFIG_SCHEDSTATS=y |
| 1915 | # CONFIG_TIMER_STATS is not set | 1909 | # CONFIG_TIMER_STATS is not set |
| 1916 | # CONFIG_DEBUG_OBJECTS is not set | 1910 | # CONFIG_DEBUG_OBJECTS is not set |
| 1917 | # CONFIG_SLUB_DEBUG_ON is not set | 1911 | # CONFIG_SLUB_DEBUG_ON is not set |
| @@ -1923,28 +1917,47 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 1923 | # CONFIG_DEBUG_LOCK_ALLOC is not set | 1917 | # CONFIG_DEBUG_LOCK_ALLOC is not set |
| 1924 | # CONFIG_PROVE_LOCKING is not set | 1918 | # CONFIG_PROVE_LOCKING is not set |
| 1925 | # CONFIG_LOCK_STAT is not set | 1919 | # CONFIG_LOCK_STAT is not set |
| 1920 | CONFIG_TRACE_IRQFLAGS=y | ||
| 1926 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1921 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1927 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 1922 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
| 1923 | CONFIG_STACKTRACE=y | ||
| 1928 | # CONFIG_DEBUG_KOBJECT is not set | 1924 | # CONFIG_DEBUG_KOBJECT is not set |
| 1929 | CONFIG_DEBUG_BUGVERBOSE=y | 1925 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1930 | # CONFIG_DEBUG_INFO is not set | 1926 | # CONFIG_DEBUG_INFO is not set |
| 1931 | # CONFIG_DEBUG_VM is not set | 1927 | # CONFIG_DEBUG_VM is not set |
| 1932 | # CONFIG_DEBUG_WRITECOUNT is not set | 1928 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1929 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 1933 | # CONFIG_DEBUG_LIST is not set | 1930 | # CONFIG_DEBUG_LIST is not set |
| 1934 | # CONFIG_DEBUG_SG is not set | 1931 | # CONFIG_DEBUG_SG is not set |
| 1932 | CONFIG_FRAME_POINTER=y | ||
| 1935 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1933 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1936 | # CONFIG_RCU_TORTURE_TEST is not set | 1934 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1937 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1935 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1938 | # CONFIG_FAULT_INJECTION is not set | 1936 | # CONFIG_FAULT_INJECTION is not set |
| 1937 | CONFIG_LATENCYTOP=y | ||
| 1938 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1939 | CONFIG_HAVE_FTRACE=y | ||
| 1940 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1941 | CONFIG_TRACER_MAX_TRACE=y | ||
| 1942 | CONFIG_TRACING=y | ||
| 1943 | # CONFIG_FTRACE is not set | ||
| 1944 | CONFIG_IRQSOFF_TRACER=y | ||
| 1945 | CONFIG_SCHED_TRACER=y | ||
| 1946 | CONFIG_CONTEXT_SWITCH_TRACER=y | ||
| 1947 | # CONFIG_FTRACE_STARTUP_TEST is not set | ||
| 1939 | # CONFIG_SAMPLES is not set | 1948 | # CONFIG_SAMPLES is not set |
| 1949 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1950 | # CONFIG_KGDB is not set | ||
| 1940 | CONFIG_DEBUG_STACKOVERFLOW=y | 1951 | CONFIG_DEBUG_STACKOVERFLOW=y |
| 1941 | CONFIG_DEBUG_STACK_USAGE=y | 1952 | CONFIG_DEBUG_STACK_USAGE=y |
| 1942 | # CONFIG_DEBUG_PAGEALLOC is not set | 1953 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1943 | # CONFIG_HCALL_STATS is not set | 1954 | # CONFIG_HCALL_STATS is not set |
| 1944 | CONFIG_DEBUGGER=y | 1955 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1956 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1945 | CONFIG_XMON=y | 1957 | CONFIG_XMON=y |
| 1946 | # CONFIG_XMON_DEFAULT is not set | 1958 | # CONFIG_XMON_DEFAULT is not set |
| 1947 | CONFIG_XMON_DISASSEMBLY=y | 1959 | CONFIG_XMON_DISASSEMBLY=y |
| 1960 | CONFIG_DEBUGGER=y | ||
| 1948 | CONFIG_IRQSTACKS=y | 1961 | CONFIG_IRQSTACKS=y |
| 1949 | # CONFIG_VIRQ_DEBUG is not set | 1962 | # CONFIG_VIRQ_DEBUG is not set |
| 1950 | CONFIG_BOOTX_TEXT=y | 1963 | CONFIG_BOOTX_TEXT=y |
| @@ -2007,6 +2020,10 @@ CONFIG_CRYPTO_CRC32C=m | |||
| 2007 | CONFIG_CRYPTO_MD4=m | 2020 | CONFIG_CRYPTO_MD4=m |
| 2008 | CONFIG_CRYPTO_MD5=y | 2021 | CONFIG_CRYPTO_MD5=y |
| 2009 | CONFIG_CRYPTO_MICHAEL_MIC=m | 2022 | CONFIG_CRYPTO_MICHAEL_MIC=m |
| 2023 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 2024 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 2025 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 2026 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 2010 | CONFIG_CRYPTO_SHA1=m | 2027 | CONFIG_CRYPTO_SHA1=m |
| 2011 | CONFIG_CRYPTO_SHA256=m | 2028 | CONFIG_CRYPTO_SHA256=m |
| 2012 | CONFIG_CRYPTO_SHA512=m | 2029 | CONFIG_CRYPTO_SHA512=m |
diff --git a/arch/powerpc/configs/ppc6xx_defconfig b/arch/powerpc/configs/ppc6xx_defconfig index e6e91c85da31..3c6dbdef56eb 100644 --- a/arch/powerpc/configs/ppc6xx_defconfig +++ b/arch/powerpc/configs/ppc6xx_defconfig | |||
| @@ -1,8 +1,7 @@ | |||
| 1 | # powerpc | ||
| 2 | # | 1 | # |
| 3 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 4 | # Linux kernel version: 2.6.26-git2 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 5 | # Tue Jul 15 23:54:18 2008 | 4 | # Tue Aug 26 13:29:50 2008 |
| 6 | # | 5 | # |
| 7 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 8 | 7 | ||
| @@ -112,7 +111,6 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 112 | CONFIG_SYSCTL=y | 111 | CONFIG_SYSCTL=y |
| 113 | # CONFIG_EMBEDDED is not set | 112 | # CONFIG_EMBEDDED is not set |
| 114 | CONFIG_SYSCTL_SYSCALL=y | 113 | CONFIG_SYSCTL_SYSCALL=y |
| 115 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 116 | CONFIG_KALLSYMS=y | 114 | CONFIG_KALLSYMS=y |
| 117 | CONFIG_KALLSYMS_ALL=y | 115 | CONFIG_KALLSYMS_ALL=y |
| 118 | CONFIG_KALLSYMS_EXTRA_PASS=y | 116 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -140,12 +138,17 @@ CONFIG_MARKERS=y | |||
| 140 | CONFIG_OPROFILE=m | 138 | CONFIG_OPROFILE=m |
| 141 | CONFIG_HAVE_OPROFILE=y | 139 | CONFIG_HAVE_OPROFILE=y |
| 142 | CONFIG_KPROBES=y | 140 | CONFIG_KPROBES=y |
| 141 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 143 | CONFIG_KRETPROBES=y | 142 | CONFIG_KRETPROBES=y |
| 143 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 144 | CONFIG_HAVE_KPROBES=y | 144 | CONFIG_HAVE_KPROBES=y |
| 145 | CONFIG_HAVE_KRETPROBES=y | 145 | CONFIG_HAVE_KRETPROBES=y |
| 146 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 146 | # CONFIG_HAVE_DMA_ATTRS is not set | 147 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 147 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | 148 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set |
| 149 | CONFIG_HAVE_CLK=y | ||
| 148 | CONFIG_PROC_PAGE_MONITOR=y | 150 | CONFIG_PROC_PAGE_MONITOR=y |
| 151 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 149 | CONFIG_SLABINFO=y | 152 | CONFIG_SLABINFO=y |
| 150 | CONFIG_RT_MUTEXES=y | 153 | CONFIG_RT_MUTEXES=y |
| 151 | # CONFIG_TINY_SHMEM is not set | 154 | # CONFIG_TINY_SHMEM is not set |
| @@ -266,7 +269,6 @@ CONFIG_TAU=y | |||
| 266 | CONFIG_TAU_AVERAGE=y | 269 | CONFIG_TAU_AVERAGE=y |
| 267 | CONFIG_QUICC_ENGINE=y | 270 | CONFIG_QUICC_ENGINE=y |
| 268 | CONFIG_CPM2=y | 271 | CONFIG_CPM2=y |
| 269 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 270 | CONFIG_FSL_ULI1575=y | 272 | CONFIG_FSL_ULI1575=y |
| 271 | CONFIG_CPM=y | 273 | CONFIG_CPM=y |
| 272 | CONFIG_PPC_BESTCOMM=y | 274 | CONFIG_PPC_BESTCOMM=y |
| @@ -287,7 +289,7 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
| 287 | # CONFIG_HZ_300 is not set | 289 | # CONFIG_HZ_300 is not set |
| 288 | CONFIG_HZ_1000=y | 290 | CONFIG_HZ_1000=y |
| 289 | CONFIG_HZ=1000 | 291 | CONFIG_HZ=1000 |
| 290 | # CONFIG_SCHED_HRTICK is not set | 292 | CONFIG_SCHED_HRTICK=y |
| 291 | # CONFIG_PREEMPT_NONE is not set | 293 | # CONFIG_PREEMPT_NONE is not set |
| 292 | CONFIG_PREEMPT_VOLUNTARY=y | 294 | CONFIG_PREEMPT_VOLUNTARY=y |
| 293 | # CONFIG_PREEMPT is not set | 295 | # CONFIG_PREEMPT is not set |
| @@ -311,6 +313,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 311 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 313 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 312 | CONFIG_PAGEFLAGS_EXTENDED=y | 314 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 313 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 315 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 316 | # CONFIG_MIGRATION is not set | ||
| 314 | CONFIG_RESOURCES_64BIT=y | 317 | CONFIG_RESOURCES_64BIT=y |
| 315 | CONFIG_ZONE_DMA_FLAG=1 | 318 | CONFIG_ZONE_DMA_FLAG=1 |
| 316 | CONFIG_BOUNCE=y | 319 | CONFIG_BOUNCE=y |
| @@ -326,6 +329,7 @@ CONFIG_PM_DEBUG=y | |||
| 326 | CONFIG_CAN_PM_TRACE=y | 329 | CONFIG_CAN_PM_TRACE=y |
| 327 | CONFIG_PM_SLEEP=y | 330 | CONFIG_PM_SLEEP=y |
| 328 | CONFIG_SUSPEND=y | 331 | CONFIG_SUSPEND=y |
| 332 | # CONFIG_PM_TEST_SUSPEND is not set | ||
| 329 | CONFIG_SUSPEND_FREEZER=y | 333 | CONFIG_SUSPEND_FREEZER=y |
| 330 | CONFIG_HIBERNATION=y | 334 | CONFIG_HIBERNATION=y |
| 331 | CONFIG_PM_STD_PARTITION="" | 335 | CONFIG_PM_STD_PARTITION="" |
| @@ -344,6 +348,7 @@ CONFIG_FSL_SOC=y | |||
| 344 | CONFIG_FSL_PCI=y | 348 | CONFIG_FSL_PCI=y |
| 345 | CONFIG_FSL_LBC=y | 349 | CONFIG_FSL_LBC=y |
| 346 | CONFIG_FSL_GTM=y | 350 | CONFIG_FSL_GTM=y |
| 351 | CONFIG_PPC_PCI_CHOICE=y | ||
| 347 | CONFIG_PCI=y | 352 | CONFIG_PCI=y |
| 348 | CONFIG_PCI_DOMAINS=y | 353 | CONFIG_PCI_DOMAINS=y |
| 349 | CONFIG_PCI_SYSCALL=y | 354 | CONFIG_PCI_SYSCALL=y |
| @@ -395,10 +400,6 @@ CONFIG_KERNEL_START=0xc0000000 | |||
| 395 | CONFIG_PHYSICAL_START=0x00000000 | 400 | CONFIG_PHYSICAL_START=0x00000000 |
| 396 | # CONFIG_TASK_SIZE_BOOL is not set | 401 | # CONFIG_TASK_SIZE_BOOL is not set |
| 397 | CONFIG_TASK_SIZE=0xc0000000 | 402 | CONFIG_TASK_SIZE=0xc0000000 |
| 398 | |||
| 399 | # | ||
| 400 | # Networking | ||
| 401 | # | ||
| 402 | CONFIG_NET=y | 403 | CONFIG_NET=y |
| 403 | 404 | ||
| 404 | # | 405 | # |
| @@ -412,6 +413,7 @@ CONFIG_XFRM_USER=y | |||
| 412 | CONFIG_XFRM_SUB_POLICY=y | 413 | CONFIG_XFRM_SUB_POLICY=y |
| 413 | CONFIG_XFRM_MIGRATE=y | 414 | CONFIG_XFRM_MIGRATE=y |
| 414 | CONFIG_XFRM_STATISTICS=y | 415 | CONFIG_XFRM_STATISTICS=y |
| 416 | CONFIG_XFRM_IPCOMP=m | ||
| 415 | CONFIG_NET_KEY=m | 417 | CONFIG_NET_KEY=m |
| 416 | CONFIG_NET_KEY_MIGRATE=y | 418 | CONFIG_NET_KEY_MIGRATE=y |
| 417 | CONFIG_INET=y | 419 | CONFIG_INET=y |
| @@ -602,6 +604,7 @@ CONFIG_IP_NF_TARGET_ECN=m | |||
| 602 | CONFIG_IP_NF_TARGET_TTL=m | 604 | CONFIG_IP_NF_TARGET_TTL=m |
| 603 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | 605 | CONFIG_IP_NF_TARGET_CLUSTERIP=m |
| 604 | CONFIG_IP_NF_RAW=m | 606 | CONFIG_IP_NF_RAW=m |
| 607 | CONFIG_IP_NF_SECURITY=m | ||
| 605 | CONFIG_IP_NF_ARPTABLES=m | 608 | CONFIG_IP_NF_ARPTABLES=m |
| 606 | CONFIG_IP_NF_ARPFILTER=m | 609 | CONFIG_IP_NF_ARPFILTER=m |
| 607 | CONFIG_IP_NF_ARP_MANGLE=m | 610 | CONFIG_IP_NF_ARP_MANGLE=m |
| @@ -626,6 +629,7 @@ CONFIG_IP6_NF_TARGET_REJECT=m | |||
| 626 | CONFIG_IP6_NF_MANGLE=m | 629 | CONFIG_IP6_NF_MANGLE=m |
| 627 | CONFIG_IP6_NF_TARGET_HL=m | 630 | CONFIG_IP6_NF_TARGET_HL=m |
| 628 | CONFIG_IP6_NF_RAW=m | 631 | CONFIG_IP6_NF_RAW=m |
| 632 | CONFIG_IP6_NF_SECURITY=m | ||
| 629 | 633 | ||
| 630 | # | 634 | # |
| 631 | # DECnet: Netfilter Configuration | 635 | # DECnet: Netfilter Configuration |
| @@ -643,6 +647,7 @@ CONFIG_BRIDGE_EBT_802_3=m | |||
| 643 | CONFIG_BRIDGE_EBT_AMONG=m | 647 | CONFIG_BRIDGE_EBT_AMONG=m |
| 644 | CONFIG_BRIDGE_EBT_ARP=m | 648 | CONFIG_BRIDGE_EBT_ARP=m |
| 645 | CONFIG_BRIDGE_EBT_IP=m | 649 | CONFIG_BRIDGE_EBT_IP=m |
| 650 | CONFIG_BRIDGE_EBT_IP6=m | ||
| 646 | CONFIG_BRIDGE_EBT_LIMIT=m | 651 | CONFIG_BRIDGE_EBT_LIMIT=m |
| 647 | CONFIG_BRIDGE_EBT_MARK=m | 652 | CONFIG_BRIDGE_EBT_MARK=m |
| 648 | CONFIG_BRIDGE_EBT_PKTTYPE=m | 653 | CONFIG_BRIDGE_EBT_PKTTYPE=m |
| @@ -691,8 +696,10 @@ CONFIG_ATM_LANE=m | |||
| 691 | # CONFIG_ATM_MPOA is not set | 696 | # CONFIG_ATM_MPOA is not set |
| 692 | CONFIG_ATM_BR2684=m | 697 | CONFIG_ATM_BR2684=m |
| 693 | # CONFIG_ATM_BR2684_IPFILTER is not set | 698 | # CONFIG_ATM_BR2684_IPFILTER is not set |
| 699 | CONFIG_STP=m | ||
| 694 | CONFIG_BRIDGE=m | 700 | CONFIG_BRIDGE=m |
| 695 | CONFIG_VLAN_8021Q=m | 701 | CONFIG_VLAN_8021Q=m |
| 702 | # CONFIG_VLAN_8021Q_GVRP is not set | ||
| 696 | CONFIG_DECNET=m | 703 | CONFIG_DECNET=m |
| 697 | CONFIG_DECNET_ROUTER=y | 704 | CONFIG_DECNET_ROUTER=y |
| 698 | CONFIG_LLC=m | 705 | CONFIG_LLC=m |
| @@ -832,6 +839,7 @@ CONFIG_BT_HIDP=m | |||
| 832 | # | 839 | # |
| 833 | CONFIG_BT_HCIUSB=m | 840 | CONFIG_BT_HCIUSB=m |
| 834 | CONFIG_BT_HCIUSB_SCO=y | 841 | CONFIG_BT_HCIUSB_SCO=y |
| 842 | # CONFIG_BT_HCIBTUSB is not set | ||
| 835 | CONFIG_BT_HCIUART=m | 843 | CONFIG_BT_HCIUART=m |
| 836 | CONFIG_BT_HCIUART_H4=y | 844 | CONFIG_BT_HCIUART_H4=y |
| 837 | CONFIG_BT_HCIUART_BCSP=y | 845 | CONFIG_BT_HCIUART_BCSP=y |
| @@ -855,7 +863,6 @@ CONFIG_NL80211=y | |||
| 855 | CONFIG_WIRELESS_EXT=y | 863 | CONFIG_WIRELESS_EXT=y |
| 856 | CONFIG_WIRELESS_EXT_SYSFS=y | 864 | CONFIG_WIRELESS_EXT_SYSFS=y |
| 857 | CONFIG_MAC80211=m | 865 | CONFIG_MAC80211=m |
| 858 | CONFIG_MAC80211_QOS=y | ||
| 859 | 866 | ||
| 860 | # | 867 | # |
| 861 | # Rate control algorithm selection | 868 | # Rate control algorithm selection |
| @@ -941,12 +948,14 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
| 941 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set | 948 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set |
| 942 | # CONFIG_ATA_OVER_ETH is not set | 949 | # CONFIG_ATA_OVER_ETH is not set |
| 943 | CONFIG_VIRTIO_BLK=m | 950 | CONFIG_VIRTIO_BLK=m |
| 951 | CONFIG_BLK_DEV_HD=y | ||
| 944 | CONFIG_MISC_DEVICES=y | 952 | CONFIG_MISC_DEVICES=y |
| 945 | # CONFIG_PHANTOM is not set | 953 | # CONFIG_PHANTOM is not set |
| 946 | CONFIG_EEPROM_93CX6=m | 954 | CONFIG_EEPROM_93CX6=m |
| 947 | # CONFIG_SGI_IOC4 is not set | 955 | # CONFIG_SGI_IOC4 is not set |
| 948 | # CONFIG_TIFM_CORE is not set | 956 | # CONFIG_TIFM_CORE is not set |
| 949 | CONFIG_ENCLOSURE_SERVICES=m | 957 | CONFIG_ENCLOSURE_SERVICES=m |
| 958 | # CONFIG_HP_ILO is not set | ||
| 950 | CONFIG_HAVE_IDE=y | 959 | CONFIG_HAVE_IDE=y |
| 951 | CONFIG_IDE=y | 960 | CONFIG_IDE=y |
| 952 | CONFIG_BLK_DEV_IDE=y | 961 | CONFIG_BLK_DEV_IDE=y |
| @@ -954,6 +963,7 @@ CONFIG_BLK_DEV_IDE=y | |||
| 954 | # | 963 | # |
| 955 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 964 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 956 | # | 965 | # |
| 966 | CONFIG_IDE_TIMINGS=y | ||
| 957 | CONFIG_IDE_ATAPI=y | 967 | CONFIG_IDE_ATAPI=y |
| 958 | # CONFIG_BLK_DEV_IDE_SATA is not set | 968 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 959 | CONFIG_BLK_DEV_IDEDISK=y | 969 | CONFIG_BLK_DEV_IDEDISK=y |
| @@ -971,7 +981,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 971 | # | 981 | # |
| 972 | # IDE chipset support/bugfixes | 982 | # IDE chipset support/bugfixes |
| 973 | # | 983 | # |
| 974 | # CONFIG_IDE_GENERIC is not set | ||
| 975 | # CONFIG_BLK_DEV_PLATFORM is not set | 984 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 976 | # CONFIG_BLK_DEV_IDEPNP is not set | 985 | # CONFIG_BLK_DEV_IDEPNP is not set |
| 977 | CONFIG_BLK_DEV_IDEDMA_SFF=y | 986 | CONFIG_BLK_DEV_IDEDMA_SFF=y |
| @@ -990,10 +999,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 990 | # CONFIG_BLK_DEV_AMD74XX is not set | 999 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 991 | # CONFIG_BLK_DEV_CMD64X is not set | 1000 | # CONFIG_BLK_DEV_CMD64X is not set |
| 992 | # CONFIG_BLK_DEV_TRIFLEX is not set | 1001 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 993 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 994 | # CONFIG_BLK_DEV_CS5520 is not set | 1002 | # CONFIG_BLK_DEV_CS5520 is not set |
| 995 | # CONFIG_BLK_DEV_CS5530 is not set | 1003 | # CONFIG_BLK_DEV_CS5530 is not set |
| 996 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 997 | # CONFIG_BLK_DEV_HPT366 is not set | 1004 | # CONFIG_BLK_DEV_HPT366 is not set |
| 998 | # CONFIG_BLK_DEV_JMICRON is not set | 1005 | # CONFIG_BLK_DEV_JMICRON is not set |
| 999 | # CONFIG_BLK_DEV_SC1200 is not set | 1006 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -1014,8 +1021,6 @@ CONFIG_BLK_DEV_IDE_PMAC=y | |||
| 1014 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y | 1021 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y |
| 1015 | CONFIG_BLK_DEV_IDEDMA_PMAC=y | 1022 | CONFIG_BLK_DEV_IDEDMA_PMAC=y |
| 1016 | CONFIG_BLK_DEV_IDEDMA=y | 1023 | CONFIG_BLK_DEV_IDEDMA=y |
| 1017 | CONFIG_BLK_DEV_HD_ONLY=y | ||
| 1018 | CONFIG_BLK_DEV_HD=y | ||
| 1019 | 1024 | ||
| 1020 | # | 1025 | # |
| 1021 | # SCSI device support | 1026 | # SCSI device support |
| @@ -1125,6 +1130,7 @@ CONFIG_SCSI_DH=y | |||
| 1125 | CONFIG_SCSI_DH_RDAC=m | 1130 | CONFIG_SCSI_DH_RDAC=m |
| 1126 | CONFIG_SCSI_DH_HP_SW=m | 1131 | CONFIG_SCSI_DH_HP_SW=m |
| 1127 | CONFIG_SCSI_DH_EMC=m | 1132 | CONFIG_SCSI_DH_EMC=m |
| 1133 | # CONFIG_SCSI_DH_ALUA is not set | ||
| 1128 | CONFIG_ATA=y | 1134 | CONFIG_ATA=y |
| 1129 | # CONFIG_ATA_NONSTANDARD is not set | 1135 | # CONFIG_ATA_NONSTANDARD is not set |
| 1130 | # CONFIG_SATA_PMP is not set | 1136 | # CONFIG_SATA_PMP is not set |
| @@ -1246,7 +1252,6 @@ CONFIG_WINDFARM=y | |||
| 1246 | # CONFIG_ANSLCD is not set | 1252 | # CONFIG_ANSLCD is not set |
| 1247 | CONFIG_PMAC_RACKMETER=m | 1253 | CONFIG_PMAC_RACKMETER=m |
| 1248 | CONFIG_NETDEVICES=y | 1254 | CONFIG_NETDEVICES=y |
| 1249 | CONFIG_NETDEVICES_MULTIQUEUE=y | ||
| 1250 | CONFIG_IFB=m | 1255 | CONFIG_IFB=m |
| 1251 | CONFIG_DUMMY=m | 1256 | CONFIG_DUMMY=m |
| 1252 | CONFIG_BONDING=m | 1257 | CONFIG_BONDING=m |
| @@ -1256,7 +1261,7 @@ CONFIG_TUN=m | |||
| 1256 | CONFIG_VETH=m | 1261 | CONFIG_VETH=m |
| 1257 | CONFIG_NET_SB1000=m | 1262 | CONFIG_NET_SB1000=m |
| 1258 | # CONFIG_ARCNET is not set | 1263 | # CONFIG_ARCNET is not set |
| 1259 | CONFIG_PHYLIB=m | 1264 | CONFIG_PHYLIB=y |
| 1260 | 1265 | ||
| 1261 | # | 1266 | # |
| 1262 | # MII PHY device drivers | 1267 | # MII PHY device drivers |
| @@ -1271,7 +1276,9 @@ CONFIG_SMSC_PHY=m | |||
| 1271 | CONFIG_BROADCOM_PHY=m | 1276 | CONFIG_BROADCOM_PHY=m |
| 1272 | CONFIG_ICPLUS_PHY=m | 1277 | CONFIG_ICPLUS_PHY=m |
| 1273 | CONFIG_REALTEK_PHY=m | 1278 | CONFIG_REALTEK_PHY=m |
| 1279 | # CONFIG_FIXED_PHY is not set | ||
| 1274 | CONFIG_MDIO_BITBANG=y | 1280 | CONFIG_MDIO_BITBANG=y |
| 1281 | # CONFIG_MDIO_OF_GPIO is not set | ||
| 1275 | CONFIG_NET_ETHERNET=y | 1282 | CONFIG_NET_ETHERNET=y |
| 1276 | CONFIG_MII=m | 1283 | CONFIG_MII=m |
| 1277 | CONFIG_MACE=m | 1284 | CONFIG_MACE=m |
| @@ -1328,9 +1335,7 @@ CONFIG_NE2000=m | |||
| 1328 | CONFIG_NET_PCI=y | 1335 | CONFIG_NET_PCI=y |
| 1329 | CONFIG_PCNET32=m | 1336 | CONFIG_PCNET32=m |
| 1330 | CONFIG_AMD8111_ETH=m | 1337 | CONFIG_AMD8111_ETH=m |
| 1331 | CONFIG_AMD8111E_NAPI=y | ||
| 1332 | CONFIG_ADAPTEC_STARFIRE=m | 1338 | CONFIG_ADAPTEC_STARFIRE=m |
| 1333 | CONFIG_ADAPTEC_STARFIRE_NAPI=y | ||
| 1334 | # CONFIG_AC3200 is not set | 1339 | # CONFIG_AC3200 is not set |
| 1335 | # CONFIG_APRICOT is not set | 1340 | # CONFIG_APRICOT is not set |
| 1336 | CONFIG_B44=m | 1341 | CONFIG_B44=m |
| @@ -1359,7 +1364,6 @@ CONFIG_SUNDANCE=m | |||
| 1359 | CONFIG_TLAN=m | 1364 | CONFIG_TLAN=m |
| 1360 | CONFIG_VIA_RHINE=m | 1365 | CONFIG_VIA_RHINE=m |
| 1361 | CONFIG_VIA_RHINE_MMIO=y | 1366 | CONFIG_VIA_RHINE_MMIO=y |
| 1362 | CONFIG_VIA_RHINE_NAPI=y | ||
| 1363 | CONFIG_SC92031=m | 1367 | CONFIG_SC92031=m |
| 1364 | CONFIG_NET_POCKET=y | 1368 | CONFIG_NET_POCKET=y |
| 1365 | CONFIG_DE600=m | 1369 | CONFIG_DE600=m |
| @@ -1372,17 +1376,15 @@ CONFIG_ACENIC=m | |||
| 1372 | # CONFIG_ACENIC_OMIT_TIGON_I is not set | 1376 | # CONFIG_ACENIC_OMIT_TIGON_I is not set |
| 1373 | CONFIG_DL2K=m | 1377 | CONFIG_DL2K=m |
| 1374 | CONFIG_E1000=m | 1378 | CONFIG_E1000=m |
| 1375 | CONFIG_E1000_NAPI=y | ||
| 1376 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 1379 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
| 1377 | CONFIG_E1000E=m | 1380 | CONFIG_E1000E=m |
| 1378 | CONFIG_E1000E_ENABLED=y | ||
| 1379 | CONFIG_IP1000=m | 1381 | CONFIG_IP1000=m |
| 1380 | CONFIG_IGB=m | 1382 | CONFIG_IGB=m |
| 1383 | CONFIG_IGB_LRO=y | ||
| 1381 | CONFIG_NS83820=m | 1384 | CONFIG_NS83820=m |
| 1382 | CONFIG_HAMACHI=m | 1385 | CONFIG_HAMACHI=m |
| 1383 | CONFIG_YELLOWFIN=m | 1386 | CONFIG_YELLOWFIN=m |
| 1384 | CONFIG_R8169=m | 1387 | CONFIG_R8169=m |
| 1385 | CONFIG_R8169_NAPI=y | ||
| 1386 | CONFIG_R8169_VLAN=y | 1388 | CONFIG_R8169_VLAN=y |
| 1387 | CONFIG_SIS190=m | 1389 | CONFIG_SIS190=m |
| 1388 | CONFIG_SKGE=m | 1390 | CONFIG_SKGE=m |
| @@ -1393,21 +1395,18 @@ CONFIG_VIA_VELOCITY=m | |||
| 1393 | CONFIG_TIGON3=m | 1395 | CONFIG_TIGON3=m |
| 1394 | CONFIG_BNX2=m | 1396 | CONFIG_BNX2=m |
| 1395 | CONFIG_GIANFAR=m | 1397 | CONFIG_GIANFAR=m |
| 1396 | CONFIG_GFAR_NAPI=y | ||
| 1397 | # CONFIG_UCC_GETH is not set | 1398 | # CONFIG_UCC_GETH is not set |
| 1398 | CONFIG_MV643XX_ETH=m | 1399 | CONFIG_MV643XX_ETH=m |
| 1399 | CONFIG_QLA3XXX=m | 1400 | CONFIG_QLA3XXX=m |
| 1400 | CONFIG_ATL1=m | 1401 | CONFIG_ATL1=m |
| 1402 | # CONFIG_ATL1E is not set | ||
| 1401 | CONFIG_NETDEV_10000=y | 1403 | CONFIG_NETDEV_10000=y |
| 1402 | CONFIG_CHELSIO_T1=m | 1404 | CONFIG_CHELSIO_T1=m |
| 1403 | CONFIG_CHELSIO_T1_1G=y | 1405 | CONFIG_CHELSIO_T1_1G=y |
| 1404 | CONFIG_CHELSIO_T1_NAPI=y | ||
| 1405 | CONFIG_CHELSIO_T3=m | 1406 | CONFIG_CHELSIO_T3=m |
| 1406 | CONFIG_IXGBE=m | 1407 | CONFIG_IXGBE=m |
| 1407 | CONFIG_IXGB=m | 1408 | CONFIG_IXGB=m |
| 1408 | CONFIG_IXGB_NAPI=y | ||
| 1409 | CONFIG_S2IO=m | 1409 | CONFIG_S2IO=m |
| 1410 | CONFIG_S2IO_NAPI=y | ||
| 1411 | CONFIG_MYRI10GE=m | 1410 | CONFIG_MYRI10GE=m |
| 1412 | CONFIG_NETXEN_NIC=m | 1411 | CONFIG_NETXEN_NIC=m |
| 1413 | CONFIG_NIU=m | 1412 | CONFIG_NIU=m |
| @@ -1477,8 +1476,7 @@ CONFIG_ATM_IDT77252_USE_SUNI=y | |||
| 1477 | # CONFIG_ATM_AMBASSADOR is not set | 1476 | # CONFIG_ATM_AMBASSADOR is not set |
| 1478 | # CONFIG_ATM_HORIZON is not set | 1477 | # CONFIG_ATM_HORIZON is not set |
| 1479 | # CONFIG_ATM_IA is not set | 1478 | # CONFIG_ATM_IA is not set |
| 1480 | CONFIG_ATM_FORE200E_MAYBE=m | 1479 | # CONFIG_ATM_FORE200E is not set |
| 1481 | # CONFIG_ATM_FORE200E_PCA is not set | ||
| 1482 | CONFIG_ATM_HE=m | 1480 | CONFIG_ATM_HE=m |
| 1483 | # CONFIG_ATM_HE_USE_SUNI is not set | 1481 | # CONFIG_ATM_HE_USE_SUNI is not set |
| 1484 | CONFIG_FDDI=y | 1482 | CONFIG_FDDI=y |
| @@ -1551,6 +1549,7 @@ CONFIG_MOUSE_PS2_TRACKPOINT=y | |||
| 1551 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 1549 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| 1552 | CONFIG_MOUSE_SERIAL=m | 1550 | CONFIG_MOUSE_SERIAL=m |
| 1553 | CONFIG_MOUSE_APPLETOUCH=m | 1551 | CONFIG_MOUSE_APPLETOUCH=m |
| 1552 | # CONFIG_MOUSE_BCM5974 is not set | ||
| 1554 | # CONFIG_MOUSE_INPORT is not set | 1553 | # CONFIG_MOUSE_INPORT is not set |
| 1555 | # CONFIG_MOUSE_LOGIBM is not set | 1554 | # CONFIG_MOUSE_LOGIBM is not set |
| 1556 | # CONFIG_MOUSE_PC110PAD is not set | 1555 | # CONFIG_MOUSE_PC110PAD is not set |
| @@ -1611,33 +1610,18 @@ CONFIG_SERIO_SERPORT=y | |||
| 1611 | # CONFIG_SERIO_PCIPS2 is not set | 1610 | # CONFIG_SERIO_PCIPS2 is not set |
| 1612 | CONFIG_SERIO_LIBPS2=y | 1611 | CONFIG_SERIO_LIBPS2=y |
| 1613 | CONFIG_SERIO_RAW=m | 1612 | CONFIG_SERIO_RAW=m |
| 1613 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 1614 | CONFIG_GAMEPORT=m | 1614 | CONFIG_GAMEPORT=m |
| 1615 | CONFIG_GAMEPORT_NS558=m | 1615 | CONFIG_GAMEPORT_NS558=m |
| 1616 | CONFIG_GAMEPORT_L4=m | 1616 | CONFIG_GAMEPORT_L4=m |
| 1617 | CONFIG_GAMEPORT_EMU10K1=m | 1617 | CONFIG_GAMEPORT_EMU10K1=m |
| 1618 | CONFIG_GAMEPORT_FM801=m | 1618 | CONFIG_GAMEPORT_FM801=m |
| 1619 | CONFIG_INPUT_LIRC=y | ||
| 1620 | CONFIG_LIRC_DEV=m | ||
| 1621 | CONFIG_LIRC_ATIUSB=m | ||
| 1622 | CONFIG_LIRC_BT829=m | ||
| 1623 | CONFIG_LIRC_CMDIR=m | ||
| 1624 | CONFIG_LIRC_I2C=m | ||
| 1625 | CONFIG_LIRC_IGORPLUGUSB=m | ||
| 1626 | CONFIG_LIRC_IMON=m | ||
| 1627 | CONFIG_LIRC_IT87=m | ||
| 1628 | CONFIG_LIRC_MCEUSB=m | ||
| 1629 | CONFIG_LIRC_MCEUSB2=m | ||
| 1630 | CONFIG_LIRC_PVR150=m | ||
| 1631 | CONFIG_LIRC_PARALLEL=m | ||
| 1632 | CONFIG_LIRC_SERIAL=m | ||
| 1633 | CONFIG_LIRC_SIR=m | ||
| 1634 | CONFIG_LIRC_STREAMZAP=m | ||
| 1635 | CONFIG_LIRC_TTUSBIR=m | ||
| 1636 | 1619 | ||
| 1637 | # | 1620 | # |
| 1638 | # Character devices | 1621 | # Character devices |
| 1639 | # | 1622 | # |
| 1640 | CONFIG_VT=y | 1623 | CONFIG_VT=y |
| 1624 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 1641 | CONFIG_VT_CONSOLE=y | 1625 | CONFIG_VT_CONSOLE=y |
| 1642 | CONFIG_HW_CONSOLE=y | 1626 | CONFIG_HW_CONSOLE=y |
| 1643 | CONFIG_VT_HW_CONSOLE_BINDING=y | 1627 | CONFIG_VT_HW_CONSOLE_BINDING=y |
| @@ -1701,12 +1685,12 @@ CONFIG_SERIAL_OF_PLATFORM=y | |||
| 1701 | # CONFIG_SERIAL_QE is not set | 1685 | # CONFIG_SERIAL_QE is not set |
| 1702 | CONFIG_UNIX98_PTYS=y | 1686 | CONFIG_UNIX98_PTYS=y |
| 1703 | # CONFIG_LEGACY_PTYS is not set | 1687 | # CONFIG_LEGACY_PTYS is not set |
| 1704 | # CONFIG_CRASH is not set | ||
| 1705 | CONFIG_BRIQ_PANEL=m | 1688 | CONFIG_BRIQ_PANEL=m |
| 1706 | CONFIG_PRINTER=m | 1689 | CONFIG_PRINTER=m |
| 1707 | CONFIG_LP_CONSOLE=y | 1690 | CONFIG_LP_CONSOLE=y |
| 1708 | CONFIG_PPDEV=m | 1691 | CONFIG_PPDEV=m |
| 1709 | # CONFIG_HVC_RTAS is not set | 1692 | # CONFIG_HVC_RTAS is not set |
| 1693 | # CONFIG_VIRTIO_CONSOLE is not set | ||
| 1710 | # CONFIG_IPMI_HANDLER is not set | 1694 | # CONFIG_IPMI_HANDLER is not set |
| 1711 | CONFIG_HW_RANDOM=y | 1695 | CONFIG_HW_RANDOM=y |
| 1712 | CONFIG_HW_RANDOM_VIRTIO=m | 1696 | CONFIG_HW_RANDOM_VIRTIO=m |
| @@ -1728,6 +1712,7 @@ CONFIG_DEVPORT=y | |||
| 1728 | CONFIG_I2C=y | 1712 | CONFIG_I2C=y |
| 1729 | CONFIG_I2C_BOARDINFO=y | 1713 | CONFIG_I2C_BOARDINFO=y |
| 1730 | CONFIG_I2C_CHARDEV=m | 1714 | CONFIG_I2C_CHARDEV=m |
| 1715 | CONFIG_I2C_HELPER_AUTO=y | ||
| 1731 | CONFIG_I2C_ALGOBIT=y | 1716 | CONFIG_I2C_ALGOBIT=y |
| 1732 | CONFIG_I2C_ALGOPCA=m | 1717 | CONFIG_I2C_ALGOPCA=m |
| 1733 | 1718 | ||
| @@ -1807,20 +1792,24 @@ CONFIG_SENSORS_TSL2550=m | |||
| 1807 | # CONFIG_I2C_DEBUG_BUS is not set | 1792 | # CONFIG_I2C_DEBUG_BUS is not set |
| 1808 | # CONFIG_I2C_DEBUG_CHIP is not set | 1793 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 1809 | # CONFIG_SPI is not set | 1794 | # CONFIG_SPI is not set |
| 1810 | CONFIG_HAVE_GPIO_LIB=y | 1795 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
| 1811 | 1796 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | |
| 1812 | # | 1797 | CONFIG_GPIOLIB=y |
| 1813 | # GPIO Support | ||
| 1814 | # | ||
| 1815 | # CONFIG_DEBUG_GPIO is not set | 1798 | # CONFIG_DEBUG_GPIO is not set |
| 1799 | CONFIG_GPIO_SYSFS=y | ||
| 1816 | 1800 | ||
| 1817 | # | 1801 | # |
| 1818 | # I2C GPIO expanders: | 1802 | # I2C GPIO expanders: |
| 1819 | # | 1803 | # |
| 1804 | # CONFIG_GPIO_MAX732X is not set | ||
| 1820 | # CONFIG_GPIO_PCA953X is not set | 1805 | # CONFIG_GPIO_PCA953X is not set |
| 1821 | # CONFIG_GPIO_PCF857X is not set | 1806 | # CONFIG_GPIO_PCF857X is not set |
| 1822 | 1807 | ||
| 1823 | # | 1808 | # |
| 1809 | # PCI GPIO expanders: | ||
| 1810 | # | ||
| 1811 | |||
| 1812 | # | ||
| 1824 | # SPI GPIO expanders: | 1813 | # SPI GPIO expanders: |
| 1825 | # | 1814 | # |
| 1826 | CONFIG_W1=m | 1815 | CONFIG_W1=m |
| @@ -1850,6 +1839,7 @@ CONFIG_APM_POWER=m | |||
| 1850 | CONFIG_BATTERY_PMU=m | 1839 | CONFIG_BATTERY_PMU=m |
| 1851 | CONFIG_HWMON=m | 1840 | CONFIG_HWMON=m |
| 1852 | CONFIG_HWMON_VID=m | 1841 | CONFIG_HWMON_VID=m |
| 1842 | # CONFIG_SENSORS_AD7414 is not set | ||
| 1853 | CONFIG_SENSORS_AD7418=m | 1843 | CONFIG_SENSORS_AD7418=m |
| 1854 | CONFIG_SENSORS_ADM1021=m | 1844 | CONFIG_SENSORS_ADM1021=m |
| 1855 | CONFIG_SENSORS_ADM1025=m | 1845 | CONFIG_SENSORS_ADM1025=m |
| @@ -1913,8 +1903,9 @@ CONFIG_WATCHDOG=y | |||
| 1913 | # Watchdog Device Drivers | 1903 | # Watchdog Device Drivers |
| 1914 | # | 1904 | # |
| 1915 | CONFIG_SOFT_WATCHDOG=m | 1905 | CONFIG_SOFT_WATCHDOG=m |
| 1906 | # CONFIG_ALIM7101_WDT is not set | ||
| 1916 | # CONFIG_MPC5200_WDT is not set | 1907 | # CONFIG_MPC5200_WDT is not set |
| 1917 | CONFIG_83xx_WDT=m | 1908 | # CONFIG_8xxx_WDT is not set |
| 1918 | CONFIG_WATCHDOG_RTAS=m | 1909 | CONFIG_WATCHDOG_RTAS=m |
| 1919 | 1910 | ||
| 1920 | # | 1911 | # |
| @@ -1953,8 +1944,10 @@ CONFIG_SSB_DRIVER_PCICORE=y | |||
| 1953 | # | 1944 | # |
| 1954 | # Multifunction device drivers | 1945 | # Multifunction device drivers |
| 1955 | # | 1946 | # |
| 1947 | # CONFIG_MFD_CORE is not set | ||
| 1956 | CONFIG_MFD_SM501=m | 1948 | CONFIG_MFD_SM501=m |
| 1957 | # CONFIG_HTC_PASIC3 is not set | 1949 | # CONFIG_HTC_PASIC3 is not set |
| 1950 | # CONFIG_MFD_TMIO is not set | ||
| 1958 | 1951 | ||
| 1959 | # | 1952 | # |
| 1960 | # Multimedia devices | 1953 | # Multimedia devices |
| @@ -1993,6 +1986,7 @@ CONFIG_MEDIA_TUNER_QT1010=m | |||
| 1993 | CONFIG_MEDIA_TUNER_XC2028=m | 1986 | CONFIG_MEDIA_TUNER_XC2028=m |
| 1994 | CONFIG_MEDIA_TUNER_XC5000=m | 1987 | CONFIG_MEDIA_TUNER_XC5000=m |
| 1995 | CONFIG_MEDIA_TUNER_MXL5005S=m | 1988 | CONFIG_MEDIA_TUNER_MXL5005S=m |
| 1989 | CONFIG_MEDIA_TUNER_MXL5007T=m | ||
| 1996 | CONFIG_VIDEO_V4L2=m | 1990 | CONFIG_VIDEO_V4L2=m |
| 1997 | CONFIG_VIDEO_V4L1=m | 1991 | CONFIG_VIDEO_V4L1=m |
| 1998 | CONFIG_VIDEOBUF_GEN=m | 1992 | CONFIG_VIDEOBUF_GEN=m |
| @@ -2000,13 +1994,13 @@ CONFIG_VIDEOBUF_DMA_SG=m | |||
| 2000 | CONFIG_VIDEOBUF_VMALLOC=m | 1994 | CONFIG_VIDEOBUF_VMALLOC=m |
| 2001 | CONFIG_VIDEOBUF_DVB=m | 1995 | CONFIG_VIDEOBUF_DVB=m |
| 2002 | CONFIG_VIDEO_BTCX=m | 1996 | CONFIG_VIDEO_BTCX=m |
| 2003 | CONFIG_VIDEO_IR_I2C=m | ||
| 2004 | CONFIG_VIDEO_IR=m | 1997 | CONFIG_VIDEO_IR=m |
| 2005 | CONFIG_VIDEO_TVEEPROM=m | 1998 | CONFIG_VIDEO_TVEEPROM=m |
| 2006 | CONFIG_VIDEO_TUNER=m | 1999 | CONFIG_VIDEO_TUNER=m |
| 2007 | CONFIG_VIDEO_CAPTURE_DRIVERS=y | 2000 | CONFIG_VIDEO_CAPTURE_DRIVERS=y |
| 2008 | # CONFIG_VIDEO_ADV_DEBUG is not set | 2001 | # CONFIG_VIDEO_ADV_DEBUG is not set |
| 2009 | # CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set | 2002 | # CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set |
| 2003 | CONFIG_VIDEO_IR_I2C=m | ||
| 2010 | 2004 | ||
| 2011 | # | 2005 | # |
| 2012 | # Encoders/decoders and other helper chips | 2006 | # Encoders/decoders and other helper chips |
| @@ -2108,6 +2102,8 @@ CONFIG_VIDEO_CX18=m | |||
| 2108 | # CONFIG_VIDEO_CAFE_CCIC is not set | 2102 | # CONFIG_VIDEO_CAFE_CCIC is not set |
| 2109 | CONFIG_V4L_USB_DRIVERS=y | 2103 | CONFIG_V4L_USB_DRIVERS=y |
| 2110 | CONFIG_USB_VIDEO_CLASS=m | 2104 | CONFIG_USB_VIDEO_CLASS=m |
| 2105 | CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y | ||
| 2106 | CONFIG_USB_GSPCA=m | ||
| 2111 | CONFIG_VIDEO_PVRUSB2=m | 2107 | CONFIG_VIDEO_PVRUSB2=m |
| 2112 | CONFIG_VIDEO_PVRUSB2_SYSFS=y | 2108 | CONFIG_VIDEO_PVRUSB2_SYSFS=y |
| 2113 | CONFIG_VIDEO_PVRUSB2_DVB=y | 2109 | CONFIG_VIDEO_PVRUSB2_DVB=y |
| @@ -2133,11 +2129,14 @@ CONFIG_USB_PWC=m | |||
| 2133 | # CONFIG_USB_PWC_DEBUG is not set | 2129 | # CONFIG_USB_PWC_DEBUG is not set |
| 2134 | CONFIG_USB_ZR364XX=m | 2130 | CONFIG_USB_ZR364XX=m |
| 2135 | CONFIG_USB_STKWEBCAM=m | 2131 | CONFIG_USB_STKWEBCAM=m |
| 2132 | # CONFIG_USB_S2255 is not set | ||
| 2136 | CONFIG_SOC_CAMERA=m | 2133 | CONFIG_SOC_CAMERA=m |
| 2137 | CONFIG_SOC_CAMERA_MT9M001=m | 2134 | CONFIG_SOC_CAMERA_MT9M001=m |
| 2138 | # CONFIG_MT9M001_PCA9536_SWITCH is not set | 2135 | # CONFIG_MT9M001_PCA9536_SWITCH is not set |
| 2139 | CONFIG_SOC_CAMERA_MT9V022=m | 2136 | CONFIG_SOC_CAMERA_MT9V022=m |
| 2140 | # CONFIG_MT9V022_PCA9536_SWITCH is not set | 2137 | # CONFIG_MT9V022_PCA9536_SWITCH is not set |
| 2138 | # CONFIG_SOC_CAMERA_PLATFORM is not set | ||
| 2139 | # CONFIG_VIDEO_SH_MOBILE_CEU is not set | ||
| 2141 | CONFIG_RADIO_ADAPTERS=y | 2140 | CONFIG_RADIO_ADAPTERS=y |
| 2142 | # CONFIG_RADIO_CADET is not set | 2141 | # CONFIG_RADIO_CADET is not set |
| 2143 | # CONFIG_RADIO_RTRACK is not set | 2142 | # CONFIG_RADIO_RTRACK is not set |
| @@ -2194,6 +2193,8 @@ CONFIG_DVB_USB_DTT200U=m | |||
| 2194 | CONFIG_DVB_USB_OPERA1=m | 2193 | CONFIG_DVB_USB_OPERA1=m |
| 2195 | CONFIG_DVB_USB_AF9005=m | 2194 | CONFIG_DVB_USB_AF9005=m |
| 2196 | CONFIG_DVB_USB_AF9005_REMOTE=m | 2195 | CONFIG_DVB_USB_AF9005_REMOTE=m |
| 2196 | # CONFIG_DVB_USB_DW2102 is not set | ||
| 2197 | # CONFIG_DVB_USB_ANYSEE is not set | ||
| 2197 | CONFIG_DVB_TTUSB_BUDGET=m | 2198 | CONFIG_DVB_TTUSB_BUDGET=m |
| 2198 | CONFIG_DVB_TTUSB_DEC=m | 2199 | CONFIG_DVB_TTUSB_DEC=m |
| 2199 | CONFIG_DVB_CINERGYT2=m | 2200 | CONFIG_DVB_CINERGYT2=m |
| @@ -2203,6 +2204,7 @@ CONFIG_DVB_CINERGYT2_STREAM_BUF_SIZE=512 | |||
| 2203 | CONFIG_DVB_CINERGYT2_QUERY_INTERVAL=250 | 2204 | CONFIG_DVB_CINERGYT2_QUERY_INTERVAL=250 |
| 2204 | CONFIG_DVB_CINERGYT2_ENABLE_RC_INPUT_DEVICE=y | 2205 | CONFIG_DVB_CINERGYT2_ENABLE_RC_INPUT_DEVICE=y |
| 2205 | CONFIG_DVB_CINERGYT2_RC_QUERY_INTERVAL=100 | 2206 | CONFIG_DVB_CINERGYT2_RC_QUERY_INTERVAL=100 |
| 2207 | # CONFIG_DVB_SIANO_SMS1XXX is not set | ||
| 2206 | 2208 | ||
| 2207 | # | 2209 | # |
| 2208 | # Supported FlexCopII (B2C2) Adapters | 2210 | # Supported FlexCopII (B2C2) Adapters |
| @@ -2253,6 +2255,7 @@ CONFIG_DVB_SP8870=m | |||
| 2253 | CONFIG_DVB_SP887X=m | 2255 | CONFIG_DVB_SP887X=m |
| 2254 | CONFIG_DVB_CX22700=m | 2256 | CONFIG_DVB_CX22700=m |
| 2255 | CONFIG_DVB_CX22702=m | 2257 | CONFIG_DVB_CX22702=m |
| 2258 | # CONFIG_DVB_DRX397XD is not set | ||
| 2256 | CONFIG_DVB_L64781=m | 2259 | CONFIG_DVB_L64781=m |
| 2257 | CONFIG_DVB_TDA1004X=m | 2260 | CONFIG_DVB_TDA1004X=m |
| 2258 | CONFIG_DVB_NXT6000=m | 2261 | CONFIG_DVB_NXT6000=m |
| @@ -2389,12 +2392,15 @@ CONFIG_FB_TRIDENT=m | |||
| 2389 | CONFIG_FB_TRIDENT_ACCEL=y | 2392 | CONFIG_FB_TRIDENT_ACCEL=y |
| 2390 | # CONFIG_FB_ARK is not set | 2393 | # CONFIG_FB_ARK is not set |
| 2391 | # CONFIG_FB_PM3 is not set | 2394 | # CONFIG_FB_PM3 is not set |
| 2395 | # CONFIG_FB_CARMINE is not set | ||
| 2392 | # CONFIG_FB_FSL_DIU is not set | 2396 | # CONFIG_FB_FSL_DIU is not set |
| 2393 | CONFIG_FB_SM501=m | 2397 | CONFIG_FB_SM501=m |
| 2394 | CONFIG_FB_IBM_GXT4500=y | 2398 | CONFIG_FB_IBM_GXT4500=y |
| 2395 | # CONFIG_FB_VIRTUAL is not set | 2399 | # CONFIG_FB_VIRTUAL is not set |
| 2396 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 2400 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
| 2397 | CONFIG_LCD_CLASS_DEVICE=m | 2401 | CONFIG_LCD_CLASS_DEVICE=m |
| 2402 | # CONFIG_LCD_ILI9320 is not set | ||
| 2403 | CONFIG_LCD_PLATFORM=m | ||
| 2398 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 2404 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
| 2399 | # CONFIG_BACKLIGHT_CORGI is not set | 2405 | # CONFIG_BACKLIGHT_CORGI is not set |
| 2400 | 2406 | ||
| @@ -2613,6 +2619,7 @@ CONFIG_USB_DEVICEFS=y | |||
| 2613 | # CONFIG_USB_DYNAMIC_MINORS is not set | 2619 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 2614 | CONFIG_USB_SUSPEND=y | 2620 | CONFIG_USB_SUSPEND=y |
| 2615 | # CONFIG_USB_OTG is not set | 2621 | # CONFIG_USB_OTG is not set |
| 2622 | CONFIG_USB_MON=y | ||
| 2616 | 2623 | ||
| 2617 | # | 2624 | # |
| 2618 | # USB Host Controller Drivers | 2625 | # USB Host Controller Drivers |
| @@ -2640,6 +2647,7 @@ CONFIG_USB_U132_HCD=m | |||
| 2640 | CONFIG_USB_SL811_HCD=m | 2647 | CONFIG_USB_SL811_HCD=m |
| 2641 | # CONFIG_USB_SL811_CS is not set | 2648 | # CONFIG_USB_SL811_CS is not set |
| 2642 | # CONFIG_USB_R8A66597_HCD is not set | 2649 | # CONFIG_USB_R8A66597_HCD is not set |
| 2650 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 2643 | 2651 | ||
| 2644 | # | 2652 | # |
| 2645 | # USB Device Class drivers | 2653 | # USB Device Class drivers |
| @@ -2668,6 +2676,7 @@ CONFIG_USB_STORAGE_JUMPSHOT=y | |||
| 2668 | CONFIG_USB_STORAGE_ALAUDA=y | 2676 | CONFIG_USB_STORAGE_ALAUDA=y |
| 2669 | CONFIG_USB_STORAGE_ONETOUCH=y | 2677 | CONFIG_USB_STORAGE_ONETOUCH=y |
| 2670 | CONFIG_USB_STORAGE_KARMA=y | 2678 | CONFIG_USB_STORAGE_KARMA=y |
| 2679 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 2671 | CONFIG_USB_STORAGE_CYPRESS_ATACB=y | 2680 | CONFIG_USB_STORAGE_CYPRESS_ATACB=y |
| 2672 | # CONFIG_USB_LIBUSUAL is not set | 2681 | # CONFIG_USB_LIBUSUAL is not set |
| 2673 | 2682 | ||
| @@ -2676,7 +2685,6 @@ CONFIG_USB_STORAGE_CYPRESS_ATACB=y | |||
| 2676 | # | 2685 | # |
| 2677 | CONFIG_USB_MDC800=m | 2686 | CONFIG_USB_MDC800=m |
| 2678 | CONFIG_USB_MICROTEK=m | 2687 | CONFIG_USB_MICROTEK=m |
| 2679 | CONFIG_USB_MON=y | ||
| 2680 | 2688 | ||
| 2681 | # | 2689 | # |
| 2682 | # USB port drivers | 2690 | # USB port drivers |
| @@ -2686,7 +2694,6 @@ CONFIG_USB_SERIAL=m | |||
| 2686 | CONFIG_USB_EZUSB=y | 2694 | CONFIG_USB_EZUSB=y |
| 2687 | CONFIG_USB_SERIAL_GENERIC=y | 2695 | CONFIG_USB_SERIAL_GENERIC=y |
| 2688 | CONFIG_USB_SERIAL_AIRCABLE=m | 2696 | CONFIG_USB_SERIAL_AIRCABLE=m |
| 2689 | CONFIG_USB_SERIAL_AIRPRIME=m | ||
| 2690 | CONFIG_USB_SERIAL_ARK3116=m | 2697 | CONFIG_USB_SERIAL_ARK3116=m |
| 2691 | CONFIG_USB_SERIAL_BELKIN=m | 2698 | CONFIG_USB_SERIAL_BELKIN=m |
| 2692 | CONFIG_USB_SERIAL_CH341=m | 2699 | CONFIG_USB_SERIAL_CH341=m |
| @@ -2734,7 +2741,6 @@ CONFIG_USB_SERIAL_DEBUG=m | |||
| 2734 | CONFIG_USB_EMI62=m | 2741 | CONFIG_USB_EMI62=m |
| 2735 | CONFIG_USB_EMI26=m | 2742 | CONFIG_USB_EMI26=m |
| 2736 | CONFIG_USB_ADUTUX=m | 2743 | CONFIG_USB_ADUTUX=m |
| 2737 | CONFIG_USB_AUERSWALD=m | ||
| 2738 | # CONFIG_USB_RIO500 is not set | 2744 | # CONFIG_USB_RIO500 is not set |
| 2739 | CONFIG_USB_LEGOTOWER=m | 2745 | CONFIG_USB_LEGOTOWER=m |
| 2740 | CONFIG_USB_LCD=m | 2746 | CONFIG_USB_LCD=m |
| @@ -2770,7 +2776,9 @@ CONFIG_LEDS_CLASS=y | |||
| 2770 | # | 2776 | # |
| 2771 | # LED drivers | 2777 | # LED drivers |
| 2772 | # | 2778 | # |
| 2779 | # CONFIG_LEDS_PCA9532 is not set | ||
| 2773 | # CONFIG_LEDS_GPIO is not set | 2780 | # CONFIG_LEDS_GPIO is not set |
| 2781 | # CONFIG_LEDS_PCA955X is not set | ||
| 2774 | 2782 | ||
| 2775 | # | 2783 | # |
| 2776 | # LED Triggers | 2784 | # LED Triggers |
| @@ -2853,6 +2861,7 @@ CONFIG_KS0108_PORT=0x378 | |||
| 2853 | CONFIG_KS0108_DELAY=2 | 2861 | CONFIG_KS0108_DELAY=2 |
| 2854 | CONFIG_UIO=m | 2862 | CONFIG_UIO=m |
| 2855 | CONFIG_UIO_CIF=m | 2863 | CONFIG_UIO_CIF=m |
| 2864 | CONFIG_UIO_PDRV=m | ||
| 2856 | CONFIG_UIO_SMX=m | 2865 | CONFIG_UIO_SMX=m |
| 2857 | 2866 | ||
| 2858 | # | 2867 | # |
| @@ -2899,6 +2908,7 @@ CONFIG_GFS2_FS_LOCKING_DLM=m | |||
| 2899 | CONFIG_OCFS2_FS=m | 2908 | CONFIG_OCFS2_FS=m |
| 2900 | CONFIG_OCFS2_FS_O2CB=m | 2909 | CONFIG_OCFS2_FS_O2CB=m |
| 2901 | CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | 2910 | CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m |
| 2911 | CONFIG_OCFS2_FS_STATS=y | ||
| 2902 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 2912 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
| 2903 | # CONFIG_OCFS2_DEBUG_FS is not set | 2913 | # CONFIG_OCFS2_DEBUG_FS is not set |
| 2904 | CONFIG_DNOTIFY=y | 2914 | CONFIG_DNOTIFY=y |
| @@ -2959,11 +2969,9 @@ CONFIG_BEFS_FS=m | |||
| 2959 | CONFIG_BFS_FS=m | 2969 | CONFIG_BFS_FS=m |
| 2960 | CONFIG_EFS_FS=m | 2970 | CONFIG_EFS_FS=m |
| 2961 | CONFIG_CRAMFS=m | 2971 | CONFIG_CRAMFS=m |
| 2962 | CONFIG_SQUASHFS=m | ||
| 2963 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
| 2964 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
| 2965 | CONFIG_VXFS_FS=m | 2972 | CONFIG_VXFS_FS=m |
| 2966 | CONFIG_MINIX_FS=m | 2973 | CONFIG_MINIX_FS=m |
| 2974 | CONFIG_OMFS_FS=m | ||
| 2967 | # CONFIG_HPFS_FS is not set | 2975 | # CONFIG_HPFS_FS is not set |
| 2968 | CONFIG_QNX4FS_FS=m | 2976 | CONFIG_QNX4FS_FS=m |
| 2969 | CONFIG_ROMFS_FS=m | 2977 | CONFIG_ROMFS_FS=m |
| @@ -2988,7 +2996,6 @@ CONFIG_NFS_ACL_SUPPORT=m | |||
| 2988 | CONFIG_NFS_COMMON=y | 2996 | CONFIG_NFS_COMMON=y |
| 2989 | CONFIG_SUNRPC=m | 2997 | CONFIG_SUNRPC=m |
| 2990 | CONFIG_SUNRPC_GSS=m | 2998 | CONFIG_SUNRPC_GSS=m |
| 2991 | CONFIG_SUNRPC_BIND34=y | ||
| 2992 | CONFIG_RPCSEC_GSS_KRB5=m | 2999 | CONFIG_RPCSEC_GSS_KRB5=m |
| 2993 | CONFIG_RPCSEC_GSS_SPKM3=m | 3000 | CONFIG_RPCSEC_GSS_SPKM3=m |
| 2994 | # CONFIG_SMB_FS is not set | 3001 | # CONFIG_SMB_FS is not set |
| @@ -3011,7 +3018,6 @@ CONFIG_NCPFS_SMALLDOS=y | |||
| 3011 | CONFIG_NCPFS_NLS=y | 3018 | CONFIG_NCPFS_NLS=y |
| 3012 | CONFIG_NCPFS_EXTRAS=y | 3019 | CONFIG_NCPFS_EXTRAS=y |
| 3013 | CONFIG_CODA_FS=m | 3020 | CONFIG_CODA_FS=m |
| 3014 | # CONFIG_CODA_FS_OLD_API is not set | ||
| 3015 | # CONFIG_AFS_FS is not set | 3021 | # CONFIG_AFS_FS is not set |
| 3016 | CONFIG_9P_FS=m | 3022 | CONFIG_9P_FS=m |
| 3017 | 3023 | ||
| @@ -3087,7 +3093,7 @@ CONFIG_BITREVERSE=y | |||
| 3087 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 3093 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 3088 | CONFIG_CRC_CCITT=m | 3094 | CONFIG_CRC_CCITT=m |
| 3089 | CONFIG_CRC16=m | 3095 | CONFIG_CRC16=m |
| 3090 | CONFIG_CRC_T10DIF=m | 3096 | CONFIG_CRC_T10DIF=y |
| 3091 | CONFIG_CRC_ITU_T=m | 3097 | CONFIG_CRC_ITU_T=m |
| 3092 | CONFIG_CRC32=y | 3098 | CONFIG_CRC32=y |
| 3093 | # CONFIG_CRC7 is not set | 3099 | # CONFIG_CRC7 is not set |
| @@ -3120,6 +3126,8 @@ CONFIG_HEADERS_CHECK=y | |||
| 3120 | CONFIG_DEBUG_KERNEL=y | 3126 | CONFIG_DEBUG_KERNEL=y |
| 3121 | CONFIG_DEBUG_SHIRQ=y | 3127 | CONFIG_DEBUG_SHIRQ=y |
| 3122 | CONFIG_DETECT_SOFTLOCKUP=y | 3128 | CONFIG_DETECT_SOFTLOCKUP=y |
| 3129 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 3130 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 3123 | CONFIG_SCHED_DEBUG=y | 3131 | CONFIG_SCHED_DEBUG=y |
| 3124 | CONFIG_SCHEDSTATS=y | 3132 | CONFIG_SCHEDSTATS=y |
| 3125 | CONFIG_TIMER_STATS=y | 3133 | CONFIG_TIMER_STATS=y |
| @@ -3143,6 +3151,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 3143 | CONFIG_DEBUG_INFO=y | 3151 | CONFIG_DEBUG_INFO=y |
| 3144 | CONFIG_DEBUG_VM=y | 3152 | CONFIG_DEBUG_VM=y |
| 3145 | CONFIG_DEBUG_WRITECOUNT=y | 3153 | CONFIG_DEBUG_WRITECOUNT=y |
| 3154 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 3146 | CONFIG_DEBUG_LIST=y | 3155 | CONFIG_DEBUG_LIST=y |
| 3147 | CONFIG_DEBUG_SG=y | 3156 | CONFIG_DEBUG_SG=y |
| 3148 | CONFIG_FRAME_POINTER=y | 3157 | CONFIG_FRAME_POINTER=y |
| @@ -3158,6 +3167,7 @@ CONFIG_FAIL_MAKE_REQUEST=y | |||
| 3158 | CONFIG_FAULT_INJECTION_DEBUG_FS=y | 3167 | CONFIG_FAULT_INJECTION_DEBUG_FS=y |
| 3159 | CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y | 3168 | CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y |
| 3160 | CONFIG_LATENCYTOP=y | 3169 | CONFIG_LATENCYTOP=y |
| 3170 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 3161 | CONFIG_HAVE_FTRACE=y | 3171 | CONFIG_HAVE_FTRACE=y |
| 3162 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 3172 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 3163 | CONFIG_TRACER_MAX_TRACE=y | 3173 | CONFIG_TRACER_MAX_TRACE=y |
| @@ -3168,16 +3178,18 @@ CONFIG_CONTEXT_SWITCH_TRACER=y | |||
| 3168 | CONFIG_DYNAMIC_FTRACE=y | 3178 | CONFIG_DYNAMIC_FTRACE=y |
| 3169 | # CONFIG_FTRACE_STARTUP_TEST is not set | 3179 | # CONFIG_FTRACE_STARTUP_TEST is not set |
| 3170 | # CONFIG_FIREWIRE_OHCI_REMOTE_DMA is not set | 3180 | # CONFIG_FIREWIRE_OHCI_REMOTE_DMA is not set |
| 3181 | # CONFIG_BUILD_DOCSRC is not set | ||
| 3171 | # CONFIG_SAMPLES is not set | 3182 | # CONFIG_SAMPLES is not set |
| 3183 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 3184 | # CONFIG_KGDB is not set | ||
| 3172 | CONFIG_DEBUG_STACKOVERFLOW=y | 3185 | CONFIG_DEBUG_STACKOVERFLOW=y |
| 3173 | CONFIG_DEBUG_STACK_USAGE=y | 3186 | CONFIG_DEBUG_STACK_USAGE=y |
| 3174 | CONFIG_DEBUGGER=y | ||
| 3175 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 3187 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 3176 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 3188 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 3177 | # CONFIG_KGDB_CONSOLE is not set | ||
| 3178 | CONFIG_XMON=y | 3189 | CONFIG_XMON=y |
| 3179 | # CONFIG_XMON_DEFAULT is not set | 3190 | # CONFIG_XMON_DEFAULT is not set |
| 3180 | CONFIG_XMON_DISASSEMBLY=y | 3191 | CONFIG_XMON_DISASSEMBLY=y |
| 3192 | CONFIG_DEBUGGER=y | ||
| 3181 | CONFIG_IRQSTACKS=y | 3193 | CONFIG_IRQSTACKS=y |
| 3182 | # CONFIG_VIRQ_DEBUG is not set | 3194 | # CONFIG_VIRQ_DEBUG is not set |
| 3183 | # CONFIG_BDI_SWITCH is not set | 3195 | # CONFIG_BDI_SWITCH is not set |
diff --git a/arch/powerpc/configs/pq2fads_defconfig b/arch/powerpc/configs/pq2fads_defconfig index bc3bf62ddc2f..b390b7476649 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:18 2008 | 4 | # Thu Aug 21 00:52:13 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,6 +15,7 @@ CONFIG_6xx=y | |||
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_FPU=y | 17 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_ALTIVEC is not set | ||
| 18 | CONFIG_PPC_STD_MMU=y | 19 | CONFIG_PPC_STD_MMU=y |
| 19 | CONFIG_PPC_STD_MMU_32=y | 20 | CONFIG_PPC_STD_MMU_32=y |
| 20 | # CONFIG_PPC_MM_SLICES is not set | 21 | # CONFIG_PPC_MM_SLICES is not set |
| @@ -31,12 +32,14 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
| 33 | CONFIG_STACKTRACE_SUPPORT=y | 34 | CONFIG_STACKTRACE_SUPPORT=y |
| 35 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 34 | CONFIG_LOCKDEP_SUPPORT=y | 36 | CONFIG_LOCKDEP_SUPPORT=y |
| 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 36 | CONFIG_ARCH_HAS_ILOG2_U32=y | 38 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 37 | CONFIG_GENERIC_HWEIGHT=y | 39 | CONFIG_GENERIC_HWEIGHT=y |
| 38 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 40 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 39 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 41 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 42 | CONFIG_GENERIC_GPIO=y | ||
| 40 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 43 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
| 41 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
| 42 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
| @@ -45,11 +48,13 @@ CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | |||
| 45 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
| 46 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
| 47 | CONFIG_OF=y | 50 | CONFIG_OF=y |
| 48 | # CONFIG_PPC_UDBG_16550 is not set | 51 | CONFIG_PPC_UDBG_16550=y |
| 49 | # CONFIG_GENERIC_TBSYNC is not set | 52 | # CONFIG_GENERIC_TBSYNC is not set |
| 50 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 51 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 52 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | CONFIG_HIBERNATE_32=y | ||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | ||
| 53 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 54 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 55 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| @@ -82,7 +87,6 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 82 | CONFIG_SYSCTL=y | 87 | CONFIG_SYSCTL=y |
| 83 | CONFIG_EMBEDDED=y | 88 | CONFIG_EMBEDDED=y |
| 84 | CONFIG_SYSCTL_SYSCALL=y | 89 | CONFIG_SYSCTL_SYSCALL=y |
| 85 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 86 | CONFIG_KALLSYMS=y | 90 | CONFIG_KALLSYMS=y |
| 87 | CONFIG_KALLSYMS_ALL=y | 91 | CONFIG_KALLSYMS_ALL=y |
| 88 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 92 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -90,6 +94,7 @@ CONFIG_HOTPLUG=y | |||
| 90 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
| 91 | CONFIG_BUG=y | 95 | CONFIG_BUG=y |
| 92 | CONFIG_ELF_CORE=y | 96 | CONFIG_ELF_CORE=y |
| 97 | CONFIG_PCSPKR_PLATFORM=y | ||
| 93 | CONFIG_COMPAT_BRK=y | 98 | CONFIG_COMPAT_BRK=y |
| 94 | CONFIG_BASE_FULL=y | 99 | CONFIG_BASE_FULL=y |
| 95 | CONFIG_FUTEX=y | 100 | CONFIG_FUTEX=y |
| @@ -107,10 +112,16 @@ CONFIG_SLUB=y | |||
| 107 | # CONFIG_PROFILING is not set | 112 | # CONFIG_PROFILING is not set |
| 108 | # CONFIG_MARKERS is not set | 113 | # CONFIG_MARKERS is not set |
| 109 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
| 115 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 116 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 110 | CONFIG_HAVE_KPROBES=y | 117 | CONFIG_HAVE_KPROBES=y |
| 111 | CONFIG_HAVE_KRETPROBES=y | 118 | CONFIG_HAVE_KRETPROBES=y |
| 119 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 112 | # CONFIG_HAVE_DMA_ATTRS is not set | 120 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 121 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 122 | CONFIG_HAVE_CLK=y | ||
| 113 | CONFIG_PROC_PAGE_MONITOR=y | 123 | CONFIG_PROC_PAGE_MONITOR=y |
| 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 114 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
| 115 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
| 116 | # CONFIG_TINY_SHMEM is not set | 127 | # CONFIG_TINY_SHMEM is not set |
| @@ -120,6 +131,7 @@ CONFIG_BLOCK=y | |||
| 120 | # CONFIG_LBD is not set | 131 | # CONFIG_LBD is not set |
| 121 | # CONFIG_BLK_DEV_IO_TRACE is not set | 132 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 122 | # CONFIG_LSF is not set | 133 | # CONFIG_LSF is not set |
| 134 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 123 | 135 | ||
| 124 | # | 136 | # |
| 125 | # IO Schedulers | 137 | # IO Schedulers |
| @@ -138,33 +150,43 @@ CONFIG_CLASSIC_RCU=y | |||
| 138 | # | 150 | # |
| 139 | # Platform support | 151 | # Platform support |
| 140 | # | 152 | # |
| 141 | # CONFIG_PPC_MULTIPLATFORM is not set | 153 | CONFIG_PPC_MULTIPLATFORM=y |
| 142 | CONFIG_PPC_82xx=y | 154 | CONFIG_CLASSIC32=y |
| 143 | # CONFIG_PPC_83xx is not set | 155 | CONFIG_PPC_CHRP=y |
| 144 | # CONFIG_PPC_86xx is not set | 156 | # CONFIG_MPC5121_ADS is not set |
| 145 | # CONFIG_PPC_MPC512x is not set | 157 | # CONFIG_MPC5121_GENERIC is not set |
| 146 | # CONFIG_PPC_MPC5121 is not set | 158 | # CONFIG_PPC_MPC52xx is not set |
| 159 | CONFIG_PPC_PMAC=y | ||
| 147 | # CONFIG_PPC_CELL is not set | 160 | # CONFIG_PPC_CELL is not set |
| 148 | # CONFIG_PPC_CELL_NATIVE is not set | 161 | # CONFIG_PPC_CELL_NATIVE is not set |
| 162 | CONFIG_PPC_82xx=y | ||
| 149 | # CONFIG_MPC8272_ADS is not set | 163 | # CONFIG_MPC8272_ADS is not set |
| 150 | CONFIG_PQ2FADS=y | 164 | CONFIG_PQ2FADS=y |
| 151 | # CONFIG_EP8248E is not set | 165 | # CONFIG_EP8248E is not set |
| 152 | CONFIG_PQ2ADS=y | 166 | CONFIG_PQ2ADS=y |
| 153 | CONFIG_8260=y | 167 | CONFIG_8260=y |
| 154 | CONFIG_PQ2_ADS_PCI_PIC=y | 168 | CONFIG_PQ2_ADS_PCI_PIC=y |
| 169 | # CONFIG_PPC_83xx is not set | ||
| 170 | # CONFIG_PPC_86xx is not set | ||
| 171 | # CONFIG_EMBEDDED6xx is not set | ||
| 172 | CONFIG_PPC_NATIVE=y | ||
| 173 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 155 | # CONFIG_IPIC is not set | 174 | # CONFIG_IPIC is not set |
| 156 | # CONFIG_MPIC is not set | 175 | CONFIG_MPIC=y |
| 157 | # CONFIG_MPIC_WEIRD is not set | 176 | # CONFIG_MPIC_WEIRD is not set |
| 158 | # CONFIG_PPC_I8259 is not set | 177 | CONFIG_PPC_I8259=y |
| 159 | # CONFIG_PPC_RTAS is not set | 178 | CONFIG_PPC_RTAS=y |
| 179 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 180 | CONFIG_RTAS_PROC=y | ||
| 160 | # CONFIG_MMIO_NVRAM is not set | 181 | # CONFIG_MMIO_NVRAM is not set |
| 161 | # CONFIG_PPC_MPC106 is not set | 182 | CONFIG_PPC_MPC106=y |
| 162 | # CONFIG_PPC_970_NAP is not set | 183 | # CONFIG_PPC_970_NAP is not set |
| 163 | # CONFIG_PPC_INDIRECT_IO is not set | 184 | # CONFIG_PPC_INDIRECT_IO is not set |
| 164 | # CONFIG_GENERIC_IOMAP is not set | 185 | # CONFIG_GENERIC_IOMAP is not set |
| 165 | # CONFIG_CPU_FREQ is not set | 186 | # CONFIG_CPU_FREQ is not set |
| 187 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 188 | # CONFIG_TAU is not set | ||
| 166 | CONFIG_CPM2=y | 189 | CONFIG_CPM2=y |
| 167 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 168 | # CONFIG_FSL_ULI1575 is not set | 190 | # CONFIG_FSL_ULI1575 is not set |
| 169 | CONFIG_CPM=y | 191 | CONFIG_CPM=y |
| 170 | 192 | ||
| @@ -181,7 +203,7 @@ CONFIG_HZ_250=y | |||
| 181 | # CONFIG_HZ_300 is not set | 203 | # CONFIG_HZ_300 is not set |
| 182 | # CONFIG_HZ_1000 is not set | 204 | # CONFIG_HZ_1000 is not set |
| 183 | CONFIG_HZ=250 | 205 | CONFIG_HZ=250 |
| 184 | # CONFIG_SCHED_HRTICK is not set | 206 | CONFIG_SCHED_HRTICK=y |
| 185 | CONFIG_PREEMPT_NONE=y | 207 | CONFIG_PREEMPT_NONE=y |
| 186 | # CONFIG_PREEMPT_VOLUNTARY is not set | 208 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 187 | # CONFIG_PREEMPT is not set | 209 | # CONFIG_PREEMPT is not set |
| @@ -199,6 +221,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 199 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 221 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 200 | CONFIG_PAGEFLAGS_EXTENDED=y | 222 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 201 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 223 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 224 | CONFIG_MIGRATION=y | ||
| 202 | # CONFIG_RESOURCES_64BIT is not set | 225 | # CONFIG_RESOURCES_64BIT is not set |
| 203 | CONFIG_ZONE_DMA_FLAG=1 | 226 | CONFIG_ZONE_DMA_FLAG=1 |
| 204 | CONFIG_BOUNCE=y | 227 | CONFIG_BOUNCE=y |
| @@ -206,6 +229,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 206 | CONFIG_FORCE_MAX_ZONEORDER=11 | 229 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 207 | CONFIG_PROC_DEVICETREE=y | 230 | CONFIG_PROC_DEVICETREE=y |
| 208 | # CONFIG_CMDLINE_BOOL is not set | 231 | # CONFIG_CMDLINE_BOOL is not set |
| 232 | CONFIG_EXTRA_TARGETS="" | ||
| 209 | # CONFIG_PM is not set | 233 | # CONFIG_PM is not set |
| 210 | CONFIG_SECCOMP=y | 234 | CONFIG_SECCOMP=y |
| 211 | CONFIG_ISA_DMA_API=y | 235 | CONFIG_ISA_DMA_API=y |
| @@ -213,9 +237,11 @@ CONFIG_ISA_DMA_API=y | |||
| 213 | # | 237 | # |
| 214 | # Bus options | 238 | # Bus options |
| 215 | # | 239 | # |
| 240 | # CONFIG_ISA is not set | ||
| 216 | CONFIG_ZONE_DMA=y | 241 | CONFIG_ZONE_DMA=y |
| 217 | CONFIG_PPC_INDIRECT_PCI=y | 242 | CONFIG_PPC_INDIRECT_PCI=y |
| 218 | CONFIG_FSL_SOC=y | 243 | CONFIG_FSL_SOC=y |
| 244 | CONFIG_PPC_PCI_CHOICE=y | ||
| 219 | CONFIG_PCI=y | 245 | CONFIG_PCI=y |
| 220 | CONFIG_PCI_DOMAINS=y | 246 | CONFIG_PCI_DOMAINS=y |
| 221 | CONFIG_PCI_SYSCALL=y | 247 | CONFIG_PCI_SYSCALL=y |
| @@ -243,10 +269,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 243 | CONFIG_KERNEL_START=0xc0000000 | 269 | CONFIG_KERNEL_START=0xc0000000 |
| 244 | CONFIG_PHYSICAL_START=0x00000000 | 270 | CONFIG_PHYSICAL_START=0x00000000 |
| 245 | CONFIG_TASK_SIZE=0xc0000000 | 271 | CONFIG_TASK_SIZE=0xc0000000 |
| 246 | |||
| 247 | # | ||
| 248 | # Networking | ||
| 249 | # | ||
| 250 | CONFIG_NET=y | 272 | CONFIG_NET=y |
| 251 | 273 | ||
| 252 | # | 274 | # |
| @@ -447,9 +469,11 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 447 | # | 469 | # |
| 448 | # CONFIG_MTD_UBI is not set | 470 | # CONFIG_MTD_UBI is not set |
| 449 | CONFIG_OF_DEVICE=y | 471 | CONFIG_OF_DEVICE=y |
| 472 | CONFIG_OF_GPIO=y | ||
| 450 | # CONFIG_PARPORT is not set | 473 | # CONFIG_PARPORT is not set |
| 451 | CONFIG_BLK_DEV=y | 474 | CONFIG_BLK_DEV=y |
| 452 | # CONFIG_BLK_DEV_FD is not set | 475 | # CONFIG_BLK_DEV_FD is not set |
| 476 | # CONFIG_MAC_FLOPPY is not set | ||
| 453 | # CONFIG_BLK_CPQ_DA is not set | 477 | # CONFIG_BLK_CPQ_DA is not set |
| 454 | # CONFIG_BLK_CPQ_CISS_DA is not set | 478 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 455 | # CONFIG_BLK_DEV_DAC960 is not set | 479 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -461,14 +485,15 @@ CONFIG_BLK_DEV_LOOP=y | |||
| 461 | # CONFIG_BLK_DEV_RAM is not set | 485 | # CONFIG_BLK_DEV_RAM is not set |
| 462 | # CONFIG_CDROM_PKTCDVD is not set | 486 | # CONFIG_CDROM_PKTCDVD is not set |
| 463 | # CONFIG_ATA_OVER_ETH is not set | 487 | # CONFIG_ATA_OVER_ETH is not set |
| 488 | # CONFIG_BLK_DEV_HD is not set | ||
| 464 | CONFIG_MISC_DEVICES=y | 489 | CONFIG_MISC_DEVICES=y |
| 465 | # CONFIG_PHANTOM is not set | 490 | # CONFIG_PHANTOM is not set |
| 466 | # CONFIG_EEPROM_93CX6 is not set | 491 | # CONFIG_EEPROM_93CX6 is not set |
| 467 | # CONFIG_SGI_IOC4 is not set | 492 | # CONFIG_SGI_IOC4 is not set |
| 468 | # CONFIG_ENCLOSURE_SERVICES is not set | 493 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 494 | # CONFIG_HP_ILO is not set | ||
| 469 | CONFIG_HAVE_IDE=y | 495 | CONFIG_HAVE_IDE=y |
| 470 | CONFIG_IDE=y | 496 | CONFIG_IDE=y |
| 471 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 472 | CONFIG_BLK_DEV_IDE=y | 497 | CONFIG_BLK_DEV_IDE=y |
| 473 | 498 | ||
| 474 | # | 499 | # |
| @@ -486,7 +511,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 486 | # | 511 | # |
| 487 | # IDE chipset support/bugfixes | 512 | # IDE chipset support/bugfixes |
| 488 | # | 513 | # |
| 489 | # CONFIG_IDE_GENERIC is not set | ||
| 490 | # CONFIG_BLK_DEV_PLATFORM is not set | 514 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 491 | 515 | ||
| 492 | # | 516 | # |
| @@ -498,9 +522,7 @@ CONFIG_IDE_PROC_FS=y | |||
| 498 | # CONFIG_BLK_DEV_AMD74XX is not set | 522 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 499 | # CONFIG_BLK_DEV_CMD64X is not set | 523 | # CONFIG_BLK_DEV_CMD64X is not set |
| 500 | # CONFIG_BLK_DEV_TRIFLEX is not set | 524 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 501 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 502 | # CONFIG_BLK_DEV_CS5530 is not set | 525 | # CONFIG_BLK_DEV_CS5530 is not set |
| 503 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 504 | # CONFIG_BLK_DEV_HPT366 is not set | 526 | # CONFIG_BLK_DEV_HPT366 is not set |
| 505 | # CONFIG_BLK_DEV_JMICRON is not set | 527 | # CONFIG_BLK_DEV_JMICRON is not set |
| 506 | # CONFIG_BLK_DEV_SC1200 is not set | 528 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -517,9 +539,8 @@ CONFIG_IDE_PROC_FS=y | |||
| 517 | # CONFIG_BLK_DEV_TRM290 is not set | 539 | # CONFIG_BLK_DEV_TRM290 is not set |
| 518 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 540 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
| 519 | # CONFIG_BLK_DEV_TC86C001 is not set | 541 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 542 | # CONFIG_BLK_DEV_IDE_PMAC is not set | ||
| 520 | # CONFIG_BLK_DEV_IDEDMA is not set | 543 | # CONFIG_BLK_DEV_IDEDMA is not set |
| 521 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 522 | # CONFIG_BLK_DEV_HD is not set | ||
| 523 | 544 | ||
| 524 | # | 545 | # |
| 525 | # SCSI device support | 546 | # SCSI device support |
| @@ -537,13 +558,12 @@ CONFIG_IDE_PROC_FS=y | |||
| 537 | # | 558 | # |
| 538 | 559 | ||
| 539 | # | 560 | # |
| 540 | # An alternative FireWire stack is available with EXPERIMENTAL=y | 561 | # A new alternative FireWire stack is available with EXPERIMENTAL=y |
| 541 | # | 562 | # |
| 542 | # CONFIG_IEEE1394 is not set | 563 | # CONFIG_IEEE1394 is not set |
| 543 | # CONFIG_I2O is not set | 564 | # CONFIG_I2O is not set |
| 544 | # CONFIG_MACINTOSH_DRIVERS is not set | 565 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 545 | CONFIG_NETDEVICES=y | 566 | CONFIG_NETDEVICES=y |
| 546 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 547 | # CONFIG_DUMMY is not set | 567 | # CONFIG_DUMMY is not set |
| 548 | # CONFIG_BONDING is not set | 568 | # CONFIG_BONDING is not set |
| 549 | # CONFIG_EQUALIZER is not set | 569 | # CONFIG_EQUALIZER is not set |
| @@ -567,8 +587,11 @@ CONFIG_DAVICOM_PHY=y | |||
| 567 | # CONFIG_REALTEK_PHY is not set | 587 | # CONFIG_REALTEK_PHY is not set |
| 568 | # CONFIG_FIXED_PHY is not set | 588 | # CONFIG_FIXED_PHY is not set |
| 569 | CONFIG_MDIO_BITBANG=y | 589 | CONFIG_MDIO_BITBANG=y |
| 590 | # CONFIG_MDIO_OF_GPIO is not set | ||
| 570 | CONFIG_NET_ETHERNET=y | 591 | CONFIG_NET_ETHERNET=y |
| 571 | CONFIG_MII=y | 592 | CONFIG_MII=y |
| 593 | # CONFIG_MACE is not set | ||
| 594 | # CONFIG_BMAC is not set | ||
| 572 | # CONFIG_HAPPYMEAL is not set | 595 | # CONFIG_HAPPYMEAL is not set |
| 573 | # CONFIG_SUNGEM is not set | 596 | # CONFIG_SUNGEM is not set |
| 574 | # CONFIG_CASSINI is not set | 597 | # CONFIG_CASSINI is not set |
| @@ -590,7 +613,6 @@ CONFIG_NETDEV_1000=y | |||
| 590 | # CONFIG_DL2K is not set | 613 | # CONFIG_DL2K is not set |
| 591 | # CONFIG_E1000 is not set | 614 | # CONFIG_E1000 is not set |
| 592 | # CONFIG_E1000E is not set | 615 | # CONFIG_E1000E is not set |
| 593 | # CONFIG_E1000E_ENABLED is not set | ||
| 594 | # CONFIG_IGB is not set | 616 | # CONFIG_IGB is not set |
| 595 | # CONFIG_NS83820 is not set | 617 | # CONFIG_NS83820 is not set |
| 596 | # CONFIG_HAMACHI is not set | 618 | # CONFIG_HAMACHI is not set |
| @@ -602,6 +624,7 @@ CONFIG_NETDEV_1000=y | |||
| 602 | # CONFIG_TIGON3 is not set | 624 | # CONFIG_TIGON3 is not set |
| 603 | # CONFIG_BNX2 is not set | 625 | # CONFIG_BNX2 is not set |
| 604 | # CONFIG_GIANFAR is not set | 626 | # CONFIG_GIANFAR is not set |
| 627 | # CONFIG_MV643XX_ETH is not set | ||
| 605 | # CONFIG_QLA3XXX is not set | 628 | # CONFIG_QLA3XXX is not set |
| 606 | CONFIG_NETDEV_10000=y | 629 | CONFIG_NETDEV_10000=y |
| 607 | # CONFIG_CHELSIO_T1 is not set | 630 | # CONFIG_CHELSIO_T1 is not set |
| @@ -667,6 +690,7 @@ CONFIG_KEYBOARD_ATKBD=y | |||
| 667 | # CONFIG_KEYBOARD_XTKBD is not set | 690 | # CONFIG_KEYBOARD_XTKBD is not set |
| 668 | # CONFIG_KEYBOARD_NEWTON is not set | 691 | # CONFIG_KEYBOARD_NEWTON is not set |
| 669 | # CONFIG_KEYBOARD_STOWAWAY is not set | 692 | # CONFIG_KEYBOARD_STOWAWAY is not set |
| 693 | # CONFIG_KEYBOARD_GPIO is not set | ||
| 670 | CONFIG_INPUT_MOUSE=y | 694 | CONFIG_INPUT_MOUSE=y |
| 671 | CONFIG_MOUSE_PS2=y | 695 | CONFIG_MOUSE_PS2=y |
| 672 | CONFIG_MOUSE_PS2_ALPS=y | 696 | CONFIG_MOUSE_PS2_ALPS=y |
| @@ -677,7 +701,9 @@ CONFIG_MOUSE_PS2_TRACKPOINT=y | |||
| 677 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 701 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| 678 | # CONFIG_MOUSE_SERIAL is not set | 702 | # CONFIG_MOUSE_SERIAL is not set |
| 679 | # CONFIG_MOUSE_APPLETOUCH is not set | 703 | # CONFIG_MOUSE_APPLETOUCH is not set |
| 704 | # CONFIG_MOUSE_BCM5974 is not set | ||
| 680 | # CONFIG_MOUSE_VSXXXAA is not set | 705 | # CONFIG_MOUSE_VSXXXAA is not set |
| 706 | # CONFIG_MOUSE_GPIO is not set | ||
| 681 | # CONFIG_INPUT_JOYSTICK is not set | 707 | # CONFIG_INPUT_JOYSTICK is not set |
| 682 | # CONFIG_INPUT_TABLET is not set | 708 | # CONFIG_INPUT_TABLET is not set |
| 683 | # CONFIG_INPUT_TOUCHSCREEN is not set | 709 | # CONFIG_INPUT_TOUCHSCREEN is not set |
| @@ -692,6 +718,7 @@ CONFIG_SERIO_SERPORT=y | |||
| 692 | # CONFIG_SERIO_PCIPS2 is not set | 718 | # CONFIG_SERIO_PCIPS2 is not set |
| 693 | CONFIG_SERIO_LIBPS2=y | 719 | CONFIG_SERIO_LIBPS2=y |
| 694 | # CONFIG_SERIO_RAW is not set | 720 | # CONFIG_SERIO_RAW is not set |
| 721 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 695 | # CONFIG_GAMEPORT is not set | 722 | # CONFIG_GAMEPORT is not set |
| 696 | 723 | ||
| 697 | # | 724 | # |
| @@ -712,6 +739,7 @@ CONFIG_DEVKMEM=y | |||
| 712 | # CONFIG_SERIAL_UARTLITE is not set | 739 | # CONFIG_SERIAL_UARTLITE is not set |
| 713 | CONFIG_SERIAL_CORE=y | 740 | CONFIG_SERIAL_CORE=y |
| 714 | CONFIG_SERIAL_CORE_CONSOLE=y | 741 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 742 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 715 | CONFIG_SERIAL_CPM=y | 743 | CONFIG_SERIAL_CPM=y |
| 716 | CONFIG_SERIAL_CPM_CONSOLE=y | 744 | CONFIG_SERIAL_CPM_CONSOLE=y |
| 717 | CONFIG_SERIAL_CPM_SCC1=y | 745 | CONFIG_SERIAL_CPM_SCC1=y |
| @@ -724,6 +752,8 @@ CONFIG_SERIAL_CPM_SCC4=y | |||
| 724 | CONFIG_UNIX98_PTYS=y | 752 | CONFIG_UNIX98_PTYS=y |
| 725 | CONFIG_LEGACY_PTYS=y | 753 | CONFIG_LEGACY_PTYS=y |
| 726 | CONFIG_LEGACY_PTY_COUNT=256 | 754 | CONFIG_LEGACY_PTY_COUNT=256 |
| 755 | # CONFIG_BRIQ_PANEL is not set | ||
| 756 | # CONFIG_HVC_RTAS is not set | ||
| 727 | # CONFIG_IPMI_HANDLER is not set | 757 | # CONFIG_IPMI_HANDLER is not set |
| 728 | CONFIG_HW_RANDOM=y | 758 | CONFIG_HW_RANDOM=y |
| 729 | # CONFIG_NVRAM is not set | 759 | # CONFIG_NVRAM is not set |
| @@ -734,10 +764,28 @@ CONFIG_HW_RANDOM=y | |||
| 734 | CONFIG_DEVPORT=y | 764 | CONFIG_DEVPORT=y |
| 735 | # CONFIG_I2C is not set | 765 | # CONFIG_I2C is not set |
| 736 | # CONFIG_SPI is not set | 766 | # CONFIG_SPI is not set |
| 767 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 768 | CONFIG_ARCH_REQUIRE_GPIOLIB=y | ||
| 769 | CONFIG_GPIOLIB=y | ||
| 770 | # CONFIG_DEBUG_GPIO is not set | ||
| 771 | |||
| 772 | # | ||
| 773 | # I2C GPIO expanders: | ||
| 774 | # | ||
| 775 | |||
| 776 | # | ||
| 777 | # PCI GPIO expanders: | ||
| 778 | # | ||
| 779 | # CONFIG_GPIO_BT8XX is not set | ||
| 780 | |||
| 781 | # | ||
| 782 | # SPI GPIO expanders: | ||
| 783 | # | ||
| 737 | # CONFIG_W1 is not set | 784 | # CONFIG_W1 is not set |
| 738 | # CONFIG_POWER_SUPPLY is not set | 785 | # CONFIG_POWER_SUPPLY is not set |
| 739 | # CONFIG_HWMON is not set | 786 | # CONFIG_HWMON is not set |
| 740 | # CONFIG_THERMAL is not set | 787 | # CONFIG_THERMAL is not set |
| 788 | # CONFIG_THERMAL_HWMON is not set | ||
| 741 | # CONFIG_WATCHDOG is not set | 789 | # CONFIG_WATCHDOG is not set |
| 742 | 790 | ||
| 743 | # | 791 | # |
| @@ -749,8 +797,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 749 | # | 797 | # |
| 750 | # Multifunction device drivers | 798 | # Multifunction device drivers |
| 751 | # | 799 | # |
| 800 | # CONFIG_MFD_CORE is not set | ||
| 752 | # CONFIG_MFD_SM501 is not set | 801 | # CONFIG_MFD_SM501 is not set |
| 753 | # CONFIG_HTC_PASIC3 is not set | 802 | # CONFIG_HTC_PASIC3 is not set |
| 803 | # CONFIG_MFD_TMIO is not set | ||
| 754 | 804 | ||
| 755 | # | 805 | # |
| 756 | # Multimedia devices | 806 | # Multimedia devices |
| @@ -782,10 +832,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 782 | # Display device support | 832 | # Display device support |
| 783 | # | 833 | # |
| 784 | # CONFIG_DISPLAY_SUPPORT is not set | 834 | # CONFIG_DISPLAY_SUPPORT is not set |
| 785 | |||
| 786 | # | ||
| 787 | # Sound | ||
| 788 | # | ||
| 789 | # CONFIG_SOUND is not set | 835 | # CONFIG_SOUND is not set |
| 790 | # CONFIG_HID_SUPPORT is not set | 836 | # CONFIG_HID_SUPPORT is not set |
| 791 | CONFIG_USB_SUPPORT=y | 837 | CONFIG_USB_SUPPORT=y |
| @@ -795,6 +841,8 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 795 | # CONFIG_USB is not set | 841 | # CONFIG_USB is not set |
| 796 | # CONFIG_USB_OTG_WHITELIST is not set | 842 | # CONFIG_USB_OTG_WHITELIST is not set |
| 797 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 843 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 844 | # CONFIG_USB_MUSB_HDRC is not set | ||
| 845 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | ||
| 798 | 846 | ||
| 799 | # | 847 | # |
| 800 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 848 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -807,7 +855,7 @@ CONFIG_USB_GADGET_SELECTED=y | |||
| 807 | # CONFIG_USB_GADGET_ATMEL_USBA is not set | 855 | # CONFIG_USB_GADGET_ATMEL_USBA is not set |
| 808 | # CONFIG_USB_GADGET_FSL_USB2 is not set | 856 | # CONFIG_USB_GADGET_FSL_USB2 is not set |
| 809 | # CONFIG_USB_GADGET_NET2280 is not set | 857 | # CONFIG_USB_GADGET_NET2280 is not set |
| 810 | # CONFIG_USB_GADGET_PXA2XX is not set | 858 | # CONFIG_USB_GADGET_PXA25X is not set |
| 811 | CONFIG_USB_GADGET_M66592=y | 859 | CONFIG_USB_GADGET_M66592=y |
| 812 | CONFIG_USB_M66592=y | 860 | CONFIG_USB_M66592=y |
| 813 | # CONFIG_USB_GADGET_PXA27X is not set | 861 | # CONFIG_USB_GADGET_PXA27X is not set |
| @@ -826,6 +874,7 @@ CONFIG_USB_ETH_RNDIS=y | |||
| 826 | # CONFIG_USB_G_SERIAL is not set | 874 | # CONFIG_USB_G_SERIAL is not set |
| 827 | # CONFIG_USB_MIDI_GADGET is not set | 875 | # CONFIG_USB_MIDI_GADGET is not set |
| 828 | # CONFIG_USB_G_PRINTER is not set | 876 | # CONFIG_USB_G_PRINTER is not set |
| 877 | # CONFIG_USB_CDC_COMPOSITE is not set | ||
| 829 | # CONFIG_MMC is not set | 878 | # CONFIG_MMC is not set |
| 830 | # CONFIG_MEMSTICK is not set | 879 | # CONFIG_MEMSTICK is not set |
| 831 | # CONFIG_NEW_LEDS is not set | 880 | # CONFIG_NEW_LEDS is not set |
| @@ -893,6 +942,7 @@ CONFIG_TMPFS=y | |||
| 893 | CONFIG_CRAMFS=y | 942 | CONFIG_CRAMFS=y |
| 894 | # CONFIG_VXFS_FS is not set | 943 | # CONFIG_VXFS_FS is not set |
| 895 | # CONFIG_MINIX_FS is not set | 944 | # CONFIG_MINIX_FS is not set |
| 945 | # CONFIG_OMFS_FS is not set | ||
| 896 | # CONFIG_HPFS_FS is not set | 946 | # CONFIG_HPFS_FS is not set |
| 897 | # CONFIG_QNX4FS_FS is not set | 947 | # CONFIG_QNX4FS_FS is not set |
| 898 | # CONFIG_ROMFS_FS is not set | 948 | # CONFIG_ROMFS_FS is not set |
| @@ -902,8 +952,8 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 902 | CONFIG_NFS_FS=y | 952 | CONFIG_NFS_FS=y |
| 903 | CONFIG_NFS_V3=y | 953 | CONFIG_NFS_V3=y |
| 904 | CONFIG_NFS_V3_ACL=y | 954 | CONFIG_NFS_V3_ACL=y |
| 905 | # CONFIG_NFSD is not set | ||
| 906 | CONFIG_ROOT_NFS=y | 955 | CONFIG_ROOT_NFS=y |
| 956 | # CONFIG_NFSD is not set | ||
| 907 | CONFIG_LOCKD=y | 957 | CONFIG_LOCKD=y |
| 908 | CONFIG_LOCKD_V4=y | 958 | CONFIG_LOCKD_V4=y |
| 909 | CONFIG_NFS_ACL_SUPPORT=y | 959 | CONFIG_NFS_ACL_SUPPORT=y |
| @@ -983,6 +1033,7 @@ CONFIG_BITREVERSE=y | |||
| 983 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1033 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 984 | CONFIG_CRC_CCITT=y | 1034 | CONFIG_CRC_CCITT=y |
| 985 | # CONFIG_CRC16 is not set | 1035 | # CONFIG_CRC16 is not set |
| 1036 | # CONFIG_CRC_T10DIF is not set | ||
| 986 | # CONFIG_CRC_ITU_T is not set | 1037 | # CONFIG_CRC_ITU_T is not set |
| 987 | CONFIG_CRC32=y | 1038 | CONFIG_CRC32=y |
| 988 | # CONFIG_CRC7 is not set | 1039 | # CONFIG_CRC7 is not set |
| @@ -1009,6 +1060,8 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 1009 | CONFIG_DEBUG_KERNEL=y | 1060 | CONFIG_DEBUG_KERNEL=y |
| 1010 | # CONFIG_DEBUG_SHIRQ is not set | 1061 | # CONFIG_DEBUG_SHIRQ is not set |
| 1011 | CONFIG_DETECT_SOFTLOCKUP=y | 1062 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1063 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1064 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1012 | # CONFIG_SCHED_DEBUG is not set | 1065 | # CONFIG_SCHED_DEBUG is not set |
| 1013 | # CONFIG_SCHEDSTATS is not set | 1066 | # CONFIG_SCHEDSTATS is not set |
| 1014 | # CONFIG_TIMER_STATS is not set | 1067 | # CONFIG_TIMER_STATS is not set |
| @@ -1026,19 +1079,31 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 1026 | CONFIG_DEBUG_INFO=y | 1079 | CONFIG_DEBUG_INFO=y |
| 1027 | # CONFIG_DEBUG_VM is not set | 1080 | # CONFIG_DEBUG_VM is not set |
| 1028 | # CONFIG_DEBUG_WRITECOUNT is not set | 1081 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1082 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1029 | # CONFIG_DEBUG_LIST is not set | 1083 | # CONFIG_DEBUG_LIST is not set |
| 1030 | # CONFIG_DEBUG_SG is not set | 1084 | # CONFIG_DEBUG_SG is not set |
| 1031 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1085 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1086 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1032 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1087 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1033 | # CONFIG_FAULT_INJECTION is not set | 1088 | # CONFIG_FAULT_INJECTION is not set |
| 1089 | # CONFIG_LATENCYTOP is not set | ||
| 1090 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1091 | CONFIG_HAVE_FTRACE=y | ||
| 1092 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1093 | # CONFIG_FTRACE is not set | ||
| 1094 | # CONFIG_SCHED_TRACER is not set | ||
| 1095 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1034 | # CONFIG_SAMPLES is not set | 1096 | # CONFIG_SAMPLES is not set |
| 1097 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1035 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1098 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1036 | # CONFIG_DEBUG_STACK_USAGE is not set | 1099 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1037 | # CONFIG_DEBUG_PAGEALLOC is not set | 1100 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1038 | # CONFIG_DEBUGGER is not set | 1101 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1039 | # CONFIG_KGDB_CONSOLE is not set | 1102 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1103 | # CONFIG_XMON is not set | ||
| 1040 | # CONFIG_IRQSTACKS is not set | 1104 | # CONFIG_IRQSTACKS is not set |
| 1041 | CONFIG_BDI_SWITCH=y | 1105 | CONFIG_BDI_SWITCH=y |
| 1106 | # CONFIG_BOOTX_TEXT is not set | ||
| 1042 | # CONFIG_PPC_EARLY_DEBUG is not set | 1107 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1043 | 1108 | ||
| 1044 | # | 1109 | # |
| @@ -1046,6 +1111,7 @@ CONFIG_BDI_SWITCH=y | |||
| 1046 | # | 1111 | # |
| 1047 | # CONFIG_KEYS is not set | 1112 | # CONFIG_KEYS is not set |
| 1048 | # CONFIG_SECURITY is not set | 1113 | # CONFIG_SECURITY is not set |
| 1114 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
| 1049 | CONFIG_CRYPTO=y | 1115 | CONFIG_CRYPTO=y |
| 1050 | 1116 | ||
| 1051 | # | 1117 | # |
| @@ -1086,6 +1152,10 @@ CONFIG_CRYPTO_PCBC=y | |||
| 1086 | # CONFIG_CRYPTO_MD4 is not set | 1152 | # CONFIG_CRYPTO_MD4 is not set |
| 1087 | CONFIG_CRYPTO_MD5=y | 1153 | CONFIG_CRYPTO_MD5=y |
| 1088 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1154 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1155 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1156 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1157 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1158 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1089 | # CONFIG_CRYPTO_SHA1 is not set | 1159 | # CONFIG_CRYPTO_SHA1 is not set |
| 1090 | # CONFIG_CRYPTO_SHA256 is not set | 1160 | # CONFIG_CRYPTO_SHA256 is not set |
| 1091 | # CONFIG_CRYPTO_SHA512 is not set | 1161 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1117,6 +1187,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1117 | # CONFIG_CRYPTO_LZO is not set | 1187 | # CONFIG_CRYPTO_LZO is not set |
| 1118 | CONFIG_CRYPTO_HW=y | 1188 | CONFIG_CRYPTO_HW=y |
| 1119 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1189 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1120 | # CONFIG_PPC_CLOCK is not set | 1190 | # CONFIG_CRYPTO_DEV_TALITOS is not set |
| 1191 | CONFIG_PPC_CLOCK=y | ||
| 1121 | CONFIG_PPC_LIB_RHEAP=y | 1192 | CONFIG_PPC_LIB_RHEAP=y |
| 1122 | # CONFIG_VIRTUALIZATION is not set | 1193 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/prpmc2800_defconfig b/arch/powerpc/configs/prpmc2800_defconfig index c6b83577c055..01b54eac1ff6 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:18 2008 | 4 | # Thu Aug 21 00:52:14 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -34,6 +34,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 35 | CONFIG_IRQ_PER_CPU=y | 35 | CONFIG_IRQ_PER_CPU=y |
| 36 | CONFIG_STACKTRACE_SUPPORT=y | 36 | CONFIG_STACKTRACE_SUPPORT=y |
| 37 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 37 | CONFIG_LOCKDEP_SUPPORT=y | 38 | CONFIG_LOCKDEP_SUPPORT=y |
| 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 39 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 39 | CONFIG_ARCH_HAS_ILOG2_U32=y | 40 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -94,7 +95,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 94 | CONFIG_SYSCTL=y | 95 | CONFIG_SYSCTL=y |
| 95 | # CONFIG_EMBEDDED is not set | 96 | # CONFIG_EMBEDDED is not set |
| 96 | CONFIG_SYSCTL_SYSCALL=y | 97 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 98 | CONFIG_KALLSYMS=y | 98 | CONFIG_KALLSYMS=y |
| 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 100 | CONFIG_HOTPLUG=y | 100 | CONFIG_HOTPLUG=y |
| @@ -118,10 +118,16 @@ CONFIG_SLUB=y | |||
| 118 | # CONFIG_PROFILING is not set | 118 | # CONFIG_PROFILING is not set |
| 119 | # CONFIG_MARKERS is not set | 119 | # CONFIG_MARKERS is not set |
| 120 | CONFIG_HAVE_OPROFILE=y | 120 | CONFIG_HAVE_OPROFILE=y |
| 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 122 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 121 | CONFIG_HAVE_KPROBES=y | 123 | CONFIG_HAVE_KPROBES=y |
| 122 | CONFIG_HAVE_KRETPROBES=y | 124 | CONFIG_HAVE_KRETPROBES=y |
| 125 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 123 | # CONFIG_HAVE_DMA_ATTRS is not set | 126 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 127 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 128 | # CONFIG_HAVE_CLK is not set | ||
| 124 | CONFIG_PROC_PAGE_MONITOR=y | 129 | CONFIG_PROC_PAGE_MONITOR=y |
| 130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 125 | CONFIG_SLABINFO=y | 131 | CONFIG_SLABINFO=y |
| 126 | CONFIG_RT_MUTEXES=y | 132 | CONFIG_RT_MUTEXES=y |
| 127 | # CONFIG_TINY_SHMEM is not set | 133 | # CONFIG_TINY_SHMEM is not set |
| @@ -132,6 +138,7 @@ CONFIG_LBD=y | |||
| 132 | # CONFIG_BLK_DEV_IO_TRACE is not set | 138 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 133 | # CONFIG_LSF is not set | 139 | # CONFIG_LSF is not set |
| 134 | # CONFIG_BLK_DEV_BSG is not set | 140 | # CONFIG_BLK_DEV_BSG is not set |
| 141 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 135 | 142 | ||
| 136 | # | 143 | # |
| 137 | # IO Schedulers | 144 | # IO Schedulers |
| @@ -151,25 +158,25 @@ CONFIG_CLASSIC_RCU=y | |||
| 151 | # Platform support | 158 | # Platform support |
| 152 | # | 159 | # |
| 153 | CONFIG_PPC_MULTIPLATFORM=y | 160 | CONFIG_PPC_MULTIPLATFORM=y |
| 154 | # CONFIG_PPC_82xx is not set | ||
| 155 | # CONFIG_PPC_83xx is not set | ||
| 156 | # CONFIG_PPC_86xx is not set | ||
| 157 | CONFIG_CLASSIC32=y | 161 | CONFIG_CLASSIC32=y |
| 158 | # CONFIG_PPC_CHRP is not set | 162 | # CONFIG_PPC_CHRP is not set |
| 159 | # CONFIG_PPC_MPC512x is not set | ||
| 160 | # CONFIG_PPC_MPC5121 is not set | ||
| 161 | # CONFIG_MPC5121_ADS is not set | 163 | # CONFIG_MPC5121_ADS is not set |
| 164 | # CONFIG_MPC5121_GENERIC is not set | ||
| 162 | # CONFIG_PPC_MPC52xx is not set | 165 | # CONFIG_PPC_MPC52xx is not set |
| 163 | # CONFIG_PPC_PMAC is not set | 166 | # CONFIG_PPC_PMAC is not set |
| 164 | # CONFIG_PPC_CELL is not set | 167 | # CONFIG_PPC_CELL is not set |
| 165 | # CONFIG_PPC_CELL_NATIVE is not set | 168 | # CONFIG_PPC_CELL_NATIVE is not set |
| 169 | # CONFIG_PPC_82xx is not set | ||
| 166 | # CONFIG_PQ2ADS is not set | 170 | # CONFIG_PQ2ADS is not set |
| 171 | # CONFIG_PPC_83xx is not set | ||
| 172 | # CONFIG_PPC_86xx is not set | ||
| 167 | CONFIG_EMBEDDED6xx=y | 173 | CONFIG_EMBEDDED6xx=y |
| 168 | # CONFIG_LINKSTATION is not set | 174 | # CONFIG_LINKSTATION is not set |
| 169 | # CONFIG_STORCENTER is not set | 175 | # CONFIG_STORCENTER is not set |
| 170 | # CONFIG_MPC7448HPC2 is not set | 176 | # CONFIG_MPC7448HPC2 is not set |
| 171 | # CONFIG_PPC_HOLLY is not set | 177 | # CONFIG_PPC_HOLLY is not set |
| 172 | CONFIG_PPC_PRPMC2800=y | 178 | CONFIG_PPC_PRPMC2800=y |
| 179 | # CONFIG_PPC_C2K is not set | ||
| 173 | CONFIG_MV64X60=y | 180 | CONFIG_MV64X60=y |
| 174 | # CONFIG_IPIC is not set | 181 | # CONFIG_IPIC is not set |
| 175 | # CONFIG_MPIC is not set | 182 | # CONFIG_MPIC is not set |
| @@ -198,7 +205,7 @@ CONFIG_HZ_250=y | |||
| 198 | # CONFIG_HZ_300 is not set | 205 | # CONFIG_HZ_300 is not set |
| 199 | # CONFIG_HZ_1000 is not set | 206 | # CONFIG_HZ_1000 is not set |
| 200 | CONFIG_HZ=250 | 207 | CONFIG_HZ=250 |
| 201 | # CONFIG_SCHED_HRTICK is not set | 208 | CONFIG_SCHED_HRTICK=y |
| 202 | CONFIG_PREEMPT_NONE=y | 209 | CONFIG_PREEMPT_NONE=y |
| 203 | # CONFIG_PREEMPT_VOLUNTARY is not set | 210 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 204 | # CONFIG_PREEMPT is not set | 211 | # CONFIG_PREEMPT is not set |
| @@ -221,6 +228,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 221 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 228 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 222 | CONFIG_PAGEFLAGS_EXTENDED=y | 229 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 230 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 231 | CONFIG_MIGRATION=y | ||
| 224 | # CONFIG_RESOURCES_64BIT is not set | 232 | # CONFIG_RESOURCES_64BIT is not set |
| 225 | CONFIG_ZONE_DMA_FLAG=1 | 233 | CONFIG_ZONE_DMA_FLAG=1 |
| 226 | CONFIG_BOUNCE=y | 234 | CONFIG_BOUNCE=y |
| @@ -228,6 +236,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 228 | CONFIG_FORCE_MAX_ZONEORDER=11 | 236 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 229 | CONFIG_PROC_DEVICETREE=y | 237 | CONFIG_PROC_DEVICETREE=y |
| 230 | # CONFIG_CMDLINE_BOOL is not set | 238 | # CONFIG_CMDLINE_BOOL is not set |
| 239 | CONFIG_EXTRA_TARGETS="" | ||
| 231 | # CONFIG_PM is not set | 240 | # CONFIG_PM is not set |
| 232 | # CONFIG_SECCOMP is not set | 241 | # CONFIG_SECCOMP is not set |
| 233 | CONFIG_ISA_DMA_API=y | 242 | CONFIG_ISA_DMA_API=y |
| @@ -264,10 +273,6 @@ CONFIG_PHYSICAL_START=0x00000000 | |||
| 264 | CONFIG_TASK_SIZE=0xc0000000 | 273 | CONFIG_TASK_SIZE=0xc0000000 |
| 265 | CONFIG_CONSISTENT_START=0xff100000 | 274 | CONFIG_CONSISTENT_START=0xff100000 |
| 266 | CONFIG_CONSISTENT_SIZE=0x00200000 | 275 | CONFIG_CONSISTENT_SIZE=0x00200000 |
| 267 | |||
| 268 | # | ||
| 269 | # Networking | ||
| 270 | # | ||
| 271 | CONFIG_NET=y | 276 | CONFIG_NET=y |
| 272 | 277 | ||
| 273 | # | 278 | # |
| @@ -359,7 +364,9 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 359 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 364 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
| 360 | CONFIG_STANDALONE=y | 365 | CONFIG_STANDALONE=y |
| 361 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 366 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 362 | # CONFIG_FW_LOADER is not set | 367 | CONFIG_FW_LOADER=y |
| 368 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 369 | CONFIG_EXTRA_FIRMWARE="" | ||
| 363 | # CONFIG_SYS_HYPERVISOR is not set | 370 | # CONFIG_SYS_HYPERVISOR is not set |
| 364 | # CONFIG_CONNECTOR is not set | 371 | # CONFIG_CONNECTOR is not set |
| 365 | CONFIG_MTD=y | 372 | CONFIG_MTD=y |
| @@ -461,12 +468,14 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 461 | # CONFIG_BLK_DEV_XIP is not set | 468 | # CONFIG_BLK_DEV_XIP is not set |
| 462 | # CONFIG_CDROM_PKTCDVD is not set | 469 | # CONFIG_CDROM_PKTCDVD is not set |
| 463 | # CONFIG_ATA_OVER_ETH is not set | 470 | # CONFIG_ATA_OVER_ETH is not set |
| 471 | # CONFIG_BLK_DEV_HD is not set | ||
| 464 | CONFIG_MISC_DEVICES=y | 472 | CONFIG_MISC_DEVICES=y |
| 465 | # CONFIG_PHANTOM is not set | 473 | # CONFIG_PHANTOM is not set |
| 466 | # CONFIG_EEPROM_93CX6 is not set | 474 | # CONFIG_EEPROM_93CX6 is not set |
| 467 | # CONFIG_SGI_IOC4 is not set | 475 | # CONFIG_SGI_IOC4 is not set |
| 468 | # CONFIG_TIFM_CORE is not set | 476 | # CONFIG_TIFM_CORE is not set |
| 469 | # CONFIG_ENCLOSURE_SERVICES is not set | 477 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 478 | # CONFIG_HP_ILO is not set | ||
| 470 | CONFIG_HAVE_IDE=y | 479 | CONFIG_HAVE_IDE=y |
| 471 | CONFIG_IDE=y | 480 | CONFIG_IDE=y |
| 472 | CONFIG_BLK_DEV_IDE=y | 481 | CONFIG_BLK_DEV_IDE=y |
| @@ -487,7 +496,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 487 | # | 496 | # |
| 488 | # IDE chipset support/bugfixes | 497 | # IDE chipset support/bugfixes |
| 489 | # | 498 | # |
| 490 | CONFIG_IDE_GENERIC=y | ||
| 491 | # CONFIG_BLK_DEV_PLATFORM is not set | 499 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 492 | CONFIG_BLK_DEV_IDEDMA_SFF=y | 500 | CONFIG_BLK_DEV_IDEDMA_SFF=y |
| 493 | 501 | ||
| @@ -505,10 +513,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 505 | # CONFIG_BLK_DEV_AMD74XX is not set | 513 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 506 | # CONFIG_BLK_DEV_CMD64X is not set | 514 | # CONFIG_BLK_DEV_CMD64X is not set |
| 507 | # CONFIG_BLK_DEV_TRIFLEX is not set | 515 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 508 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 509 | # CONFIG_BLK_DEV_CS5520 is not set | 516 | # CONFIG_BLK_DEV_CS5520 is not set |
| 510 | # CONFIG_BLK_DEV_CS5530 is not set | 517 | # CONFIG_BLK_DEV_CS5530 is not set |
| 511 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 512 | # CONFIG_BLK_DEV_HPT366 is not set | 518 | # CONFIG_BLK_DEV_HPT366 is not set |
| 513 | # CONFIG_BLK_DEV_JMICRON is not set | 519 | # CONFIG_BLK_DEV_JMICRON is not set |
| 514 | # CONFIG_BLK_DEV_SC1200 is not set | 520 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -526,8 +532,6 @@ CONFIG_BLK_DEV_PDC202XX_NEW=y | |||
| 526 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 532 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
| 527 | # CONFIG_BLK_DEV_TC86C001 is not set | 533 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 528 | CONFIG_BLK_DEV_IDEDMA=y | 534 | CONFIG_BLK_DEV_IDEDMA=y |
| 529 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 530 | # CONFIG_BLK_DEV_HD is not set | ||
| 531 | 535 | ||
| 532 | # | 536 | # |
| 533 | # SCSI device support | 537 | # SCSI device support |
| @@ -603,6 +607,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 603 | # CONFIG_SCSI_NSP32 is not set | 607 | # CONFIG_SCSI_NSP32 is not set |
| 604 | # CONFIG_SCSI_DEBUG is not set | 608 | # CONFIG_SCSI_DEBUG is not set |
| 605 | # CONFIG_SCSI_SRP is not set | 609 | # CONFIG_SCSI_SRP is not set |
| 610 | # CONFIG_SCSI_DH is not set | ||
| 606 | CONFIG_ATA=y | 611 | CONFIG_ATA=y |
| 607 | # CONFIG_ATA_NONSTANDARD is not set | 612 | # CONFIG_ATA_NONSTANDARD is not set |
| 608 | CONFIG_SATA_PMP=y | 613 | CONFIG_SATA_PMP=y |
| @@ -669,6 +674,10 @@ CONFIG_SATA_MV=y | |||
| 669 | # | 674 | # |
| 670 | # IEEE 1394 (FireWire) support | 675 | # IEEE 1394 (FireWire) support |
| 671 | # | 676 | # |
| 677 | |||
| 678 | # | ||
| 679 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 680 | # | ||
| 672 | # CONFIG_FIREWIRE is not set | 681 | # CONFIG_FIREWIRE is not set |
| 673 | # CONFIG_IEEE1394 is not set | 682 | # CONFIG_IEEE1394 is not set |
| 674 | # CONFIG_I2O is not set | 683 | # CONFIG_I2O is not set |
| @@ -676,7 +685,6 @@ CONFIG_MACINTOSH_DRIVERS=y | |||
| 676 | # CONFIG_MAC_EMUMOUSEBTN is not set | 685 | # CONFIG_MAC_EMUMOUSEBTN is not set |
| 677 | # CONFIG_WINDFARM is not set | 686 | # CONFIG_WINDFARM is not set |
| 678 | CONFIG_NETDEVICES=y | 687 | CONFIG_NETDEVICES=y |
| 679 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 680 | # CONFIG_DUMMY is not set | 688 | # CONFIG_DUMMY is not set |
| 681 | # CONFIG_BONDING is not set | 689 | # CONFIG_BONDING is not set |
| 682 | # CONFIG_MACVLAN is not set | 690 | # CONFIG_MACVLAN is not set |
| @@ -741,10 +749,8 @@ CONFIG_NETDEV_1000=y | |||
| 741 | # CONFIG_ACENIC is not set | 749 | # CONFIG_ACENIC is not set |
| 742 | # CONFIG_DL2K is not set | 750 | # CONFIG_DL2K is not set |
| 743 | CONFIG_E1000=y | 751 | CONFIG_E1000=y |
| 744 | # CONFIG_E1000_NAPI is not set | ||
| 745 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 752 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
| 746 | # CONFIG_E1000E is not set | 753 | # CONFIG_E1000E is not set |
| 747 | # CONFIG_E1000E_ENABLED is not set | ||
| 748 | # CONFIG_IP1000 is not set | 754 | # CONFIG_IP1000 is not set |
| 749 | # CONFIG_IGB is not set | 755 | # CONFIG_IGB is not set |
| 750 | # CONFIG_NS83820 is not set | 756 | # CONFIG_NS83820 is not set |
| @@ -760,6 +766,7 @@ CONFIG_E1000=y | |||
| 760 | CONFIG_MV643XX_ETH=y | 766 | CONFIG_MV643XX_ETH=y |
| 761 | # CONFIG_QLA3XXX is not set | 767 | # CONFIG_QLA3XXX is not set |
| 762 | # CONFIG_ATL1 is not set | 768 | # CONFIG_ATL1 is not set |
| 769 | # CONFIG_ATL1E is not set | ||
| 763 | CONFIG_NETDEV_10000=y | 770 | CONFIG_NETDEV_10000=y |
| 764 | # CONFIG_CHELSIO_T1 is not set | 771 | # CONFIG_CHELSIO_T1 is not set |
| 765 | # CONFIG_CHELSIO_T3 is not set | 772 | # CONFIG_CHELSIO_T3 is not set |
| @@ -840,6 +847,7 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | |||
| 840 | # Character devices | 847 | # Character devices |
| 841 | # | 848 | # |
| 842 | CONFIG_VT=y | 849 | CONFIG_VT=y |
| 850 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 843 | CONFIG_VT_CONSOLE=y | 851 | CONFIG_VT_CONSOLE=y |
| 844 | CONFIG_HW_CONSOLE=y | 852 | CONFIG_HW_CONSOLE=y |
| 845 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 853 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -875,43 +883,64 @@ CONFIG_DEVPORT=y | |||
| 875 | CONFIG_I2C=y | 883 | CONFIG_I2C=y |
| 876 | CONFIG_I2C_BOARDINFO=y | 884 | CONFIG_I2C_BOARDINFO=y |
| 877 | CONFIG_I2C_CHARDEV=y | 885 | CONFIG_I2C_CHARDEV=y |
| 886 | CONFIG_I2C_HELPER_AUTO=y | ||
| 878 | 887 | ||
| 879 | # | 888 | # |
| 880 | # I2C Hardware Bus support | 889 | # I2C Hardware Bus support |
| 881 | # | 890 | # |
| 891 | |||
| 892 | # | ||
| 893 | # PC SMBus host controller drivers | ||
| 894 | # | ||
| 882 | # CONFIG_I2C_ALI1535 is not set | 895 | # CONFIG_I2C_ALI1535 is not set |
| 883 | # CONFIG_I2C_ALI1563 is not set | 896 | # CONFIG_I2C_ALI1563 is not set |
| 884 | # CONFIG_I2C_ALI15X3 is not set | 897 | # CONFIG_I2C_ALI15X3 is not set |
| 885 | # CONFIG_I2C_AMD756 is not set | 898 | # CONFIG_I2C_AMD756 is not set |
| 886 | # CONFIG_I2C_AMD8111 is not set | 899 | # CONFIG_I2C_AMD8111 is not set |
| 887 | # CONFIG_I2C_I801 is not set | 900 | # CONFIG_I2C_I801 is not set |
| 888 | # CONFIG_I2C_I810 is not set | 901 | # CONFIG_I2C_ISCH is not set |
| 889 | # CONFIG_I2C_PIIX4 is not set | 902 | # CONFIG_I2C_PIIX4 is not set |
| 890 | # CONFIG_I2C_MPC is not set | ||
| 891 | # CONFIG_I2C_NFORCE2 is not set | 903 | # CONFIG_I2C_NFORCE2 is not set |
| 892 | # CONFIG_I2C_OCORES is not set | ||
| 893 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 894 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 895 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 896 | # CONFIG_I2C_SIMTEC is not set | ||
| 897 | # CONFIG_I2C_SIS5595 is not set | 904 | # CONFIG_I2C_SIS5595 is not set |
| 898 | # CONFIG_I2C_SIS630 is not set | 905 | # CONFIG_I2C_SIS630 is not set |
| 899 | # CONFIG_I2C_SIS96X is not set | 906 | # CONFIG_I2C_SIS96X is not set |
| 900 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 901 | # CONFIG_I2C_TINY_USB is not set | ||
| 902 | # CONFIG_I2C_VIA is not set | 907 | # CONFIG_I2C_VIA is not set |
| 903 | # CONFIG_I2C_VIAPRO is not set | 908 | # CONFIG_I2C_VIAPRO is not set |
| 909 | |||
| 910 | # | ||
| 911 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 912 | # | ||
| 913 | # CONFIG_I2C_MPC is not set | ||
| 914 | CONFIG_I2C_MV64XXX=y | ||
| 915 | # CONFIG_I2C_OCORES is not set | ||
| 916 | # CONFIG_I2C_SIMTEC is not set | ||
| 917 | |||
| 918 | # | ||
| 919 | # External I2C/SMBus adapter drivers | ||
| 920 | # | ||
| 921 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 922 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 923 | # CONFIG_I2C_TINY_USB is not set | ||
| 924 | |||
| 925 | # | ||
| 926 | # Graphics adapter I2C/DDC channel drivers | ||
| 927 | # | ||
| 904 | # CONFIG_I2C_VOODOO3 is not set | 928 | # CONFIG_I2C_VOODOO3 is not set |
| 929 | |||
| 930 | # | ||
| 931 | # Other I2C/SMBus bus drivers | ||
| 932 | # | ||
| 905 | # CONFIG_I2C_PCA_PLATFORM is not set | 933 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 906 | CONFIG_I2C_MV64XXX=y | ||
| 907 | 934 | ||
| 908 | # | 935 | # |
| 909 | # Miscellaneous I2C Chip support | 936 | # Miscellaneous I2C Chip support |
| 910 | # | 937 | # |
| 911 | # CONFIG_DS1682 is not set | 938 | # CONFIG_DS1682 is not set |
| 939 | # CONFIG_AT24 is not set | ||
| 912 | # CONFIG_SENSORS_EEPROM is not set | 940 | # CONFIG_SENSORS_EEPROM is not set |
| 913 | # CONFIG_SENSORS_PCF8574 is not set | 941 | # CONFIG_SENSORS_PCF8574 is not set |
| 914 | # CONFIG_PCF8575 is not set | 942 | # CONFIG_PCF8575 is not set |
| 943 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 915 | # CONFIG_SENSORS_PCF8591 is not set | 944 | # CONFIG_SENSORS_PCF8591 is not set |
| 916 | # CONFIG_SENSORS_MAX6875 is not set | 945 | # CONFIG_SENSORS_MAX6875 is not set |
| 917 | # CONFIG_SENSORS_TSL2550 is not set | 946 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -920,10 +949,13 @@ CONFIG_I2C_MV64XXX=y | |||
| 920 | # CONFIG_I2C_DEBUG_BUS is not set | 949 | # CONFIG_I2C_DEBUG_BUS is not set |
| 921 | # CONFIG_I2C_DEBUG_CHIP is not set | 950 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 922 | # CONFIG_SPI is not set | 951 | # CONFIG_SPI is not set |
| 952 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 953 | # CONFIG_GPIOLIB is not set | ||
| 923 | # CONFIG_W1 is not set | 954 | # CONFIG_W1 is not set |
| 924 | # CONFIG_POWER_SUPPLY is not set | 955 | # CONFIG_POWER_SUPPLY is not set |
| 925 | CONFIG_HWMON=y | 956 | CONFIG_HWMON=y |
| 926 | # CONFIG_HWMON_VID is not set | 957 | # CONFIG_HWMON_VID is not set |
| 958 | # CONFIG_SENSORS_AD7414 is not set | ||
| 927 | # CONFIG_SENSORS_AD7418 is not set | 959 | # CONFIG_SENSORS_AD7418 is not set |
| 928 | # CONFIG_SENSORS_ADM1021 is not set | 960 | # CONFIG_SENSORS_ADM1021 is not set |
| 929 | # CONFIG_SENSORS_ADM1025 is not set | 961 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -977,6 +1009,7 @@ CONFIG_HWMON=y | |||
| 977 | # CONFIG_SENSORS_W83627EHF is not set | 1009 | # CONFIG_SENSORS_W83627EHF is not set |
| 978 | # CONFIG_HWMON_DEBUG_CHIP is not set | 1010 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 979 | # CONFIG_THERMAL is not set | 1011 | # CONFIG_THERMAL is not set |
| 1012 | # CONFIG_THERMAL_HWMON is not set | ||
| 980 | # CONFIG_WATCHDOG is not set | 1013 | # CONFIG_WATCHDOG is not set |
| 981 | 1014 | ||
| 982 | # | 1015 | # |
| @@ -988,8 +1021,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 988 | # | 1021 | # |
| 989 | # Multifunction device drivers | 1022 | # Multifunction device drivers |
| 990 | # | 1023 | # |
| 1024 | # CONFIG_MFD_CORE is not set | ||
| 991 | # CONFIG_MFD_SM501 is not set | 1025 | # CONFIG_MFD_SM501 is not set |
| 992 | # CONFIG_HTC_PASIC3 is not set | 1026 | # CONFIG_HTC_PASIC3 is not set |
| 1027 | # CONFIG_MFD_TMIO is not set | ||
| 993 | 1028 | ||
| 994 | # | 1029 | # |
| 995 | # Multimedia devices | 1030 | # Multimedia devices |
| @@ -1028,10 +1063,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 1028 | CONFIG_VGA_CONSOLE=y | 1063 | CONFIG_VGA_CONSOLE=y |
| 1029 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | 1064 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set |
| 1030 | CONFIG_DUMMY_CONSOLE=y | 1065 | CONFIG_DUMMY_CONSOLE=y |
| 1031 | |||
| 1032 | # | ||
| 1033 | # Sound | ||
| 1034 | # | ||
| 1035 | # CONFIG_SOUND is not set | 1066 | # CONFIG_SOUND is not set |
| 1036 | CONFIG_HID_SUPPORT=y | 1067 | CONFIG_HID_SUPPORT=y |
| 1037 | CONFIG_HID=y | 1068 | CONFIG_HID=y |
| @@ -1060,6 +1091,7 @@ CONFIG_USB_DEVICEFS=y | |||
| 1060 | # CONFIG_USB_DEVICE_CLASS is not set | 1091 | # CONFIG_USB_DEVICE_CLASS is not set |
| 1061 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1092 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1062 | # CONFIG_USB_OTG is not set | 1093 | # CONFIG_USB_OTG is not set |
| 1094 | CONFIG_USB_MON=y | ||
| 1063 | 1095 | ||
| 1064 | # | 1096 | # |
| 1065 | # USB Host Controller Drivers | 1097 | # USB Host Controller Drivers |
| @@ -1102,7 +1134,6 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1102 | # | 1134 | # |
| 1103 | # CONFIG_USB_MDC800 is not set | 1135 | # CONFIG_USB_MDC800 is not set |
| 1104 | # CONFIG_USB_MICROTEK is not set | 1136 | # CONFIG_USB_MICROTEK is not set |
| 1105 | CONFIG_USB_MON=y | ||
| 1106 | 1137 | ||
| 1107 | # | 1138 | # |
| 1108 | # USB port drivers | 1139 | # USB port drivers |
| @@ -1115,7 +1146,6 @@ CONFIG_USB_MON=y | |||
| 1115 | # CONFIG_USB_EMI62 is not set | 1146 | # CONFIG_USB_EMI62 is not set |
| 1116 | # CONFIG_USB_EMI26 is not set | 1147 | # CONFIG_USB_EMI26 is not set |
| 1117 | # CONFIG_USB_ADUTUX is not set | 1148 | # CONFIG_USB_ADUTUX is not set |
| 1118 | # CONFIG_USB_AUERSWALD is not set | ||
| 1119 | # CONFIG_USB_RIO500 is not set | 1149 | # CONFIG_USB_RIO500 is not set |
| 1120 | # CONFIG_USB_LEGOTOWER is not set | 1150 | # CONFIG_USB_LEGOTOWER is not set |
| 1121 | # CONFIG_USB_LCD is not set | 1151 | # CONFIG_USB_LCD is not set |
| @@ -1169,6 +1199,7 @@ CONFIG_RTC_DRV_MAX6900=y | |||
| 1169 | # CONFIG_RTC_DRV_PCF8583 is not set | 1199 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 1170 | # CONFIG_RTC_DRV_M41T80 is not set | 1200 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1171 | # CONFIG_RTC_DRV_S35390A is not set | 1201 | # CONFIG_RTC_DRV_S35390A is not set |
| 1202 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1172 | 1203 | ||
| 1173 | # | 1204 | # |
| 1174 | # SPI RTC drivers | 1205 | # SPI RTC drivers |
| @@ -1258,6 +1289,7 @@ CONFIG_TMPFS=y | |||
| 1258 | # CONFIG_CRAMFS is not set | 1289 | # CONFIG_CRAMFS is not set |
| 1259 | # CONFIG_VXFS_FS is not set | 1290 | # CONFIG_VXFS_FS is not set |
| 1260 | # CONFIG_MINIX_FS is not set | 1291 | # CONFIG_MINIX_FS is not set |
| 1292 | # CONFIG_OMFS_FS is not set | ||
| 1261 | # CONFIG_HPFS_FS is not set | 1293 | # CONFIG_HPFS_FS is not set |
| 1262 | # CONFIG_QNX4FS_FS is not set | 1294 | # CONFIG_QNX4FS_FS is not set |
| 1263 | # CONFIG_ROMFS_FS is not set | 1295 | # CONFIG_ROMFS_FS is not set |
| @@ -1267,12 +1299,11 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 1267 | CONFIG_NFS_FS=y | 1299 | CONFIG_NFS_FS=y |
| 1268 | # CONFIG_NFS_V3 is not set | 1300 | # CONFIG_NFS_V3 is not set |
| 1269 | # CONFIG_NFS_V4 is not set | 1301 | # CONFIG_NFS_V4 is not set |
| 1270 | # CONFIG_NFSD is not set | ||
| 1271 | CONFIG_ROOT_NFS=y | 1302 | CONFIG_ROOT_NFS=y |
| 1303 | # CONFIG_NFSD is not set | ||
| 1272 | CONFIG_LOCKD=y | 1304 | CONFIG_LOCKD=y |
| 1273 | CONFIG_NFS_COMMON=y | 1305 | CONFIG_NFS_COMMON=y |
| 1274 | CONFIG_SUNRPC=y | 1306 | CONFIG_SUNRPC=y |
| 1275 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1276 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1307 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1277 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1308 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1278 | # CONFIG_SMB_FS is not set | 1309 | # CONFIG_SMB_FS is not set |
| @@ -1312,6 +1343,7 @@ CONFIG_BITREVERSE=y | |||
| 1312 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1343 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1313 | # CONFIG_CRC_CCITT is not set | 1344 | # CONFIG_CRC_CCITT is not set |
| 1314 | # CONFIG_CRC16 is not set | 1345 | # CONFIG_CRC16 is not set |
| 1346 | CONFIG_CRC_T10DIF=y | ||
| 1315 | # CONFIG_CRC_ITU_T is not set | 1347 | # CONFIG_CRC_ITU_T is not set |
| 1316 | CONFIG_CRC32=y | 1348 | CONFIG_CRC32=y |
| 1317 | # CONFIG_CRC7 is not set | 1349 | # CONFIG_CRC7 is not set |
| @@ -1337,7 +1369,16 @@ CONFIG_FRAME_WARN=1024 | |||
| 1337 | # CONFIG_SLUB_DEBUG_ON is not set | 1369 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1338 | # CONFIG_SLUB_STATS is not set | 1370 | # CONFIG_SLUB_STATS is not set |
| 1339 | CONFIG_DEBUG_BUGVERBOSE=y | 1371 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1372 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 1373 | # CONFIG_LATENCYTOP is not set | ||
| 1374 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1375 | CONFIG_HAVE_FTRACE=y | ||
| 1376 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1377 | # CONFIG_FTRACE is not set | ||
| 1378 | # CONFIG_SCHED_TRACER is not set | ||
| 1379 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1340 | # CONFIG_SAMPLES is not set | 1380 | # CONFIG_SAMPLES is not set |
| 1381 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1341 | # CONFIG_IRQSTACKS is not set | 1382 | # CONFIG_IRQSTACKS is not set |
| 1342 | # CONFIG_BOOTX_TEXT is not set | 1383 | # CONFIG_BOOTX_TEXT is not set |
| 1343 | # CONFIG_PPC_EARLY_DEBUG is not set | 1384 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -1390,6 +1431,10 @@ CONFIG_CRYPTO=y | |||
| 1390 | # CONFIG_CRYPTO_MD4 is not set | 1431 | # CONFIG_CRYPTO_MD4 is not set |
| 1391 | # CONFIG_CRYPTO_MD5 is not set | 1432 | # CONFIG_CRYPTO_MD5 is not set |
| 1392 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1433 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1434 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1435 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1436 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1437 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1393 | # CONFIG_CRYPTO_SHA1 is not set | 1438 | # CONFIG_CRYPTO_SHA1 is not set |
| 1394 | # CONFIG_CRYPTO_SHA256 is not set | 1439 | # CONFIG_CRYPTO_SHA256 is not set |
| 1395 | # CONFIG_CRYPTO_SHA512 is not set | 1440 | # CONFIG_CRYPTO_SHA512 is not set |
diff --git a/arch/powerpc/configs/ps3_defconfig b/arch/powerpc/configs/ps3_defconfig index f9a3d3b394cf..b6eee7c93cdd 100644 --- a/arch/powerpc/configs/ps3_defconfig +++ b/arch/powerpc/configs/ps3_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.26 | 3 | # Linux kernel version: 2.6.27-rc3 |
| 4 | # Wed Jul 16 13:59:24 2008 | 4 | # Wed Aug 20 08:16:53 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
| 7 | 7 | ||
| @@ -92,7 +92,6 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 92 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 93 | # CONFIG_EMBEDDED is not set | 93 | # CONFIG_EMBEDDED is not set |
| 94 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 96 | CONFIG_KALLSYMS=y | 95 | CONFIG_KALLSYMS=y |
| 97 | CONFIG_KALLSYMS_ALL=y | 96 | CONFIG_KALLSYMS_ALL=y |
| 98 | CONFIG_KALLSYMS_EXTRA_PASS=y | 97 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -118,11 +117,16 @@ CONFIG_PROFILING=y | |||
| 118 | CONFIG_OPROFILE=m | 117 | CONFIG_OPROFILE=m |
| 119 | CONFIG_HAVE_OPROFILE=y | 118 | CONFIG_HAVE_OPROFILE=y |
| 120 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 121 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 121 | CONFIG_HAVE_KPROBES=y | 122 | CONFIG_HAVE_KPROBES=y |
| 122 | CONFIG_HAVE_KRETPROBES=y | 123 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 123 | CONFIG_HAVE_DMA_ATTRS=y | 125 | CONFIG_HAVE_DMA_ATTRS=y |
| 124 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 126 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
| 127 | # CONFIG_HAVE_CLK is not set | ||
| 125 | CONFIG_PROC_PAGE_MONITOR=y | 128 | CONFIG_PROC_PAGE_MONITOR=y |
| 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 126 | CONFIG_SLABINFO=y | 130 | CONFIG_SLABINFO=y |
| 127 | CONFIG_RT_MUTEXES=y | 131 | CONFIG_RT_MUTEXES=y |
| 128 | # CONFIG_TINY_SHMEM is not set | 132 | # CONFIG_TINY_SHMEM is not set |
| @@ -179,6 +183,7 @@ CONFIG_PS3_STORAGE=y | |||
| 179 | CONFIG_PS3_DISK=y | 183 | CONFIG_PS3_DISK=y |
| 180 | CONFIG_PS3_ROM=y | 184 | CONFIG_PS3_ROM=y |
| 181 | CONFIG_PS3_FLASH=y | 185 | CONFIG_PS3_FLASH=y |
| 186 | CONFIG_OPROFILE_PS3=y | ||
| 182 | CONFIG_PS3_LPM=m | 187 | CONFIG_PS3_LPM=m |
| 183 | CONFIG_PPC_CELL=y | 188 | CONFIG_PPC_CELL=y |
| 184 | # CONFIG_PPC_CELL_NATIVE is not set | 189 | # CONFIG_PPC_CELL_NATIVE is not set |
| @@ -218,7 +223,7 @@ CONFIG_HZ_250=y | |||
| 218 | # CONFIG_HZ_300 is not set | 223 | # CONFIG_HZ_300 is not set |
| 219 | # CONFIG_HZ_1000 is not set | 224 | # CONFIG_HZ_1000 is not set |
| 220 | CONFIG_HZ=250 | 225 | CONFIG_HZ=250 |
| 221 | # CONFIG_SCHED_HRTICK is not set | 226 | CONFIG_SCHED_HRTICK=y |
| 222 | CONFIG_PREEMPT_NONE=y | 227 | CONFIG_PREEMPT_NONE=y |
| 223 | # CONFIG_PREEMPT_VOLUNTARY is not set | 228 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 224 | # CONFIG_PREEMPT is not set | 229 | # CONFIG_PREEMPT is not set |
| @@ -252,8 +257,10 @@ CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y | |||
| 252 | # CONFIG_SPARSEMEM_VMEMMAP is not set | 257 | # CONFIG_SPARSEMEM_VMEMMAP is not set |
| 253 | CONFIG_MEMORY_HOTPLUG=y | 258 | CONFIG_MEMORY_HOTPLUG=y |
| 254 | CONFIG_MEMORY_HOTPLUG_SPARSE=y | 259 | CONFIG_MEMORY_HOTPLUG_SPARSE=y |
| 260 | # CONFIG_MEMORY_HOTREMOVE is not set | ||
| 255 | CONFIG_PAGEFLAGS_EXTENDED=y | 261 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 256 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 262 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 263 | CONFIG_MIGRATION=y | ||
| 257 | CONFIG_RESOURCES_64BIT=y | 264 | CONFIG_RESOURCES_64BIT=y |
| 258 | CONFIG_ZONE_DMA_FLAG=1 | 265 | CONFIG_ZONE_DMA_FLAG=1 |
| 259 | CONFIG_BOUNCE=y | 266 | CONFIG_BOUNCE=y |
| @@ -276,19 +283,17 @@ CONFIG_ISA_DMA_API=y | |||
| 276 | # | 283 | # |
| 277 | CONFIG_ZONE_DMA=y | 284 | CONFIG_ZONE_DMA=y |
| 278 | CONFIG_GENERIC_ISA_DMA=y | 285 | CONFIG_GENERIC_ISA_DMA=y |
| 286 | CONFIG_PPC_PCI_CHOICE=y | ||
| 279 | # CONFIG_PCI is not set | 287 | # CONFIG_PCI is not set |
| 280 | # CONFIG_PCI_DOMAINS is not set | 288 | # CONFIG_PCI_DOMAINS is not set |
| 281 | # CONFIG_PCI_SYSCALL is not set | 289 | # CONFIG_PCI_SYSCALL is not set |
| 282 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 290 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 283 | # CONFIG_PCCARD is not set | 291 | # CONFIG_PCCARD is not set |
| 284 | # CONFIG_HAS_RAPIDIO is not set | 292 | # CONFIG_HAS_RAPIDIO is not set |
| 293 | # CONFIG_RELOCATABLE is not set | ||
| 285 | CONFIG_PAGE_OFFSET=0xc000000000000000 | 294 | CONFIG_PAGE_OFFSET=0xc000000000000000 |
| 286 | CONFIG_KERNEL_START=0xc000000000000000 | 295 | CONFIG_KERNEL_START=0xc000000000000000 |
| 287 | CONFIG_PHYSICAL_START=0x00000000 | 296 | CONFIG_PHYSICAL_START=0x00000000 |
| 288 | |||
| 289 | # | ||
| 290 | # Networking | ||
| 291 | # | ||
| 292 | CONFIG_NET=y | 297 | CONFIG_NET=y |
| 293 | 298 | ||
| 294 | # | 299 | # |
| @@ -399,9 +404,22 @@ CONFIG_BT_HCIUSB_SCO=y | |||
| 399 | # | 404 | # |
| 400 | # Wireless | 405 | # Wireless |
| 401 | # | 406 | # |
| 402 | # CONFIG_CFG80211 is not set | 407 | CONFIG_CFG80211=m |
| 408 | CONFIG_NL80211=y | ||
| 403 | CONFIG_WIRELESS_EXT=y | 409 | CONFIG_WIRELESS_EXT=y |
| 404 | # CONFIG_MAC80211 is not set | 410 | # CONFIG_WIRELESS_EXT_SYSFS is not set |
| 411 | CONFIG_MAC80211=m | ||
| 412 | |||
| 413 | # | ||
| 414 | # Rate control algorithm selection | ||
| 415 | # | ||
| 416 | CONFIG_MAC80211_RC_PID=y | ||
| 417 | CONFIG_MAC80211_RC_DEFAULT_PID=y | ||
| 418 | CONFIG_MAC80211_RC_DEFAULT="pid" | ||
| 419 | # CONFIG_MAC80211_MESH is not set | ||
| 420 | # CONFIG_MAC80211_LEDS is not set | ||
| 421 | # CONFIG_MAC80211_DEBUGFS is not set | ||
| 422 | # CONFIG_MAC80211_DEBUG_MENU is not set | ||
| 405 | CONFIG_IEEE80211=m | 423 | CONFIG_IEEE80211=m |
| 406 | # CONFIG_IEEE80211_DEBUG is not set | 424 | # CONFIG_IEEE80211_DEBUG is not set |
| 407 | CONFIG_IEEE80211_CRYPT_WEP=m | 425 | CONFIG_IEEE80211_CRYPT_WEP=m |
| @@ -420,14 +438,79 @@ CONFIG_IEEE80211_CRYPT_TKIP=m | |||
| 420 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 438 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
| 421 | CONFIG_STANDALONE=y | 439 | CONFIG_STANDALONE=y |
| 422 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 440 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 423 | CONFIG_FW_LOADER=m | 441 | CONFIG_FW_LOADER=y |
| 424 | # CONFIG_FIRMWARE_IN_KERNEL is not set | 442 | # CONFIG_FIRMWARE_IN_KERNEL is not set |
| 425 | CONFIG_EXTRA_FIRMWARE="" | 443 | CONFIG_EXTRA_FIRMWARE="" |
| 426 | # CONFIG_DEBUG_DRIVER is not set | 444 | # CONFIG_DEBUG_DRIVER is not set |
| 427 | # CONFIG_DEBUG_DEVRES is not set | 445 | # CONFIG_DEBUG_DEVRES is not set |
| 428 | # CONFIG_SYS_HYPERVISOR is not set | 446 | # CONFIG_SYS_HYPERVISOR is not set |
| 429 | # CONFIG_CONNECTOR is not set | 447 | # CONFIG_CONNECTOR is not set |
| 430 | # CONFIG_MTD is not set | 448 | CONFIG_MTD=y |
| 449 | CONFIG_MTD_DEBUG=y | ||
| 450 | CONFIG_MTD_DEBUG_VERBOSE=0 | ||
| 451 | # CONFIG_MTD_CONCAT is not set | ||
| 452 | # CONFIG_MTD_PARTITIONS is not set | ||
| 453 | |||
| 454 | # | ||
| 455 | # User Modules And Translation Layers | ||
| 456 | # | ||
| 457 | # CONFIG_MTD_CHAR is not set | ||
| 458 | CONFIG_MTD_BLKDEVS=y | ||
| 459 | CONFIG_MTD_BLOCK=y | ||
| 460 | # CONFIG_FTL is not set | ||
| 461 | # CONFIG_NFTL is not set | ||
| 462 | # CONFIG_INFTL is not set | ||
| 463 | # CONFIG_RFD_FTL is not set | ||
| 464 | # CONFIG_SSFDC is not set | ||
| 465 | # CONFIG_MTD_OOPS is not set | ||
| 466 | |||
| 467 | # | ||
| 468 | # RAM/ROM/Flash chip drivers | ||
| 469 | # | ||
| 470 | # CONFIG_MTD_CFI is not set | ||
| 471 | # CONFIG_MTD_JEDECPROBE is not set | ||
| 472 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 473 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 474 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 475 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 476 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 477 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 478 | CONFIG_MTD_CFI_I1=y | ||
| 479 | CONFIG_MTD_CFI_I2=y | ||
| 480 | # CONFIG_MTD_CFI_I4 is not set | ||
| 481 | # CONFIG_MTD_CFI_I8 is not set | ||
| 482 | # CONFIG_MTD_RAM is not set | ||
| 483 | # CONFIG_MTD_ROM is not set | ||
| 484 | # CONFIG_MTD_ABSENT is not set | ||
| 485 | |||
| 486 | # | ||
| 487 | # Mapping drivers for chip access | ||
| 488 | # | ||
| 489 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
| 490 | # CONFIG_MTD_PLATRAM is not set | ||
| 491 | |||
| 492 | # | ||
| 493 | # Self-contained MTD device drivers | ||
| 494 | # | ||
| 495 | # CONFIG_MTD_SLRAM is not set | ||
| 496 | # CONFIG_MTD_PHRAM is not set | ||
| 497 | CONFIG_MTD_PS3VRAM=y | ||
| 498 | # CONFIG_MTD_MTDRAM is not set | ||
| 499 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 500 | |||
| 501 | # | ||
| 502 | # Disk-On-Chip Device Drivers | ||
| 503 | # | ||
| 504 | # CONFIG_MTD_DOC2000 is not set | ||
| 505 | # CONFIG_MTD_DOC2001 is not set | ||
| 506 | # CONFIG_MTD_DOC2001PLUS is not set | ||
| 507 | # CONFIG_MTD_NAND is not set | ||
| 508 | # CONFIG_MTD_ONENAND is not set | ||
| 509 | |||
| 510 | # | ||
| 511 | # UBI - Unsorted block images | ||
| 512 | # | ||
| 513 | # CONFIG_MTD_UBI is not set | ||
| 431 | CONFIG_OF_DEVICE=y | 514 | CONFIG_OF_DEVICE=y |
| 432 | # CONFIG_PARPORT is not set | 515 | # CONFIG_PARPORT is not set |
| 433 | CONFIG_BLK_DEV=y | 516 | CONFIG_BLK_DEV=y |
| @@ -443,6 +526,7 @@ CONFIG_BLK_DEV_RAM_SIZE=65535 | |||
| 443 | # CONFIG_BLK_DEV_XIP is not set | 526 | # CONFIG_BLK_DEV_XIP is not set |
| 444 | # CONFIG_CDROM_PKTCDVD is not set | 527 | # CONFIG_CDROM_PKTCDVD is not set |
| 445 | # CONFIG_ATA_OVER_ETH is not set | 528 | # CONFIG_ATA_OVER_ETH is not set |
| 529 | # CONFIG_BLK_DEV_HD is not set | ||
| 446 | CONFIG_MISC_DEVICES=y | 530 | CONFIG_MISC_DEVICES=y |
| 447 | # CONFIG_EEPROM_93CX6 is not set | 531 | # CONFIG_EEPROM_93CX6 is not set |
| 448 | # CONFIG_ENCLOSURE_SERVICES is not set | 532 | # CONFIG_ENCLOSURE_SERVICES is not set |
| @@ -494,7 +578,6 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 494 | # CONFIG_MD is not set | 578 | # CONFIG_MD is not set |
| 495 | # CONFIG_MACINTOSH_DRIVERS is not set | 579 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 496 | CONFIG_NETDEVICES=y | 580 | CONFIG_NETDEVICES=y |
| 497 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 498 | # CONFIG_DUMMY is not set | 581 | # CONFIG_DUMMY is not set |
| 499 | # CONFIG_BONDING is not set | 582 | # CONFIG_BONDING is not set |
| 500 | # CONFIG_MACVLAN is not set | 583 | # CONFIG_MACVLAN is not set |
| @@ -510,9 +593,9 @@ CONFIG_MII=m | |||
| 510 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 593 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 511 | # CONFIG_B44 is not set | 594 | # CONFIG_B44 is not set |
| 512 | CONFIG_NETDEV_1000=y | 595 | CONFIG_NETDEV_1000=y |
| 513 | # CONFIG_E1000E_ENABLED is not set | ||
| 514 | CONFIG_GELIC_NET=y | 596 | CONFIG_GELIC_NET=y |
| 515 | CONFIG_GELIC_WIRELESS=y | 597 | CONFIG_GELIC_WIRELESS=y |
| 598 | CONFIG_GELIC_WIRELESS_OLD_PSK_INTERFACE=y | ||
| 516 | # CONFIG_NETDEV_10000 is not set | 599 | # CONFIG_NETDEV_10000 is not set |
| 517 | 600 | ||
| 518 | # | 601 | # |
| @@ -523,8 +606,22 @@ CONFIG_WLAN_80211=y | |||
| 523 | # CONFIG_LIBERTAS is not set | 606 | # CONFIG_LIBERTAS is not set |
| 524 | # CONFIG_USB_ZD1201 is not set | 607 | # CONFIG_USB_ZD1201 is not set |
| 525 | # CONFIG_USB_NET_RNDIS_WLAN is not set | 608 | # CONFIG_USB_NET_RNDIS_WLAN is not set |
| 609 | # CONFIG_RTL8187 is not set | ||
| 610 | # CONFIG_MAC80211_HWSIM is not set | ||
| 611 | # CONFIG_P54_COMMON is not set | ||
| 526 | # CONFIG_IWLWIFI_LEDS is not set | 612 | # CONFIG_IWLWIFI_LEDS is not set |
| 527 | # CONFIG_HOSTAP is not set | 613 | # CONFIG_HOSTAP is not set |
| 614 | # CONFIG_B43 is not set | ||
| 615 | # CONFIG_B43LEGACY is not set | ||
| 616 | CONFIG_ZD1211RW=m | ||
| 617 | # CONFIG_ZD1211RW_DEBUG is not set | ||
| 618 | CONFIG_RT2X00=m | ||
| 619 | CONFIG_RT2X00_LIB=m | ||
| 620 | CONFIG_RT2X00_LIB_USB=m | ||
| 621 | CONFIG_RT2X00_LIB_FIRMWARE=y | ||
| 622 | # CONFIG_RT2500USB is not set | ||
| 623 | CONFIG_RT73USB=m | ||
| 624 | # CONFIG_RT2X00_DEBUG is not set | ||
| 528 | 625 | ||
| 529 | # | 626 | # |
| 530 | # USB Network Adapters | 627 | # USB Network Adapters |
| @@ -622,6 +719,7 @@ CONFIG_INPUT_JOYSTICK=y | |||
| 622 | # Character devices | 719 | # Character devices |
| 623 | # | 720 | # |
| 624 | CONFIG_VT=y | 721 | CONFIG_VT=y |
| 722 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 625 | CONFIG_VT_CONSOLE=y | 723 | CONFIG_VT_CONSOLE=y |
| 626 | CONFIG_HW_CONSOLE=y | 724 | CONFIG_HW_CONSOLE=y |
| 627 | CONFIG_VT_HW_CONSOLE_BINDING=y | 725 | CONFIG_VT_HW_CONSOLE_BINDING=y |
| @@ -647,6 +745,8 @@ CONFIG_LEGACY_PTY_COUNT=16 | |||
| 647 | # CONFIG_TCG_TPM is not set | 745 | # CONFIG_TCG_TPM is not set |
| 648 | # CONFIG_I2C is not set | 746 | # CONFIG_I2C is not set |
| 649 | # CONFIG_SPI is not set | 747 | # CONFIG_SPI is not set |
| 748 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 749 | # CONFIG_GPIOLIB is not set | ||
| 650 | # CONFIG_W1 is not set | 750 | # CONFIG_W1 is not set |
| 651 | # CONFIG_POWER_SUPPLY is not set | 751 | # CONFIG_POWER_SUPPLY is not set |
| 652 | # CONFIG_HWMON is not set | 752 | # CONFIG_HWMON is not set |
| @@ -663,8 +763,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 663 | # | 763 | # |
| 664 | # Multifunction device drivers | 764 | # Multifunction device drivers |
| 665 | # | 765 | # |
| 766 | # CONFIG_MFD_CORE is not set | ||
| 666 | # CONFIG_MFD_SM501 is not set | 767 | # CONFIG_MFD_SM501 is not set |
| 667 | # CONFIG_HTC_PASIC3 is not set | 768 | # CONFIG_HTC_PASIC3 is not set |
| 769 | # CONFIG_MFD_TMIO is not set | ||
| 668 | 770 | ||
| 669 | # | 771 | # |
| 670 | # Multimedia devices | 772 | # Multimedia devices |
| @@ -796,6 +898,7 @@ CONFIG_USB_DEVICEFS=y | |||
| 796 | # CONFIG_USB_DYNAMIC_MINORS is not set | 898 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 797 | CONFIG_USB_SUSPEND=y | 899 | CONFIG_USB_SUSPEND=y |
| 798 | # CONFIG_USB_OTG is not set | 900 | # CONFIG_USB_OTG is not set |
| 901 | CONFIG_USB_MON=y | ||
| 799 | 902 | ||
| 800 | # | 903 | # |
| 801 | # USB Host Controller Drivers | 904 | # USB Host Controller Drivers |
| @@ -817,6 +920,10 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 817 | # CONFIG_USB_R8A66597_HCD is not set | 920 | # CONFIG_USB_R8A66597_HCD is not set |
| 818 | 921 | ||
| 819 | # | 922 | # |
| 923 | # Enable Host or Gadget support to see Inventra options | ||
| 924 | # | ||
| 925 | |||
| 926 | # | ||
| 820 | # USB Device Class drivers | 927 | # USB Device Class drivers |
| 821 | # | 928 | # |
| 822 | # CONFIG_USB_ACM is not set | 929 | # CONFIG_USB_ACM is not set |
| @@ -843,6 +950,7 @@ CONFIG_USB_STORAGE=m | |||
| 843 | # CONFIG_USB_STORAGE_ALAUDA is not set | 950 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 844 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 951 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 845 | # CONFIG_USB_STORAGE_KARMA is not set | 952 | # CONFIG_USB_STORAGE_KARMA is not set |
| 953 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 846 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 954 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 847 | # CONFIG_USB_LIBUSUAL is not set | 955 | # CONFIG_USB_LIBUSUAL is not set |
| 848 | 956 | ||
| @@ -851,7 +959,6 @@ CONFIG_USB_STORAGE=m | |||
| 851 | # | 959 | # |
| 852 | # CONFIG_USB_MDC800 is not set | 960 | # CONFIG_USB_MDC800 is not set |
| 853 | # CONFIG_USB_MICROTEK is not set | 961 | # CONFIG_USB_MICROTEK is not set |
| 854 | CONFIG_USB_MON=y | ||
| 855 | 962 | ||
| 856 | # | 963 | # |
| 857 | # USB port drivers | 964 | # USB port drivers |
| @@ -864,7 +971,6 @@ CONFIG_USB_MON=y | |||
| 864 | # CONFIG_USB_EMI62 is not set | 971 | # CONFIG_USB_EMI62 is not set |
| 865 | # CONFIG_USB_EMI26 is not set | 972 | # CONFIG_USB_EMI26 is not set |
| 866 | # CONFIG_USB_ADUTUX is not set | 973 | # CONFIG_USB_ADUTUX is not set |
| 867 | # CONFIG_USB_AUERSWALD is not set | ||
| 868 | # CONFIG_USB_RIO500 is not set | 974 | # CONFIG_USB_RIO500 is not set |
| 869 | # CONFIG_USB_LEGOTOWER is not set | 975 | # CONFIG_USB_LEGOTOWER is not set |
| 870 | # CONFIG_USB_LCD is not set | 976 | # CONFIG_USB_LCD is not set |
| @@ -998,9 +1104,11 @@ CONFIG_HUGETLB_PAGE=y | |||
| 998 | # CONFIG_BEFS_FS is not set | 1104 | # CONFIG_BEFS_FS is not set |
| 999 | # CONFIG_BFS_FS is not set | 1105 | # CONFIG_BFS_FS is not set |
| 1000 | # CONFIG_EFS_FS is not set | 1106 | # CONFIG_EFS_FS is not set |
| 1107 | # CONFIG_JFFS2_FS is not set | ||
| 1001 | # CONFIG_CRAMFS is not set | 1108 | # CONFIG_CRAMFS is not set |
| 1002 | # CONFIG_VXFS_FS is not set | 1109 | # CONFIG_VXFS_FS is not set |
| 1003 | # CONFIG_MINIX_FS is not set | 1110 | # CONFIG_MINIX_FS is not set |
| 1111 | # CONFIG_OMFS_FS is not set | ||
| 1004 | # CONFIG_HPFS_FS is not set | 1112 | # CONFIG_HPFS_FS is not set |
| 1005 | # CONFIG_QNX4FS_FS is not set | 1113 | # CONFIG_QNX4FS_FS is not set |
| 1006 | # CONFIG_ROMFS_FS is not set | 1114 | # CONFIG_ROMFS_FS is not set |
| @@ -1011,14 +1119,13 @@ CONFIG_NFS_FS=y | |||
| 1011 | CONFIG_NFS_V3=y | 1119 | CONFIG_NFS_V3=y |
| 1012 | # CONFIG_NFS_V3_ACL is not set | 1120 | # CONFIG_NFS_V3_ACL is not set |
| 1013 | CONFIG_NFS_V4=y | 1121 | CONFIG_NFS_V4=y |
| 1014 | # CONFIG_NFSD is not set | ||
| 1015 | CONFIG_ROOT_NFS=y | 1122 | CONFIG_ROOT_NFS=y |
| 1123 | # CONFIG_NFSD is not set | ||
| 1016 | CONFIG_LOCKD=y | 1124 | CONFIG_LOCKD=y |
| 1017 | CONFIG_LOCKD_V4=y | 1125 | CONFIG_LOCKD_V4=y |
| 1018 | CONFIG_NFS_COMMON=y | 1126 | CONFIG_NFS_COMMON=y |
| 1019 | CONFIG_SUNRPC=y | 1127 | CONFIG_SUNRPC=y |
| 1020 | CONFIG_SUNRPC_GSS=y | 1128 | CONFIG_SUNRPC_GSS=y |
| 1021 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1022 | CONFIG_RPCSEC_GSS_KRB5=y | 1129 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1023 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1130 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1024 | # CONFIG_SMB_FS is not set | 1131 | # CONFIG_SMB_FS is not set |
| @@ -1086,7 +1193,7 @@ CONFIG_BITREVERSE=y | |||
| 1086 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1193 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1087 | CONFIG_CRC_CCITT=m | 1194 | CONFIG_CRC_CCITT=m |
| 1088 | # CONFIG_CRC16 is not set | 1195 | # CONFIG_CRC16 is not set |
| 1089 | # CONFIG_CRC_T10DIF is not set | 1196 | CONFIG_CRC_T10DIF=y |
| 1090 | CONFIG_CRC_ITU_T=m | 1197 | CONFIG_CRC_ITU_T=m |
| 1091 | CONFIG_CRC32=y | 1198 | CONFIG_CRC32=y |
| 1092 | # CONFIG_CRC7 is not set | 1199 | # CONFIG_CRC7 is not set |
| @@ -1115,6 +1222,8 @@ CONFIG_DEBUG_FS=y | |||
| 1115 | CONFIG_DEBUG_KERNEL=y | 1222 | CONFIG_DEBUG_KERNEL=y |
| 1116 | # CONFIG_DEBUG_SHIRQ is not set | 1223 | # CONFIG_DEBUG_SHIRQ is not set |
| 1117 | CONFIG_DETECT_SOFTLOCKUP=y | 1224 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1225 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1226 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1118 | CONFIG_SCHED_DEBUG=y | 1227 | CONFIG_SCHED_DEBUG=y |
| 1119 | # CONFIG_SCHEDSTATS is not set | 1228 | # CONFIG_SCHEDSTATS is not set |
| 1120 | # CONFIG_TIMER_STATS is not set | 1229 | # CONFIG_TIMER_STATS is not set |
| @@ -1138,6 +1247,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 1138 | CONFIG_DEBUG_INFO=y | 1247 | CONFIG_DEBUG_INFO=y |
| 1139 | # CONFIG_DEBUG_VM is not set | 1248 | # CONFIG_DEBUG_VM is not set |
| 1140 | CONFIG_DEBUG_WRITECOUNT=y | 1249 | CONFIG_DEBUG_WRITECOUNT=y |
| 1250 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 1141 | CONFIG_DEBUG_LIST=y | 1251 | CONFIG_DEBUG_LIST=y |
| 1142 | # CONFIG_DEBUG_SG is not set | 1252 | # CONFIG_DEBUG_SG is not set |
| 1143 | CONFIG_FRAME_POINTER=y | 1253 | CONFIG_FRAME_POINTER=y |
| @@ -1146,6 +1256,7 @@ CONFIG_FRAME_POINTER=y | |||
| 1146 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1256 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1147 | # CONFIG_FAULT_INJECTION is not set | 1257 | # CONFIG_FAULT_INJECTION is not set |
| 1148 | # CONFIG_LATENCYTOP is not set | 1258 | # CONFIG_LATENCYTOP is not set |
| 1259 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1149 | CONFIG_HAVE_FTRACE=y | 1260 | CONFIG_HAVE_FTRACE=y |
| 1150 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1261 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1151 | # CONFIG_FTRACE is not set | 1262 | # CONFIG_FTRACE is not set |
| @@ -1153,12 +1264,14 @@ CONFIG_HAVE_DYNAMIC_FTRACE=y | |||
| 1153 | # CONFIG_SCHED_TRACER is not set | 1264 | # CONFIG_SCHED_TRACER is not set |
| 1154 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1265 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1155 | # CONFIG_SAMPLES is not set | 1266 | # CONFIG_SAMPLES is not set |
| 1267 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1268 | # CONFIG_KGDB is not set | ||
| 1156 | CONFIG_DEBUG_STACKOVERFLOW=y | 1269 | CONFIG_DEBUG_STACKOVERFLOW=y |
| 1157 | # CONFIG_DEBUG_STACK_USAGE is not set | 1270 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1158 | # CONFIG_DEBUG_PAGEALLOC is not set | 1271 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1159 | # CONFIG_DEBUGGER is not set | ||
| 1160 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1272 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1161 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1273 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1274 | # CONFIG_XMON is not set | ||
| 1162 | CONFIG_IRQSTACKS=y | 1275 | CONFIG_IRQSTACKS=y |
| 1163 | # CONFIG_VIRQ_DEBUG is not set | 1276 | # CONFIG_VIRQ_DEBUG is not set |
| 1164 | # CONFIG_BOOTX_TEXT is not set | 1277 | # CONFIG_BOOTX_TEXT is not set |
diff --git a/arch/powerpc/configs/pseries_defconfig b/arch/powerpc/configs/pseries_defconfig index fe6ffa683d78..e77c5e7a0be2 100644 --- a/arch/powerpc/configs/pseries_defconfig +++ b/arch/powerpc/configs/pseries_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.26-rc3 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Tue May 20 20:03:28 2008 | 4 | # Tue Aug 26 13:31:07 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_POWER4=y | |||
| 14 | # CONFIG_TUNE_CELL is not set | 14 | # CONFIG_TUNE_CELL is not set |
| 15 | CONFIG_PPC_FPU=y | 15 | CONFIG_PPC_FPU=y |
| 16 | CONFIG_ALTIVEC=y | 16 | CONFIG_ALTIVEC=y |
| 17 | CONFIG_VSX=y | ||
| 17 | CONFIG_PPC_STD_MMU=y | 18 | CONFIG_PPC_STD_MMU=y |
| 18 | CONFIG_PPC_MM_SLICES=y | 19 | CONFIG_PPC_MM_SLICES=y |
| 19 | CONFIG_VIRT_CPU_ACCOUNTING=y | 20 | CONFIG_VIRT_CPU_ACCOUNTING=y |
| @@ -31,6 +32,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 31 | CONFIG_HAVE_SETUP_PER_CPU_AREA=y | 32 | CONFIG_HAVE_SETUP_PER_CPU_AREA=y |
| 32 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
| 33 | CONFIG_STACKTRACE_SUPPORT=y | 34 | CONFIG_STACKTRACE_SUPPORT=y |
| 35 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 34 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 36 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| @@ -104,7 +106,6 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 104 | CONFIG_SYSCTL=y | 106 | CONFIG_SYSCTL=y |
| 105 | # CONFIG_EMBEDDED is not set | 107 | # CONFIG_EMBEDDED is not set |
| 106 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 107 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 108 | CONFIG_KALLSYMS=y | 109 | CONFIG_KALLSYMS=y |
| 109 | CONFIG_KALLSYMS_ALL=y | 110 | CONFIG_KALLSYMS_ALL=y |
| 110 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 111 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -132,11 +133,17 @@ CONFIG_MARKERS=y | |||
| 132 | CONFIG_OPROFILE=y | 133 | CONFIG_OPROFILE=y |
| 133 | CONFIG_HAVE_OPROFILE=y | 134 | CONFIG_HAVE_OPROFILE=y |
| 134 | CONFIG_KPROBES=y | 135 | CONFIG_KPROBES=y |
| 136 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 135 | CONFIG_KRETPROBES=y | 137 | CONFIG_KRETPROBES=y |
| 138 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 136 | CONFIG_HAVE_KPROBES=y | 139 | CONFIG_HAVE_KPROBES=y |
| 137 | CONFIG_HAVE_KRETPROBES=y | 140 | CONFIG_HAVE_KRETPROBES=y |
| 138 | # CONFIG_HAVE_DMA_ATTRS is not set | 141 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 142 | CONFIG_HAVE_DMA_ATTRS=y | ||
| 143 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
| 144 | # CONFIG_HAVE_CLK is not set | ||
| 139 | CONFIG_PROC_PAGE_MONITOR=y | 145 | CONFIG_PROC_PAGE_MONITOR=y |
| 146 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 140 | CONFIG_SLABINFO=y | 147 | CONFIG_SLABINFO=y |
| 141 | CONFIG_RT_MUTEXES=y | 148 | CONFIG_RT_MUTEXES=y |
| 142 | # CONFIG_TINY_SHMEM is not set | 149 | # CONFIG_TINY_SHMEM is not set |
| @@ -152,6 +159,7 @@ CONFIG_STOP_MACHINE=y | |||
| 152 | CONFIG_BLOCK=y | 159 | CONFIG_BLOCK=y |
| 153 | # CONFIG_BLK_DEV_IO_TRACE is not set | 160 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 154 | CONFIG_BLK_DEV_BSG=y | 161 | CONFIG_BLK_DEV_BSG=y |
| 162 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 155 | CONFIG_BLOCK_COMPAT=y | 163 | CONFIG_BLOCK_COMPAT=y |
| 156 | 164 | ||
| 157 | # | 165 | # |
| @@ -172,17 +180,14 @@ CONFIG_CLASSIC_RCU=y | |||
| 172 | # Platform support | 180 | # Platform support |
| 173 | # | 181 | # |
| 174 | CONFIG_PPC_MULTIPLATFORM=y | 182 | CONFIG_PPC_MULTIPLATFORM=y |
| 175 | # CONFIG_PPC_82xx is not set | ||
| 176 | # CONFIG_PPC_83xx is not set | ||
| 177 | # CONFIG_PPC_86xx is not set | ||
| 178 | CONFIG_PPC_PSERIES=y | 183 | CONFIG_PPC_PSERIES=y |
| 179 | CONFIG_PPC_SPLPAR=y | 184 | CONFIG_PPC_SPLPAR=y |
| 180 | CONFIG_EEH=y | 185 | CONFIG_EEH=y |
| 181 | CONFIG_SCANLOG=m | 186 | CONFIG_SCANLOG=m |
| 182 | CONFIG_LPARCFG=y | 187 | CONFIG_LPARCFG=y |
| 188 | CONFIG_PPC_SMLPAR=y | ||
| 189 | CONFIG_CMM=y | ||
| 183 | # CONFIG_PPC_ISERIES is not set | 190 | # CONFIG_PPC_ISERIES is not set |
| 184 | # CONFIG_PPC_MPC512x is not set | ||
| 185 | # CONFIG_PPC_MPC5121 is not set | ||
| 186 | # CONFIG_PPC_PMAC is not set | 191 | # CONFIG_PPC_PMAC is not set |
| 187 | # CONFIG_PPC_MAPLE is not set | 192 | # CONFIG_PPC_MAPLE is not set |
| 188 | # CONFIG_PPC_PASEMI is not set | 193 | # CONFIG_PPC_PASEMI is not set |
| @@ -226,7 +231,7 @@ CONFIG_HZ_250=y | |||
| 226 | # CONFIG_HZ_300 is not set | 231 | # CONFIG_HZ_300 is not set |
| 227 | # CONFIG_HZ_1000 is not set | 232 | # CONFIG_HZ_1000 is not set |
| 228 | CONFIG_HZ=250 | 233 | CONFIG_HZ=250 |
| 229 | # CONFIG_SCHED_HRTICK is not set | 234 | CONFIG_SCHED_HRTICK=y |
| 230 | CONFIG_PREEMPT_NONE=y | 235 | CONFIG_PREEMPT_NONE=y |
| 231 | # CONFIG_PREEMPT_VOLUNTARY is not set | 236 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 232 | # CONFIG_PREEMPT is not set | 237 | # CONFIG_PREEMPT is not set |
| @@ -275,6 +280,7 @@ CONFIG_FORCE_MAX_ZONEORDER=13 | |||
| 275 | CONFIG_SCHED_SMT=y | 280 | CONFIG_SCHED_SMT=y |
| 276 | CONFIG_PROC_DEVICETREE=y | 281 | CONFIG_PROC_DEVICETREE=y |
| 277 | # CONFIG_CMDLINE_BOOL is not set | 282 | # CONFIG_CMDLINE_BOOL is not set |
| 283 | CONFIG_EXTRA_TARGETS="" | ||
| 278 | # CONFIG_PM is not set | 284 | # CONFIG_PM is not set |
| 279 | CONFIG_SECCOMP=y | 285 | CONFIG_SECCOMP=y |
| 280 | CONFIG_ISA_DMA_API=y | 286 | CONFIG_ISA_DMA_API=y |
| @@ -304,10 +310,6 @@ CONFIG_HOTPLUG_PCI_RPA_DLPAR=m | |||
| 304 | CONFIG_PAGE_OFFSET=0xc000000000000000 | 310 | CONFIG_PAGE_OFFSET=0xc000000000000000 |
| 305 | CONFIG_KERNEL_START=0xc000000000000000 | 311 | CONFIG_KERNEL_START=0xc000000000000000 |
| 306 | CONFIG_PHYSICAL_START=0x00000000 | 312 | CONFIG_PHYSICAL_START=0x00000000 |
| 307 | |||
| 308 | # | ||
| 309 | # Networking | ||
| 310 | # | ||
| 311 | CONFIG_NET=y | 313 | CONFIG_NET=y |
| 312 | 314 | ||
| 313 | # | 315 | # |
| @@ -321,6 +323,7 @@ CONFIG_XFRM_USER=m | |||
| 321 | # CONFIG_XFRM_SUB_POLICY is not set | 323 | # CONFIG_XFRM_SUB_POLICY is not set |
| 322 | # CONFIG_XFRM_MIGRATE is not set | 324 | # CONFIG_XFRM_MIGRATE is not set |
| 323 | # CONFIG_XFRM_STATISTICS is not set | 325 | # CONFIG_XFRM_STATISTICS is not set |
| 326 | CONFIG_XFRM_IPCOMP=m | ||
| 324 | CONFIG_NET_KEY=m | 327 | CONFIG_NET_KEY=m |
| 325 | # CONFIG_NET_KEY_MIGRATE is not set | 328 | # CONFIG_NET_KEY_MIGRATE is not set |
| 326 | CONFIG_INET=y | 329 | CONFIG_INET=y |
| @@ -498,6 +501,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | |||
| 498 | CONFIG_STANDALONE=y | 501 | CONFIG_STANDALONE=y |
| 499 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 502 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 500 | CONFIG_FW_LOADER=y | 503 | CONFIG_FW_LOADER=y |
| 504 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 505 | CONFIG_EXTRA_FIRMWARE="" | ||
| 501 | # CONFIG_DEBUG_DRIVER is not set | 506 | # CONFIG_DEBUG_DRIVER is not set |
| 502 | # CONFIG_DEBUG_DEVRES is not set | 507 | # CONFIG_DEBUG_DEVRES is not set |
| 503 | # CONFIG_SYS_HYPERVISOR is not set | 508 | # CONFIG_SYS_HYPERVISOR is not set |
| @@ -531,12 +536,14 @@ CONFIG_BLK_DEV_RAM_SIZE=65536 | |||
| 531 | # CONFIG_BLK_DEV_XIP is not set | 536 | # CONFIG_BLK_DEV_XIP is not set |
| 532 | # CONFIG_CDROM_PKTCDVD is not set | 537 | # CONFIG_CDROM_PKTCDVD is not set |
| 533 | # CONFIG_ATA_OVER_ETH is not set | 538 | # CONFIG_ATA_OVER_ETH is not set |
| 539 | # CONFIG_BLK_DEV_HD is not set | ||
| 534 | CONFIG_MISC_DEVICES=y | 540 | CONFIG_MISC_DEVICES=y |
| 535 | # CONFIG_PHANTOM is not set | 541 | # CONFIG_PHANTOM is not set |
| 536 | # CONFIG_EEPROM_93CX6 is not set | 542 | # CONFIG_EEPROM_93CX6 is not set |
| 537 | # CONFIG_SGI_IOC4 is not set | 543 | # CONFIG_SGI_IOC4 is not set |
| 538 | # CONFIG_TIFM_CORE is not set | 544 | # CONFIG_TIFM_CORE is not set |
| 539 | # CONFIG_ENCLOSURE_SERVICES is not set | 545 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 546 | # CONFIG_HP_ILO is not set | ||
| 540 | CONFIG_HAVE_IDE=y | 547 | CONFIG_HAVE_IDE=y |
| 541 | CONFIG_IDE=y | 548 | CONFIG_IDE=y |
| 542 | CONFIG_BLK_DEV_IDE=y | 549 | CONFIG_BLK_DEV_IDE=y |
| @@ -544,6 +551,7 @@ CONFIG_BLK_DEV_IDE=y | |||
| 544 | # | 551 | # |
| 545 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 552 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 546 | # | 553 | # |
| 554 | CONFIG_IDE_TIMINGS=y | ||
| 547 | # CONFIG_BLK_DEV_IDE_SATA is not set | 555 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 548 | CONFIG_BLK_DEV_IDEDISK=y | 556 | CONFIG_BLK_DEV_IDEDISK=y |
| 549 | # CONFIG_IDEDISK_MULTI_MODE is not set | 557 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| @@ -575,10 +583,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 575 | CONFIG_BLK_DEV_AMD74XX=y | 583 | CONFIG_BLK_DEV_AMD74XX=y |
| 576 | # CONFIG_BLK_DEV_CMD64X is not set | 584 | # CONFIG_BLK_DEV_CMD64X is not set |
| 577 | # CONFIG_BLK_DEV_TRIFLEX is not set | 585 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 578 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 579 | # CONFIG_BLK_DEV_CS5520 is not set | 586 | # CONFIG_BLK_DEV_CS5520 is not set |
| 580 | # CONFIG_BLK_DEV_CS5530 is not set | 587 | # CONFIG_BLK_DEV_CS5530 is not set |
| 581 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 582 | # CONFIG_BLK_DEV_HPT366 is not set | 588 | # CONFIG_BLK_DEV_HPT366 is not set |
| 583 | # CONFIG_BLK_DEV_JMICRON is not set | 589 | # CONFIG_BLK_DEV_JMICRON is not set |
| 584 | # CONFIG_BLK_DEV_SC1200 is not set | 590 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -596,8 +602,6 @@ CONFIG_BLK_DEV_AMD74XX=y | |||
| 596 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 602 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
| 597 | # CONFIG_BLK_DEV_TC86C001 is not set | 603 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 598 | CONFIG_BLK_DEV_IDEDMA=y | 604 | CONFIG_BLK_DEV_IDEDMA=y |
| 599 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 600 | # CONFIG_BLK_DEV_HD is not set | ||
| 601 | 605 | ||
| 602 | # | 606 | # |
| 603 | # SCSI device support | 607 | # SCSI device support |
| @@ -659,6 +663,8 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 659 | # CONFIG_SCSI_GDTH is not set | 663 | # CONFIG_SCSI_GDTH is not set |
| 660 | # CONFIG_SCSI_IPS is not set | 664 | # CONFIG_SCSI_IPS is not set |
| 661 | CONFIG_SCSI_IBMVSCSI=y | 665 | CONFIG_SCSI_IBMVSCSI=y |
| 666 | CONFIG_SCSI_IBMVFC=m | ||
| 667 | CONFIG_SCSI_IBMVFC_TRACE=y | ||
| 662 | # CONFIG_SCSI_INITIO is not set | 668 | # CONFIG_SCSI_INITIO is not set |
| 663 | # CONFIG_SCSI_INIA100 is not set | 669 | # CONFIG_SCSI_INIA100 is not set |
| 664 | # CONFIG_SCSI_PPA is not set | 670 | # CONFIG_SCSI_PPA is not set |
| @@ -681,6 +687,7 @@ CONFIG_SCSI_LPFC=m | |||
| 681 | # CONFIG_SCSI_DC390T is not set | 687 | # CONFIG_SCSI_DC390T is not set |
| 682 | # CONFIG_SCSI_DEBUG is not set | 688 | # CONFIG_SCSI_DEBUG is not set |
| 683 | # CONFIG_SCSI_SRP is not set | 689 | # CONFIG_SCSI_SRP is not set |
| 690 | # CONFIG_SCSI_DH is not set | ||
| 684 | CONFIG_ATA=y | 691 | CONFIG_ATA=y |
| 685 | # CONFIG_ATA_NONSTANDARD is not set | 692 | # CONFIG_ATA_NONSTANDARD is not set |
| 686 | CONFIG_SATA_PMP=y | 693 | CONFIG_SATA_PMP=y |
| @@ -703,9 +710,6 @@ CONFIG_DM_SNAPSHOT=m | |||
| 703 | CONFIG_DM_MIRROR=m | 710 | CONFIG_DM_MIRROR=m |
| 704 | CONFIG_DM_ZERO=m | 711 | CONFIG_DM_ZERO=m |
| 705 | CONFIG_DM_MULTIPATH=m | 712 | CONFIG_DM_MULTIPATH=m |
| 706 | CONFIG_DM_MULTIPATH_EMC=m | ||
| 707 | # CONFIG_DM_MULTIPATH_RDAC is not set | ||
| 708 | # CONFIG_DM_MULTIPATH_HP is not set | ||
| 709 | # CONFIG_DM_DELAY is not set | 713 | # CONFIG_DM_DELAY is not set |
| 710 | # CONFIG_DM_UEVENT is not set | 714 | # CONFIG_DM_UEVENT is not set |
| 711 | # CONFIG_FUSION is not set | 715 | # CONFIG_FUSION is not set |
| @@ -713,12 +717,15 @@ CONFIG_DM_MULTIPATH_EMC=m | |||
| 713 | # | 717 | # |
| 714 | # IEEE 1394 (FireWire) support | 718 | # IEEE 1394 (FireWire) support |
| 715 | # | 719 | # |
| 720 | |||
| 721 | # | ||
| 722 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 723 | # | ||
| 716 | # CONFIG_FIREWIRE is not set | 724 | # CONFIG_FIREWIRE is not set |
| 717 | # CONFIG_IEEE1394 is not set | 725 | # CONFIG_IEEE1394 is not set |
| 718 | # CONFIG_I2O is not set | 726 | # CONFIG_I2O is not set |
| 719 | # CONFIG_MACINTOSH_DRIVERS is not set | 727 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 720 | CONFIG_NETDEVICES=y | 728 | CONFIG_NETDEVICES=y |
| 721 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 722 | CONFIG_DUMMY=m | 729 | CONFIG_DUMMY=m |
| 723 | CONFIG_BONDING=m | 730 | CONFIG_BONDING=m |
| 724 | # CONFIG_MACVLAN is not set | 731 | # CONFIG_MACVLAN is not set |
| @@ -726,7 +733,23 @@ CONFIG_BONDING=m | |||
| 726 | CONFIG_TUN=m | 733 | CONFIG_TUN=m |
| 727 | # CONFIG_VETH is not set | 734 | # CONFIG_VETH is not set |
| 728 | # CONFIG_ARCNET is not set | 735 | # CONFIG_ARCNET is not set |
| 729 | # CONFIG_PHYLIB is not set | 736 | CONFIG_PHYLIB=y |
| 737 | |||
| 738 | # | ||
| 739 | # MII PHY device drivers | ||
| 740 | # | ||
| 741 | # CONFIG_MARVELL_PHY is not set | ||
| 742 | # CONFIG_DAVICOM_PHY is not set | ||
| 743 | # CONFIG_QSEMI_PHY is not set | ||
| 744 | # CONFIG_LXT_PHY is not set | ||
| 745 | # CONFIG_CICADA_PHY is not set | ||
| 746 | # CONFIG_VITESSE_PHY is not set | ||
| 747 | # CONFIG_SMSC_PHY is not set | ||
| 748 | # CONFIG_BROADCOM_PHY is not set | ||
| 749 | # CONFIG_ICPLUS_PHY is not set | ||
| 750 | # CONFIG_REALTEK_PHY is not set | ||
| 751 | # CONFIG_FIXED_PHY is not set | ||
| 752 | # CONFIG_MDIO_BITBANG is not set | ||
| 730 | CONFIG_NET_ETHERNET=y | 753 | CONFIG_NET_ETHERNET=y |
| 731 | CONFIG_MII=y | 754 | CONFIG_MII=y |
| 732 | # CONFIG_HAPPYMEAL is not set | 755 | # CONFIG_HAPPYMEAL is not set |
| @@ -759,6 +782,7 @@ CONFIG_E100=y | |||
| 759 | # CONFIG_SIS900 is not set | 782 | # CONFIG_SIS900 is not set |
| 760 | # CONFIG_EPIC100 is not set | 783 | # CONFIG_EPIC100 is not set |
| 761 | # CONFIG_SUNDANCE is not set | 784 | # CONFIG_SUNDANCE is not set |
| 785 | # CONFIG_TLAN is not set | ||
| 762 | # CONFIG_VIA_RHINE is not set | 786 | # CONFIG_VIA_RHINE is not set |
| 763 | # CONFIG_SC92031 is not set | 787 | # CONFIG_SC92031 is not set |
| 764 | # CONFIG_NET_POCKET is not set | 788 | # CONFIG_NET_POCKET is not set |
| @@ -767,10 +791,8 @@ CONFIG_ACENIC=y | |||
| 767 | CONFIG_ACENIC_OMIT_TIGON_I=y | 791 | CONFIG_ACENIC_OMIT_TIGON_I=y |
| 768 | # CONFIG_DL2K is not set | 792 | # CONFIG_DL2K is not set |
| 769 | CONFIG_E1000=y | 793 | CONFIG_E1000=y |
| 770 | # CONFIG_E1000_NAPI is not set | ||
| 771 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set | 794 | # CONFIG_E1000_DISABLE_PACKET_SPLIT is not set |
| 772 | # CONFIG_E1000E is not set | 795 | # CONFIG_E1000E is not set |
| 773 | # CONFIG_E1000E_ENABLED is not set | ||
| 774 | # CONFIG_IP1000 is not set | 796 | # CONFIG_IP1000 is not set |
| 775 | # CONFIG_IGB is not set | 797 | # CONFIG_IGB is not set |
| 776 | # CONFIG_NS83820 is not set | 798 | # CONFIG_NS83820 is not set |
| @@ -785,14 +807,14 @@ CONFIG_TIGON3=y | |||
| 785 | # CONFIG_BNX2 is not set | 807 | # CONFIG_BNX2 is not set |
| 786 | # CONFIG_QLA3XXX is not set | 808 | # CONFIG_QLA3XXX is not set |
| 787 | # CONFIG_ATL1 is not set | 809 | # CONFIG_ATL1 is not set |
| 810 | # CONFIG_ATL1E is not set | ||
| 788 | CONFIG_NETDEV_10000=y | 811 | CONFIG_NETDEV_10000=y |
| 789 | # CONFIG_CHELSIO_T1 is not set | 812 | # CONFIG_CHELSIO_T1 is not set |
| 790 | # CONFIG_CHELSIO_T3 is not set | 813 | # CONFIG_CHELSIO_T3 is not set |
| 814 | CONFIG_EHEA=y | ||
| 791 | # CONFIG_IXGBE is not set | 815 | # CONFIG_IXGBE is not set |
| 792 | CONFIG_IXGB=m | 816 | CONFIG_IXGB=m |
| 793 | # CONFIG_IXGB_NAPI is not set | ||
| 794 | CONFIG_S2IO=m | 817 | CONFIG_S2IO=m |
| 795 | # CONFIG_S2IO_NAPI is not set | ||
| 796 | # CONFIG_MYRI10GE is not set | 818 | # CONFIG_MYRI10GE is not set |
| 797 | # CONFIG_NETXEN_NIC is not set | 819 | # CONFIG_NETXEN_NIC is not set |
| 798 | # CONFIG_NIU is not set | 820 | # CONFIG_NIU is not set |
| @@ -883,6 +905,7 @@ CONFIG_MOUSE_PS2_TRACKPOINT=y | |||
| 883 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 905 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| 884 | # CONFIG_MOUSE_SERIAL is not set | 906 | # CONFIG_MOUSE_SERIAL is not set |
| 885 | # CONFIG_MOUSE_APPLETOUCH is not set | 907 | # CONFIG_MOUSE_APPLETOUCH is not set |
| 908 | # CONFIG_MOUSE_BCM5974 is not set | ||
| 886 | # CONFIG_MOUSE_VSXXXAA is not set | 909 | # CONFIG_MOUSE_VSXXXAA is not set |
| 887 | # CONFIG_INPUT_JOYSTICK is not set | 910 | # CONFIG_INPUT_JOYSTICK is not set |
| 888 | # CONFIG_INPUT_TABLET is not set | 911 | # CONFIG_INPUT_TABLET is not set |
| @@ -906,12 +929,14 @@ CONFIG_SERIO_I8042=y | |||
| 906 | # CONFIG_SERIO_PCIPS2 is not set | 929 | # CONFIG_SERIO_PCIPS2 is not set |
| 907 | CONFIG_SERIO_LIBPS2=y | 930 | CONFIG_SERIO_LIBPS2=y |
| 908 | # CONFIG_SERIO_RAW is not set | 931 | # CONFIG_SERIO_RAW is not set |
| 932 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
| 909 | # CONFIG_GAMEPORT is not set | 933 | # CONFIG_GAMEPORT is not set |
| 910 | 934 | ||
| 911 | # | 935 | # |
| 912 | # Character devices | 936 | # Character devices |
| 913 | # | 937 | # |
| 914 | CONFIG_VT=y | 938 | CONFIG_VT=y |
| 939 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 915 | CONFIG_VT_CONSOLE=y | 940 | CONFIG_VT_CONSOLE=y |
| 916 | CONFIG_HW_CONSOLE=y | 941 | CONFIG_HW_CONSOLE=y |
| 917 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 942 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -943,6 +968,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 943 | # CONFIG_PRINTER is not set | 968 | # CONFIG_PRINTER is not set |
| 944 | # CONFIG_PPDEV is not set | 969 | # CONFIG_PPDEV is not set |
| 945 | CONFIG_HVC_DRIVER=y | 970 | CONFIG_HVC_DRIVER=y |
| 971 | CONFIG_HVC_IRQ=y | ||
| 946 | CONFIG_HVC_CONSOLE=y | 972 | CONFIG_HVC_CONSOLE=y |
| 947 | CONFIG_HVC_RTAS=y | 973 | CONFIG_HVC_RTAS=y |
| 948 | CONFIG_HVCS=m | 974 | CONFIG_HVCS=m |
| @@ -961,44 +987,65 @@ CONFIG_DEVPORT=y | |||
| 961 | CONFIG_I2C=y | 987 | CONFIG_I2C=y |
| 962 | CONFIG_I2C_BOARDINFO=y | 988 | CONFIG_I2C_BOARDINFO=y |
| 963 | # CONFIG_I2C_CHARDEV is not set | 989 | # CONFIG_I2C_CHARDEV is not set |
| 990 | CONFIG_I2C_HELPER_AUTO=y | ||
| 964 | CONFIG_I2C_ALGOBIT=y | 991 | CONFIG_I2C_ALGOBIT=y |
| 965 | 992 | ||
| 966 | # | 993 | # |
| 967 | # I2C Hardware Bus support | 994 | # I2C Hardware Bus support |
| 968 | # | 995 | # |
| 996 | |||
| 997 | # | ||
| 998 | # PC SMBus host controller drivers | ||
| 999 | # | ||
| 969 | # CONFIG_I2C_ALI1535 is not set | 1000 | # CONFIG_I2C_ALI1535 is not set |
| 970 | # CONFIG_I2C_ALI1563 is not set | 1001 | # CONFIG_I2C_ALI1563 is not set |
| 971 | # CONFIG_I2C_ALI15X3 is not set | 1002 | # CONFIG_I2C_ALI15X3 is not set |
| 972 | # CONFIG_I2C_AMD756 is not set | 1003 | # CONFIG_I2C_AMD756 is not set |
| 973 | # CONFIG_I2C_AMD8111 is not set | 1004 | # CONFIG_I2C_AMD8111 is not set |
| 974 | # CONFIG_I2C_I801 is not set | 1005 | # CONFIG_I2C_I801 is not set |
| 975 | # CONFIG_I2C_I810 is not set | 1006 | # CONFIG_I2C_ISCH is not set |
| 976 | # CONFIG_I2C_PIIX4 is not set | 1007 | # CONFIG_I2C_PIIX4 is not set |
| 977 | # CONFIG_I2C_NFORCE2 is not set | 1008 | # CONFIG_I2C_NFORCE2 is not set |
| 978 | # CONFIG_I2C_OCORES is not set | ||
| 979 | # CONFIG_I2C_PARPORT is not set | ||
| 980 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 981 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 982 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 983 | # CONFIG_I2C_SIMTEC is not set | ||
| 984 | # CONFIG_I2C_SIS5595 is not set | 1009 | # CONFIG_I2C_SIS5595 is not set |
| 985 | # CONFIG_I2C_SIS630 is not set | 1010 | # CONFIG_I2C_SIS630 is not set |
| 986 | # CONFIG_I2C_SIS96X is not set | 1011 | # CONFIG_I2C_SIS96X is not set |
| 987 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 988 | # CONFIG_I2C_STUB is not set | ||
| 989 | # CONFIG_I2C_TINY_USB is not set | ||
| 990 | # CONFIG_I2C_VIA is not set | 1012 | # CONFIG_I2C_VIA is not set |
| 991 | # CONFIG_I2C_VIAPRO is not set | 1013 | # CONFIG_I2C_VIAPRO is not set |
| 1014 | |||
| 1015 | # | ||
| 1016 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 1017 | # | ||
| 1018 | # CONFIG_I2C_OCORES is not set | ||
| 1019 | # CONFIG_I2C_SIMTEC is not set | ||
| 1020 | |||
| 1021 | # | ||
| 1022 | # External I2C/SMBus adapter drivers | ||
| 1023 | # | ||
| 1024 | # CONFIG_I2C_PARPORT is not set | ||
| 1025 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 1026 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 1027 | # CONFIG_I2C_TINY_USB is not set | ||
| 1028 | |||
| 1029 | # | ||
| 1030 | # Graphics adapter I2C/DDC channel drivers | ||
| 1031 | # | ||
| 992 | # CONFIG_I2C_VOODOO3 is not set | 1032 | # CONFIG_I2C_VOODOO3 is not set |
| 1033 | |||
| 1034 | # | ||
| 1035 | # Other I2C/SMBus bus drivers | ||
| 1036 | # | ||
| 993 | # CONFIG_I2C_PCA_PLATFORM is not set | 1037 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 1038 | # CONFIG_I2C_STUB is not set | ||
| 994 | 1039 | ||
| 995 | # | 1040 | # |
| 996 | # Miscellaneous I2C Chip support | 1041 | # Miscellaneous I2C Chip support |
| 997 | # | 1042 | # |
| 998 | # CONFIG_DS1682 is not set | 1043 | # CONFIG_DS1682 is not set |
| 1044 | # CONFIG_AT24 is not set | ||
| 999 | # CONFIG_SENSORS_EEPROM is not set | 1045 | # CONFIG_SENSORS_EEPROM is not set |
| 1000 | # CONFIG_SENSORS_PCF8574 is not set | 1046 | # CONFIG_SENSORS_PCF8574 is not set |
| 1001 | # CONFIG_PCF8575 is not set | 1047 | # CONFIG_PCF8575 is not set |
| 1048 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 1002 | # CONFIG_SENSORS_PCF8591 is not set | 1049 | # CONFIG_SENSORS_PCF8591 is not set |
| 1003 | # CONFIG_SENSORS_MAX6875 is not set | 1050 | # CONFIG_SENSORS_MAX6875 is not set |
| 1004 | # CONFIG_SENSORS_TSL2550 is not set | 1051 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -1007,10 +1054,13 @@ CONFIG_I2C_ALGOBIT=y | |||
| 1007 | # CONFIG_I2C_DEBUG_BUS is not set | 1054 | # CONFIG_I2C_DEBUG_BUS is not set |
| 1008 | # CONFIG_I2C_DEBUG_CHIP is not set | 1055 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 1009 | # CONFIG_SPI is not set | 1056 | # CONFIG_SPI is not set |
| 1057 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 1058 | # CONFIG_GPIOLIB is not set | ||
| 1010 | # CONFIG_W1 is not set | 1059 | # CONFIG_W1 is not set |
| 1011 | # CONFIG_POWER_SUPPLY is not set | 1060 | # CONFIG_POWER_SUPPLY is not set |
| 1012 | # CONFIG_HWMON is not set | 1061 | # CONFIG_HWMON is not set |
| 1013 | # CONFIG_THERMAL is not set | 1062 | # CONFIG_THERMAL is not set |
| 1063 | # CONFIG_THERMAL_HWMON is not set | ||
| 1014 | # CONFIG_WATCHDOG is not set | 1064 | # CONFIG_WATCHDOG is not set |
| 1015 | 1065 | ||
| 1016 | # | 1066 | # |
| @@ -1022,8 +1072,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 1022 | # | 1072 | # |
| 1023 | # Multifunction device drivers | 1073 | # Multifunction device drivers |
| 1024 | # | 1074 | # |
| 1075 | # CONFIG_MFD_CORE is not set | ||
| 1025 | # CONFIG_MFD_SM501 is not set | 1076 | # CONFIG_MFD_SM501 is not set |
| 1026 | # CONFIG_HTC_PASIC3 is not set | 1077 | # CONFIG_HTC_PASIC3 is not set |
| 1078 | # CONFIG_MFD_TMIO is not set | ||
| 1027 | 1079 | ||
| 1028 | # | 1080 | # |
| 1029 | # Multimedia devices | 1081 | # Multimedia devices |
| @@ -1102,10 +1154,13 @@ CONFIG_FB_RADEON_BACKLIGHT=y | |||
| 1102 | # CONFIG_FB_TRIDENT is not set | 1154 | # CONFIG_FB_TRIDENT is not set |
| 1103 | # CONFIG_FB_ARK is not set | 1155 | # CONFIG_FB_ARK is not set |
| 1104 | # CONFIG_FB_PM3 is not set | 1156 | # CONFIG_FB_PM3 is not set |
| 1157 | # CONFIG_FB_CARMINE is not set | ||
| 1105 | CONFIG_FB_IBM_GXT4500=y | 1158 | CONFIG_FB_IBM_GXT4500=y |
| 1106 | # CONFIG_FB_VIRTUAL is not set | 1159 | # CONFIG_FB_VIRTUAL is not set |
| 1107 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 1160 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
| 1108 | CONFIG_LCD_CLASS_DEVICE=m | 1161 | CONFIG_LCD_CLASS_DEVICE=m |
| 1162 | # CONFIG_LCD_ILI9320 is not set | ||
| 1163 | CONFIG_LCD_PLATFORM=m | ||
| 1109 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 1164 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
| 1110 | # CONFIG_BACKLIGHT_CORGI is not set | 1165 | # CONFIG_BACKLIGHT_CORGI is not set |
| 1111 | 1166 | ||
| @@ -1133,10 +1188,6 @@ CONFIG_LOGO=y | |||
| 1133 | CONFIG_LOGO_LINUX_MONO=y | 1188 | CONFIG_LOGO_LINUX_MONO=y |
| 1134 | CONFIG_LOGO_LINUX_VGA16=y | 1189 | CONFIG_LOGO_LINUX_VGA16=y |
| 1135 | CONFIG_LOGO_LINUX_CLUT224=y | 1190 | CONFIG_LOGO_LINUX_CLUT224=y |
| 1136 | |||
| 1137 | # | ||
| 1138 | # Sound | ||
| 1139 | # | ||
| 1140 | # CONFIG_SOUND is not set | 1191 | # CONFIG_SOUND is not set |
| 1141 | CONFIG_HID_SUPPORT=y | 1192 | CONFIG_HID_SUPPORT=y |
| 1142 | CONFIG_HID=y | 1193 | CONFIG_HID=y |
| @@ -1165,6 +1216,7 @@ CONFIG_USB_DEVICEFS=y | |||
| 1165 | CONFIG_USB_DEVICE_CLASS=y | 1216 | CONFIG_USB_DEVICE_CLASS=y |
| 1166 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1217 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1167 | # CONFIG_USB_OTG is not set | 1218 | # CONFIG_USB_OTG is not set |
| 1219 | CONFIG_USB_MON=y | ||
| 1168 | 1220 | ||
| 1169 | # | 1221 | # |
| 1170 | # USB Host Controller Drivers | 1222 | # USB Host Controller Drivers |
| @@ -1190,6 +1242,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1190 | # | 1242 | # |
| 1191 | # CONFIG_USB_ACM is not set | 1243 | # CONFIG_USB_ACM is not set |
| 1192 | # CONFIG_USB_PRINTER is not set | 1244 | # CONFIG_USB_PRINTER is not set |
| 1245 | # CONFIG_USB_WDM is not set | ||
| 1193 | 1246 | ||
| 1194 | # | 1247 | # |
| 1195 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1248 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1211,6 +1264,7 @@ CONFIG_USB_STORAGE=y | |||
| 1211 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1264 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1212 | CONFIG_USB_STORAGE_ONETOUCH=y | 1265 | CONFIG_USB_STORAGE_ONETOUCH=y |
| 1213 | # CONFIG_USB_STORAGE_KARMA is not set | 1266 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1267 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 1214 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1268 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1215 | # CONFIG_USB_LIBUSUAL is not set | 1269 | # CONFIG_USB_LIBUSUAL is not set |
| 1216 | 1270 | ||
| @@ -1219,7 +1273,6 @@ CONFIG_USB_STORAGE_ONETOUCH=y | |||
| 1219 | # | 1273 | # |
| 1220 | # CONFIG_USB_MDC800 is not set | 1274 | # CONFIG_USB_MDC800 is not set |
| 1221 | # CONFIG_USB_MICROTEK is not set | 1275 | # CONFIG_USB_MICROTEK is not set |
| 1222 | CONFIG_USB_MON=y | ||
| 1223 | 1276 | ||
| 1224 | # | 1277 | # |
| 1225 | # USB port drivers | 1278 | # USB port drivers |
| @@ -1233,7 +1286,6 @@ CONFIG_USB_MON=y | |||
| 1233 | # CONFIG_USB_EMI62 is not set | 1286 | # CONFIG_USB_EMI62 is not set |
| 1234 | # CONFIG_USB_EMI26 is not set | 1287 | # CONFIG_USB_EMI26 is not set |
| 1235 | # CONFIG_USB_ADUTUX is not set | 1288 | # CONFIG_USB_ADUTUX is not set |
| 1236 | # CONFIG_USB_AUERSWALD is not set | ||
| 1237 | # CONFIG_USB_RIO500 is not set | 1289 | # CONFIG_USB_RIO500 is not set |
| 1238 | # CONFIG_USB_LEGOTOWER is not set | 1290 | # CONFIG_USB_LEGOTOWER is not set |
| 1239 | # CONFIG_USB_LCD is not set | 1291 | # CONFIG_USB_LCD is not set |
| @@ -1250,6 +1302,7 @@ CONFIG_USB_MON=y | |||
| 1250 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1302 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1251 | # CONFIG_USB_IOWARRIOR is not set | 1303 | # CONFIG_USB_IOWARRIOR is not set |
| 1252 | # CONFIG_USB_TEST is not set | 1304 | # CONFIG_USB_TEST is not set |
| 1305 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1253 | # CONFIG_USB_GADGET is not set | 1306 | # CONFIG_USB_GADGET is not set |
| 1254 | # CONFIG_MMC is not set | 1307 | # CONFIG_MMC is not set |
| 1255 | # CONFIG_MEMSTICK is not set | 1308 | # CONFIG_MEMSTICK is not set |
| @@ -1316,6 +1369,7 @@ CONFIG_XFS_POSIX_ACL=y | |||
| 1316 | # CONFIG_GFS2_FS is not set | 1369 | # CONFIG_GFS2_FS is not set |
| 1317 | CONFIG_OCFS2_FS=m | 1370 | CONFIG_OCFS2_FS=m |
| 1318 | CONFIG_OCFS2_FS_O2CB=m | 1371 | CONFIG_OCFS2_FS_O2CB=m |
| 1372 | CONFIG_OCFS2_FS_STATS=y | ||
| 1319 | CONFIG_OCFS2_DEBUG_MASKLOG=y | 1373 | CONFIG_OCFS2_DEBUG_MASKLOG=y |
| 1320 | # CONFIG_OCFS2_DEBUG_FS is not set | 1374 | # CONFIG_OCFS2_DEBUG_FS is not set |
| 1321 | CONFIG_DNOTIFY=y | 1375 | CONFIG_DNOTIFY=y |
| @@ -1371,6 +1425,7 @@ CONFIG_CONFIGFS_FS=m | |||
| 1371 | CONFIG_CRAMFS=y | 1425 | CONFIG_CRAMFS=y |
| 1372 | # CONFIG_VXFS_FS is not set | 1426 | # CONFIG_VXFS_FS is not set |
| 1373 | # CONFIG_MINIX_FS is not set | 1427 | # CONFIG_MINIX_FS is not set |
| 1428 | # CONFIG_OMFS_FS is not set | ||
| 1374 | # CONFIG_HPFS_FS is not set | 1429 | # CONFIG_HPFS_FS is not set |
| 1375 | # CONFIG_QNX4FS_FS is not set | 1430 | # CONFIG_QNX4FS_FS is not set |
| 1376 | # CONFIG_ROMFS_FS is not set | 1431 | # CONFIG_ROMFS_FS is not set |
| @@ -1394,7 +1449,6 @@ CONFIG_NFS_COMMON=y | |||
| 1394 | CONFIG_SUNRPC=y | 1449 | CONFIG_SUNRPC=y |
| 1395 | CONFIG_SUNRPC_GSS=y | 1450 | CONFIG_SUNRPC_GSS=y |
| 1396 | CONFIG_SUNRPC_XPRT_RDMA=m | 1451 | CONFIG_SUNRPC_XPRT_RDMA=m |
| 1397 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1398 | CONFIG_RPCSEC_GSS_KRB5=y | 1452 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1399 | CONFIG_RPCSEC_GSS_SPKM3=m | 1453 | CONFIG_RPCSEC_GSS_SPKM3=m |
| 1400 | # CONFIG_SMB_FS is not set | 1454 | # CONFIG_SMB_FS is not set |
| @@ -1463,6 +1517,7 @@ CONFIG_BITREVERSE=y | |||
| 1463 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1517 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1464 | CONFIG_CRC_CCITT=m | 1518 | CONFIG_CRC_CCITT=m |
| 1465 | # CONFIG_CRC16 is not set | 1519 | # CONFIG_CRC16 is not set |
| 1520 | CONFIG_CRC_T10DIF=y | ||
| 1466 | CONFIG_CRC_ITU_T=m | 1521 | CONFIG_CRC_ITU_T=m |
| 1467 | CONFIG_CRC32=y | 1522 | CONFIG_CRC32=y |
| 1468 | # CONFIG_CRC7 is not set | 1523 | # CONFIG_CRC7 is not set |
| @@ -1495,8 +1550,10 @@ CONFIG_DEBUG_FS=y | |||
| 1495 | CONFIG_DEBUG_KERNEL=y | 1550 | CONFIG_DEBUG_KERNEL=y |
| 1496 | # CONFIG_DEBUG_SHIRQ is not set | 1551 | # CONFIG_DEBUG_SHIRQ is not set |
| 1497 | CONFIG_DETECT_SOFTLOCKUP=y | 1552 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1553 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1554 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1498 | CONFIG_SCHED_DEBUG=y | 1555 | CONFIG_SCHED_DEBUG=y |
| 1499 | # CONFIG_SCHEDSTATS is not set | 1556 | CONFIG_SCHEDSTATS=y |
| 1500 | # CONFIG_TIMER_STATS is not set | 1557 | # CONFIG_TIMER_STATS is not set |
| 1501 | # CONFIG_DEBUG_OBJECTS is not set | 1558 | # CONFIG_DEBUG_OBJECTS is not set |
| 1502 | # CONFIG_SLUB_DEBUG_ON is not set | 1559 | # CONFIG_SLUB_DEBUG_ON is not set |
| @@ -1508,30 +1565,49 @@ CONFIG_SCHED_DEBUG=y | |||
| 1508 | # CONFIG_DEBUG_LOCK_ALLOC is not set | 1565 | # CONFIG_DEBUG_LOCK_ALLOC is not set |
| 1509 | # CONFIG_PROVE_LOCKING is not set | 1566 | # CONFIG_PROVE_LOCKING is not set |
| 1510 | # CONFIG_LOCK_STAT is not set | 1567 | # CONFIG_LOCK_STAT is not set |
| 1568 | CONFIG_TRACE_IRQFLAGS=y | ||
| 1511 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1569 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
| 1512 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 1570 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
| 1571 | CONFIG_STACKTRACE=y | ||
| 1513 | # CONFIG_DEBUG_KOBJECT is not set | 1572 | # CONFIG_DEBUG_KOBJECT is not set |
| 1514 | CONFIG_DEBUG_BUGVERBOSE=y | 1573 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1515 | # CONFIG_DEBUG_INFO is not set | 1574 | # CONFIG_DEBUG_INFO is not set |
| 1516 | # CONFIG_DEBUG_VM is not set | 1575 | # CONFIG_DEBUG_VM is not set |
| 1517 | # CONFIG_DEBUG_WRITECOUNT is not set | 1576 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1577 | CONFIG_DEBUG_MEMORY_INIT=y | ||
| 1518 | # CONFIG_DEBUG_LIST is not set | 1578 | # CONFIG_DEBUG_LIST is not set |
| 1519 | # CONFIG_DEBUG_SG is not set | 1579 | # CONFIG_DEBUG_SG is not set |
| 1580 | CONFIG_FRAME_POINTER=y | ||
| 1520 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1581 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1521 | # CONFIG_RCU_TORTURE_TEST is not set | 1582 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1522 | # CONFIG_KPROBES_SANITY_TEST is not set | 1583 | # CONFIG_KPROBES_SANITY_TEST is not set |
| 1523 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1584 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1524 | # CONFIG_LKDTM is not set | 1585 | # CONFIG_LKDTM is not set |
| 1525 | # CONFIG_FAULT_INJECTION is not set | 1586 | # CONFIG_FAULT_INJECTION is not set |
| 1587 | CONFIG_LATENCYTOP=y | ||
| 1588 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1589 | CONFIG_HAVE_FTRACE=y | ||
| 1590 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1591 | CONFIG_TRACER_MAX_TRACE=y | ||
| 1592 | CONFIG_TRACING=y | ||
| 1593 | # CONFIG_FTRACE is not set | ||
| 1594 | CONFIG_IRQSOFF_TRACER=y | ||
| 1595 | CONFIG_SCHED_TRACER=y | ||
| 1596 | CONFIG_CONTEXT_SWITCH_TRACER=y | ||
| 1597 | # CONFIG_FTRACE_STARTUP_TEST is not set | ||
| 1526 | # CONFIG_SAMPLES is not set | 1598 | # CONFIG_SAMPLES is not set |
| 1599 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1600 | # CONFIG_KGDB is not set | ||
| 1527 | CONFIG_DEBUG_STACKOVERFLOW=y | 1601 | CONFIG_DEBUG_STACKOVERFLOW=y |
| 1528 | # CONFIG_DEBUG_STACK_USAGE is not set | 1602 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1529 | # CONFIG_DEBUG_PAGEALLOC is not set | 1603 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1530 | CONFIG_HCALL_STATS=y | 1604 | CONFIG_HCALL_STATS=y |
| 1531 | CONFIG_DEBUGGER=y | 1605 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1606 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1532 | CONFIG_XMON=y | 1607 | CONFIG_XMON=y |
| 1533 | CONFIG_XMON_DEFAULT=y | 1608 | CONFIG_XMON_DEFAULT=y |
| 1534 | CONFIG_XMON_DISASSEMBLY=y | 1609 | CONFIG_XMON_DISASSEMBLY=y |
| 1610 | CONFIG_DEBUGGER=y | ||
| 1535 | CONFIG_IRQSTACKS=y | 1611 | CONFIG_IRQSTACKS=y |
| 1536 | CONFIG_VIRQ_DEBUG=y | 1612 | CONFIG_VIRQ_DEBUG=y |
| 1537 | # CONFIG_BOOTX_TEXT is not set | 1613 | # CONFIG_BOOTX_TEXT is not set |
| @@ -1590,6 +1666,10 @@ CONFIG_CRYPTO_CRC32C=m | |||
| 1590 | CONFIG_CRYPTO_MD4=m | 1666 | CONFIG_CRYPTO_MD4=m |
| 1591 | CONFIG_CRYPTO_MD5=y | 1667 | CONFIG_CRYPTO_MD5=y |
| 1592 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1668 | CONFIG_CRYPTO_MICHAEL_MIC=m |
| 1669 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1670 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1671 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1672 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1593 | CONFIG_CRYPTO_SHA1=m | 1673 | CONFIG_CRYPTO_SHA1=m |
| 1594 | CONFIG_CRYPTO_SHA256=m | 1674 | CONFIG_CRYPTO_SHA256=m |
| 1595 | CONFIG_CRYPTO_SHA512=m | 1675 | CONFIG_CRYPTO_SHA512=m |
diff --git a/arch/powerpc/configs/sbc8641d_defconfig b/arch/powerpc/configs/sbc8641d_defconfig index 8227510b41a9..f545421f9857 100644 --- a/arch/powerpc/configs/sbc8641d_defconfig +++ b/arch/powerpc/configs/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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:19 2008 | 4 | # Thu Aug 21 00:52:15 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -33,6 +33,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 34 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 35 | CONFIG_STACKTRACE_SUPPORT=y |
| 36 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 37 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 38 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_GENERIC_LOCKBREAK=y | 39 | CONFIG_GENERIC_LOCKBREAK=y |
| @@ -92,7 +93,6 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 92 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 93 | CONFIG_EMBEDDED=y | 94 | CONFIG_EMBEDDED=y |
| 94 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 96 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
| 97 | # CONFIG_KALLSYMS_ALL is not set | 97 | # CONFIG_KALLSYMS_ALL is not set |
| 98 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 98 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -100,6 +100,7 @@ CONFIG_HOTPLUG=y | |||
| 100 | CONFIG_PRINTK=y | 100 | CONFIG_PRINTK=y |
| 101 | CONFIG_BUG=y | 101 | CONFIG_BUG=y |
| 102 | CONFIG_ELF_CORE=y | 102 | CONFIG_ELF_CORE=y |
| 103 | CONFIG_PCSPKR_PLATFORM=y | ||
| 103 | CONFIG_COMPAT_BRK=y | 104 | CONFIG_COMPAT_BRK=y |
| 104 | CONFIG_BASE_FULL=y | 105 | CONFIG_BASE_FULL=y |
| 105 | CONFIG_FUTEX=y | 106 | CONFIG_FUTEX=y |
| @@ -117,10 +118,16 @@ CONFIG_SLAB=y | |||
| 117 | # CONFIG_MARKERS is not set | 118 | # 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 |
| 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 122 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 120 | CONFIG_HAVE_KPROBES=y | 123 | CONFIG_HAVE_KPROBES=y |
| 121 | CONFIG_HAVE_KRETPROBES=y | 124 | CONFIG_HAVE_KRETPROBES=y |
| 125 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 122 | # CONFIG_HAVE_DMA_ATTRS is not set | 126 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 127 | CONFIG_USE_GENERIC_SMP_HELPERS=y | ||
| 128 | # CONFIG_HAVE_CLK is not set | ||
| 123 | CONFIG_PROC_PAGE_MONITOR=y | 129 | CONFIG_PROC_PAGE_MONITOR=y |
| 130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 124 | CONFIG_SLABINFO=y | 131 | CONFIG_SLABINFO=y |
| 125 | CONFIG_RT_MUTEXES=y | 132 | CONFIG_RT_MUTEXES=y |
| 126 | # CONFIG_TINY_SHMEM is not set | 133 | # CONFIG_TINY_SHMEM is not set |
| @@ -138,6 +145,7 @@ CONFIG_BLOCK=y | |||
| 138 | # CONFIG_BLK_DEV_IO_TRACE is not set | 145 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 139 | # CONFIG_LSF is not set | 146 | # CONFIG_LSF is not set |
| 140 | # CONFIG_BLK_DEV_BSG is not set | 147 | # CONFIG_BLK_DEV_BSG is not set |
| 148 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 141 | 149 | ||
| 142 | # | 150 | # |
| 143 | # IO Schedulers | 151 | # IO Schedulers |
| @@ -156,30 +164,40 @@ CONFIG_CLASSIC_RCU=y | |||
| 156 | # | 164 | # |
| 157 | # Platform support | 165 | # Platform support |
| 158 | # | 166 | # |
| 159 | # CONFIG_PPC_MULTIPLATFORM is not set | 167 | CONFIG_PPC_MULTIPLATFORM=y |
| 160 | # CONFIG_PPC_82xx is not set | 168 | CONFIG_CLASSIC32=y |
| 161 | # CONFIG_PPC_83xx is not set | 169 | CONFIG_PPC_CHRP=y |
| 162 | CONFIG_PPC_86xx=y | 170 | # CONFIG_MPC5121_ADS is not set |
| 163 | # CONFIG_PPC_MPC512x is not set | 171 | # CONFIG_MPC5121_GENERIC is not set |
| 164 | # CONFIG_PPC_MPC5121 is not set | 172 | # CONFIG_PPC_MPC52xx is not set |
| 173 | CONFIG_PPC_PMAC=y | ||
| 165 | # CONFIG_PPC_CELL is not set | 174 | # CONFIG_PPC_CELL is not set |
| 166 | # CONFIG_PPC_CELL_NATIVE is not set | 175 | # CONFIG_PPC_CELL_NATIVE is not set |
| 176 | # CONFIG_PPC_82xx is not set | ||
| 167 | # CONFIG_PQ2ADS is not set | 177 | # CONFIG_PQ2ADS is not set |
| 178 | # CONFIG_PPC_83xx is not set | ||
| 179 | CONFIG_PPC_86xx=y | ||
| 168 | # CONFIG_MPC8641_HPCN is not set | 180 | # CONFIG_MPC8641_HPCN is not set |
| 169 | CONFIG_SBC8641D=y | 181 | CONFIG_SBC8641D=y |
| 170 | # CONFIG_MPC8610_HPCD is not set | 182 | # CONFIG_MPC8610_HPCD is not set |
| 171 | CONFIG_MPC8641=y | 183 | CONFIG_MPC8641=y |
| 184 | CONFIG_PPC_NATIVE=y | ||
| 185 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
| 172 | # CONFIG_IPIC is not set | 186 | # CONFIG_IPIC is not set |
| 173 | CONFIG_MPIC=y | 187 | CONFIG_MPIC=y |
| 174 | # CONFIG_MPIC_WEIRD is not set | 188 | # CONFIG_MPIC_WEIRD is not set |
| 175 | # CONFIG_PPC_I8259 is not set | 189 | CONFIG_PPC_I8259=y |
| 176 | # CONFIG_PPC_RTAS is not set | 190 | CONFIG_PPC_RTAS=y |
| 191 | # CONFIG_RTAS_ERROR_LOGGING is not set | ||
| 192 | CONFIG_RTAS_PROC=y | ||
| 177 | # CONFIG_MMIO_NVRAM is not set | 193 | # CONFIG_MMIO_NVRAM is not set |
| 178 | # CONFIG_PPC_MPC106 is not set | 194 | CONFIG_PPC_MPC106=y |
| 179 | # CONFIG_PPC_970_NAP is not set | 195 | # CONFIG_PPC_970_NAP is not set |
| 180 | # CONFIG_PPC_INDIRECT_IO is not set | 196 | # CONFIG_PPC_INDIRECT_IO is not set |
| 181 | # CONFIG_GENERIC_IOMAP is not set | 197 | # CONFIG_GENERIC_IOMAP is not set |
| 182 | # CONFIG_CPU_FREQ is not set | 198 | # CONFIG_CPU_FREQ is not set |
| 199 | # CONFIG_PPC601_SYNC_FIX is not set | ||
| 200 | # CONFIG_TAU is not set | ||
| 183 | # CONFIG_FSL_ULI1575 is not set | 201 | # CONFIG_FSL_ULI1575 is not set |
| 184 | 202 | ||
| 185 | # | 203 | # |
| @@ -195,7 +213,7 @@ CONFIG_HZ_250=y | |||
| 195 | # CONFIG_HZ_300 is not set | 213 | # CONFIG_HZ_300 is not set |
| 196 | # CONFIG_HZ_1000 is not set | 214 | # CONFIG_HZ_1000 is not set |
| 197 | CONFIG_HZ=250 | 215 | CONFIG_HZ=250 |
| 198 | # CONFIG_SCHED_HRTICK is not set | 216 | CONFIG_SCHED_HRTICK=y |
| 199 | # CONFIG_PREEMPT_NONE is not set | 217 | # CONFIG_PREEMPT_NONE is not set |
| 200 | # CONFIG_PREEMPT_VOLUNTARY is not set | 218 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 201 | CONFIG_PREEMPT=y | 219 | CONFIG_PREEMPT=y |
| @@ -203,9 +221,11 @@ CONFIG_PREEMPT=y | |||
| 203 | CONFIG_BINFMT_ELF=y | 221 | CONFIG_BINFMT_ELF=y |
| 204 | CONFIG_BINFMT_MISC=m | 222 | CONFIG_BINFMT_MISC=m |
| 205 | # CONFIG_IOMMU_HELPER is not set | 223 | # CONFIG_IOMMU_HELPER is not set |
| 224 | # CONFIG_HOTPLUG_CPU is not set | ||
| 206 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 225 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 207 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 226 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 208 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 227 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 228 | # CONFIG_KEXEC is not set | ||
| 209 | CONFIG_IRQ_ALL_CPUS=y | 229 | CONFIG_IRQ_ALL_CPUS=y |
| 210 | CONFIG_ARCH_FLATMEM_ENABLE=y | 230 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 211 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 231 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| @@ -219,6 +239,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 239 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 220 | CONFIG_PAGEFLAGS_EXTENDED=y | 240 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 241 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 242 | CONFIG_MIGRATION=y | ||
| 222 | # CONFIG_RESOURCES_64BIT is not set | 243 | # CONFIG_RESOURCES_64BIT is not set |
| 223 | CONFIG_ZONE_DMA_FLAG=1 | 244 | CONFIG_ZONE_DMA_FLAG=1 |
| 224 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
| @@ -226,6 +247,7 @@ CONFIG_VIRT_TO_BUS=y | |||
| 226 | CONFIG_FORCE_MAX_ZONEORDER=11 | 247 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 227 | # CONFIG_PROC_DEVICETREE is not set | 248 | # CONFIG_PROC_DEVICETREE is not set |
| 228 | # CONFIG_CMDLINE_BOOL is not set | 249 | # CONFIG_CMDLINE_BOOL is not set |
| 250 | CONFIG_EXTRA_TARGETS="" | ||
| 229 | # CONFIG_PM is not set | 251 | # CONFIG_PM is not set |
| 230 | CONFIG_SECCOMP=y | 252 | CONFIG_SECCOMP=y |
| 231 | CONFIG_ISA_DMA_API=y | 253 | CONFIG_ISA_DMA_API=y |
| @@ -233,11 +255,13 @@ CONFIG_ISA_DMA_API=y | |||
| 233 | # | 255 | # |
| 234 | # Bus options | 256 | # Bus options |
| 235 | # | 257 | # |
| 258 | # CONFIG_ISA is not set | ||
| 236 | CONFIG_ZONE_DMA=y | 259 | CONFIG_ZONE_DMA=y |
| 237 | CONFIG_GENERIC_ISA_DMA=y | 260 | CONFIG_GENERIC_ISA_DMA=y |
| 238 | CONFIG_PPC_INDIRECT_PCI=y | 261 | CONFIG_PPC_INDIRECT_PCI=y |
| 239 | CONFIG_FSL_SOC=y | 262 | CONFIG_FSL_SOC=y |
| 240 | CONFIG_FSL_PCI=y | 263 | CONFIG_FSL_PCI=y |
| 264 | CONFIG_PPC_PCI_CHOICE=y | ||
| 241 | CONFIG_PCI=y | 265 | CONFIG_PCI=y |
| 242 | CONFIG_PCI_DOMAINS=y | 266 | CONFIG_PCI_DOMAINS=y |
| 243 | CONFIG_PCI_SYSCALL=y | 267 | CONFIG_PCI_SYSCALL=y |
| @@ -265,10 +289,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 265 | CONFIG_KERNEL_START=0xc0000000 | 289 | CONFIG_KERNEL_START=0xc0000000 |
| 266 | CONFIG_PHYSICAL_START=0x00000000 | 290 | CONFIG_PHYSICAL_START=0x00000000 |
| 267 | CONFIG_TASK_SIZE=0xc0000000 | 291 | CONFIG_TASK_SIZE=0xc0000000 |
| 268 | |||
| 269 | # | ||
| 270 | # Networking | ||
| 271 | # | ||
| 272 | CONFIG_NET=y | 292 | CONFIG_NET=y |
| 273 | 293 | ||
| 274 | # | 294 | # |
| @@ -282,6 +302,7 @@ CONFIG_XFRM_USER=m | |||
| 282 | # CONFIG_XFRM_SUB_POLICY is not set | 302 | # CONFIG_XFRM_SUB_POLICY is not set |
| 283 | # CONFIG_XFRM_MIGRATE is not set | 303 | # CONFIG_XFRM_MIGRATE is not set |
| 284 | # CONFIG_XFRM_STATISTICS is not set | 304 | # CONFIG_XFRM_STATISTICS is not set |
| 305 | CONFIG_XFRM_IPCOMP=m | ||
| 285 | CONFIG_NET_KEY=m | 306 | CONFIG_NET_KEY=m |
| 286 | # CONFIG_NET_KEY_MIGRATE is not set | 307 | # CONFIG_NET_KEY_MIGRATE is not set |
| 287 | CONFIG_INET=y | 308 | CONFIG_INET=y |
| @@ -406,6 +427,7 @@ CONFIG_IP_NF_MANGLE=m | |||
| 406 | CONFIG_IP_NF_TARGET_ECN=m | 427 | CONFIG_IP_NF_TARGET_ECN=m |
| 407 | # CONFIG_IP_NF_TARGET_TTL is not set | 428 | # CONFIG_IP_NF_TARGET_TTL is not set |
| 408 | CONFIG_IP_NF_RAW=m | 429 | CONFIG_IP_NF_RAW=m |
| 430 | # CONFIG_IP_NF_SECURITY is not set | ||
| 409 | CONFIG_IP_NF_ARPTABLES=m | 431 | CONFIG_IP_NF_ARPTABLES=m |
| 410 | CONFIG_IP_NF_ARPFILTER=m | 432 | CONFIG_IP_NF_ARPFILTER=m |
| 411 | CONFIG_IP_NF_ARP_MANGLE=m | 433 | CONFIG_IP_NF_ARP_MANGLE=m |
| @@ -429,6 +451,7 @@ CONFIG_IP6_NF_TARGET_LOG=m | |||
| 429 | CONFIG_IP6_NF_MANGLE=m | 451 | CONFIG_IP6_NF_MANGLE=m |
| 430 | # CONFIG_IP6_NF_TARGET_HL is not set | 452 | # CONFIG_IP6_NF_TARGET_HL is not set |
| 431 | CONFIG_IP6_NF_RAW=m | 453 | CONFIG_IP6_NF_RAW=m |
| 454 | # CONFIG_IP6_NF_SECURITY is not set | ||
| 432 | 455 | ||
| 433 | # | 456 | # |
| 434 | # Bridge: Netfilter Configuration | 457 | # Bridge: Netfilter Configuration |
| @@ -451,8 +474,10 @@ CONFIG_ATM_LANE=m | |||
| 451 | CONFIG_ATM_MPOA=m | 474 | CONFIG_ATM_MPOA=m |
| 452 | CONFIG_ATM_BR2684=m | 475 | CONFIG_ATM_BR2684=m |
| 453 | # CONFIG_ATM_BR2684_IPFILTER is not set | 476 | # CONFIG_ATM_BR2684_IPFILTER is not set |
| 477 | CONFIG_STP=m | ||
| 454 | CONFIG_BRIDGE=m | 478 | CONFIG_BRIDGE=m |
| 455 | CONFIG_VLAN_8021Q=m | 479 | CONFIG_VLAN_8021Q=m |
| 480 | # CONFIG_VLAN_8021Q_GVRP is not set | ||
| 456 | # CONFIG_DECNET is not set | 481 | # CONFIG_DECNET is not set |
| 457 | CONFIG_LLC=m | 482 | CONFIG_LLC=m |
| 458 | # CONFIG_LLC2 is not set | 483 | # CONFIG_LLC2 is not set |
| @@ -472,7 +497,6 @@ CONFIG_NET_SCH_HTB=m | |||
| 472 | CONFIG_NET_SCH_HFSC=m | 497 | CONFIG_NET_SCH_HFSC=m |
| 473 | CONFIG_NET_SCH_ATM=m | 498 | CONFIG_NET_SCH_ATM=m |
| 474 | CONFIG_NET_SCH_PRIO=m | 499 | CONFIG_NET_SCH_PRIO=m |
| 475 | # CONFIG_NET_SCH_RR is not set | ||
| 476 | CONFIG_NET_SCH_RED=m | 500 | CONFIG_NET_SCH_RED=m |
| 477 | CONFIG_NET_SCH_SFQ=m | 501 | CONFIG_NET_SCH_SFQ=m |
| 478 | CONFIG_NET_SCH_TEQL=m | 502 | CONFIG_NET_SCH_TEQL=m |
| @@ -625,6 +649,7 @@ CONFIG_OF_I2C=y | |||
| 625 | # CONFIG_PARPORT is not set | 649 | # CONFIG_PARPORT is not set |
| 626 | CONFIG_BLK_DEV=y | 650 | CONFIG_BLK_DEV=y |
| 627 | # CONFIG_BLK_DEV_FD is not set | 651 | # CONFIG_BLK_DEV_FD is not set |
| 652 | # CONFIG_MAC_FLOPPY is not set | ||
| 628 | # CONFIG_BLK_CPQ_DA is not set | 653 | # CONFIG_BLK_CPQ_DA is not set |
| 629 | # CONFIG_BLK_CPQ_CISS_DA is not set | 654 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 630 | # CONFIG_BLK_DEV_DAC960 is not set | 655 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -640,12 +665,14 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 640 | # CONFIG_BLK_DEV_XIP is not set | 665 | # CONFIG_BLK_DEV_XIP is not set |
| 641 | # CONFIG_CDROM_PKTCDVD is not set | 666 | # CONFIG_CDROM_PKTCDVD is not set |
| 642 | # CONFIG_ATA_OVER_ETH is not set | 667 | # CONFIG_ATA_OVER_ETH is not set |
| 668 | # CONFIG_BLK_DEV_HD is not set | ||
| 643 | CONFIG_MISC_DEVICES=y | 669 | CONFIG_MISC_DEVICES=y |
| 644 | # CONFIG_PHANTOM is not set | 670 | # CONFIG_PHANTOM is not set |
| 645 | # CONFIG_EEPROM_93CX6 is not set | 671 | # CONFIG_EEPROM_93CX6 is not set |
| 646 | # CONFIG_SGI_IOC4 is not set | 672 | # CONFIG_SGI_IOC4 is not set |
| 647 | # CONFIG_TIFM_CORE is not set | 673 | # CONFIG_TIFM_CORE is not set |
| 648 | # CONFIG_ENCLOSURE_SERVICES is not set | 674 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 675 | # CONFIG_HP_ILO is not set | ||
| 649 | CONFIG_HAVE_IDE=y | 676 | CONFIG_HAVE_IDE=y |
| 650 | # CONFIG_IDE is not set | 677 | # CONFIG_IDE is not set |
| 651 | 678 | ||
| @@ -680,12 +707,15 @@ CONFIG_DM_ZERO=y | |||
| 680 | # | 707 | # |
| 681 | # IEEE 1394 (FireWire) support | 708 | # IEEE 1394 (FireWire) support |
| 682 | # | 709 | # |
| 710 | |||
| 711 | # | ||
| 712 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 713 | # | ||
| 683 | # CONFIG_FIREWIRE is not set | 714 | # CONFIG_FIREWIRE is not set |
| 684 | # CONFIG_IEEE1394 is not set | 715 | # CONFIG_IEEE1394 is not set |
| 685 | # CONFIG_I2O is not set | 716 | # CONFIG_I2O is not set |
| 686 | # CONFIG_MACINTOSH_DRIVERS is not set | 717 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 687 | CONFIG_NETDEVICES=y | 718 | CONFIG_NETDEVICES=y |
| 688 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 689 | CONFIG_DUMMY=m | 719 | CONFIG_DUMMY=m |
| 690 | CONFIG_BONDING=m | 720 | CONFIG_BONDING=m |
| 691 | # CONFIG_MACVLAN is not set | 721 | # CONFIG_MACVLAN is not set |
| @@ -712,6 +742,8 @@ CONFIG_BROADCOM_PHY=y | |||
| 712 | # CONFIG_MDIO_BITBANG is not set | 742 | # CONFIG_MDIO_BITBANG is not set |
| 713 | CONFIG_NET_ETHERNET=y | 743 | CONFIG_NET_ETHERNET=y |
| 714 | CONFIG_MII=y | 744 | CONFIG_MII=y |
| 745 | # CONFIG_MACE is not set | ||
| 746 | # CONFIG_BMAC is not set | ||
| 715 | # CONFIG_HAPPYMEAL is not set | 747 | # CONFIG_HAPPYMEAL is not set |
| 716 | # CONFIG_SUNGEM is not set | 748 | # CONFIG_SUNGEM is not set |
| 717 | # CONFIG_CASSINI is not set | 749 | # CONFIG_CASSINI is not set |
| @@ -729,7 +761,6 @@ CONFIG_NETDEV_1000=y | |||
| 729 | # CONFIG_DL2K is not set | 761 | # CONFIG_DL2K is not set |
| 730 | # CONFIG_E1000 is not set | 762 | # CONFIG_E1000 is not set |
| 731 | # CONFIG_E1000E is not set | 763 | # CONFIG_E1000E is not set |
| 732 | # CONFIG_E1000E_ENABLED is not set | ||
| 733 | # CONFIG_IP1000 is not set | 764 | # CONFIG_IP1000 is not set |
| 734 | # CONFIG_IGB is not set | 765 | # CONFIG_IGB is not set |
| 735 | # CONFIG_NS83820 is not set | 766 | # CONFIG_NS83820 is not set |
| @@ -743,9 +774,10 @@ CONFIG_NETDEV_1000=y | |||
| 743 | # CONFIG_TIGON3 is not set | 774 | # CONFIG_TIGON3 is not set |
| 744 | # CONFIG_BNX2 is not set | 775 | # CONFIG_BNX2 is not set |
| 745 | CONFIG_GIANFAR=y | 776 | CONFIG_GIANFAR=y |
| 746 | # CONFIG_GFAR_NAPI is not set | 777 | # CONFIG_MV643XX_ETH is not set |
| 747 | # CONFIG_QLA3XXX is not set | 778 | # CONFIG_QLA3XXX is not set |
| 748 | # CONFIG_ATL1 is not set | 779 | # CONFIG_ATL1 is not set |
| 780 | # CONFIG_ATL1E is not set | ||
| 749 | # CONFIG_NETDEV_10000 is not set | 781 | # CONFIG_NETDEV_10000 is not set |
| 750 | # CONFIG_TR is not set | 782 | # CONFIG_TR is not set |
| 751 | 783 | ||
| @@ -768,7 +800,7 @@ CONFIG_ATM_DRIVERS=y | |||
| 768 | # CONFIG_ATM_AMBASSADOR is not set | 800 | # CONFIG_ATM_AMBASSADOR is not set |
| 769 | # CONFIG_ATM_HORIZON is not set | 801 | # CONFIG_ATM_HORIZON is not set |
| 770 | # CONFIG_ATM_IA is not set | 802 | # CONFIG_ATM_IA is not set |
| 771 | # CONFIG_ATM_FORE200E_MAYBE is not set | 803 | # CONFIG_ATM_FORE200E is not set |
| 772 | # CONFIG_ATM_HE is not set | 804 | # CONFIG_ATM_HE is not set |
| 773 | # CONFIG_FDDI is not set | 805 | # CONFIG_FDDI is not set |
| 774 | # CONFIG_HIPPI is not set | 806 | # CONFIG_HIPPI is not set |
| @@ -834,6 +866,7 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | |||
| 834 | # Character devices | 866 | # Character devices |
| 835 | # | 867 | # |
| 836 | CONFIG_VT=y | 868 | CONFIG_VT=y |
| 869 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 837 | CONFIG_VT_CONSOLE=y | 870 | CONFIG_VT_CONSOLE=y |
| 838 | CONFIG_HW_CONSOLE=y | 871 | CONFIG_HW_CONSOLE=y |
| 839 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 872 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -857,11 +890,14 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | |||
| 857 | # CONFIG_SERIAL_UARTLITE is not set | 890 | # CONFIG_SERIAL_UARTLITE is not set |
| 858 | CONFIG_SERIAL_CORE=y | 891 | CONFIG_SERIAL_CORE=y |
| 859 | CONFIG_SERIAL_CORE_CONSOLE=y | 892 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 893 | # CONFIG_SERIAL_PMACZILOG is not set | ||
| 860 | # CONFIG_SERIAL_JSM is not set | 894 | # CONFIG_SERIAL_JSM is not set |
| 861 | # CONFIG_SERIAL_OF_PLATFORM is not set | 895 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 862 | CONFIG_UNIX98_PTYS=y | 896 | CONFIG_UNIX98_PTYS=y |
| 863 | CONFIG_LEGACY_PTYS=y | 897 | CONFIG_LEGACY_PTYS=y |
| 864 | CONFIG_LEGACY_PTY_COUNT=256 | 898 | CONFIG_LEGACY_PTY_COUNT=256 |
| 899 | # CONFIG_BRIQ_PANEL is not set | ||
| 900 | # CONFIG_HVC_RTAS is not set | ||
| 865 | # CONFIG_IPMI_HANDLER is not set | 901 | # CONFIG_IPMI_HANDLER is not set |
| 866 | CONFIG_HW_RANDOM=m | 902 | CONFIG_HW_RANDOM=m |
| 867 | # CONFIG_NVRAM is not set | 903 | # CONFIG_NVRAM is not set |
| @@ -874,42 +910,69 @@ CONFIG_DEVPORT=y | |||
| 874 | CONFIG_I2C=y | 910 | CONFIG_I2C=y |
| 875 | CONFIG_I2C_BOARDINFO=y | 911 | CONFIG_I2C_BOARDINFO=y |
| 876 | CONFIG_I2C_CHARDEV=y | 912 | CONFIG_I2C_CHARDEV=y |
| 913 | CONFIG_I2C_HELPER_AUTO=y | ||
| 877 | 914 | ||
| 878 | # | 915 | # |
| 879 | # I2C Hardware Bus support | 916 | # I2C Hardware Bus support |
| 880 | # | 917 | # |
| 918 | |||
| 919 | # | ||
| 920 | # PC SMBus host controller drivers | ||
| 921 | # | ||
| 881 | # CONFIG_I2C_ALI1535 is not set | 922 | # CONFIG_I2C_ALI1535 is not set |
| 882 | # CONFIG_I2C_ALI1563 is not set | 923 | # CONFIG_I2C_ALI1563 is not set |
| 883 | # CONFIG_I2C_ALI15X3 is not set | 924 | # CONFIG_I2C_ALI15X3 is not set |
| 884 | # CONFIG_I2C_AMD756 is not set | 925 | # CONFIG_I2C_AMD756 is not set |
| 885 | # CONFIG_I2C_AMD8111 is not set | 926 | # CONFIG_I2C_AMD8111 is not set |
| 886 | # CONFIG_I2C_I801 is not set | 927 | # CONFIG_I2C_I801 is not set |
| 887 | # CONFIG_I2C_I810 is not set | 928 | # CONFIG_I2C_ISCH is not set |
| 888 | # CONFIG_I2C_PIIX4 is not set | 929 | # CONFIG_I2C_PIIX4 is not set |
| 889 | CONFIG_I2C_MPC=y | ||
| 890 | # CONFIG_I2C_NFORCE2 is not set | 930 | # CONFIG_I2C_NFORCE2 is not set |
| 891 | # CONFIG_I2C_OCORES is not set | ||
| 892 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 893 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 894 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 895 | # CONFIG_I2C_SIMTEC is not set | ||
| 896 | # CONFIG_I2C_SIS5595 is not set | 931 | # CONFIG_I2C_SIS5595 is not set |
| 897 | # CONFIG_I2C_SIS630 is not set | 932 | # CONFIG_I2C_SIS630 is not set |
| 898 | # CONFIG_I2C_SIS96X is not set | 933 | # CONFIG_I2C_SIS96X is not set |
| 899 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 900 | # CONFIG_I2C_STUB is not set | ||
| 901 | # CONFIG_I2C_VIA is not set | 934 | # CONFIG_I2C_VIA is not set |
| 902 | # CONFIG_I2C_VIAPRO is not set | 935 | # CONFIG_I2C_VIAPRO is not set |
| 936 | |||
| 937 | # | ||
| 938 | # Mac SMBus host controller drivers | ||
| 939 | # | ||
| 940 | # CONFIG_I2C_HYDRA is not set | ||
| 941 | CONFIG_I2C_POWERMAC=y | ||
| 942 | |||
| 943 | # | ||
| 944 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 945 | # | ||
| 946 | CONFIG_I2C_MPC=y | ||
| 947 | # CONFIG_I2C_OCORES is not set | ||
| 948 | # CONFIG_I2C_SIMTEC is not set | ||
| 949 | |||
| 950 | # | ||
| 951 | # External I2C/SMBus adapter drivers | ||
| 952 | # | ||
| 953 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 954 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 955 | |||
| 956 | # | ||
| 957 | # Graphics adapter I2C/DDC channel drivers | ||
| 958 | # | ||
| 903 | # CONFIG_I2C_VOODOO3 is not set | 959 | # CONFIG_I2C_VOODOO3 is not set |
| 960 | |||
| 961 | # | ||
| 962 | # Other I2C/SMBus bus drivers | ||
| 963 | # | ||
| 904 | # CONFIG_I2C_PCA_PLATFORM is not set | 964 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 965 | # CONFIG_I2C_STUB is not set | ||
| 905 | 966 | ||
| 906 | # | 967 | # |
| 907 | # Miscellaneous I2C Chip support | 968 | # Miscellaneous I2C Chip support |
| 908 | # | 969 | # |
| 909 | # CONFIG_DS1682 is not set | 970 | # CONFIG_DS1682 is not set |
| 971 | # CONFIG_AT24 is not set | ||
| 910 | # CONFIG_SENSORS_EEPROM is not set | 972 | # CONFIG_SENSORS_EEPROM is not set |
| 911 | # CONFIG_SENSORS_PCF8574 is not set | 973 | # CONFIG_SENSORS_PCF8574 is not set |
| 912 | # CONFIG_PCF8575 is not set | 974 | # CONFIG_PCF8575 is not set |
| 975 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 913 | # CONFIG_SENSORS_PCF8591 is not set | 976 | # CONFIG_SENSORS_PCF8591 is not set |
| 914 | # CONFIG_SENSORS_MAX6875 is not set | 977 | # CONFIG_SENSORS_MAX6875 is not set |
| 915 | # CONFIG_SENSORS_TSL2550 is not set | 978 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -918,10 +981,13 @@ CONFIG_I2C_MPC=y | |||
| 918 | # CONFIG_I2C_DEBUG_BUS is not set | 981 | # CONFIG_I2C_DEBUG_BUS is not set |
| 919 | # CONFIG_I2C_DEBUG_CHIP is not set | 982 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 920 | # CONFIG_SPI is not set | 983 | # CONFIG_SPI is not set |
| 984 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 985 | # CONFIG_GPIOLIB is not set | ||
| 921 | # CONFIG_W1 is not set | 986 | # CONFIG_W1 is not set |
| 922 | # CONFIG_POWER_SUPPLY is not set | 987 | # CONFIG_POWER_SUPPLY is not set |
| 923 | CONFIG_HWMON=y | 988 | CONFIG_HWMON=y |
| 924 | # CONFIG_HWMON_VID is not set | 989 | # CONFIG_HWMON_VID is not set |
| 990 | # CONFIG_SENSORS_AD7414 is not set | ||
| 925 | # CONFIG_SENSORS_AD7418 is not set | 991 | # CONFIG_SENSORS_AD7418 is not set |
| 926 | # CONFIG_SENSORS_ADM1021 is not set | 992 | # CONFIG_SENSORS_ADM1021 is not set |
| 927 | # CONFIG_SENSORS_ADM1025 is not set | 993 | # CONFIG_SENSORS_ADM1025 is not set |
| @@ -931,6 +997,7 @@ CONFIG_HWMON=y | |||
| 931 | # CONFIG_SENSORS_ADM9240 is not set | 997 | # CONFIG_SENSORS_ADM9240 is not set |
| 932 | # CONFIG_SENSORS_ADT7470 is not set | 998 | # CONFIG_SENSORS_ADT7470 is not set |
| 933 | # CONFIG_SENSORS_ADT7473 is not set | 999 | # CONFIG_SENSORS_ADT7473 is not set |
| 1000 | # CONFIG_SENSORS_AMS is not set | ||
| 934 | # CONFIG_SENSORS_ATXP1 is not set | 1001 | # CONFIG_SENSORS_ATXP1 is not set |
| 935 | # CONFIG_SENSORS_DS1621 is not set | 1002 | # CONFIG_SENSORS_DS1621 is not set |
| 936 | # CONFIG_SENSORS_I5K_AMB is not set | 1003 | # CONFIG_SENSORS_I5K_AMB is not set |
| @@ -975,6 +1042,7 @@ CONFIG_HWMON=y | |||
| 975 | # CONFIG_SENSORS_W83627EHF is not set | 1042 | # CONFIG_SENSORS_W83627EHF is not set |
| 976 | # CONFIG_HWMON_DEBUG_CHIP is not set | 1043 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 977 | # CONFIG_THERMAL is not set | 1044 | # CONFIG_THERMAL is not set |
| 1045 | # CONFIG_THERMAL_HWMON is not set | ||
| 978 | CONFIG_WATCHDOG=y | 1046 | CONFIG_WATCHDOG=y |
| 979 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 1047 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
| 980 | 1048 | ||
| @@ -982,6 +1050,9 @@ CONFIG_WATCHDOG=y | |||
| 982 | # Watchdog Device Drivers | 1050 | # Watchdog Device Drivers |
| 983 | # | 1051 | # |
| 984 | CONFIG_SOFT_WATCHDOG=m | 1052 | CONFIG_SOFT_WATCHDOG=m |
| 1053 | # CONFIG_ALIM7101_WDT is not set | ||
| 1054 | # CONFIG_8xxx_WDT is not set | ||
| 1055 | # CONFIG_WATCHDOG_RTAS is not set | ||
| 985 | 1056 | ||
| 986 | # | 1057 | # |
| 987 | # PCI-based Watchdog Cards | 1058 | # PCI-based Watchdog Cards |
| @@ -998,8 +1069,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 998 | # | 1069 | # |
| 999 | # Multifunction device drivers | 1070 | # Multifunction device drivers |
| 1000 | # | 1071 | # |
| 1072 | # CONFIG_MFD_CORE is not set | ||
| 1001 | # CONFIG_MFD_SM501 is not set | 1073 | # CONFIG_MFD_SM501 is not set |
| 1002 | # CONFIG_HTC_PASIC3 is not set | 1074 | # CONFIG_HTC_PASIC3 is not set |
| 1075 | # CONFIG_MFD_TMIO is not set | ||
| 1003 | 1076 | ||
| 1004 | # | 1077 | # |
| 1005 | # Multimedia devices | 1078 | # Multimedia devices |
| @@ -1038,10 +1111,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=m | |||
| 1038 | CONFIG_VGA_CONSOLE=y | 1111 | CONFIG_VGA_CONSOLE=y |
| 1039 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | 1112 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set |
| 1040 | CONFIG_DUMMY_CONSOLE=y | 1113 | CONFIG_DUMMY_CONSOLE=y |
| 1041 | |||
| 1042 | # | ||
| 1043 | # Sound | ||
| 1044 | # | ||
| 1045 | # CONFIG_SOUND is not set | 1114 | # CONFIG_SOUND is not set |
| 1046 | CONFIG_HID_SUPPORT=y | 1115 | CONFIG_HID_SUPPORT=y |
| 1047 | CONFIG_HID=y | 1116 | CONFIG_HID=y |
| @@ -1056,6 +1125,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1056 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1125 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1057 | 1126 | ||
| 1058 | # | 1127 | # |
| 1128 | # Enable Host or Gadget support to see Inventra options | ||
| 1129 | # | ||
| 1130 | |||
| 1131 | # | ||
| 1059 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1132 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 1060 | # | 1133 | # |
| 1061 | # CONFIG_USB_GADGET is not set | 1134 | # CONFIG_USB_GADGET is not set |
| @@ -1096,6 +1169,7 @@ CONFIG_FS_POSIX_ACL=y | |||
| 1096 | # CONFIG_XFS_FS is not set | 1169 | # CONFIG_XFS_FS is not set |
| 1097 | CONFIG_OCFS2_FS=m | 1170 | CONFIG_OCFS2_FS=m |
| 1098 | CONFIG_OCFS2_FS_O2CB=m | 1171 | CONFIG_OCFS2_FS_O2CB=m |
| 1172 | CONFIG_OCFS2_FS_STATS=y | ||
| 1099 | CONFIG_OCFS2_DEBUG_MASKLOG=y | 1173 | CONFIG_OCFS2_DEBUG_MASKLOG=y |
| 1100 | # CONFIG_OCFS2_DEBUG_FS is not set | 1174 | # CONFIG_OCFS2_DEBUG_FS is not set |
| 1101 | CONFIG_DNOTIFY=y | 1175 | CONFIG_DNOTIFY=y |
| @@ -1145,6 +1219,7 @@ CONFIG_CONFIGFS_FS=m | |||
| 1145 | # CONFIG_CRAMFS is not set | 1219 | # CONFIG_CRAMFS is not set |
| 1146 | # CONFIG_VXFS_FS is not set | 1220 | # CONFIG_VXFS_FS is not set |
| 1147 | CONFIG_MINIX_FS=m | 1221 | CONFIG_MINIX_FS=m |
| 1222 | # CONFIG_OMFS_FS is not set | ||
| 1148 | # CONFIG_HPFS_FS is not set | 1223 | # CONFIG_HPFS_FS is not set |
| 1149 | # CONFIG_QNX4FS_FS is not set | 1224 | # CONFIG_QNX4FS_FS is not set |
| 1150 | CONFIG_ROMFS_FS=m | 1225 | CONFIG_ROMFS_FS=m |
| @@ -1155,14 +1230,13 @@ CONFIG_NFS_FS=y | |||
| 1155 | CONFIG_NFS_V3=y | 1230 | CONFIG_NFS_V3=y |
| 1156 | # CONFIG_NFS_V3_ACL is not set | 1231 | # CONFIG_NFS_V3_ACL is not set |
| 1157 | CONFIG_NFS_V4=y | 1232 | CONFIG_NFS_V4=y |
| 1158 | # CONFIG_NFSD is not set | ||
| 1159 | CONFIG_ROOT_NFS=y | 1233 | CONFIG_ROOT_NFS=y |
| 1234 | # CONFIG_NFSD is not set | ||
| 1160 | CONFIG_LOCKD=y | 1235 | CONFIG_LOCKD=y |
| 1161 | CONFIG_LOCKD_V4=y | 1236 | CONFIG_LOCKD_V4=y |
| 1162 | CONFIG_NFS_COMMON=y | 1237 | CONFIG_NFS_COMMON=y |
| 1163 | CONFIG_SUNRPC=y | 1238 | CONFIG_SUNRPC=y |
| 1164 | CONFIG_SUNRPC_GSS=y | 1239 | CONFIG_SUNRPC_GSS=y |
| 1165 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1166 | CONFIG_RPCSEC_GSS_KRB5=y | 1240 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1167 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1241 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1168 | CONFIG_SMB_FS=m | 1242 | CONFIG_SMB_FS=m |
| @@ -1183,6 +1257,7 @@ CONFIG_CIFS_POSIX=y | |||
| 1183 | # Partition Types | 1257 | # Partition Types |
| 1184 | # | 1258 | # |
| 1185 | # CONFIG_PARTITION_ADVANCED is not set | 1259 | # CONFIG_PARTITION_ADVANCED is not set |
| 1260 | CONFIG_MAC_PARTITION=y | ||
| 1186 | CONFIG_MSDOS_PARTITION=y | 1261 | CONFIG_MSDOS_PARTITION=y |
| 1187 | CONFIG_NLS=m | 1262 | CONFIG_NLS=m |
| 1188 | CONFIG_NLS_DEFAULT="iso8859-1" | 1263 | CONFIG_NLS_DEFAULT="iso8859-1" |
| @@ -1233,6 +1308,7 @@ CONFIG_BITREVERSE=y | |||
| 1233 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1308 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1234 | CONFIG_CRC_CCITT=m | 1309 | CONFIG_CRC_CCITT=m |
| 1235 | # CONFIG_CRC16 is not set | 1310 | # CONFIG_CRC16 is not set |
| 1311 | # CONFIG_CRC_T10DIF is not set | ||
| 1236 | # CONFIG_CRC_ITU_T is not set | 1312 | # CONFIG_CRC_ITU_T is not set |
| 1237 | CONFIG_CRC32=y | 1313 | CONFIG_CRC32=y |
| 1238 | # CONFIG_CRC7 is not set | 1314 | # CONFIG_CRC7 is not set |
| @@ -1259,6 +1335,8 @@ CONFIG_DEBUG_FS=y | |||
| 1259 | CONFIG_DEBUG_KERNEL=y | 1335 | CONFIG_DEBUG_KERNEL=y |
| 1260 | # CONFIG_DEBUG_SHIRQ is not set | 1336 | # CONFIG_DEBUG_SHIRQ is not set |
| 1261 | CONFIG_DETECT_SOFTLOCKUP=y | 1337 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1338 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
| 1339 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
| 1262 | CONFIG_SCHED_DEBUG=y | 1340 | CONFIG_SCHED_DEBUG=y |
| 1263 | # CONFIG_SCHEDSTATS is not set | 1341 | # CONFIG_SCHEDSTATS is not set |
| 1264 | # CONFIG_TIMER_STATS is not set | 1342 | # CONFIG_TIMER_STATS is not set |
| @@ -1275,21 +1353,34 @@ CONFIG_SCHED_DEBUG=y | |||
| 1275 | CONFIG_DEBUG_INFO=y | 1353 | CONFIG_DEBUG_INFO=y |
| 1276 | # CONFIG_DEBUG_VM is not set | 1354 | # CONFIG_DEBUG_VM is not set |
| 1277 | # CONFIG_DEBUG_WRITECOUNT is not set | 1355 | # CONFIG_DEBUG_WRITECOUNT is not set |
| 1356 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1278 | # CONFIG_DEBUG_LIST is not set | 1357 | # CONFIG_DEBUG_LIST is not set |
| 1279 | # CONFIG_DEBUG_SG is not set | 1358 | # CONFIG_DEBUG_SG is not set |
| 1280 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1359 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1281 | # CONFIG_RCU_TORTURE_TEST is not set | 1360 | # CONFIG_RCU_TORTURE_TEST is not set |
| 1282 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1361 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1283 | # CONFIG_FAULT_INJECTION is not set | 1362 | # CONFIG_FAULT_INJECTION is not set |
| 1363 | # CONFIG_LATENCYTOP is not set | ||
| 1364 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1365 | CONFIG_HAVE_FTRACE=y | ||
| 1366 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1367 | # CONFIG_FTRACE is not set | ||
| 1368 | # CONFIG_PREEMPT_TRACER is not set | ||
| 1369 | # CONFIG_SCHED_TRACER is not set | ||
| 1370 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1284 | # CONFIG_SAMPLES is not set | 1371 | # CONFIG_SAMPLES is not set |
| 1372 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1373 | # CONFIG_KGDB is not set | ||
| 1285 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1374 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1286 | # CONFIG_DEBUG_STACK_USAGE is not set | 1375 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1287 | # CONFIG_DEBUG_PAGEALLOC is not set | 1376 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1288 | CONFIG_DEBUGGER=y | 1377 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1378 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
| 1289 | # CONFIG_XMON is not set | 1379 | # CONFIG_XMON is not set |
| 1290 | # CONFIG_IRQSTACKS is not set | 1380 | # CONFIG_IRQSTACKS is not set |
| 1291 | # CONFIG_VIRQ_DEBUG is not set | 1381 | # CONFIG_VIRQ_DEBUG is not set |
| 1292 | # CONFIG_BDI_SWITCH is not set | 1382 | # CONFIG_BDI_SWITCH is not set |
| 1383 | # CONFIG_BOOTX_TEXT is not set | ||
| 1293 | # CONFIG_PPC_EARLY_DEBUG is not set | 1384 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1294 | 1385 | ||
| 1295 | # | 1386 | # |
| @@ -1299,7 +1390,6 @@ CONFIG_DEBUGGER=y | |||
| 1299 | CONFIG_SECURITY=y | 1390 | CONFIG_SECURITY=y |
| 1300 | CONFIG_SECURITY_NETWORK=y | 1391 | CONFIG_SECURITY_NETWORK=y |
| 1301 | # CONFIG_SECURITY_NETWORK_XFRM is not set | 1392 | # CONFIG_SECURITY_NETWORK_XFRM is not set |
| 1302 | CONFIG_SECURITY_CAPABILITIES=y | ||
| 1303 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1393 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1304 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1394 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
| 1305 | CONFIG_CRYPTO=y | 1395 | CONFIG_CRYPTO=y |
| @@ -1349,6 +1439,10 @@ CONFIG_CRYPTO_CRC32C=m | |||
| 1349 | CONFIG_CRYPTO_MD4=m | 1439 | CONFIG_CRYPTO_MD4=m |
| 1350 | CONFIG_CRYPTO_MD5=y | 1440 | CONFIG_CRYPTO_MD5=y |
| 1351 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1441 | CONFIG_CRYPTO_MICHAEL_MIC=m |
| 1442 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1443 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1444 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1445 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1352 | CONFIG_CRYPTO_SHA1=m | 1446 | CONFIG_CRYPTO_SHA1=m |
| 1353 | CONFIG_CRYPTO_SHA256=m | 1447 | CONFIG_CRYPTO_SHA256=m |
| 1354 | CONFIG_CRYPTO_SHA512=m | 1448 | CONFIG_CRYPTO_SHA512=m |
| @@ -1382,5 +1476,6 @@ CONFIG_CRYPTO_DEFLATE=m | |||
| 1382 | # CONFIG_CRYPTO_LZO is not set | 1476 | # CONFIG_CRYPTO_LZO is not set |
| 1383 | CONFIG_CRYPTO_HW=y | 1477 | CONFIG_CRYPTO_HW=y |
| 1384 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1478 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1479 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1385 | # CONFIG_PPC_CLOCK is not set | 1480 | # CONFIG_PPC_CLOCK is not set |
| 1386 | # CONFIG_VIRTUALIZATION is not set | 1481 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/storcenter_defconfig b/arch/powerpc/configs/storcenter_defconfig index 88f6aa8273be..4340cc1c5b6a 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.26-rc5 | 3 | # Linux kernel version: 2.6.27-rc4 |
| 4 | # Mon Jun 9 08:52:20 2008 | 4 | # Thu Aug 21 00:52:16 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 33 | CONFIG_IRQ_PER_CPU=y | 33 | CONFIG_IRQ_PER_CPU=y |
| 34 | CONFIG_STACKTRACE_SUPPORT=y | 34 | CONFIG_STACKTRACE_SUPPORT=y |
| 35 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | 36 | CONFIG_LOCKDEP_SUPPORT=y |
| 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 38 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -87,7 +88,6 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 87 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 90 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 91 | # CONFIG_KALLSYMS is not set | 91 | # CONFIG_KALLSYMS is not set |
| 92 | CONFIG_HOTPLUG=y | 92 | CONFIG_HOTPLUG=y |
| 93 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
| @@ -110,10 +110,16 @@ CONFIG_SLUB=y | |||
| 110 | # CONFIG_PROFILING is not set | 110 | # CONFIG_PROFILING is not set |
| 111 | # CONFIG_MARKERS 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 | ||
| 114 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 113 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 114 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
| 115 | # CONFIG_HAVE_DMA_ATTRS is not set | 118 | # CONFIG_HAVE_DMA_ATTRS is not set |
| 119 | # CONFIG_USE_GENERIC_SMP_HELPERS is not set | ||
| 120 | # CONFIG_HAVE_CLK is not set | ||
| 116 | CONFIG_PROC_PAGE_MONITOR=y | 121 | CONFIG_PROC_PAGE_MONITOR=y |
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 117 | CONFIG_SLABINFO=y | 123 | CONFIG_SLABINFO=y |
| 118 | CONFIG_RT_MUTEXES=y | 124 | CONFIG_RT_MUTEXES=y |
| 119 | # CONFIG_TINY_SHMEM is not set | 125 | # CONFIG_TINY_SHMEM is not set |
| @@ -130,6 +136,7 @@ CONFIG_LBD=y | |||
| 130 | # CONFIG_BLK_DEV_IO_TRACE is not set | 136 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 131 | # CONFIG_LSF is not set | 137 | # CONFIG_LSF is not set |
| 132 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
| 139 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 133 | 140 | ||
| 134 | # | 141 | # |
| 135 | # IO Schedulers | 142 | # IO Schedulers |
| @@ -149,25 +156,25 @@ CONFIG_CLASSIC_RCU=y | |||
| 149 | # Platform support | 156 | # Platform support |
| 150 | # | 157 | # |
| 151 | CONFIG_PPC_MULTIPLATFORM=y | 158 | CONFIG_PPC_MULTIPLATFORM=y |
| 152 | # CONFIG_PPC_82xx is not set | ||
| 153 | # CONFIG_PPC_83xx is not set | ||
| 154 | # CONFIG_PPC_86xx is not set | ||
| 155 | CONFIG_CLASSIC32=y | 159 | CONFIG_CLASSIC32=y |
| 156 | # CONFIG_PPC_CHRP is not set | 160 | # CONFIG_PPC_CHRP is not set |
| 157 | # CONFIG_PPC_MPC512x is not set | ||
| 158 | # CONFIG_PPC_MPC5121 is not set | ||
| 159 | # CONFIG_MPC5121_ADS is not set | 161 | # CONFIG_MPC5121_ADS is not set |
| 162 | # CONFIG_MPC5121_GENERIC is not set | ||
| 160 | # CONFIG_PPC_MPC52xx is not set | 163 | # CONFIG_PPC_MPC52xx is not set |
| 161 | # CONFIG_PPC_PMAC is not set | 164 | # CONFIG_PPC_PMAC is not set |
| 162 | # CONFIG_PPC_CELL is not set | 165 | # CONFIG_PPC_CELL is not set |
| 163 | # CONFIG_PPC_CELL_NATIVE is not set | 166 | # CONFIG_PPC_CELL_NATIVE is not set |
| 167 | # CONFIG_PPC_82xx is not set | ||
| 164 | # CONFIG_PQ2ADS is not set | 168 | # CONFIG_PQ2ADS is not set |
| 169 | # CONFIG_PPC_83xx is not set | ||
| 170 | # CONFIG_PPC_86xx is not set | ||
| 165 | CONFIG_EMBEDDED6xx=y | 171 | CONFIG_EMBEDDED6xx=y |
| 166 | # CONFIG_LINKSTATION is not set | 172 | # CONFIG_LINKSTATION is not set |
| 167 | CONFIG_STORCENTER=y | 173 | CONFIG_STORCENTER=y |
| 168 | # CONFIG_MPC7448HPC2 is not set | 174 | # CONFIG_MPC7448HPC2 is not set |
| 169 | # CONFIG_PPC_HOLLY is not set | 175 | # CONFIG_PPC_HOLLY is not set |
| 170 | # CONFIG_PPC_PRPMC2800 is not set | 176 | # CONFIG_PPC_PRPMC2800 is not set |
| 177 | # CONFIG_PPC_C2K is not set | ||
| 171 | CONFIG_MPC10X_BRIDGE=y | 178 | CONFIG_MPC10X_BRIDGE=y |
| 172 | CONFIG_MPC10X_OPENPIC=y | 179 | CONFIG_MPC10X_OPENPIC=y |
| 173 | # CONFIG_MPC10X_STORE_GATHERING is not set | 180 | # CONFIG_MPC10X_STORE_GATHERING is not set |
| @@ -221,6 +228,7 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 221 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 228 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 222 | CONFIG_PAGEFLAGS_EXTENDED=y | 229 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 223 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 230 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 231 | CONFIG_MIGRATION=y | ||
| 224 | # CONFIG_RESOURCES_64BIT is not set | 232 | # CONFIG_RESOURCES_64BIT is not set |
| 225 | CONFIG_ZONE_DMA_FLAG=1 | 233 | CONFIG_ZONE_DMA_FLAG=1 |
| 226 | CONFIG_BOUNCE=y | 234 | CONFIG_BOUNCE=y |
| @@ -229,6 +237,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
| 229 | CONFIG_PROC_DEVICETREE=y | 237 | CONFIG_PROC_DEVICETREE=y |
| 230 | CONFIG_CMDLINE_BOOL=y | 238 | CONFIG_CMDLINE_BOOL=y |
| 231 | CONFIG_CMDLINE="console=ttyS0,115200" | 239 | CONFIG_CMDLINE="console=ttyS0,115200" |
| 240 | CONFIG_EXTRA_TARGETS="" | ||
| 232 | # CONFIG_PM is not set | 241 | # CONFIG_PM is not set |
| 233 | # CONFIG_SECCOMP is not set | 242 | # CONFIG_SECCOMP is not set |
| 234 | CONFIG_ISA_DMA_API=y | 243 | CONFIG_ISA_DMA_API=y |
| @@ -264,10 +273,6 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 264 | CONFIG_KERNEL_START=0xc0000000 | 273 | CONFIG_KERNEL_START=0xc0000000 |
| 265 | CONFIG_PHYSICAL_START=0x00000000 | 274 | CONFIG_PHYSICAL_START=0x00000000 |
| 266 | CONFIG_TASK_SIZE=0xc0000000 | 275 | CONFIG_TASK_SIZE=0xc0000000 |
| 267 | |||
| 268 | # | ||
| 269 | # Networking | ||
| 270 | # | ||
| 271 | CONFIG_NET=y | 276 | CONFIG_NET=y |
| 272 | 277 | ||
| 273 | # | 278 | # |
| @@ -456,20 +461,22 @@ CONFIG_BLK_DEV=y | |||
| 456 | # CONFIG_BLK_DEV_RAM is not set | 461 | # CONFIG_BLK_DEV_RAM is not set |
| 457 | # CONFIG_CDROM_PKTCDVD is not set | 462 | # CONFIG_CDROM_PKTCDVD is not set |
| 458 | # CONFIG_ATA_OVER_ETH is not set | 463 | # CONFIG_ATA_OVER_ETH is not set |
| 464 | # CONFIG_BLK_DEV_HD is not set | ||
| 459 | CONFIG_MISC_DEVICES=y | 465 | CONFIG_MISC_DEVICES=y |
| 460 | # CONFIG_PHANTOM is not set | 466 | # CONFIG_PHANTOM is not set |
| 461 | # CONFIG_EEPROM_93CX6 is not set | 467 | # CONFIG_EEPROM_93CX6 is not set |
| 462 | # CONFIG_SGI_IOC4 is not set | 468 | # CONFIG_SGI_IOC4 is not set |
| 463 | # CONFIG_TIFM_CORE is not set | 469 | # CONFIG_TIFM_CORE is not set |
| 464 | # CONFIG_ENCLOSURE_SERVICES is not set | 470 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 471 | # CONFIG_HP_ILO is not set | ||
| 465 | CONFIG_HAVE_IDE=y | 472 | CONFIG_HAVE_IDE=y |
| 466 | CONFIG_IDE=y | 473 | CONFIG_IDE=y |
| 467 | CONFIG_IDE_MAX_HWIFS=4 | ||
| 468 | CONFIG_BLK_DEV_IDE=y | 474 | CONFIG_BLK_DEV_IDE=y |
| 469 | 475 | ||
| 470 | # | 476 | # |
| 471 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 477 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 472 | # | 478 | # |
| 479 | CONFIG_IDE_TIMINGS=y | ||
| 473 | # CONFIG_BLK_DEV_IDE_SATA is not set | 480 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 474 | CONFIG_BLK_DEV_IDEDISK=y | 481 | CONFIG_BLK_DEV_IDEDISK=y |
| 475 | CONFIG_IDEDISK_MULTI_MODE=y | 482 | CONFIG_IDEDISK_MULTI_MODE=y |
| @@ -483,7 +490,6 @@ CONFIG_IDE_PROC_FS=y | |||
| 483 | # | 490 | # |
| 484 | # IDE chipset support/bugfixes | 491 | # IDE chipset support/bugfixes |
| 485 | # | 492 | # |
| 486 | CONFIG_IDE_GENERIC=y | ||
| 487 | # CONFIG_BLK_DEV_PLATFORM is not set | 493 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 488 | CONFIG_BLK_DEV_IDEDMA_SFF=y | 494 | CONFIG_BLK_DEV_IDEDMA_SFF=y |
| 489 | 495 | ||
| @@ -500,10 +506,8 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 500 | # CONFIG_BLK_DEV_AMD74XX is not set | 506 | # CONFIG_BLK_DEV_AMD74XX is not set |
| 501 | # CONFIG_BLK_DEV_CMD64X is not set | 507 | # CONFIG_BLK_DEV_CMD64X is not set |
| 502 | # CONFIG_BLK_DEV_TRIFLEX is not set | 508 | # CONFIG_BLK_DEV_TRIFLEX is not set |
| 503 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 504 | # CONFIG_BLK_DEV_CS5520 is not set | 509 | # CONFIG_BLK_DEV_CS5520 is not set |
| 505 | # CONFIG_BLK_DEV_CS5530 is not set | 510 | # CONFIG_BLK_DEV_CS5530 is not set |
| 506 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 507 | # CONFIG_BLK_DEV_HPT366 is not set | 511 | # CONFIG_BLK_DEV_HPT366 is not set |
| 508 | # CONFIG_BLK_DEV_JMICRON is not set | 512 | # CONFIG_BLK_DEV_JMICRON is not set |
| 509 | # CONFIG_BLK_DEV_SC1200 is not set | 513 | # CONFIG_BLK_DEV_SC1200 is not set |
| @@ -521,8 +525,6 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 521 | CONFIG_BLK_DEV_VIA82CXXX=y | 525 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 522 | # CONFIG_BLK_DEV_TC86C001 is not set | 526 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 523 | CONFIG_BLK_DEV_IDEDMA=y | 527 | CONFIG_BLK_DEV_IDEDMA=y |
| 524 | # CONFIG_BLK_DEV_HD_ONLY is not set | ||
| 525 | # CONFIG_BLK_DEV_HD is not set | ||
| 526 | 528 | ||
| 527 | # | 529 | # |
| 528 | # SCSI device support | 530 | # SCSI device support |
| @@ -599,6 +601,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 599 | # CONFIG_SCSI_NSP32 is not set | 601 | # CONFIG_SCSI_NSP32 is not set |
| 600 | # CONFIG_SCSI_DEBUG is not set | 602 | # CONFIG_SCSI_DEBUG is not set |
| 601 | # CONFIG_SCSI_SRP is not set | 603 | # CONFIG_SCSI_SRP is not set |
| 604 | # CONFIG_SCSI_DH is not set | ||
| 602 | # CONFIG_ATA is not set | 605 | # CONFIG_ATA is not set |
| 603 | CONFIG_MD=y | 606 | CONFIG_MD=y |
| 604 | CONFIG_BLK_DEV_MD=y | 607 | CONFIG_BLK_DEV_MD=y |
| @@ -616,12 +619,15 @@ CONFIG_MD_RAID5_RESHAPE=y | |||
| 616 | # | 619 | # |
| 617 | # IEEE 1394 (FireWire) support | 620 | # IEEE 1394 (FireWire) support |
| 618 | # | 621 | # |
| 622 | |||
| 623 | # | ||
| 624 | # Enable only one of the two stacks, unless you know what you are doing | ||
| 625 | # | ||
| 619 | # CONFIG_FIREWIRE is not set | 626 | # CONFIG_FIREWIRE is not set |
| 620 | # CONFIG_IEEE1394 is not set | 627 | # CONFIG_IEEE1394 is not set |
| 621 | # CONFIG_I2O is not set | 628 | # CONFIG_I2O is not set |
| 622 | # CONFIG_MACINTOSH_DRIVERS is not set | 629 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 623 | CONFIG_NETDEVICES=y | 630 | CONFIG_NETDEVICES=y |
| 624 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
| 625 | CONFIG_DUMMY=m | 631 | CONFIG_DUMMY=m |
| 626 | # CONFIG_BONDING is not set | 632 | # CONFIG_BONDING is not set |
| 627 | # CONFIG_MACVLAN is not set | 633 | # CONFIG_MACVLAN is not set |
| @@ -635,14 +641,12 @@ CONFIG_NETDEV_1000=y | |||
| 635 | # CONFIG_DL2K is not set | 641 | # CONFIG_DL2K is not set |
| 636 | # CONFIG_E1000 is not set | 642 | # CONFIG_E1000 is not set |
| 637 | # CONFIG_E1000E is not set | 643 | # CONFIG_E1000E is not set |
| 638 | # CONFIG_E1000E_ENABLED is not set | ||
| 639 | # CONFIG_IP1000 is not set | 644 | # CONFIG_IP1000 is not set |
| 640 | # CONFIG_IGB is not set | 645 | # CONFIG_IGB is not set |
| 641 | # CONFIG_NS83820 is not set | 646 | # CONFIG_NS83820 is not set |
| 642 | # CONFIG_HAMACHI is not set | 647 | # CONFIG_HAMACHI is not set |
| 643 | # CONFIG_YELLOWFIN is not set | 648 | # CONFIG_YELLOWFIN is not set |
| 644 | CONFIG_R8169=y | 649 | CONFIG_R8169=y |
| 645 | # CONFIG_R8169_NAPI is not set | ||
| 646 | # CONFIG_SIS190 is not set | 650 | # CONFIG_SIS190 is not set |
| 647 | # CONFIG_SKGE is not set | 651 | # CONFIG_SKGE is not set |
| 648 | # CONFIG_SKY2 is not set | 652 | # CONFIG_SKY2 is not set |
| @@ -653,6 +657,7 @@ CONFIG_R8169=y | |||
| 653 | # CONFIG_MV643XX_ETH is not set | 657 | # CONFIG_MV643XX_ETH is not set |
| 654 | # CONFIG_QLA3XXX is not set | 658 | # CONFIG_QLA3XXX is not set |
| 655 | # CONFIG_ATL1 is not set | 659 | # CONFIG_ATL1 is not set |
| 660 | # CONFIG_ATL1E is not set | ||
| 656 | # CONFIG_NETDEV_10000 is not set | 661 | # CONFIG_NETDEV_10000 is not set |
| 657 | # CONFIG_TR is not set | 662 | # CONFIG_TR is not set |
| 658 | 663 | ||
| @@ -734,43 +739,64 @@ CONFIG_DEVPORT=y | |||
| 734 | CONFIG_I2C=y | 739 | CONFIG_I2C=y |
| 735 | CONFIG_I2C_BOARDINFO=y | 740 | CONFIG_I2C_BOARDINFO=y |
| 736 | CONFIG_I2C_CHARDEV=y | 741 | CONFIG_I2C_CHARDEV=y |
| 742 | CONFIG_I2C_HELPER_AUTO=y | ||
| 737 | 743 | ||
| 738 | # | 744 | # |
| 739 | # I2C Hardware Bus support | 745 | # I2C Hardware Bus support |
| 740 | # | 746 | # |
| 747 | |||
| 748 | # | ||
| 749 | # PC SMBus host controller drivers | ||
| 750 | # | ||
| 741 | # CONFIG_I2C_ALI1535 is not set | 751 | # CONFIG_I2C_ALI1535 is not set |
| 742 | # CONFIG_I2C_ALI1563 is not set | 752 | # CONFIG_I2C_ALI1563 is not set |
| 743 | # CONFIG_I2C_ALI15X3 is not set | 753 | # CONFIG_I2C_ALI15X3 is not set |
| 744 | # CONFIG_I2C_AMD756 is not set | 754 | # CONFIG_I2C_AMD756 is not set |
| 745 | # CONFIG_I2C_AMD8111 is not set | 755 | # CONFIG_I2C_AMD8111 is not set |
| 746 | # CONFIG_I2C_I801 is not set | 756 | # CONFIG_I2C_I801 is not set |
| 747 | # CONFIG_I2C_I810 is not set | 757 | # CONFIG_I2C_ISCH is not set |
| 748 | # CONFIG_I2C_PIIX4 is not set | 758 | # CONFIG_I2C_PIIX4 is not set |
| 749 | CONFIG_I2C_MPC=y | ||
| 750 | # CONFIG_I2C_NFORCE2 is not set | 759 | # CONFIG_I2C_NFORCE2 is not set |
| 751 | # CONFIG_I2C_OCORES is not set | ||
| 752 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 753 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 754 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 755 | # CONFIG_I2C_SIMTEC is not set | ||
| 756 | # CONFIG_I2C_SIS5595 is not set | 760 | # CONFIG_I2C_SIS5595 is not set |
| 757 | # CONFIG_I2C_SIS630 is not set | 761 | # CONFIG_I2C_SIS630 is not set |
| 758 | # CONFIG_I2C_SIS96X is not set | 762 | # CONFIG_I2C_SIS96X is not set |
| 759 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 760 | # CONFIG_I2C_STUB is not set | ||
| 761 | # CONFIG_I2C_TINY_USB is not set | ||
| 762 | # CONFIG_I2C_VIA is not set | 763 | # CONFIG_I2C_VIA is not set |
| 763 | # CONFIG_I2C_VIAPRO is not set | 764 | # CONFIG_I2C_VIAPRO is not set |
| 765 | |||
| 766 | # | ||
| 767 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 768 | # | ||
| 769 | CONFIG_I2C_MPC=y | ||
| 770 | # CONFIG_I2C_OCORES is not set | ||
| 771 | # CONFIG_I2C_SIMTEC is not set | ||
| 772 | |||
| 773 | # | ||
| 774 | # External I2C/SMBus adapter drivers | ||
| 775 | # | ||
| 776 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 777 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 778 | # CONFIG_I2C_TINY_USB is not set | ||
| 779 | |||
| 780 | # | ||
| 781 | # Graphics adapter I2C/DDC channel drivers | ||
| 782 | # | ||
| 764 | # CONFIG_I2C_VOODOO3 is not set | 783 | # CONFIG_I2C_VOODOO3 is not set |
| 784 | |||
| 785 | # | ||
| 786 | # Other I2C/SMBus bus drivers | ||
| 787 | # | ||
| 765 | # CONFIG_I2C_PCA_PLATFORM is not set | 788 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 789 | # CONFIG_I2C_STUB is not set | ||
| 766 | 790 | ||
| 767 | # | 791 | # |
| 768 | # Miscellaneous I2C Chip support | 792 | # Miscellaneous I2C Chip support |
| 769 | # | 793 | # |
| 770 | # CONFIG_DS1682 is not set | 794 | # CONFIG_DS1682 is not set |
| 795 | # CONFIG_AT24 is not set | ||
| 771 | # CONFIG_SENSORS_EEPROM is not set | 796 | # CONFIG_SENSORS_EEPROM is not set |
| 772 | # CONFIG_SENSORS_PCF8574 is not set | 797 | # CONFIG_SENSORS_PCF8574 is not set |
| 773 | # CONFIG_PCF8575 is not set | 798 | # CONFIG_PCF8575 is not set |
| 799 | # CONFIG_SENSORS_PCA9539 is not set | ||
| 774 | # CONFIG_SENSORS_PCF8591 is not set | 800 | # CONFIG_SENSORS_PCF8591 is not set |
| 775 | # CONFIG_SENSORS_MAX6875 is not set | 801 | # CONFIG_SENSORS_MAX6875 is not set |
| 776 | # CONFIG_SENSORS_TSL2550 is not set | 802 | # CONFIG_SENSORS_TSL2550 is not set |
| @@ -779,10 +805,13 @@ CONFIG_I2C_MPC=y | |||
| 779 | # CONFIG_I2C_DEBUG_BUS is not set | 805 | # CONFIG_I2C_DEBUG_BUS is not set |
| 780 | # CONFIG_I2C_DEBUG_CHIP is not set | 806 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 781 | # CONFIG_SPI is not set | 807 | # CONFIG_SPI is not set |
| 808 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 809 | # CONFIG_GPIOLIB is not set | ||
| 782 | # CONFIG_W1 is not set | 810 | # CONFIG_W1 is not set |
| 783 | # CONFIG_POWER_SUPPLY is not set | 811 | # CONFIG_POWER_SUPPLY is not set |
| 784 | # CONFIG_HWMON is not set | 812 | # CONFIG_HWMON is not set |
| 785 | # CONFIG_THERMAL is not set | 813 | # CONFIG_THERMAL is not set |
| 814 | # CONFIG_THERMAL_HWMON is not set | ||
| 786 | # CONFIG_WATCHDOG is not set | 815 | # CONFIG_WATCHDOG is not set |
| 787 | 816 | ||
| 788 | # | 817 | # |
| @@ -794,8 +823,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 794 | # | 823 | # |
| 795 | # Multifunction device drivers | 824 | # Multifunction device drivers |
| 796 | # | 825 | # |
| 826 | # CONFIG_MFD_CORE is not set | ||
| 797 | # CONFIG_MFD_SM501 is not set | 827 | # CONFIG_MFD_SM501 is not set |
| 798 | # CONFIG_HTC_PASIC3 is not set | 828 | # CONFIG_HTC_PASIC3 is not set |
| 829 | # CONFIG_MFD_TMIO is not set | ||
| 799 | 830 | ||
| 800 | # | 831 | # |
| 801 | # Multimedia devices | 832 | # Multimedia devices |
| @@ -827,10 +858,6 @@ CONFIG_SSB_POSSIBLE=y | |||
| 827 | # Display device support | 858 | # Display device support |
| 828 | # | 859 | # |
| 829 | # CONFIG_DISPLAY_SUPPORT is not set | 860 | # CONFIG_DISPLAY_SUPPORT is not set |
| 830 | |||
| 831 | # | ||
| 832 | # Sound | ||
| 833 | # | ||
| 834 | # CONFIG_SOUND is not set | 861 | # CONFIG_SOUND is not set |
| 835 | CONFIG_USB_SUPPORT=y | 862 | CONFIG_USB_SUPPORT=y |
| 836 | CONFIG_USB_ARCH_HAS_HCD=y | 863 | CONFIG_USB_ARCH_HAS_HCD=y |
| @@ -849,6 +876,7 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 849 | # CONFIG_USB_OTG is not set | 876 | # CONFIG_USB_OTG is not set |
| 850 | # CONFIG_USB_OTG_WHITELIST is not set | 877 | # CONFIG_USB_OTG_WHITELIST is not set |
| 851 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 878 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 879 | # CONFIG_USB_MON is not set | ||
| 852 | 880 | ||
| 853 | # | 881 | # |
| 854 | # USB Host Controller Drivers | 882 | # USB Host Controller Drivers |
| @@ -896,6 +924,7 @@ CONFIG_USB_STORAGE=y | |||
| 896 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 924 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 897 | # CONFIG_USB_STORAGE_ALAUDA is not set | 925 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 898 | # CONFIG_USB_STORAGE_KARMA is not set | 926 | # CONFIG_USB_STORAGE_KARMA is not set |
| 927 | # CONFIG_USB_STORAGE_SIERRA is not set | ||
| 899 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 928 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 900 | # CONFIG_USB_LIBUSUAL is not set | 929 | # CONFIG_USB_LIBUSUAL is not set |
| 901 | 930 | ||
| @@ -904,7 +933,6 @@ CONFIG_USB_STORAGE=y | |||
| 904 | # | 933 | # |
| 905 | # CONFIG_USB_MDC800 is not set | 934 | # CONFIG_USB_MDC800 is not set |
| 906 | # CONFIG_USB_MICROTEK is not set | 935 | # CONFIG_USB_MICROTEK is not set |
| 907 | # CONFIG_USB_MON is not set | ||
| 908 | 936 | ||
| 909 | # | 937 | # |
| 910 | # USB port drivers | 938 | # USB port drivers |
| @@ -917,7 +945,6 @@ CONFIG_USB_STORAGE=y | |||
| 917 | # CONFIG_USB_EMI62 is not set | 945 | # CONFIG_USB_EMI62 is not set |
| 918 | # CONFIG_USB_EMI26 is not set | 946 | # CONFIG_USB_EMI26 is not set |
| 919 | # CONFIG_USB_ADUTUX is not set | 947 | # CONFIG_USB_ADUTUX is not set |
| 920 | # CONFIG_USB_AUERSWALD is not set | ||
| 921 | # CONFIG_USB_RIO500 is not set | 948 | # CONFIG_USB_RIO500 is not set |
| 922 | # CONFIG_USB_LEGOTOWER is not set | 949 | # CONFIG_USB_LEGOTOWER is not set |
| 923 | # CONFIG_USB_LCD is not set | 950 | # CONFIG_USB_LCD is not set |
| @@ -971,6 +998,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 971 | # CONFIG_RTC_DRV_PCF8583 is not set | 998 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 972 | # CONFIG_RTC_DRV_M41T80 is not set | 999 | # CONFIG_RTC_DRV_M41T80 is not set |
| 973 | # CONFIG_RTC_DRV_S35390A is not set | 1000 | # CONFIG_RTC_DRV_S35390A is not set |
| 1001 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 974 | 1002 | ||
| 975 | # | 1003 | # |
| 976 | # SPI RTC drivers | 1004 | # SPI RTC drivers |
| @@ -1074,6 +1102,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1074 | # CONFIG_CRAMFS is not set | 1102 | # CONFIG_CRAMFS is not set |
| 1075 | # CONFIG_VXFS_FS is not set | 1103 | # CONFIG_VXFS_FS is not set |
| 1076 | # CONFIG_MINIX_FS is not set | 1104 | # CONFIG_MINIX_FS is not set |
| 1105 | # CONFIG_OMFS_FS is not set | ||
| 1077 | # CONFIG_HPFS_FS is not set | 1106 | # CONFIG_HPFS_FS is not set |
| 1078 | # CONFIG_QNX4FS_FS is not set | 1107 | # CONFIG_QNX4FS_FS is not set |
| 1079 | # CONFIG_ROMFS_FS is not set | 1108 | # CONFIG_ROMFS_FS is not set |
| @@ -1151,6 +1180,7 @@ CONFIG_BITREVERSE=y | |||
| 1151 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1180 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set |
| 1152 | # CONFIG_CRC_CCITT is not set | 1181 | # CONFIG_CRC_CCITT is not set |
| 1153 | # CONFIG_CRC16 is not set | 1182 | # CONFIG_CRC16 is not set |
| 1183 | CONFIG_CRC_T10DIF=y | ||
| 1154 | # CONFIG_CRC_ITU_T is not set | 1184 | # CONFIG_CRC_ITU_T is not set |
| 1155 | CONFIG_CRC32=y | 1185 | CONFIG_CRC32=y |
| 1156 | # CONFIG_CRC7 is not set | 1186 | # CONFIG_CRC7 is not set |
| @@ -1178,7 +1208,16 @@ CONFIG_FRAME_WARN=1024 | |||
| 1178 | # CONFIG_SLUB_DEBUG_ON is not set | 1208 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1179 | # CONFIG_SLUB_STATS is not set | 1209 | # CONFIG_SLUB_STATS is not set |
| 1180 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1210 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1211 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1212 | # CONFIG_LATENCYTOP is not set | ||
| 1213 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1214 | CONFIG_HAVE_FTRACE=y | ||
| 1215 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1216 | # CONFIG_FTRACE is not set | ||
| 1217 | # CONFIG_SCHED_TRACER is not set | ||
| 1218 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1181 | # CONFIG_SAMPLES is not set | 1219 | # CONFIG_SAMPLES is not set |
| 1220 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1182 | # CONFIG_IRQSTACKS is not set | 1221 | # CONFIG_IRQSTACKS is not set |
| 1183 | # CONFIG_BOOTX_TEXT is not set | 1222 | # CONFIG_BOOTX_TEXT is not set |
| 1184 | # CONFIG_PPC_EARLY_DEBUG is not set | 1223 | # CONFIG_PPC_EARLY_DEBUG is not set |
diff --git a/arch/powerpc/platforms/ps3/htab.c b/arch/powerpc/platforms/ps3/htab.c index 1cf901fa9031..6eb1d4d182c9 100644 --- a/arch/powerpc/platforms/ps3/htab.c +++ b/arch/powerpc/platforms/ps3/htab.c | |||
| @@ -29,138 +29,75 @@ | |||
| 29 | 29 | ||
| 30 | #include "platform.h" | 30 | #include "platform.h" |
| 31 | 31 | ||
| 32 | #if defined(DEBUG) | 32 | /** |
| 33 | #define DBG udbg_printf | 33 | * enum lpar_vas_id - id of LPAR virtual address space. |
| 34 | #else | 34 | * @lpar_vas_id_current: Current selected virtual address space |
| 35 | #define DBG pr_debug | 35 | * |
| 36 | #endif | 36 | * Identify the target LPAR address space. |
| 37 | 37 | */ | |
| 38 | static struct hash_pte *htab; | 38 | |
| 39 | static unsigned long htab_addr; | 39 | enum ps3_lpar_vas_id { |
| 40 | static unsigned char *bolttab; | 40 | PS3_LPAR_VAS_ID_CURRENT = 0, |
| 41 | static unsigned char *inusetab; | 41 | }; |
| 42 | 42 | ||
| 43 | static DEFINE_SPINLOCK(ps3_bolttab_lock); | 43 | |
| 44 | 44 | static DEFINE_SPINLOCK(ps3_htab_lock); | |
| 45 | #define debug_dump_hpte(_a, _b, _c, _d, _e, _f, _g) \ | ||
| 46 | _debug_dump_hpte(_a, _b, _c, _d, _e, _f, _g, __func__, __LINE__) | ||
| 47 | static void _debug_dump_hpte(unsigned long pa, unsigned long va, | ||
| 48 | unsigned long group, unsigned long bitmap, struct hash_pte lhpte, | ||
| 49 | int psize, unsigned long slot, const char* func, int line) | ||
| 50 | { | ||
| 51 | DBG("%s:%d: pa = %lxh\n", func, line, pa); | ||
| 52 | DBG("%s:%d: lpar = %lxh\n", func, line, | ||
| 53 | ps3_mm_phys_to_lpar(pa)); | ||
| 54 | DBG("%s:%d: va = %lxh\n", func, line, va); | ||
| 55 | DBG("%s:%d: group = %lxh\n", func, line, group); | ||
| 56 | DBG("%s:%d: bitmap = %lxh\n", func, line, bitmap); | ||
| 57 | DBG("%s:%d: hpte.v = %lxh\n", func, line, lhpte.v); | ||
| 58 | DBG("%s:%d: hpte.r = %lxh\n", func, line, lhpte.r); | ||
| 59 | DBG("%s:%d: psize = %xh\n", func, line, psize); | ||
| 60 | DBG("%s:%d: slot = %lxh\n", func, line, slot); | ||
| 61 | } | ||
| 62 | 45 | ||
| 63 | static long ps3_hpte_insert(unsigned long hpte_group, unsigned long va, | 46 | static long ps3_hpte_insert(unsigned long hpte_group, unsigned long va, |
| 64 | unsigned long pa, unsigned long rflags, unsigned long vflags, | 47 | unsigned long pa, unsigned long rflags, unsigned long vflags, |
| 65 | int psize, int ssize) | 48 | int psize, int ssize) |
| 66 | { | 49 | { |
| 67 | unsigned long slot; | 50 | int result; |
| 68 | struct hash_pte lhpte; | 51 | u64 hpte_v, hpte_r; |
| 69 | int secondary = 0; | 52 | u64 inserted_index; |
| 70 | unsigned long result; | 53 | u64 evicted_v, evicted_r; |
| 71 | unsigned long bitmap; | 54 | u64 hpte_v_array[4], hpte_rs; |
| 72 | unsigned long flags; | 55 | unsigned long flags; |
| 73 | unsigned long p_pteg, s_pteg, b_index, b_mask, cb, ci; | 56 | long ret = -1; |
| 74 | |||
| 75 | vflags &= ~HPTE_V_SECONDARY; /* this bit is ignored */ | ||
| 76 | |||
| 77 | lhpte.v = hpte_encode_v(va, psize, MMU_SEGSIZE_256M) | | ||
| 78 | vflags | HPTE_V_VALID; | ||
| 79 | lhpte.r = hpte_encode_r(ps3_mm_phys_to_lpar(pa), psize) | rflags; | ||
| 80 | |||
| 81 | p_pteg = hpte_group / HPTES_PER_GROUP; | ||
| 82 | s_pteg = ~p_pteg & htab_hash_mask; | ||
| 83 | |||
| 84 | spin_lock_irqsave(&ps3_bolttab_lock, flags); | ||
| 85 | |||
| 86 | BUG_ON(bolttab[p_pteg] == 0xff && bolttab[s_pteg] == 0xff); | ||
| 87 | 57 | ||
| 88 | bitmap = (inusetab[p_pteg] << 8) | inusetab[s_pteg]; | 58 | /* |
| 59 | * lv1_insert_htab_entry() will search for victim | ||
| 60 | * entry in both primary and secondary pte group | ||
| 61 | */ | ||
| 62 | vflags &= ~HPTE_V_SECONDARY; | ||
| 89 | 63 | ||
| 90 | if (bitmap == 0xffff) { | 64 | hpte_v = hpte_encode_v(va, psize, ssize) | vflags | HPTE_V_VALID; |
| 91 | /* | 65 | hpte_r = hpte_encode_r(ps3_mm_phys_to_lpar(pa), psize) | rflags; |
| 92 | * PTEG is full. Search for victim. | ||
| 93 | */ | ||
| 94 | bitmap &= ~((bolttab[p_pteg] << 8) | bolttab[s_pteg]); | ||
| 95 | do { | ||
| 96 | ci = mftb() & 15; | ||
| 97 | cb = 0x8000UL >> ci; | ||
| 98 | } while ((cb & bitmap) == 0); | ||
| 99 | } else { | ||
| 100 | /* | ||
| 101 | * search free slot in hardware order | ||
| 102 | * [primary] 0, 2, 4, 6, 1, 3, 5, 7 | ||
| 103 | * [secondary] 0, 2, 4, 6, 1, 3, 5, 7 | ||
| 104 | */ | ||
| 105 | for (ci = 0; ci < HPTES_PER_GROUP; ci += 2) { | ||
| 106 | cb = 0x8000UL >> ci; | ||
| 107 | if ((cb & bitmap) == 0) | ||
| 108 | goto found; | ||
| 109 | } | ||
| 110 | for (ci = 1; ci < HPTES_PER_GROUP; ci += 2) { | ||
| 111 | cb = 0x8000UL >> ci; | ||
| 112 | if ((cb & bitmap) == 0) | ||
| 113 | goto found; | ||
| 114 | } | ||
| 115 | for (ci = HPTES_PER_GROUP; ci < HPTES_PER_GROUP*2; ci += 2) { | ||
| 116 | cb = 0x8000UL >> ci; | ||
| 117 | if ((cb & bitmap) == 0) | ||
| 118 | goto found; | ||
| 119 | } | ||
| 120 | for (ci = HPTES_PER_GROUP+1; ci < HPTES_PER_GROUP*2; ci += 2) { | ||
| 121 | cb = 0x8000UL >> ci; | ||
| 122 | if ((cb & bitmap) == 0) | ||
| 123 | goto found; | ||
| 124 | } | ||
| 125 | } | ||
| 126 | 66 | ||
| 127 | found: | 67 | spin_lock_irqsave(&ps3_htab_lock, flags); |
| 128 | if (ci < HPTES_PER_GROUP) { | ||
| 129 | slot = p_pteg * HPTES_PER_GROUP + ci; | ||
| 130 | } else { | ||
| 131 | slot = s_pteg * HPTES_PER_GROUP + (ci & 7); | ||
| 132 | /* lhpte.dw0.dw0.h = 1; */ | ||
| 133 | vflags |= HPTE_V_SECONDARY; | ||
| 134 | lhpte.v |= HPTE_V_SECONDARY; | ||
| 135 | } | ||
| 136 | 68 | ||
| 137 | result = lv1_write_htab_entry(0, slot, lhpte.v, lhpte.r); | 69 | /* talk hvc to replace entries BOLTED == 0 */ |
| 70 | result = lv1_insert_htab_entry(PS3_LPAR_VAS_ID_CURRENT, hpte_group, | ||
| 71 | hpte_v, hpte_r, | ||
| 72 | HPTE_V_BOLTED, 0, | ||
| 73 | &inserted_index, | ||
| 74 | &evicted_v, &evicted_r); | ||
| 138 | 75 | ||
| 139 | if (result) { | 76 | if (result) { |
| 140 | debug_dump_hpte(pa, va, hpte_group, bitmap, lhpte, psize, slot); | 77 | /* all entries bolted !*/ |
| 78 | pr_info("%s:result=%d va=%lx pa=%lx ix=%lx v=%lx r=%lx\n", | ||
| 79 | __func__, result, va, pa, hpte_group, hpte_v, hpte_r); | ||
| 141 | BUG(); | 80 | BUG(); |
| 142 | } | 81 | } |
| 143 | 82 | ||
| 144 | /* | 83 | /* |
| 145 | * If used slot is not in primary HPTE group, | 84 | * see if the entry is inserted into secondary pteg |
| 146 | * the slot should be in secondary HPTE group. | ||
| 147 | */ | 85 | */ |
| 86 | result = lv1_read_htab_entries(PS3_LPAR_VAS_ID_CURRENT, | ||
| 87 | inserted_index & ~0x3UL, | ||
| 88 | &hpte_v_array[0], &hpte_v_array[1], | ||
| 89 | &hpte_v_array[2], &hpte_v_array[3], | ||
| 90 | &hpte_rs); | ||
| 91 | BUG_ON(result); | ||
| 148 | 92 | ||
| 149 | if ((hpte_group ^ slot) & ~(HPTES_PER_GROUP - 1)) { | 93 | if (hpte_v_array[inserted_index % 4] & HPTE_V_SECONDARY) |
| 150 | secondary = 1; | 94 | ret = (inserted_index & 7) | (1 << 3); |
| 151 | b_index = s_pteg; | 95 | else |
| 152 | } else { | 96 | ret = inserted_index & 7; |
| 153 | secondary = 0; | ||
| 154 | b_index = p_pteg; | ||
| 155 | } | ||
| 156 | 97 | ||
| 157 | b_mask = (lhpte.v & HPTE_V_BOLTED) ? 1 << 7 : 0 << 7; | 98 | spin_unlock_irqrestore(&ps3_htab_lock, flags); |
| 158 | bolttab[b_index] |= b_mask >> (slot & 7); | ||
| 159 | b_mask = 1 << 7; | ||
| 160 | inusetab[b_index] |= b_mask >> (slot & 7); | ||
| 161 | spin_unlock_irqrestore(&ps3_bolttab_lock, flags); | ||
| 162 | 99 | ||
| 163 | return (slot & 7) | (secondary << 3); | 100 | return ret; |
| 164 | } | 101 | } |
| 165 | 102 | ||
| 166 | static long ps3_hpte_remove(unsigned long hpte_group) | 103 | static long ps3_hpte_remove(unsigned long hpte_group) |
| @@ -172,39 +109,48 @@ static long ps3_hpte_remove(unsigned long hpte_group) | |||
| 172 | static long ps3_hpte_updatepp(unsigned long slot, unsigned long newpp, | 109 | static long ps3_hpte_updatepp(unsigned long slot, unsigned long newpp, |
| 173 | unsigned long va, int psize, int ssize, int local) | 110 | unsigned long va, int psize, int ssize, int local) |
| 174 | { | 111 | { |
| 112 | int result; | ||
| 113 | u64 hpte_v, want_v, hpte_rs; | ||
| 114 | u64 hpte_v_array[4]; | ||
| 175 | unsigned long flags; | 115 | unsigned long flags; |
| 176 | unsigned long result; | 116 | long ret; |
| 177 | unsigned long pteg, bit; | ||
| 178 | unsigned long hpte_v, want_v; | ||
| 179 | 117 | ||
| 180 | want_v = hpte_encode_v(va, psize, MMU_SEGSIZE_256M); | 118 | want_v = hpte_encode_v(va, psize, ssize); |
| 181 | 119 | ||
| 182 | spin_lock_irqsave(&ps3_bolttab_lock, flags); | 120 | spin_lock_irqsave(&ps3_htab_lock, flags); |
| 183 | 121 | ||
| 184 | hpte_v = htab[slot].v; | 122 | result = lv1_read_htab_entries(PS3_LPAR_VAS_ID_CURRENT, slot & ~0x3UL, |
| 185 | if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) { | 123 | &hpte_v_array[0], &hpte_v_array[1], |
| 186 | spin_unlock_irqrestore(&ps3_bolttab_lock, flags); | 124 | &hpte_v_array[2], &hpte_v_array[3], |
| 187 | 125 | &hpte_rs); | |
| 188 | /* ps3_hpte_insert() will be used to update PTE */ | ||
| 189 | return -1; | ||
| 190 | } | ||
| 191 | |||
| 192 | result = lv1_write_htab_entry(0, slot, 0, 0); | ||
| 193 | 126 | ||
| 194 | if (result) { | 127 | if (result) { |
| 195 | DBG("%s: va=%lx slot=%lx psize=%d result = %ld (0x%lx)\n", | 128 | pr_info("%s: res=%d read va=%lx slot=%lx psize=%d\n", |
| 196 | __func__, va, slot, psize, result, result); | 129 | __func__, result, va, slot, psize); |
| 197 | BUG(); | 130 | BUG(); |
| 198 | } | 131 | } |
| 199 | 132 | ||
| 200 | pteg = slot / HPTES_PER_GROUP; | 133 | hpte_v = hpte_v_array[slot % 4]; |
| 201 | bit = slot % HPTES_PER_GROUP; | ||
| 202 | inusetab[pteg] &= ~(0x80 >> bit); | ||
| 203 | 134 | ||
| 204 | spin_unlock_irqrestore(&ps3_bolttab_lock, flags); | 135 | /* |
| 136 | * As lv1_read_htab_entries() does not give us the RPN, we can | ||
| 137 | * not synthesize the new hpte_r value here, and therefore can | ||
| 138 | * not update the hpte with lv1_insert_htab_entry(), so we | ||
| 139 | * insted invalidate it and ask the caller to update it via | ||
| 140 | * ps3_hpte_insert() by returning a -1 value. | ||
| 141 | */ | ||
| 142 | if (!HPTE_V_COMPARE(hpte_v, want_v) || !(hpte_v & HPTE_V_VALID)) { | ||
| 143 | /* not found */ | ||
| 144 | ret = -1; | ||
| 145 | } else { | ||
| 146 | /* entry found, just invalidate it */ | ||
| 147 | result = lv1_write_htab_entry(PS3_LPAR_VAS_ID_CURRENT, | ||
| 148 | slot, 0, 0); | ||
| 149 | ret = -1; | ||
| 150 | } | ||
| 205 | 151 | ||
| 206 | /* ps3_hpte_insert() will be used to update PTE */ | 152 | spin_unlock_irqrestore(&ps3_htab_lock, flags); |
| 207 | return -1; | 153 | return ret; |
| 208 | } | 154 | } |
| 209 | 155 | ||
| 210 | static void ps3_hpte_updateboltedpp(unsigned long newpp, unsigned long ea, | 156 | static void ps3_hpte_updateboltedpp(unsigned long newpp, unsigned long ea, |
| @@ -217,45 +163,35 @@ static void ps3_hpte_invalidate(unsigned long slot, unsigned long va, | |||
| 217 | int psize, int ssize, int local) | 163 | int psize, int ssize, int local) |
| 218 | { | 164 | { |
| 219 | unsigned long flags; | 165 | unsigned long flags; |
| 220 | unsigned long result; | 166 | int result; |
| 221 | unsigned long pteg, bit; | 167 | |
| 168 | spin_lock_irqsave(&ps3_htab_lock, flags); | ||
| 222 | 169 | ||
| 223 | spin_lock_irqsave(&ps3_bolttab_lock, flags); | 170 | result = lv1_write_htab_entry(PS3_LPAR_VAS_ID_CURRENT, slot, 0, 0); |
| 224 | result = lv1_write_htab_entry(0, slot, 0, 0); | ||
| 225 | 171 | ||
| 226 | if (result) { | 172 | if (result) { |
| 227 | DBG("%s: va=%lx slot=%lx psize=%d result = %ld (0x%lx)\n", | 173 | pr_info("%s: res=%d va=%lx slot=%lx psize=%d\n", |
| 228 | __func__, va, slot, psize, result, result); | 174 | __func__, result, va, slot, psize); |
| 229 | BUG(); | 175 | BUG(); |
| 230 | } | 176 | } |
| 231 | 177 | ||
| 232 | pteg = slot / HPTES_PER_GROUP; | 178 | spin_unlock_irqrestore(&ps3_htab_lock, flags); |
| 233 | bit = slot % HPTES_PER_GROUP; | ||
| 234 | inusetab[pteg] &= ~(0x80 >> bit); | ||
| 235 | spin_unlock_irqrestore(&ps3_bolttab_lock, flags); | ||
| 236 | } | 179 | } |
| 237 | 180 | ||
| 238 | static void ps3_hpte_clear(void) | 181 | static void ps3_hpte_clear(void) |
| 239 | { | 182 | { |
| 240 | int result; | 183 | unsigned long hpte_count = (1UL << ppc64_pft_size) >> 4; |
| 241 | 184 | u64 i; | |
| 242 | DBG(" -> %s:%d\n", __func__, __LINE__); | ||
| 243 | 185 | ||
| 244 | result = lv1_unmap_htab(htab_addr); | 186 | for (i = 0; i < hpte_count; i++) |
| 245 | BUG_ON(result); | 187 | lv1_write_htab_entry(PS3_LPAR_VAS_ID_CURRENT, i, 0, 0); |
| 246 | 188 | ||
| 247 | ps3_mm_shutdown(); | 189 | ps3_mm_shutdown(); |
| 248 | ps3_mm_vas_destroy(); | 190 | ps3_mm_vas_destroy(); |
| 249 | |||
| 250 | DBG(" <- %s:%d\n", __func__, __LINE__); | ||
| 251 | } | 191 | } |
| 252 | 192 | ||
| 253 | void __init ps3_hpte_init(unsigned long htab_size) | 193 | void __init ps3_hpte_init(unsigned long htab_size) |
| 254 | { | 194 | { |
| 255 | long bitmap_size; | ||
| 256 | |||
| 257 | DBG(" -> %s:%d\n", __func__, __LINE__); | ||
| 258 | |||
| 259 | ppc_md.hpte_invalidate = ps3_hpte_invalidate; | 195 | ppc_md.hpte_invalidate = ps3_hpte_invalidate; |
| 260 | ppc_md.hpte_updatepp = ps3_hpte_updatepp; | 196 | ppc_md.hpte_updatepp = ps3_hpte_updatepp; |
| 261 | ppc_md.hpte_updateboltedpp = ps3_hpte_updateboltedpp; | 197 | ppc_md.hpte_updateboltedpp = ps3_hpte_updateboltedpp; |
| @@ -264,28 +200,5 @@ void __init ps3_hpte_init(unsigned long htab_size) | |||
| 264 | ppc_md.hpte_clear_all = ps3_hpte_clear; | 200 | ppc_md.hpte_clear_all = ps3_hpte_clear; |
| 265 | 201 | ||
| 266 | ppc64_pft_size = __ilog2(htab_size); | 202 | ppc64_pft_size = __ilog2(htab_size); |
| 267 | |||
| 268 | bitmap_size = htab_size / sizeof(struct hash_pte) / 8; | ||
| 269 | |||
| 270 | bolttab = __va(lmb_alloc(bitmap_size, 1)); | ||
| 271 | inusetab = __va(lmb_alloc(bitmap_size, 1)); | ||
| 272 | |||
| 273 | memset(bolttab, 0, bitmap_size); | ||
| 274 | memset(inusetab, 0, bitmap_size); | ||
| 275 | |||
| 276 | DBG(" <- %s:%d\n", __func__, __LINE__); | ||
| 277 | } | 203 | } |
| 278 | 204 | ||
| 279 | void __init ps3_map_htab(void) | ||
| 280 | { | ||
| 281 | long result; | ||
| 282 | unsigned long htab_size = (1UL << ppc64_pft_size); | ||
| 283 | |||
| 284 | result = lv1_map_htab(0, &htab_addr); | ||
| 285 | |||
| 286 | htab = (__force struct hash_pte *)ioremap_flags(htab_addr, htab_size, | ||
| 287 | pgprot_val(PAGE_READONLY_X)); | ||
| 288 | |||
| 289 | DBG("%s:%d: lpar %016lxh, virt %016lxh\n", __func__, __LINE__, | ||
| 290 | htab_addr, (unsigned long)htab); | ||
| 291 | } | ||
diff --git a/arch/powerpc/platforms/ps3/setup.c b/arch/powerpc/platforms/ps3/setup.c index a413abbd4123..77bc330263c4 100644 --- a/arch/powerpc/platforms/ps3/setup.c +++ b/arch/powerpc/platforms/ps3/setup.c | |||
| @@ -201,7 +201,6 @@ static void __init ps3_setup_arch(void) | |||
| 201 | ps3_firmware_version.rev); | 201 | ps3_firmware_version.rev); |
| 202 | 202 | ||
| 203 | ps3_spu_set_platform(); | 203 | ps3_spu_set_platform(); |
| 204 | ps3_map_htab(); | ||
| 205 | 204 | ||
| 206 | #ifdef CONFIG_SMP | 205 | #ifdef CONFIG_SMP |
| 207 | smp_init_ps3(); | 206 | smp_init_ps3(); |
diff --git a/arch/powerpc/platforms/ps3/spu.c b/arch/powerpc/platforms/ps3/spu.c index d135cef9ed6a..ccae3d446b98 100644 --- a/arch/powerpc/platforms/ps3/spu.c +++ b/arch/powerpc/platforms/ps3/spu.c | |||
| @@ -186,14 +186,24 @@ static void spu_unmap(struct spu *spu) | |||
| 186 | iounmap(spu_pdata(spu)->shadow); | 186 | iounmap(spu_pdata(spu)->shadow); |
| 187 | } | 187 | } |
| 188 | 188 | ||
| 189 | /** | ||
| 190 | * setup_areas - Map the spu regions into the address space. | ||
| 191 | * | ||
| 192 | * The current HV requires the spu shadow regs to be mapped with the | ||
| 193 | * PTE page protection bits set as read-only (PP=3). This implementation | ||
| 194 | * uses the low level __ioremap() to bypass the page protection settings | ||
| 195 | * inforced by ioremap_flags() to get the needed PTE bits set for the | ||
| 196 | * shadow regs. | ||
| 197 | */ | ||
| 198 | |||
| 189 | static int __init setup_areas(struct spu *spu) | 199 | static int __init setup_areas(struct spu *spu) |
| 190 | { | 200 | { |
| 191 | struct table {char* name; unsigned long addr; unsigned long size;}; | 201 | struct table {char* name; unsigned long addr; unsigned long size;}; |
| 202 | static const unsigned long shadow_flags = _PAGE_NO_CACHE | 3; | ||
| 192 | 203 | ||
| 193 | spu_pdata(spu)->shadow = ioremap_flags(spu_pdata(spu)->shadow_addr, | 204 | spu_pdata(spu)->shadow = __ioremap(spu_pdata(spu)->shadow_addr, |
| 194 | sizeof(struct spe_shadow), | 205 | sizeof(struct spe_shadow), |
| 195 | pgprot_val(PAGE_READONLY) | | 206 | shadow_flags); |
| 196 | _PAGE_NO_CACHE); | ||
| 197 | if (!spu_pdata(spu)->shadow) { | 207 | if (!spu_pdata(spu)->shadow) { |
| 198 | pr_debug("%s:%d: ioremap shadow failed\n", __func__, __LINE__); | 208 | pr_debug("%s:%d: ioremap shadow failed\n", __func__, __LINE__); |
| 199 | goto fail_ioremap; | 209 | goto fail_ioremap; |
diff --git a/arch/powerpc/platforms/pseries/setup.c b/arch/powerpc/platforms/pseries/setup.c index 3ce8a139b85d..7b01d67b4e48 100644 --- a/arch/powerpc/platforms/pseries/setup.c +++ b/arch/powerpc/platforms/pseries/setup.c | |||
| @@ -71,6 +71,7 @@ | |||
| 71 | int CMO_PrPSP = -1; | 71 | int CMO_PrPSP = -1; |
| 72 | int CMO_SecPSP = -1; | 72 | int CMO_SecPSP = -1; |
| 73 | unsigned long CMO_PageSize = (ASM_CONST(1) << IOMMU_PAGE_SHIFT); | 73 | unsigned long CMO_PageSize = (ASM_CONST(1) << IOMMU_PAGE_SHIFT); |
| 74 | EXPORT_SYMBOL(CMO_PageSize); | ||
| 74 | 75 | ||
| 75 | int fwnmi_active; /* TRUE if an FWNMI handler is present */ | 76 | int fwnmi_active; /* TRUE if an FWNMI handler is present */ |
| 76 | 77 | ||
diff --git a/arch/powerpc/sysdev/cpm_common.c b/arch/powerpc/sysdev/cpm_common.c index 53da8a079f96..00d3d17c84a3 100644 --- a/arch/powerpc/sysdev/cpm_common.c +++ b/arch/powerpc/sysdev/cpm_common.c | |||
| @@ -254,15 +254,11 @@ static int cpm2_gpio32_get(struct gpio_chip *gc, unsigned int gpio) | |||
| 254 | return !!(in_be32(&iop->dat) & pin_mask); | 254 | return !!(in_be32(&iop->dat) & pin_mask); |
| 255 | } | 255 | } |
| 256 | 256 | ||
| 257 | static void cpm2_gpio32_set(struct gpio_chip *gc, unsigned int gpio, int value) | 257 | static void __cpm2_gpio32_set(struct of_mm_gpio_chip *mm_gc, u32 pin_mask, |
| 258 | int value) | ||
| 258 | { | 259 | { |
| 259 | struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc); | ||
| 260 | struct cpm2_gpio32_chip *cpm2_gc = to_cpm2_gpio32_chip(mm_gc); | 260 | struct cpm2_gpio32_chip *cpm2_gc = to_cpm2_gpio32_chip(mm_gc); |
| 261 | struct cpm2_ioports __iomem *iop = mm_gc->regs; | 261 | struct cpm2_ioports __iomem *iop = mm_gc->regs; |
| 262 | unsigned long flags; | ||
| 263 | u32 pin_mask = 1 << (31 - gpio); | ||
| 264 | |||
| 265 | spin_lock_irqsave(&cpm2_gc->lock, flags); | ||
| 266 | 262 | ||
| 267 | if (value) | 263 | if (value) |
| 268 | cpm2_gc->cpdata |= pin_mask; | 264 | cpm2_gc->cpdata |= pin_mask; |
| @@ -270,6 +266,18 @@ static void cpm2_gpio32_set(struct gpio_chip *gc, unsigned int gpio, int value) | |||
| 270 | cpm2_gc->cpdata &= ~pin_mask; | 266 | cpm2_gc->cpdata &= ~pin_mask; |
| 271 | 267 | ||
| 272 | out_be32(&iop->dat, cpm2_gc->cpdata); | 268 | out_be32(&iop->dat, cpm2_gc->cpdata); |
| 269 | } | ||
| 270 | |||
| 271 | static void cpm2_gpio32_set(struct gpio_chip *gc, unsigned int gpio, int value) | ||
| 272 | { | ||
| 273 | struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc); | ||
| 274 | struct cpm2_gpio32_chip *cpm2_gc = to_cpm2_gpio32_chip(mm_gc); | ||
| 275 | unsigned long flags; | ||
| 276 | u32 pin_mask = 1 << (31 - gpio); | ||
| 277 | |||
| 278 | spin_lock_irqsave(&cpm2_gc->lock, flags); | ||
| 279 | |||
| 280 | __cpm2_gpio32_set(mm_gc, pin_mask, value); | ||
| 273 | 281 | ||
| 274 | spin_unlock_irqrestore(&cpm2_gc->lock, flags); | 282 | spin_unlock_irqrestore(&cpm2_gc->lock, flags); |
| 275 | } | 283 | } |
| @@ -277,14 +285,17 @@ static void cpm2_gpio32_set(struct gpio_chip *gc, unsigned int gpio, int value) | |||
| 277 | static int cpm2_gpio32_dir_out(struct gpio_chip *gc, unsigned int gpio, int val) | 285 | static int cpm2_gpio32_dir_out(struct gpio_chip *gc, unsigned int gpio, int val) |
| 278 | { | 286 | { |
| 279 | struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc); | 287 | struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc); |
| 288 | struct cpm2_gpio32_chip *cpm2_gc = to_cpm2_gpio32_chip(mm_gc); | ||
| 280 | struct cpm2_ioports __iomem *iop = mm_gc->regs; | 289 | struct cpm2_ioports __iomem *iop = mm_gc->regs; |
| 281 | u32 pin_mask; | 290 | unsigned long flags; |
| 291 | u32 pin_mask = 1 << (31 - gpio); | ||
| 282 | 292 | ||
| 283 | pin_mask = 1 << (31 - gpio); | 293 | spin_lock_irqsave(&cpm2_gc->lock, flags); |
| 284 | 294 | ||
| 285 | setbits32(&iop->dir, pin_mask); | 295 | setbits32(&iop->dir, pin_mask); |
| 296 | __cpm2_gpio32_set(mm_gc, pin_mask, val); | ||
| 286 | 297 | ||
| 287 | cpm2_gpio32_set(gc, gpio, val); | 298 | spin_unlock_irqrestore(&cpm2_gc->lock, flags); |
| 288 | 299 | ||
| 289 | return 0; | 300 | return 0; |
| 290 | } | 301 | } |
| @@ -292,13 +303,17 @@ static int cpm2_gpio32_dir_out(struct gpio_chip *gc, unsigned int gpio, int val) | |||
| 292 | static int cpm2_gpio32_dir_in(struct gpio_chip *gc, unsigned int gpio) | 303 | static int cpm2_gpio32_dir_in(struct gpio_chip *gc, unsigned int gpio) |
| 293 | { | 304 | { |
| 294 | struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc); | 305 | struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc); |
| 306 | struct cpm2_gpio32_chip *cpm2_gc = to_cpm2_gpio32_chip(mm_gc); | ||
| 295 | struct cpm2_ioports __iomem *iop = mm_gc->regs; | 307 | struct cpm2_ioports __iomem *iop = mm_gc->regs; |
| 296 | u32 pin_mask; | 308 | unsigned long flags; |
| 309 | u32 pin_mask = 1 << (31 - gpio); | ||
| 297 | 310 | ||
| 298 | pin_mask = 1 << (31 - gpio); | 311 | spin_lock_irqsave(&cpm2_gc->lock, flags); |
| 299 | 312 | ||
| 300 | clrbits32(&iop->dir, pin_mask); | 313 | clrbits32(&iop->dir, pin_mask); |
| 301 | 314 | ||
| 315 | spin_unlock_irqrestore(&cpm2_gc->lock, flags); | ||
| 316 | |||
| 302 | return 0; | 317 | return 0; |
| 303 | } | 318 | } |
| 304 | 319 | ||
diff --git a/arch/powerpc/sysdev/qe_lib/ucc_fast.c b/arch/powerpc/sysdev/qe_lib/ucc_fast.c index 1aecb075a72e..25fbbfaa837d 100644 --- a/arch/powerpc/sysdev/qe_lib/ucc_fast.c +++ b/arch/powerpc/sysdev/qe_lib/ucc_fast.c | |||
| @@ -208,6 +208,7 @@ int ucc_fast_init(struct ucc_fast_info * uf_info, struct ucc_fast_private ** ucc | |||
| 208 | uccf->uf_regs = ioremap(uf_info->regs, sizeof(struct ucc_fast)); | 208 | uccf->uf_regs = ioremap(uf_info->regs, sizeof(struct ucc_fast)); |
| 209 | if (uccf->uf_regs == NULL) { | 209 | if (uccf->uf_regs == NULL) { |
| 210 | printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__); | 210 | printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__); |
| 211 | kfree(uccf); | ||
| 211 | return -ENOMEM; | 212 | return -ENOMEM; |
| 212 | } | 213 | } |
| 213 | 214 | ||
| @@ -355,6 +356,9 @@ void ucc_fast_free(struct ucc_fast_private * uccf) | |||
| 355 | if (uccf->ucc_fast_rx_virtual_fifo_base_offset) | 356 | if (uccf->ucc_fast_rx_virtual_fifo_base_offset) |
| 356 | qe_muram_free(uccf->ucc_fast_rx_virtual_fifo_base_offset); | 357 | qe_muram_free(uccf->ucc_fast_rx_virtual_fifo_base_offset); |
| 357 | 358 | ||
| 359 | if (uccf->uf_regs) | ||
| 360 | iounmap(uccf->uf_regs); | ||
| 361 | |||
| 358 | kfree(uccf); | 362 | kfree(uccf); |
| 359 | } | 363 | } |
| 360 | EXPORT_SYMBOL(ucc_fast_free); | 364 | EXPORT_SYMBOL(ucc_fast_free); |
diff --git a/arch/powerpc/sysdev/qe_lib/ucc_slow.c b/arch/powerpc/sysdev/qe_lib/ucc_slow.c index a578bc77b9d5..e1d6a1340157 100644 --- a/arch/powerpc/sysdev/qe_lib/ucc_slow.c +++ b/arch/powerpc/sysdev/qe_lib/ucc_slow.c | |||
| @@ -171,6 +171,7 @@ int ucc_slow_init(struct ucc_slow_info * us_info, struct ucc_slow_private ** ucc | |||
| 171 | uccs->us_regs = ioremap(us_info->regs, sizeof(struct ucc_slow)); | 171 | uccs->us_regs = ioremap(us_info->regs, sizeof(struct ucc_slow)); |
| 172 | if (uccs->us_regs == NULL) { | 172 | if (uccs->us_regs == NULL) { |
| 173 | printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__); | 173 | printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__); |
| 174 | kfree(uccs); | ||
| 174 | return -ENOMEM; | 175 | return -ENOMEM; |
| 175 | } | 176 | } |
| 176 | 177 | ||
| @@ -367,10 +368,11 @@ void ucc_slow_free(struct ucc_slow_private * uccs) | |||
| 367 | if (uccs->tx_base_offset) | 368 | if (uccs->tx_base_offset) |
| 368 | qe_muram_free(uccs->tx_base_offset); | 369 | qe_muram_free(uccs->tx_base_offset); |
| 369 | 370 | ||
| 370 | if (uccs->us_pram) { | 371 | if (uccs->us_pram) |
| 371 | qe_muram_free(uccs->us_pram_offset); | 372 | qe_muram_free(uccs->us_pram_offset); |
| 372 | uccs->us_pram = NULL; | 373 | |
| 373 | } | 374 | if (uccs->us_regs) |
| 375 | iounmap(uccs->us_regs); | ||
| 374 | 376 | ||
| 375 | kfree(uccs); | 377 | kfree(uccs); |
| 376 | } | 378 | } |
diff --git a/arch/s390/kernel/vmlinux.lds.S b/arch/s390/kernel/vmlinux.lds.S index 76c1e60c92f3..607bd67a18ce 100644 --- a/arch/s390/kernel/vmlinux.lds.S +++ b/arch/s390/kernel/vmlinux.lds.S | |||
| @@ -55,7 +55,7 @@ SECTIONS | |||
| 55 | __start___ex_table = .; | 55 | __start___ex_table = .; |
| 56 | *(__ex_table) | 56 | *(__ex_table) |
| 57 | __stop___ex_table = .; | 57 | __stop___ex_table = .; |
| 58 | } | 58 | } :data |
| 59 | 59 | ||
| 60 | .data : { /* Data */ | 60 | .data : { /* Data */ |
| 61 | DATA_DATA | 61 | DATA_DATA |
diff --git a/arch/sparc/Makefile b/arch/sparc/Makefile index 6668e6037af6..9592889a6fd0 100644 --- a/arch/sparc/Makefile +++ b/arch/sparc/Makefile | |||
| @@ -52,20 +52,24 @@ endif | |||
| 52 | export INIT_Y CORE_Y DRIVERS_Y NET_Y LIBS_Y HEAD_Y kallsyms.o | 52 | export INIT_Y CORE_Y DRIVERS_Y NET_Y LIBS_Y HEAD_Y kallsyms.o |
| 53 | 53 | ||
| 54 | # Default target | 54 | # Default target |
| 55 | all: image | 55 | all: zImage |
| 56 | 56 | ||
| 57 | boot := arch/sparc/boot | 57 | boot := arch/sparc/boot |
| 58 | 58 | ||
| 59 | image tftpboot.img: vmlinux | 59 | image zImage tftpboot.img: vmlinux |
| 60 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ | 60 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 61 | 61 | ||
| 62 | archclean: | 62 | archclean: |
| 63 | $(Q)$(MAKE) $(clean)=$(boot) | 63 | $(Q)$(MAKE) $(clean)=$(boot) |
| 64 | 64 | ||
| 65 | # This is the image used for packaging | ||
| 66 | KBUILD_IMAGE := $(boot)/zImage | ||
| 67 | |||
| 65 | CLEAN_FILES += arch/$(ARCH)/boot/System.map | 68 | CLEAN_FILES += arch/$(ARCH)/boot/System.map |
| 66 | 69 | ||
| 67 | # Don't use tabs in echo arguments. | 70 | # Don't use tabs in echo arguments. |
| 68 | define archhelp | 71 | define archhelp |
| 69 | echo '* image - kernel image ($(boot)/image)' | 72 | echo '* image - kernel image ($(boot)/image)' |
| 73 | echo '* zImage - stripped kernel image ($(boot)/zImage)' | ||
| 70 | echo ' tftpboot.img - image prepared for tftp' | 74 | echo ' tftpboot.img - image prepared for tftp' |
| 71 | endef | 75 | endef |
diff --git a/arch/sparc/boot/Makefile b/arch/sparc/boot/Makefile index 22d331e1e941..3e77a9f52248 100644 --- a/arch/sparc/boot/Makefile +++ b/arch/sparc/boot/Makefile | |||
| @@ -19,6 +19,9 @@ quiet_cmd_sysmap = SYSMAP $(obj)/System.map | |||
| 19 | cmd_sysmap = $(CONFIG_SHELL) $(srctree)/scripts/mksysmap | 19 | cmd_sysmap = $(CONFIG_SHELL) $(srctree)/scripts/mksysmap |
| 20 | quiet_cmd_image = LD $@ | 20 | quiet_cmd_image = LD $@ |
| 21 | cmd_image = $(LD) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LDFLAGS_$(@F)) -o $@ | 21 | cmd_image = $(LD) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LDFLAGS_$(@F)) -o $@ |
| 22 | quiet_cmd_strip = STRIP $@ | ||
| 23 | cmd_strip = $(STRIP) -R .comment -R .note -K sun4u_init -K _end -K _start $(obj)/image -o $@ | ||
| 24 | |||
| 22 | 25 | ||
| 23 | define rule_image | 26 | define rule_image |
| 24 | $(if $($(quiet)cmd_image), \ | 27 | $(if $($(quiet)cmd_image), \ |
| @@ -49,6 +52,9 @@ LDFLAGS_image := -T arch/sparc/kernel/vmlinux.lds $(BTOBJS) \ | |||
| 49 | $(obj)/image: $(obj)/btfix.o FORCE | 52 | $(obj)/image: $(obj)/btfix.o FORCE |
| 50 | $(call if_changed_rule,image) | 53 | $(call if_changed_rule,image) |
| 51 | 54 | ||
| 55 | $(obj)/zImage: $(obj)/image | ||
| 56 | $(call if_changed,strip) | ||
| 57 | |||
| 52 | $(obj)/tftpboot.img: $(obj)/piggyback $(obj)/System.map $(obj)/image FORCE | 58 | $(obj)/tftpboot.img: $(obj)/piggyback $(obj)/System.map $(obj)/image FORCE |
| 53 | $(call if_changed,elftoaout) | 59 | $(call if_changed,elftoaout) |
| 54 | $(call if_changed,piggy) | 60 | $(call if_changed,piggy) |
diff --git a/arch/sparc64/Kconfig b/arch/sparc64/Kconfig index 923a98959fa7..36b4b7ab9cfb 100644 --- a/arch/sparc64/Kconfig +++ b/arch/sparc64/Kconfig | |||
| @@ -231,6 +231,7 @@ endmenu | |||
| 231 | 231 | ||
| 232 | config NUMA | 232 | config NUMA |
| 233 | bool "NUMA support" | 233 | bool "NUMA support" |
| 234 | depends on SMP | ||
| 234 | 235 | ||
| 235 | config NODES_SHIFT | 236 | config NODES_SHIFT |
| 236 | int | 237 | int |
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 68d91c8233f4..ed92864d1325 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
| @@ -577,35 +577,29 @@ config SWIOTLB | |||
| 577 | 577 | ||
| 578 | config IOMMU_HELPER | 578 | config IOMMU_HELPER |
| 579 | def_bool (CALGARY_IOMMU || GART_IOMMU || SWIOTLB || AMD_IOMMU) | 579 | def_bool (CALGARY_IOMMU || GART_IOMMU || SWIOTLB || AMD_IOMMU) |
| 580 | |||
| 580 | config MAXSMP | 581 | config MAXSMP |
| 581 | bool "Configure Maximum number of SMP Processors and NUMA Nodes" | 582 | bool "Configure Maximum number of SMP Processors and NUMA Nodes" |
| 582 | depends on X86_64 && SMP | 583 | depends on X86_64 && SMP && BROKEN |
| 583 | default n | 584 | default n |
| 584 | help | 585 | help |
| 585 | Configure maximum number of CPUS and NUMA Nodes for this architecture. | 586 | Configure maximum number of CPUS and NUMA Nodes for this architecture. |
| 586 | If unsure, say N. | 587 | If unsure, say N. |
| 587 | 588 | ||
| 588 | if MAXSMP | ||
| 589 | config NR_CPUS | ||
| 590 | int | ||
| 591 | default "4096" | ||
| 592 | endif | ||
| 593 | |||
| 594 | if !MAXSMP | ||
| 595 | config NR_CPUS | 589 | config NR_CPUS |
| 596 | int "Maximum number of CPUs (2-4096)" | 590 | int "Maximum number of CPUs (2-512)" if !MAXSMP |
| 597 | range 2 4096 | 591 | range 2 512 |
| 598 | depends on SMP | 592 | depends on SMP |
| 593 | default "4096" if MAXSMP | ||
| 599 | default "32" if X86_NUMAQ || X86_SUMMIT || X86_BIGSMP || X86_ES7000 | 594 | default "32" if X86_NUMAQ || X86_SUMMIT || X86_BIGSMP || X86_ES7000 |
| 600 | default "8" | 595 | default "8" |
| 601 | help | 596 | help |
| 602 | This allows you to specify the maximum number of CPUs which this | 597 | This allows you to specify the maximum number of CPUs which this |
| 603 | kernel will support. The maximum supported value is 4096 and the | 598 | kernel will support. The maximum supported value is 512 and the |
| 604 | minimum value which makes sense is 2. | 599 | minimum value which makes sense is 2. |
| 605 | 600 | ||
| 606 | This is purely to save memory - each supported CPU adds | 601 | This is purely to save memory - each supported CPU adds |
| 607 | approximately eight kilobytes to the kernel image. | 602 | approximately eight kilobytes to the kernel image. |
| 608 | endif | ||
| 609 | 603 | ||
| 610 | config SCHED_SMT | 604 | config SCHED_SMT |
| 611 | bool "SMT (Hyperthreading) scheduler support" | 605 | bool "SMT (Hyperthreading) scheduler support" |
| @@ -996,17 +990,10 @@ config NUMA_EMU | |||
| 996 | into virtual nodes when booted with "numa=fake=N", where N is the | 990 | into virtual nodes when booted with "numa=fake=N", where N is the |
| 997 | number of nodes. This is only useful for debugging. | 991 | number of nodes. This is only useful for debugging. |
| 998 | 992 | ||
| 999 | if MAXSMP | ||
| 1000 | |||
| 1001 | config NODES_SHIFT | 993 | config NODES_SHIFT |
| 1002 | int | 994 | int "Maximum NUMA Nodes (as a power of 2)" if !MAXSMP |
| 1003 | default "9" | ||
| 1004 | endif | ||
| 1005 | |||
| 1006 | if !MAXSMP | ||
| 1007 | config NODES_SHIFT | ||
| 1008 | int "Maximum NUMA Nodes (as a power of 2)" | ||
| 1009 | range 1 9 if X86_64 | 995 | range 1 9 if X86_64 |
| 996 | default "9" if MAXSMP | ||
| 1010 | default "6" if X86_64 | 997 | default "6" if X86_64 |
| 1011 | default "4" if X86_NUMAQ | 998 | default "4" if X86_NUMAQ |
| 1012 | default "3" | 999 | default "3" |
| @@ -1014,7 +1001,6 @@ config NODES_SHIFT | |||
| 1014 | help | 1001 | help |
| 1015 | Specify the maximum number of NUMA Nodes available on the target | 1002 | Specify the maximum number of NUMA Nodes available on the target |
| 1016 | system. Increases memory reserved to accomodate various tables. | 1003 | system. Increases memory reserved to accomodate various tables. |
| 1017 | endif | ||
| 1018 | 1004 | ||
| 1019 | config HAVE_ARCH_BOOTMEM_NODE | 1005 | config HAVE_ARCH_BOOTMEM_NODE |
| 1020 | def_bool y | 1006 | def_bool y |
diff --git a/arch/x86/kernel/cpu/mcheck/mce_64.c b/arch/x86/kernel/cpu/mcheck/mce_64.c index 65a339678ece..726a5fcdf341 100644 --- a/arch/x86/kernel/cpu/mcheck/mce_64.c +++ b/arch/x86/kernel/cpu/mcheck/mce_64.c | |||
| @@ -759,6 +759,7 @@ static struct sysdev_class mce_sysclass = { | |||
| 759 | }; | 759 | }; |
| 760 | 760 | ||
| 761 | DEFINE_PER_CPU(struct sys_device, device_mce); | 761 | DEFINE_PER_CPU(struct sys_device, device_mce); |
| 762 | void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu) __cpuinitdata; | ||
| 762 | 763 | ||
| 763 | /* Why are there no generic functions for this? */ | 764 | /* Why are there no generic functions for this? */ |
| 764 | #define ACCESSOR(name, var, start) \ | 765 | #define ACCESSOR(name, var, start) \ |
| @@ -883,9 +884,13 @@ static int __cpuinit mce_cpu_callback(struct notifier_block *nfb, | |||
| 883 | case CPU_ONLINE: | 884 | case CPU_ONLINE: |
| 884 | case CPU_ONLINE_FROZEN: | 885 | case CPU_ONLINE_FROZEN: |
| 885 | mce_create_device(cpu); | 886 | mce_create_device(cpu); |
| 887 | if (threshold_cpu_callback) | ||
| 888 | threshold_cpu_callback(action, cpu); | ||
| 886 | break; | 889 | break; |
| 887 | case CPU_DEAD: | 890 | case CPU_DEAD: |
| 888 | case CPU_DEAD_FROZEN: | 891 | case CPU_DEAD_FROZEN: |
| 892 | if (threshold_cpu_callback) | ||
| 893 | threshold_cpu_callback(action, cpu); | ||
| 889 | mce_remove_device(cpu); | 894 | mce_remove_device(cpu); |
| 890 | break; | 895 | break; |
| 891 | } | 896 | } |
diff --git a/arch/x86/kernel/cpu/mcheck/mce_amd_64.c b/arch/x86/kernel/cpu/mcheck/mce_amd_64.c index 88736cadbaa6..5eb390a4b2e9 100644 --- a/arch/x86/kernel/cpu/mcheck/mce_amd_64.c +++ b/arch/x86/kernel/cpu/mcheck/mce_amd_64.c | |||
| @@ -628,6 +628,7 @@ static void threshold_remove_bank(unsigned int cpu, int bank) | |||
| 628 | deallocate_threshold_block(cpu, bank); | 628 | deallocate_threshold_block(cpu, bank); |
| 629 | 629 | ||
| 630 | free_out: | 630 | free_out: |
| 631 | kobject_del(b->kobj); | ||
| 631 | kobject_put(b->kobj); | 632 | kobject_put(b->kobj); |
| 632 | kfree(b); | 633 | kfree(b); |
| 633 | per_cpu(threshold_banks, cpu)[bank] = NULL; | 634 | per_cpu(threshold_banks, cpu)[bank] = NULL; |
| @@ -645,14 +646,11 @@ static void threshold_remove_device(unsigned int cpu) | |||
| 645 | } | 646 | } |
| 646 | 647 | ||
| 647 | /* get notified when a cpu comes on/off */ | 648 | /* get notified when a cpu comes on/off */ |
| 648 | static int __cpuinit threshold_cpu_callback(struct notifier_block *nfb, | 649 | static void __cpuinit amd_64_threshold_cpu_callback(unsigned long action, |
| 649 | unsigned long action, void *hcpu) | 650 | unsigned int cpu) |
| 650 | { | 651 | { |
| 651 | /* cpu was unsigned int to begin with */ | ||
| 652 | unsigned int cpu = (unsigned long)hcpu; | ||
| 653 | |||
| 654 | if (cpu >= NR_CPUS) | 652 | if (cpu >= NR_CPUS) |
| 655 | goto out; | 653 | return; |
| 656 | 654 | ||
| 657 | switch (action) { | 655 | switch (action) { |
| 658 | case CPU_ONLINE: | 656 | case CPU_ONLINE: |
| @@ -666,14 +664,8 @@ static int __cpuinit threshold_cpu_callback(struct notifier_block *nfb, | |||
| 666 | default: | 664 | default: |
| 667 | break; | 665 | break; |
| 668 | } | 666 | } |
| 669 | out: | ||
| 670 | return NOTIFY_OK; | ||
| 671 | } | 667 | } |
| 672 | 668 | ||
| 673 | static struct notifier_block threshold_cpu_notifier __cpuinitdata = { | ||
| 674 | .notifier_call = threshold_cpu_callback, | ||
| 675 | }; | ||
| 676 | |||
| 677 | static __init int threshold_init_device(void) | 669 | static __init int threshold_init_device(void) |
| 678 | { | 670 | { |
| 679 | unsigned lcpu = 0; | 671 | unsigned lcpu = 0; |
| @@ -684,7 +676,7 @@ static __init int threshold_init_device(void) | |||
| 684 | if (err) | 676 | if (err) |
| 685 | return err; | 677 | return err; |
| 686 | } | 678 | } |
| 687 | register_hotcpu_notifier(&threshold_cpu_notifier); | 679 | threshold_cpu_callback = amd_64_threshold_cpu_callback; |
| 688 | return 0; | 680 | return 0; |
| 689 | } | 681 | } |
| 690 | 682 | ||
diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c index 46af71676738..8e786b0d665a 100644 --- a/arch/x86/kernel/tsc.c +++ b/arch/x86/kernel/tsc.c | |||
| @@ -314,7 +314,7 @@ static int time_cpufreq_notifier(struct notifier_block *nb, unsigned long val, | |||
| 314 | mark_tsc_unstable("cpufreq changes"); | 314 | mark_tsc_unstable("cpufreq changes"); |
| 315 | } | 315 | } |
| 316 | 316 | ||
| 317 | set_cyc2ns_scale(tsc_khz_ref, freq->cpu); | 317 | set_cyc2ns_scale(tsc_khz, freq->cpu); |
| 318 | 318 | ||
| 319 | return 0; | 319 | return 0; |
| 320 | } | 320 | } |
| @@ -325,6 +325,10 @@ static struct notifier_block time_cpufreq_notifier_block = { | |||
| 325 | 325 | ||
| 326 | static int __init cpufreq_tsc(void) | 326 | static int __init cpufreq_tsc(void) |
| 327 | { | 327 | { |
| 328 | if (!cpu_has_tsc) | ||
| 329 | return 0; | ||
| 330 | if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) | ||
| 331 | return 0; | ||
| 328 | cpufreq_register_notifier(&time_cpufreq_notifier_block, | 332 | cpufreq_register_notifier(&time_cpufreq_notifier_block, |
| 329 | CPUFREQ_TRANSITION_NOTIFIER); | 333 | CPUFREQ_TRANSITION_NOTIFIER); |
| 330 | return 0; | 334 | return 0; |
diff --git a/arch/x86/kvm/paging_tmpl.h b/arch/x86/kvm/paging_tmpl.h index f72ac1fa35f0..4a814bff21f2 100644 --- a/arch/x86/kvm/paging_tmpl.h +++ b/arch/x86/kvm/paging_tmpl.h | |||
| @@ -345,7 +345,7 @@ static u64 *FNAME(fetch)(struct kvm_vcpu *vcpu, gva_t addr, | |||
| 345 | shadow_addr = __pa(shadow_page->spt); | 345 | shadow_addr = __pa(shadow_page->spt); |
| 346 | shadow_pte = shadow_addr | PT_PRESENT_MASK | PT_ACCESSED_MASK | 346 | shadow_pte = shadow_addr | PT_PRESENT_MASK | PT_ACCESSED_MASK |
| 347 | | PT_WRITABLE_MASK | PT_USER_MASK; | 347 | | PT_WRITABLE_MASK | PT_USER_MASK; |
| 348 | *shadow_ent = shadow_pte; | 348 | set_shadow_pte(shadow_ent, shadow_pte); |
| 349 | } | 349 | } |
| 350 | 350 | ||
| 351 | mmu_set_spte(vcpu, shadow_ent, access, walker->pte_access & access, | 351 | mmu_set_spte(vcpu, shadow_ent, access, walker->pte_access & access, |
diff --git a/arch/x86/pci/amd_bus.c b/arch/x86/pci/amd_bus.c index dbf532369711..6a0fca78c362 100644 --- a/arch/x86/pci/amd_bus.c +++ b/arch/x86/pci/amd_bus.c | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #include <linux/init.h> | 1 | #include <linux/init.h> |
| 2 | #include <linux/pci.h> | 2 | #include <linux/pci.h> |
| 3 | #include <linux/topology.h> | 3 | #include <linux/topology.h> |
| 4 | #include <linux/cpu.h> | ||
| 4 | #include "pci.h" | 5 | #include "pci.h" |
| 5 | 6 | ||
| 6 | #ifdef CONFIG_X86_64 | 7 | #ifdef CONFIG_X86_64 |
| @@ -555,15 +556,17 @@ static int __init early_fill_mp_bus_info(void) | |||
| 555 | return 0; | 556 | return 0; |
| 556 | } | 557 | } |
| 557 | 558 | ||
| 558 | postcore_initcall(early_fill_mp_bus_info); | 559 | #else /* !CONFIG_X86_64 */ |
| 559 | 560 | ||
| 560 | #endif | 561 | static int __init early_fill_mp_bus_info(void) { return 0; } |
| 562 | |||
| 563 | #endif /* !CONFIG_X86_64 */ | ||
| 561 | 564 | ||
| 562 | /* common 32/64 bit code */ | 565 | /* common 32/64 bit code */ |
| 563 | 566 | ||
| 564 | #define ENABLE_CF8_EXT_CFG (1ULL << 46) | 567 | #define ENABLE_CF8_EXT_CFG (1ULL << 46) |
| 565 | 568 | ||
| 566 | static void enable_pci_io_ecs_per_cpu(void *unused) | 569 | static void enable_pci_io_ecs(void *unused) |
| 567 | { | 570 | { |
| 568 | u64 reg; | 571 | u64 reg; |
| 569 | rdmsrl(MSR_AMD64_NB_CFG, reg); | 572 | rdmsrl(MSR_AMD64_NB_CFG, reg); |
| @@ -573,14 +576,51 @@ static void enable_pci_io_ecs_per_cpu(void *unused) | |||
| 573 | } | 576 | } |
| 574 | } | 577 | } |
| 575 | 578 | ||
| 576 | static int __init enable_pci_io_ecs(void) | 579 | static int __cpuinit amd_cpu_notify(struct notifier_block *self, |
| 580 | unsigned long action, void *hcpu) | ||
| 577 | { | 581 | { |
| 582 | int cpu = (long)hcpu; | ||
| 583 | switch(action) { | ||
| 584 | case CPU_ONLINE: | ||
| 585 | case CPU_ONLINE_FROZEN: | ||
| 586 | smp_call_function_single(cpu, enable_pci_io_ecs, NULL, 0); | ||
| 587 | break; | ||
| 588 | default: | ||
| 589 | break; | ||
| 590 | } | ||
| 591 | return NOTIFY_OK; | ||
| 592 | } | ||
| 593 | |||
| 594 | static struct notifier_block __cpuinitdata amd_cpu_notifier = { | ||
| 595 | .notifier_call = amd_cpu_notify, | ||
| 596 | }; | ||
| 597 | |||
| 598 | static int __init pci_io_ecs_init(void) | ||
| 599 | { | ||
| 600 | int cpu; | ||
| 601 | |||
| 578 | /* assume all cpus from fam10h have IO ECS */ | 602 | /* assume all cpus from fam10h have IO ECS */ |
| 579 | if (boot_cpu_data.x86 < 0x10) | 603 | if (boot_cpu_data.x86 < 0x10) |
| 580 | return 0; | 604 | return 0; |
| 581 | on_each_cpu(enable_pci_io_ecs_per_cpu, NULL, 1); | 605 | |
| 606 | register_cpu_notifier(&amd_cpu_notifier); | ||
| 607 | for_each_online_cpu(cpu) | ||
| 608 | amd_cpu_notify(&amd_cpu_notifier, (unsigned long)CPU_ONLINE, | ||
| 609 | (void *)(long)cpu); | ||
| 582 | pci_probe |= PCI_HAS_IO_ECS; | 610 | pci_probe |= PCI_HAS_IO_ECS; |
| 611 | |||
| 612 | return 0; | ||
| 613 | } | ||
| 614 | |||
| 615 | static int __init amd_postcore_init(void) | ||
| 616 | { | ||
| 617 | if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) | ||
| 618 | return 0; | ||
| 619 | |||
| 620 | early_fill_mp_bus_info(); | ||
| 621 | pci_io_ecs_init(); | ||
| 622 | |||
| 583 | return 0; | 623 | return 0; |
| 584 | } | 624 | } |
| 585 | 625 | ||
| 586 | postcore_initcall(enable_pci_io_ecs); | 626 | postcore_initcall(amd_postcore_init); |
diff --git a/arch/x86/pci/i386.c b/arch/x86/pci/i386.c index 5807d1bc73f7..d765da913842 100644 --- a/arch/x86/pci/i386.c +++ b/arch/x86/pci/i386.c | |||
| @@ -31,8 +31,11 @@ | |||
| 31 | #include <linux/ioport.h> | 31 | #include <linux/ioport.h> |
| 32 | #include <linux/errno.h> | 32 | #include <linux/errno.h> |
| 33 | #include <linux/bootmem.h> | 33 | #include <linux/bootmem.h> |
| 34 | #include <linux/acpi.h> | ||
| 34 | 35 | ||
| 35 | #include <asm/pat.h> | 36 | #include <asm/pat.h> |
| 37 | #include <asm/hpet.h> | ||
| 38 | #include <asm/io_apic.h> | ||
| 36 | 39 | ||
| 37 | #include "pci.h" | 40 | #include "pci.h" |
| 38 | 41 | ||
| @@ -77,6 +80,77 @@ pcibios_align_resource(void *data, struct resource *res, | |||
| 77 | } | 80 | } |
| 78 | EXPORT_SYMBOL(pcibios_align_resource); | 81 | EXPORT_SYMBOL(pcibios_align_resource); |
| 79 | 82 | ||
| 83 | static int check_res_with_valid(struct pci_dev *dev, struct resource *res) | ||
| 84 | { | ||
| 85 | unsigned long base; | ||
| 86 | unsigned long size; | ||
| 87 | int i; | ||
| 88 | |||
| 89 | base = res->start; | ||
| 90 | size = (res->start == 0 && res->end == res->start) ? 0 : | ||
| 91 | (res->end - res->start + 1); | ||
| 92 | |||
| 93 | if (!base || !size) | ||
| 94 | return 0; | ||
| 95 | |||
| 96 | #ifdef CONFIG_HPET_TIMER | ||
| 97 | /* for hpet */ | ||
| 98 | if (base == hpet_address && (res->flags & IORESOURCE_MEM)) { | ||
| 99 | dev_info(&dev->dev, "BAR has HPET at %08lx-%08lx\n", | ||
| 100 | base, base + size - 1); | ||
| 101 | return 1; | ||
| 102 | } | ||
| 103 | #endif | ||
| 104 | |||
| 105 | #ifdef CONFIG_X86_IO_APIC | ||
| 106 | for (i = 0; i < nr_ioapics; i++) { | ||
| 107 | unsigned long ioapic_phys = mp_ioapics[i].mp_apicaddr; | ||
| 108 | |||
| 109 | if (base == ioapic_phys && (res->flags & IORESOURCE_MEM)) { | ||
| 110 | dev_info(&dev->dev, "BAR has ioapic at %08lx-%08lx\n", | ||
| 111 | base, base + size - 1); | ||
| 112 | return 1; | ||
| 113 | } | ||
| 114 | } | ||
| 115 | #endif | ||
| 116 | |||
| 117 | #ifdef CONFIG_PCI_MMCONFIG | ||
| 118 | for (i = 0; i < pci_mmcfg_config_num; i++) { | ||
| 119 | unsigned long addr; | ||
| 120 | |||
| 121 | addr = pci_mmcfg_config[i].address; | ||
| 122 | if (base == addr && (res->flags & IORESOURCE_MEM)) { | ||
| 123 | dev_info(&dev->dev, "BAR has MMCONFIG at %08lx-%08lx\n", | ||
| 124 | base, base + size - 1); | ||
| 125 | return 1; | ||
| 126 | } | ||
| 127 | } | ||
| 128 | #endif | ||
| 129 | |||
| 130 | return 0; | ||
| 131 | } | ||
| 132 | |||
| 133 | static int check_platform(struct pci_dev *dev, struct resource *res) | ||
| 134 | { | ||
| 135 | struct resource *root = NULL; | ||
| 136 | |||
| 137 | /* | ||
| 138 | * forcibly insert it into the | ||
| 139 | * resource tree | ||
| 140 | */ | ||
| 141 | if (res->flags & IORESOURCE_MEM) | ||
| 142 | root = &iomem_resource; | ||
| 143 | else if (res->flags & IORESOURCE_IO) | ||
| 144 | root = &ioport_resource; | ||
| 145 | |||
| 146 | if (root && check_res_with_valid(dev, res)) { | ||
| 147 | insert_resource(root, res); | ||
| 148 | |||
| 149 | return 1; | ||
| 150 | } | ||
| 151 | |||
| 152 | return 0; | ||
| 153 | } | ||
| 80 | /* | 154 | /* |
| 81 | * Handle resources of PCI devices. If the world were perfect, we could | 155 | * Handle resources of PCI devices. If the world were perfect, we could |
| 82 | * just allocate all the resource regions and do nothing more. It isn't. | 156 | * just allocate all the resource regions and do nothing more. It isn't. |
| @@ -128,6 +202,8 @@ static void __init pcibios_allocate_bus_resources(struct list_head *bus_list) | |||
| 128 | pr = pci_find_parent_resource(dev, r); | 202 | pr = pci_find_parent_resource(dev, r); |
| 129 | if (!r->start || !pr || | 203 | if (!r->start || !pr || |
| 130 | request_resource(pr, r) < 0) { | 204 | request_resource(pr, r) < 0) { |
| 205 | if (check_platform(dev, r)) | ||
| 206 | continue; | ||
| 131 | dev_err(&dev->dev, "BAR %d: can't " | 207 | dev_err(&dev->dev, "BAR %d: can't " |
| 132 | "allocate resource\n", idx); | 208 | "allocate resource\n", idx); |
| 133 | /* | 209 | /* |
| @@ -171,6 +247,8 @@ static void __init pcibios_allocate_resources(int pass) | |||
| 171 | r->flags, disabled, pass); | 247 | r->flags, disabled, pass); |
| 172 | pr = pci_find_parent_resource(dev, r); | 248 | pr = pci_find_parent_resource(dev, r); |
| 173 | if (!pr || request_resource(pr, r) < 0) { | 249 | if (!pr || request_resource(pr, r) < 0) { |
| 250 | if (check_platform(dev, r)) | ||
| 251 | continue; | ||
| 174 | dev_err(&dev->dev, "BAR %d: can't " | 252 | dev_err(&dev->dev, "BAR %d: can't " |
| 175 | "allocate resource\n", idx); | 253 | "allocate resource\n", idx); |
| 176 | /* We'll assign a new address later */ | 254 | /* We'll assign a new address later */ |
diff --git a/block/blk-core.c b/block/blk-core.c index 4889eb86a39e..2cba5ef97b2b 100644 --- a/block/blk-core.c +++ b/block/blk-core.c | |||
| @@ -582,6 +582,8 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id) | |||
| 582 | 582 | ||
| 583 | q->sg_reserved_size = INT_MAX; | 583 | q->sg_reserved_size = INT_MAX; |
| 584 | 584 | ||
| 585 | blk_set_cmd_filter_defaults(&q->cmd_filter); | ||
| 586 | |||
| 585 | /* | 587 | /* |
| 586 | * all done | 588 | * all done |
| 587 | */ | 589 | */ |
diff --git a/block/blk-tag.c b/block/blk-tag.c index 32667beb03ee..ed5166fbc599 100644 --- a/block/blk-tag.c +++ b/block/blk-tag.c | |||
| @@ -38,7 +38,8 @@ static int __blk_free_tags(struct blk_queue_tag *bqt) | |||
| 38 | 38 | ||
| 39 | retval = atomic_dec_and_test(&bqt->refcnt); | 39 | retval = atomic_dec_and_test(&bqt->refcnt); |
| 40 | if (retval) { | 40 | if (retval) { |
| 41 | BUG_ON(bqt->busy); | 41 | BUG_ON(find_first_bit(bqt->tag_map, bqt->max_depth) < |
| 42 | bqt->max_depth); | ||
| 42 | 43 | ||
| 43 | kfree(bqt->tag_index); | 44 | kfree(bqt->tag_index); |
| 44 | bqt->tag_index = NULL; | 45 | bqt->tag_index = NULL; |
| @@ -147,7 +148,6 @@ static struct blk_queue_tag *__blk_queue_init_tags(struct request_queue *q, | |||
| 147 | if (init_tag_map(q, tags, depth)) | 148 | if (init_tag_map(q, tags, depth)) |
| 148 | goto fail; | 149 | goto fail; |
| 149 | 150 | ||
| 150 | tags->busy = 0; | ||
| 151 | atomic_set(&tags->refcnt, 1); | 151 | atomic_set(&tags->refcnt, 1); |
| 152 | return tags; | 152 | return tags; |
| 153 | fail: | 153 | fail: |
| @@ -313,7 +313,6 @@ void blk_queue_end_tag(struct request_queue *q, struct request *rq) | |||
| 313 | * unlock memory barrier semantics. | 313 | * unlock memory barrier semantics. |
| 314 | */ | 314 | */ |
| 315 | clear_bit_unlock(tag, bqt->tag_map); | 315 | clear_bit_unlock(tag, bqt->tag_map); |
| 316 | bqt->busy--; | ||
| 317 | } | 316 | } |
| 318 | EXPORT_SYMBOL(blk_queue_end_tag); | 317 | EXPORT_SYMBOL(blk_queue_end_tag); |
| 319 | 318 | ||
| @@ -368,7 +367,6 @@ int blk_queue_start_tag(struct request_queue *q, struct request *rq) | |||
| 368 | bqt->tag_index[tag] = rq; | 367 | bqt->tag_index[tag] = rq; |
| 369 | blkdev_dequeue_request(rq); | 368 | blkdev_dequeue_request(rq); |
| 370 | list_add(&rq->queuelist, &q->tag_busy_list); | 369 | list_add(&rq->queuelist, &q->tag_busy_list); |
| 371 | bqt->busy++; | ||
| 372 | return 0; | 370 | return 0; |
| 373 | } | 371 | } |
| 374 | EXPORT_SYMBOL(blk_queue_start_tag); | 372 | EXPORT_SYMBOL(blk_queue_start_tag); |
diff --git a/block/bsg.c b/block/bsg.c index 5a68b09a69ba..0aae8d7ba99c 100644 --- a/block/bsg.c +++ b/block/bsg.c | |||
| @@ -45,8 +45,6 @@ struct bsg_device { | |||
| 45 | char name[BUS_ID_SIZE]; | 45 | char name[BUS_ID_SIZE]; |
| 46 | int max_queue; | 46 | int max_queue; |
| 47 | unsigned long flags; | 47 | unsigned long flags; |
| 48 | struct blk_scsi_cmd_filter *cmd_filter; | ||
| 49 | mode_t *f_mode; | ||
| 50 | }; | 48 | }; |
| 51 | 49 | ||
| 52 | enum { | 50 | enum { |
| @@ -174,7 +172,8 @@ unlock: | |||
| 174 | } | 172 | } |
| 175 | 173 | ||
| 176 | static int blk_fill_sgv4_hdr_rq(struct request_queue *q, struct request *rq, | 174 | static int blk_fill_sgv4_hdr_rq(struct request_queue *q, struct request *rq, |
| 177 | struct sg_io_v4 *hdr, struct bsg_device *bd) | 175 | struct sg_io_v4 *hdr, struct bsg_device *bd, |
| 176 | int has_write_perm) | ||
| 178 | { | 177 | { |
| 179 | if (hdr->request_len > BLK_MAX_CDB) { | 178 | if (hdr->request_len > BLK_MAX_CDB) { |
| 180 | rq->cmd = kzalloc(hdr->request_len, GFP_KERNEL); | 179 | rq->cmd = kzalloc(hdr->request_len, GFP_KERNEL); |
| @@ -187,8 +186,7 @@ static int blk_fill_sgv4_hdr_rq(struct request_queue *q, struct request *rq, | |||
| 187 | return -EFAULT; | 186 | return -EFAULT; |
| 188 | 187 | ||
| 189 | if (hdr->subprotocol == BSG_SUB_PROTOCOL_SCSI_CMD) { | 188 | if (hdr->subprotocol == BSG_SUB_PROTOCOL_SCSI_CMD) { |
| 190 | if (blk_cmd_filter_verify_command(bd->cmd_filter, rq->cmd, | 189 | if (blk_verify_command(&q->cmd_filter, rq->cmd, has_write_perm)) |
| 191 | bd->f_mode)) | ||
| 192 | return -EPERM; | 190 | return -EPERM; |
| 193 | } else if (!capable(CAP_SYS_RAWIO)) | 191 | } else if (!capable(CAP_SYS_RAWIO)) |
| 194 | return -EPERM; | 192 | return -EPERM; |
| @@ -244,7 +242,7 @@ bsg_validate_sgv4_hdr(struct request_queue *q, struct sg_io_v4 *hdr, int *rw) | |||
| 244 | * map sg_io_v4 to a request. | 242 | * map sg_io_v4 to a request. |
| 245 | */ | 243 | */ |
| 246 | static struct request * | 244 | static struct request * |
| 247 | bsg_map_hdr(struct bsg_device *bd, struct sg_io_v4 *hdr) | 245 | bsg_map_hdr(struct bsg_device *bd, struct sg_io_v4 *hdr, int has_write_perm) |
| 248 | { | 246 | { |
| 249 | struct request_queue *q = bd->queue; | 247 | struct request_queue *q = bd->queue; |
| 250 | struct request *rq, *next_rq = NULL; | 248 | struct request *rq, *next_rq = NULL; |
| @@ -266,7 +264,7 @@ bsg_map_hdr(struct bsg_device *bd, struct sg_io_v4 *hdr) | |||
| 266 | rq = blk_get_request(q, rw, GFP_KERNEL); | 264 | rq = blk_get_request(q, rw, GFP_KERNEL); |
| 267 | if (!rq) | 265 | if (!rq) |
| 268 | return ERR_PTR(-ENOMEM); | 266 | return ERR_PTR(-ENOMEM); |
| 269 | ret = blk_fill_sgv4_hdr_rq(q, rq, hdr, bd); | 267 | ret = blk_fill_sgv4_hdr_rq(q, rq, hdr, bd, has_write_perm); |
| 270 | if (ret) | 268 | if (ret) |
| 271 | goto out; | 269 | goto out; |
| 272 | 270 | ||
| @@ -568,25 +566,6 @@ static inline void bsg_set_block(struct bsg_device *bd, struct file *file) | |||
| 568 | set_bit(BSG_F_BLOCK, &bd->flags); | 566 | set_bit(BSG_F_BLOCK, &bd->flags); |
| 569 | } | 567 | } |
| 570 | 568 | ||
| 571 | static void bsg_set_cmd_filter(struct bsg_device *bd, | ||
| 572 | struct file *file) | ||
| 573 | { | ||
| 574 | struct inode *inode; | ||
| 575 | struct gendisk *disk; | ||
| 576 | |||
| 577 | if (!file) | ||
| 578 | return; | ||
| 579 | |||
| 580 | inode = file->f_dentry->d_inode; | ||
| 581 | if (!inode) | ||
| 582 | return; | ||
| 583 | |||
| 584 | disk = inode->i_bdev->bd_disk; | ||
| 585 | |||
| 586 | bd->cmd_filter = &disk->cmd_filter; | ||
| 587 | bd->f_mode = &file->f_mode; | ||
| 588 | } | ||
| 589 | |||
| 590 | /* | 569 | /* |
| 591 | * Check if the error is a "real" error that we should return. | 570 | * Check if the error is a "real" error that we should return. |
| 592 | */ | 571 | */ |
| @@ -608,7 +587,6 @@ bsg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) | |||
| 608 | dprintk("%s: read %Zd bytes\n", bd->name, count); | 587 | dprintk("%s: read %Zd bytes\n", bd->name, count); |
| 609 | 588 | ||
| 610 | bsg_set_block(bd, file); | 589 | bsg_set_block(bd, file); |
| 611 | bsg_set_cmd_filter(bd, file); | ||
| 612 | 590 | ||
| 613 | bytes_read = 0; | 591 | bytes_read = 0; |
| 614 | ret = __bsg_read(buf, count, bd, NULL, &bytes_read); | 592 | ret = __bsg_read(buf, count, bd, NULL, &bytes_read); |
| @@ -621,7 +599,7 @@ bsg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) | |||
| 621 | } | 599 | } |
| 622 | 600 | ||
| 623 | static int __bsg_write(struct bsg_device *bd, const char __user *buf, | 601 | static int __bsg_write(struct bsg_device *bd, const char __user *buf, |
| 624 | size_t count, ssize_t *bytes_written) | 602 | size_t count, ssize_t *bytes_written, int has_write_perm) |
| 625 | { | 603 | { |
| 626 | struct bsg_command *bc; | 604 | struct bsg_command *bc; |
| 627 | struct request *rq; | 605 | struct request *rq; |
| @@ -652,7 +630,7 @@ static int __bsg_write(struct bsg_device *bd, const char __user *buf, | |||
| 652 | /* | 630 | /* |
| 653 | * get a request, fill in the blanks, and add to request queue | 631 | * get a request, fill in the blanks, and add to request queue |
| 654 | */ | 632 | */ |
| 655 | rq = bsg_map_hdr(bd, &bc->hdr); | 633 | rq = bsg_map_hdr(bd, &bc->hdr, has_write_perm); |
| 656 | if (IS_ERR(rq)) { | 634 | if (IS_ERR(rq)) { |
| 657 | ret = PTR_ERR(rq); | 635 | ret = PTR_ERR(rq); |
| 658 | rq = NULL; | 636 | rq = NULL; |
| @@ -683,10 +661,11 @@ bsg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) | |||
| 683 | dprintk("%s: write %Zd bytes\n", bd->name, count); | 661 | dprintk("%s: write %Zd bytes\n", bd->name, count); |
| 684 | 662 | ||
| 685 | bsg_set_block(bd, file); | 663 | bsg_set_block(bd, file); |
| 686 | bsg_set_cmd_filter(bd, file); | ||
| 687 | 664 | ||
| 688 | bytes_written = 0; | 665 | bytes_written = 0; |
| 689 | ret = __bsg_write(bd, buf, count, &bytes_written); | 666 | ret = __bsg_write(bd, buf, count, &bytes_written, |
| 667 | file->f_mode & FMODE_WRITE); | ||
| 668 | |||
| 690 | *ppos = bytes_written; | 669 | *ppos = bytes_written; |
| 691 | 670 | ||
| 692 | /* | 671 | /* |
| @@ -792,7 +771,6 @@ static struct bsg_device *bsg_add_device(struct inode *inode, | |||
| 792 | bd->queue = rq; | 771 | bd->queue = rq; |
| 793 | 772 | ||
| 794 | bsg_set_block(bd, file); | 773 | bsg_set_block(bd, file); |
| 795 | bsg_set_cmd_filter(bd, file); | ||
| 796 | 774 | ||
| 797 | atomic_set(&bd->ref_count, 1); | 775 | atomic_set(&bd->ref_count, 1); |
| 798 | mutex_lock(&bsg_mutex); | 776 | mutex_lock(&bsg_mutex); |
| @@ -943,7 +921,7 @@ static long bsg_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
| 943 | if (copy_from_user(&hdr, uarg, sizeof(hdr))) | 921 | if (copy_from_user(&hdr, uarg, sizeof(hdr))) |
| 944 | return -EFAULT; | 922 | return -EFAULT; |
| 945 | 923 | ||
| 946 | rq = bsg_map_hdr(bd, &hdr); | 924 | rq = bsg_map_hdr(bd, &hdr, file->f_mode & FMODE_WRITE); |
| 947 | if (IS_ERR(rq)) | 925 | if (IS_ERR(rq)) |
| 948 | return PTR_ERR(rq); | 926 | return PTR_ERR(rq); |
| 949 | 927 | ||
diff --git a/block/cmd-filter.c b/block/cmd-filter.c index eec4404fd357..1d4026206ac2 100644 --- a/block/cmd-filter.c +++ b/block/cmd-filter.c | |||
| @@ -20,15 +20,14 @@ | |||
| 20 | #include <linux/list.h> | 20 | #include <linux/list.h> |
| 21 | #include <linux/genhd.h> | 21 | #include <linux/genhd.h> |
| 22 | #include <linux/spinlock.h> | 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/parser.h> | ||
| 24 | #include <linux/capability.h> | 23 | #include <linux/capability.h> |
| 25 | #include <linux/bitops.h> | 24 | #include <linux/bitops.h> |
| 26 | 25 | ||
| 27 | #include <scsi/scsi.h> | 26 | #include <scsi/scsi.h> |
| 28 | #include <linux/cdrom.h> | 27 | #include <linux/cdrom.h> |
| 29 | 28 | ||
| 30 | int blk_cmd_filter_verify_command(struct blk_scsi_cmd_filter *filter, | 29 | int blk_verify_command(struct blk_cmd_filter *filter, |
| 31 | unsigned char *cmd, mode_t *f_mode) | 30 | unsigned char *cmd, int has_write_perm) |
| 32 | { | 31 | { |
| 33 | /* root can do any command. */ | 32 | /* root can do any command. */ |
| 34 | if (capable(CAP_SYS_RAWIO)) | 33 | if (capable(CAP_SYS_RAWIO)) |
| @@ -43,34 +42,15 @@ int blk_cmd_filter_verify_command(struct blk_scsi_cmd_filter *filter, | |||
| 43 | return 0; | 42 | return 0; |
| 44 | 43 | ||
| 45 | /* Write-safe commands require a writable open */ | 44 | /* Write-safe commands require a writable open */ |
| 46 | if (test_bit(cmd[0], filter->write_ok) && (*f_mode & FMODE_WRITE)) | 45 | if (test_bit(cmd[0], filter->write_ok) && has_write_perm) |
| 47 | return 0; | 46 | return 0; |
| 48 | 47 | ||
| 49 | return -EPERM; | 48 | return -EPERM; |
| 50 | } | 49 | } |
| 51 | EXPORT_SYMBOL(blk_cmd_filter_verify_command); | ||
| 52 | |||
| 53 | int blk_verify_command(struct file *file, unsigned char *cmd) | ||
| 54 | { | ||
| 55 | struct gendisk *disk; | ||
| 56 | struct inode *inode; | ||
| 57 | |||
| 58 | if (!file) | ||
| 59 | return -EINVAL; | ||
| 60 | |||
| 61 | inode = file->f_dentry->d_inode; | ||
| 62 | if (!inode) | ||
| 63 | return -EINVAL; | ||
| 64 | |||
| 65 | disk = inode->i_bdev->bd_disk; | ||
| 66 | |||
| 67 | return blk_cmd_filter_verify_command(&disk->cmd_filter, | ||
| 68 | cmd, &file->f_mode); | ||
| 69 | } | ||
| 70 | EXPORT_SYMBOL(blk_verify_command); | 50 | EXPORT_SYMBOL(blk_verify_command); |
| 71 | 51 | ||
| 72 | /* and now, the sysfs stuff */ | 52 | /* and now, the sysfs stuff */ |
| 73 | static ssize_t rcf_cmds_show(struct blk_scsi_cmd_filter *filter, char *page, | 53 | static ssize_t rcf_cmds_show(struct blk_cmd_filter *filter, char *page, |
| 74 | int rw) | 54 | int rw) |
| 75 | { | 55 | { |
| 76 | char *npage = page; | 56 | char *npage = page; |
| @@ -84,8 +64,7 @@ static ssize_t rcf_cmds_show(struct blk_scsi_cmd_filter *filter, char *page, | |||
| 84 | 64 | ||
| 85 | for (i = 0; i < BLK_SCSI_MAX_CMDS; i++) { | 65 | for (i = 0; i < BLK_SCSI_MAX_CMDS; i++) { |
| 86 | if (test_bit(i, okbits)) { | 66 | if (test_bit(i, okbits)) { |
| 87 | sprintf(npage, "%02x", i); | 67 | npage += sprintf(npage, "0x%02x", i); |
| 88 | npage += 2; | ||
| 89 | if (i < BLK_SCSI_MAX_CMDS - 1) | 68 | if (i < BLK_SCSI_MAX_CMDS - 1) |
| 90 | sprintf(npage++, " "); | 69 | sprintf(npage++, " "); |
| 91 | } | 70 | } |
| @@ -97,57 +76,65 @@ static ssize_t rcf_cmds_show(struct blk_scsi_cmd_filter *filter, char *page, | |||
| 97 | return npage - page; | 76 | return npage - page; |
| 98 | } | 77 | } |
| 99 | 78 | ||
| 100 | static ssize_t rcf_readcmds_show(struct blk_scsi_cmd_filter *filter, char *page) | 79 | static ssize_t rcf_readcmds_show(struct blk_cmd_filter *filter, char *page) |
| 101 | { | 80 | { |
| 102 | return rcf_cmds_show(filter, page, READ); | 81 | return rcf_cmds_show(filter, page, READ); |
| 103 | } | 82 | } |
| 104 | 83 | ||
| 105 | static ssize_t rcf_writecmds_show(struct blk_scsi_cmd_filter *filter, | 84 | static ssize_t rcf_writecmds_show(struct blk_cmd_filter *filter, |
| 106 | char *page) | 85 | char *page) |
| 107 | { | 86 | { |
| 108 | return rcf_cmds_show(filter, page, WRITE); | 87 | return rcf_cmds_show(filter, page, WRITE); |
| 109 | } | 88 | } |
| 110 | 89 | ||
| 111 | static ssize_t rcf_cmds_store(struct blk_scsi_cmd_filter *filter, | 90 | static ssize_t rcf_cmds_store(struct blk_cmd_filter *filter, |
| 112 | const char *page, size_t count, int rw) | 91 | const char *page, size_t count, int rw) |
| 113 | { | 92 | { |
| 114 | ssize_t ret = 0; | ||
| 115 | unsigned long okbits[BLK_SCSI_CMD_PER_LONG], *target_okbits; | 93 | unsigned long okbits[BLK_SCSI_CMD_PER_LONG], *target_okbits; |
| 116 | int cmd, status, len; | 94 | int cmd, set; |
| 117 | substring_t ss; | 95 | char *p, *status; |
| 118 | 96 | ||
| 119 | memset(&okbits, 0, sizeof(okbits)); | 97 | if (rw == READ) { |
| 120 | 98 | memcpy(&okbits, filter->read_ok, sizeof(okbits)); | |
| 121 | for (len = strlen(page); len > 0; len -= 3) { | 99 | target_okbits = filter->read_ok; |
| 122 | if (len < 2) | 100 | } else { |
| 123 | break; | 101 | memcpy(&okbits, filter->write_ok, sizeof(okbits)); |
| 124 | ss.from = (char *) page + ret; | 102 | target_okbits = filter->write_ok; |
| 125 | ss.to = (char *) page + ret + 2; | 103 | } |
| 126 | ret += 3; | 104 | |
| 127 | status = match_hex(&ss, &cmd); | 105 | while ((p = strsep((char **)&page, " ")) != NULL) { |
| 106 | set = 1; | ||
| 107 | |||
| 108 | if (p[0] == '+') { | ||
| 109 | p++; | ||
| 110 | } else if (p[0] == '-') { | ||
| 111 | set = 0; | ||
| 112 | p++; | ||
| 113 | } | ||
| 114 | |||
| 115 | cmd = simple_strtol(p, &status, 16); | ||
| 116 | |||
| 128 | /* either of these cases means invalid input, so do nothing. */ | 117 | /* either of these cases means invalid input, so do nothing. */ |
| 129 | if (status || cmd >= BLK_SCSI_MAX_CMDS) | 118 | if ((status == p) || cmd >= BLK_SCSI_MAX_CMDS) |
| 130 | return -EINVAL; | 119 | return -EINVAL; |
| 131 | 120 | ||
| 132 | __set_bit(cmd, okbits); | 121 | if (set) |
| 122 | __set_bit(cmd, okbits); | ||
| 123 | else | ||
| 124 | __clear_bit(cmd, okbits); | ||
| 133 | } | 125 | } |
| 134 | 126 | ||
| 135 | if (rw == READ) | 127 | memcpy(target_okbits, okbits, sizeof(okbits)); |
| 136 | target_okbits = filter->read_ok; | ||
| 137 | else | ||
| 138 | target_okbits = filter->write_ok; | ||
| 139 | |||
| 140 | memmove(target_okbits, okbits, sizeof(okbits)); | ||
| 141 | return count; | 128 | return count; |
| 142 | } | 129 | } |
| 143 | 130 | ||
| 144 | static ssize_t rcf_readcmds_store(struct blk_scsi_cmd_filter *filter, | 131 | static ssize_t rcf_readcmds_store(struct blk_cmd_filter *filter, |
| 145 | const char *page, size_t count) | 132 | const char *page, size_t count) |
| 146 | { | 133 | { |
| 147 | return rcf_cmds_store(filter, page, count, READ); | 134 | return rcf_cmds_store(filter, page, count, READ); |
| 148 | } | 135 | } |
| 149 | 136 | ||
| 150 | static ssize_t rcf_writecmds_store(struct blk_scsi_cmd_filter *filter, | 137 | static ssize_t rcf_writecmds_store(struct blk_cmd_filter *filter, |
| 151 | const char *page, size_t count) | 138 | const char *page, size_t count) |
| 152 | { | 139 | { |
| 153 | return rcf_cmds_store(filter, page, count, WRITE); | 140 | return rcf_cmds_store(filter, page, count, WRITE); |
| @@ -155,8 +142,8 @@ static ssize_t rcf_writecmds_store(struct blk_scsi_cmd_filter *filter, | |||
| 155 | 142 | ||
| 156 | struct rcf_sysfs_entry { | 143 | struct rcf_sysfs_entry { |
| 157 | struct attribute attr; | 144 | struct attribute attr; |
| 158 | ssize_t (*show)(struct blk_scsi_cmd_filter *, char *); | 145 | ssize_t (*show)(struct blk_cmd_filter *, char *); |
| 159 | ssize_t (*store)(struct blk_scsi_cmd_filter *, const char *, size_t); | 146 | ssize_t (*store)(struct blk_cmd_filter *, const char *, size_t); |
| 160 | }; | 147 | }; |
| 161 | 148 | ||
| 162 | static struct rcf_sysfs_entry rcf_readcmds_entry = { | 149 | static struct rcf_sysfs_entry rcf_readcmds_entry = { |
| @@ -183,9 +170,9 @@ static ssize_t | |||
| 183 | rcf_attr_show(struct kobject *kobj, struct attribute *attr, char *page) | 170 | rcf_attr_show(struct kobject *kobj, struct attribute *attr, char *page) |
| 184 | { | 171 | { |
| 185 | struct rcf_sysfs_entry *entry = to_rcf(attr); | 172 | struct rcf_sysfs_entry *entry = to_rcf(attr); |
| 186 | struct blk_scsi_cmd_filter *filter; | 173 | struct blk_cmd_filter *filter; |
| 187 | 174 | ||
| 188 | filter = container_of(kobj, struct blk_scsi_cmd_filter, kobj); | 175 | filter = container_of(kobj, struct blk_cmd_filter, kobj); |
| 189 | if (entry->show) | 176 | if (entry->show) |
| 190 | return entry->show(filter, page); | 177 | return entry->show(filter, page); |
| 191 | 178 | ||
| @@ -197,7 +184,7 @@ rcf_attr_store(struct kobject *kobj, struct attribute *attr, | |||
| 197 | const char *page, size_t length) | 184 | const char *page, size_t length) |
| 198 | { | 185 | { |
| 199 | struct rcf_sysfs_entry *entry = to_rcf(attr); | 186 | struct rcf_sysfs_entry *entry = to_rcf(attr); |
| 200 | struct blk_scsi_cmd_filter *filter; | 187 | struct blk_cmd_filter *filter; |
| 201 | 188 | ||
| 202 | if (!capable(CAP_SYS_RAWIO)) | 189 | if (!capable(CAP_SYS_RAWIO)) |
| 203 | return -EPERM; | 190 | return -EPERM; |
| @@ -205,7 +192,7 @@ rcf_attr_store(struct kobject *kobj, struct attribute *attr, | |||
| 205 | if (!entry->store) | 192 | if (!entry->store) |
| 206 | return -EINVAL; | 193 | return -EINVAL; |
| 207 | 194 | ||
| 208 | filter = container_of(kobj, struct blk_scsi_cmd_filter, kobj); | 195 | filter = container_of(kobj, struct blk_cmd_filter, kobj); |
| 209 | return entry->store(filter, page, length); | 196 | return entry->store(filter, page, length); |
| 210 | } | 197 | } |
| 211 | 198 | ||
| @@ -219,114 +206,27 @@ static struct kobj_type rcf_ktype = { | |||
| 219 | .default_attrs = default_attrs, | 206 | .default_attrs = default_attrs, |
| 220 | }; | 207 | }; |
| 221 | 208 | ||
| 222 | #ifndef MAINTENANCE_IN_CMD | ||
| 223 | #define MAINTENANCE_IN_CMD 0xa3 | ||
| 224 | #endif | ||
| 225 | |||
| 226 | static void rcf_set_defaults(struct blk_scsi_cmd_filter *filter) | ||
| 227 | { | ||
| 228 | /* Basic read-only commands */ | ||
| 229 | __set_bit(TEST_UNIT_READY, filter->read_ok); | ||
| 230 | __set_bit(REQUEST_SENSE, filter->read_ok); | ||
| 231 | __set_bit(READ_6, filter->read_ok); | ||
| 232 | __set_bit(READ_10, filter->read_ok); | ||
| 233 | __set_bit(READ_12, filter->read_ok); | ||
| 234 | __set_bit(READ_16, filter->read_ok); | ||
| 235 | __set_bit(READ_BUFFER, filter->read_ok); | ||
| 236 | __set_bit(READ_DEFECT_DATA, filter->read_ok); | ||
| 237 | __set_bit(READ_CAPACITY, filter->read_ok); | ||
| 238 | __set_bit(READ_LONG, filter->read_ok); | ||
| 239 | __set_bit(INQUIRY, filter->read_ok); | ||
| 240 | __set_bit(MODE_SENSE, filter->read_ok); | ||
| 241 | __set_bit(MODE_SENSE_10, filter->read_ok); | ||
| 242 | __set_bit(LOG_SENSE, filter->read_ok); | ||
| 243 | __set_bit(START_STOP, filter->read_ok); | ||
| 244 | __set_bit(GPCMD_VERIFY_10, filter->read_ok); | ||
| 245 | __set_bit(VERIFY_16, filter->read_ok); | ||
| 246 | __set_bit(REPORT_LUNS, filter->read_ok); | ||
| 247 | __set_bit(SERVICE_ACTION_IN, filter->read_ok); | ||
| 248 | __set_bit(RECEIVE_DIAGNOSTIC, filter->read_ok); | ||
| 249 | __set_bit(MAINTENANCE_IN_CMD, filter->read_ok); | ||
| 250 | __set_bit(GPCMD_READ_BUFFER_CAPACITY, filter->read_ok); | ||
| 251 | |||
| 252 | /* Audio CD commands */ | ||
| 253 | __set_bit(GPCMD_PLAY_CD, filter->read_ok); | ||
| 254 | __set_bit(GPCMD_PLAY_AUDIO_10, filter->read_ok); | ||
| 255 | __set_bit(GPCMD_PLAY_AUDIO_MSF, filter->read_ok); | ||
| 256 | __set_bit(GPCMD_PLAY_AUDIO_TI, filter->read_ok); | ||
| 257 | __set_bit(GPCMD_PAUSE_RESUME, filter->read_ok); | ||
| 258 | |||
| 259 | /* CD/DVD data reading */ | ||
| 260 | __set_bit(GPCMD_READ_CD, filter->read_ok); | ||
| 261 | __set_bit(GPCMD_READ_CD_MSF, filter->read_ok); | ||
| 262 | __set_bit(GPCMD_READ_DISC_INFO, filter->read_ok); | ||
| 263 | __set_bit(GPCMD_READ_CDVD_CAPACITY, filter->read_ok); | ||
| 264 | __set_bit(GPCMD_READ_DVD_STRUCTURE, filter->read_ok); | ||
| 265 | __set_bit(GPCMD_READ_HEADER, filter->read_ok); | ||
| 266 | __set_bit(GPCMD_READ_TRACK_RZONE_INFO, filter->read_ok); | ||
| 267 | __set_bit(GPCMD_READ_SUBCHANNEL, filter->read_ok); | ||
| 268 | __set_bit(GPCMD_READ_TOC_PMA_ATIP, filter->read_ok); | ||
| 269 | __set_bit(GPCMD_REPORT_KEY, filter->read_ok); | ||
| 270 | __set_bit(GPCMD_SCAN, filter->read_ok); | ||
| 271 | __set_bit(GPCMD_GET_CONFIGURATION, filter->read_ok); | ||
| 272 | __set_bit(GPCMD_READ_FORMAT_CAPACITIES, filter->read_ok); | ||
| 273 | __set_bit(GPCMD_GET_EVENT_STATUS_NOTIFICATION, filter->read_ok); | ||
| 274 | __set_bit(GPCMD_GET_PERFORMANCE, filter->read_ok); | ||
| 275 | __set_bit(GPCMD_SEEK, filter->read_ok); | ||
| 276 | __set_bit(GPCMD_STOP_PLAY_SCAN, filter->read_ok); | ||
| 277 | |||
| 278 | /* Basic writing commands */ | ||
| 279 | __set_bit(WRITE_6, filter->write_ok); | ||
| 280 | __set_bit(WRITE_10, filter->write_ok); | ||
| 281 | __set_bit(WRITE_VERIFY, filter->write_ok); | ||
| 282 | __set_bit(WRITE_12, filter->write_ok); | ||
| 283 | __set_bit(WRITE_VERIFY_12, filter->write_ok); | ||
| 284 | __set_bit(WRITE_16, filter->write_ok); | ||
| 285 | __set_bit(WRITE_LONG, filter->write_ok); | ||
| 286 | __set_bit(WRITE_LONG_2, filter->write_ok); | ||
| 287 | __set_bit(ERASE, filter->write_ok); | ||
| 288 | __set_bit(GPCMD_MODE_SELECT_10, filter->write_ok); | ||
| 289 | __set_bit(MODE_SELECT, filter->write_ok); | ||
| 290 | __set_bit(LOG_SELECT, filter->write_ok); | ||
| 291 | __set_bit(GPCMD_BLANK, filter->write_ok); | ||
| 292 | __set_bit(GPCMD_CLOSE_TRACK, filter->write_ok); | ||
| 293 | __set_bit(GPCMD_FLUSH_CACHE, filter->write_ok); | ||
| 294 | __set_bit(GPCMD_FORMAT_UNIT, filter->write_ok); | ||
| 295 | __set_bit(GPCMD_REPAIR_RZONE_TRACK, filter->write_ok); | ||
| 296 | __set_bit(GPCMD_RESERVE_RZONE_TRACK, filter->write_ok); | ||
| 297 | __set_bit(GPCMD_SEND_DVD_STRUCTURE, filter->write_ok); | ||
| 298 | __set_bit(GPCMD_SEND_EVENT, filter->write_ok); | ||
| 299 | __set_bit(GPCMD_SEND_KEY, filter->write_ok); | ||
| 300 | __set_bit(GPCMD_SEND_OPC, filter->write_ok); | ||
| 301 | __set_bit(GPCMD_SEND_CUE_SHEET, filter->write_ok); | ||
| 302 | __set_bit(GPCMD_SET_SPEED, filter->write_ok); | ||
| 303 | __set_bit(GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL, filter->write_ok); | ||
| 304 | __set_bit(GPCMD_LOAD_UNLOAD, filter->write_ok); | ||
| 305 | __set_bit(GPCMD_SET_STREAMING, filter->write_ok); | ||
| 306 | } | ||
| 307 | |||
| 308 | int blk_register_filter(struct gendisk *disk) | 209 | int blk_register_filter(struct gendisk *disk) |
| 309 | { | 210 | { |
| 310 | int ret; | 211 | int ret; |
| 311 | struct blk_scsi_cmd_filter *filter = &disk->cmd_filter; | 212 | struct blk_cmd_filter *filter = &disk->queue->cmd_filter; |
| 312 | struct kobject *parent = kobject_get(disk->holder_dir->parent); | 213 | struct kobject *parent = kobject_get(disk->holder_dir->parent); |
| 313 | 214 | ||
| 314 | if (!parent) | 215 | if (!parent) |
| 315 | return -ENODEV; | 216 | return -ENODEV; |
| 316 | 217 | ||
| 317 | ret = kobject_init_and_add(&filter->kobj, &rcf_ktype, parent, | 218 | ret = kobject_init_and_add(&filter->kobj, &rcf_ktype, parent, |
| 318 | "%s", "cmd_filter"); | 219 | "%s", "cmd_filter"); |
| 319 | 220 | ||
| 320 | if (ret < 0) | 221 | if (ret < 0) |
| 321 | return ret; | 222 | return ret; |
| 322 | 223 | ||
| 323 | rcf_set_defaults(filter); | ||
| 324 | return 0; | 224 | return 0; |
| 325 | } | 225 | } |
| 326 | 226 | ||
| 327 | void blk_unregister_filter(struct gendisk *disk) | 227 | void blk_unregister_filter(struct gendisk *disk) |
| 328 | { | 228 | { |
| 329 | struct blk_scsi_cmd_filter *filter = &disk->cmd_filter; | 229 | struct blk_cmd_filter *filter = &disk->queue->cmd_filter; |
| 330 | 230 | ||
| 331 | kobject_put(&filter->kobj); | 231 | kobject_put(&filter->kobj); |
| 332 | kobject_put(disk->holder_dir->parent); | 232 | kobject_put(disk->holder_dir->parent); |
diff --git a/block/scsi_ioctl.c b/block/scsi_ioctl.c index 12a5182173f6..ec4b7f234626 100644 --- a/block/scsi_ioctl.c +++ b/block/scsi_ioctl.c | |||
| @@ -105,12 +105,96 @@ static int sg_emulated_host(struct request_queue *q, int __user *p) | |||
| 105 | return put_user(1, p); | 105 | return put_user(1, p); |
| 106 | } | 106 | } |
| 107 | 107 | ||
| 108 | void blk_set_cmd_filter_defaults(struct blk_cmd_filter *filter) | ||
| 109 | { | ||
| 110 | /* Basic read-only commands */ | ||
| 111 | __set_bit(TEST_UNIT_READY, filter->read_ok); | ||
| 112 | __set_bit(REQUEST_SENSE, filter->read_ok); | ||
| 113 | __set_bit(READ_6, filter->read_ok); | ||
| 114 | __set_bit(READ_10, filter->read_ok); | ||
| 115 | __set_bit(READ_12, filter->read_ok); | ||
| 116 | __set_bit(READ_16, filter->read_ok); | ||
| 117 | __set_bit(READ_BUFFER, filter->read_ok); | ||
| 118 | __set_bit(READ_DEFECT_DATA, filter->read_ok); | ||
| 119 | __set_bit(READ_CAPACITY, filter->read_ok); | ||
| 120 | __set_bit(READ_LONG, filter->read_ok); | ||
| 121 | __set_bit(INQUIRY, filter->read_ok); | ||
| 122 | __set_bit(MODE_SENSE, filter->read_ok); | ||
| 123 | __set_bit(MODE_SENSE_10, filter->read_ok); | ||
| 124 | __set_bit(LOG_SENSE, filter->read_ok); | ||
| 125 | __set_bit(START_STOP, filter->read_ok); | ||
| 126 | __set_bit(GPCMD_VERIFY_10, filter->read_ok); | ||
| 127 | __set_bit(VERIFY_16, filter->read_ok); | ||
| 128 | __set_bit(REPORT_LUNS, filter->read_ok); | ||
| 129 | __set_bit(SERVICE_ACTION_IN, filter->read_ok); | ||
| 130 | __set_bit(RECEIVE_DIAGNOSTIC, filter->read_ok); | ||
| 131 | __set_bit(MAINTENANCE_IN, filter->read_ok); | ||
| 132 | __set_bit(GPCMD_READ_BUFFER_CAPACITY, filter->read_ok); | ||
| 133 | |||
| 134 | /* Audio CD commands */ | ||
| 135 | __set_bit(GPCMD_PLAY_CD, filter->read_ok); | ||
| 136 | __set_bit(GPCMD_PLAY_AUDIO_10, filter->read_ok); | ||
| 137 | __set_bit(GPCMD_PLAY_AUDIO_MSF, filter->read_ok); | ||
| 138 | __set_bit(GPCMD_PLAY_AUDIO_TI, filter->read_ok); | ||
| 139 | __set_bit(GPCMD_PAUSE_RESUME, filter->read_ok); | ||
| 140 | |||
| 141 | /* CD/DVD data reading */ | ||
| 142 | __set_bit(GPCMD_READ_CD, filter->read_ok); | ||
| 143 | __set_bit(GPCMD_READ_CD_MSF, filter->read_ok); | ||
| 144 | __set_bit(GPCMD_READ_DISC_INFO, filter->read_ok); | ||
| 145 | __set_bit(GPCMD_READ_CDVD_CAPACITY, filter->read_ok); | ||
| 146 | __set_bit(GPCMD_READ_DVD_STRUCTURE, filter->read_ok); | ||
| 147 | __set_bit(GPCMD_READ_HEADER, filter->read_ok); | ||
| 148 | __set_bit(GPCMD_READ_TRACK_RZONE_INFO, filter->read_ok); | ||
| 149 | __set_bit(GPCMD_READ_SUBCHANNEL, filter->read_ok); | ||
| 150 | __set_bit(GPCMD_READ_TOC_PMA_ATIP, filter->read_ok); | ||
| 151 | __set_bit(GPCMD_REPORT_KEY, filter->read_ok); | ||
| 152 | __set_bit(GPCMD_SCAN, filter->read_ok); | ||
| 153 | __set_bit(GPCMD_GET_CONFIGURATION, filter->read_ok); | ||
| 154 | __set_bit(GPCMD_READ_FORMAT_CAPACITIES, filter->read_ok); | ||
| 155 | __set_bit(GPCMD_GET_EVENT_STATUS_NOTIFICATION, filter->read_ok); | ||
| 156 | __set_bit(GPCMD_GET_PERFORMANCE, filter->read_ok); | ||
| 157 | __set_bit(GPCMD_SEEK, filter->read_ok); | ||
| 158 | __set_bit(GPCMD_STOP_PLAY_SCAN, filter->read_ok); | ||
| 159 | |||
| 160 | /* Basic writing commands */ | ||
| 161 | __set_bit(WRITE_6, filter->write_ok); | ||
| 162 | __set_bit(WRITE_10, filter->write_ok); | ||
| 163 | __set_bit(WRITE_VERIFY, filter->write_ok); | ||
| 164 | __set_bit(WRITE_12, filter->write_ok); | ||
| 165 | __set_bit(WRITE_VERIFY_12, filter->write_ok); | ||
| 166 | __set_bit(WRITE_16, filter->write_ok); | ||
| 167 | __set_bit(WRITE_LONG, filter->write_ok); | ||
| 168 | __set_bit(WRITE_LONG_2, filter->write_ok); | ||
| 169 | __set_bit(ERASE, filter->write_ok); | ||
| 170 | __set_bit(GPCMD_MODE_SELECT_10, filter->write_ok); | ||
| 171 | __set_bit(MODE_SELECT, filter->write_ok); | ||
| 172 | __set_bit(LOG_SELECT, filter->write_ok); | ||
| 173 | __set_bit(GPCMD_BLANK, filter->write_ok); | ||
| 174 | __set_bit(GPCMD_CLOSE_TRACK, filter->write_ok); | ||
| 175 | __set_bit(GPCMD_FLUSH_CACHE, filter->write_ok); | ||
| 176 | __set_bit(GPCMD_FORMAT_UNIT, filter->write_ok); | ||
| 177 | __set_bit(GPCMD_REPAIR_RZONE_TRACK, filter->write_ok); | ||
| 178 | __set_bit(GPCMD_RESERVE_RZONE_TRACK, filter->write_ok); | ||
| 179 | __set_bit(GPCMD_SEND_DVD_STRUCTURE, filter->write_ok); | ||
| 180 | __set_bit(GPCMD_SEND_EVENT, filter->write_ok); | ||
| 181 | __set_bit(GPCMD_SEND_KEY, filter->write_ok); | ||
| 182 | __set_bit(GPCMD_SEND_OPC, filter->write_ok); | ||
| 183 | __set_bit(GPCMD_SEND_CUE_SHEET, filter->write_ok); | ||
| 184 | __set_bit(GPCMD_SET_SPEED, filter->write_ok); | ||
| 185 | __set_bit(GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL, filter->write_ok); | ||
| 186 | __set_bit(GPCMD_LOAD_UNLOAD, filter->write_ok); | ||
| 187 | __set_bit(GPCMD_SET_STREAMING, filter->write_ok); | ||
| 188 | } | ||
| 189 | EXPORT_SYMBOL_GPL(blk_set_cmd_filter_defaults); | ||
| 190 | |||
| 108 | static int blk_fill_sghdr_rq(struct request_queue *q, struct request *rq, | 191 | static int blk_fill_sghdr_rq(struct request_queue *q, struct request *rq, |
| 109 | struct sg_io_hdr *hdr, struct file *file) | 192 | struct sg_io_hdr *hdr, struct file *file) |
| 110 | { | 193 | { |
| 111 | if (copy_from_user(rq->cmd, hdr->cmdp, hdr->cmd_len)) | 194 | if (copy_from_user(rq->cmd, hdr->cmdp, hdr->cmd_len)) |
| 112 | return -EFAULT; | 195 | return -EFAULT; |
| 113 | if (blk_verify_command(file, rq->cmd)) | 196 | if (blk_verify_command(&q->cmd_filter, rq->cmd, |
| 197 | file->f_mode & FMODE_WRITE)) | ||
| 114 | return -EPERM; | 198 | return -EPERM; |
| 115 | 199 | ||
| 116 | /* | 200 | /* |
| @@ -298,7 +382,7 @@ int sg_scsi_ioctl(struct file *file, struct request_queue *q, | |||
| 298 | struct gendisk *disk, struct scsi_ioctl_command __user *sic) | 382 | struct gendisk *disk, struct scsi_ioctl_command __user *sic) |
| 299 | { | 383 | { |
| 300 | struct request *rq; | 384 | struct request *rq; |
| 301 | int err; | 385 | int err, write_perm = 0; |
| 302 | unsigned int in_len, out_len, bytes, opcode, cmdlen; | 386 | unsigned int in_len, out_len, bytes, opcode, cmdlen; |
| 303 | char *buffer = NULL, sense[SCSI_SENSE_BUFFERSIZE]; | 387 | char *buffer = NULL, sense[SCSI_SENSE_BUFFERSIZE]; |
| 304 | 388 | ||
| @@ -340,7 +424,11 @@ int sg_scsi_ioctl(struct file *file, struct request_queue *q, | |||
| 340 | if (in_len && copy_from_user(buffer, sic->data + cmdlen, in_len)) | 424 | if (in_len && copy_from_user(buffer, sic->data + cmdlen, in_len)) |
| 341 | goto error; | 425 | goto error; |
| 342 | 426 | ||
| 343 | err = blk_verify_command(file, rq->cmd); | 427 | /* scsi_ioctl passes NULL */ |
| 428 | if (file && (file->f_mode & FMODE_WRITE)) | ||
| 429 | write_perm = 1; | ||
| 430 | |||
| 431 | err = blk_verify_command(&q->cmd_filter, rq->cmd, write_perm); | ||
| 344 | if (err) | 432 | if (err) |
| 345 | goto error; | 433 | goto error; |
| 346 | 434 | ||
diff --git a/drivers/block/pktcdvd.c b/drivers/block/pktcdvd.c index 158eed4d5161..29b7a648cc6e 100644 --- a/drivers/block/pktcdvd.c +++ b/drivers/block/pktcdvd.c | |||
| @@ -49,7 +49,6 @@ | |||
| 49 | #include <linux/types.h> | 49 | #include <linux/types.h> |
| 50 | #include <linux/kernel.h> | 50 | #include <linux/kernel.h> |
| 51 | #include <linux/kthread.h> | 51 | #include <linux/kthread.h> |
| 52 | #include <linux/smp_lock.h> | ||
| 53 | #include <linux/errno.h> | 52 | #include <linux/errno.h> |
| 54 | #include <linux/spinlock.h> | 53 | #include <linux/spinlock.h> |
| 55 | #include <linux/file.h> | 54 | #include <linux/file.h> |
| @@ -2798,14 +2797,9 @@ out_mem: | |||
| 2798 | return ret; | 2797 | return ret; |
| 2799 | } | 2798 | } |
| 2800 | 2799 | ||
| 2801 | static long pkt_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | 2800 | static int pkt_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg) |
| 2802 | { | 2801 | { |
| 2803 | struct inode *inode = file->f_path.dentry->d_inode; | 2802 | struct pktcdvd_device *pd = inode->i_bdev->bd_disk->private_data; |
| 2804 | struct pktcdvd_device *pd; | ||
| 2805 | long ret; | ||
| 2806 | |||
| 2807 | lock_kernel(); | ||
| 2808 | pd = inode->i_bdev->bd_disk->private_data; | ||
| 2809 | 2803 | ||
| 2810 | VPRINTK("pkt_ioctl: cmd %x, dev %d:%d\n", cmd, imajor(inode), iminor(inode)); | 2804 | VPRINTK("pkt_ioctl: cmd %x, dev %d:%d\n", cmd, imajor(inode), iminor(inode)); |
| 2811 | 2805 | ||
| @@ -2818,8 +2812,7 @@ static long pkt_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
| 2818 | case CDROM_LAST_WRITTEN: | 2812 | case CDROM_LAST_WRITTEN: |
| 2819 | case CDROM_SEND_PACKET: | 2813 | case CDROM_SEND_PACKET: |
| 2820 | case SCSI_IOCTL_SEND_COMMAND: | 2814 | case SCSI_IOCTL_SEND_COMMAND: |
| 2821 | ret = blkdev_ioctl(pd->bdev->bd_inode, file, cmd, arg); | 2815 | return blkdev_ioctl(pd->bdev->bd_inode, file, cmd, arg); |
| 2822 | break; | ||
| 2823 | 2816 | ||
| 2824 | case CDROMEJECT: | 2817 | case CDROMEJECT: |
| 2825 | /* | 2818 | /* |
| @@ -2828,15 +2821,14 @@ static long pkt_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
| 2828 | */ | 2821 | */ |
| 2829 | if (pd->refcnt == 1) | 2822 | if (pd->refcnt == 1) |
| 2830 | pkt_lock_door(pd, 0); | 2823 | pkt_lock_door(pd, 0); |
| 2831 | ret = blkdev_ioctl(pd->bdev->bd_inode, file, cmd, arg); | 2824 | return blkdev_ioctl(pd->bdev->bd_inode, file, cmd, arg); |
| 2832 | break; | ||
| 2833 | 2825 | ||
| 2834 | default: | 2826 | default: |
| 2835 | VPRINTK(DRIVER_NAME": Unknown ioctl for %s (%x)\n", pd->name, cmd); | 2827 | VPRINTK(DRIVER_NAME": Unknown ioctl for %s (%x)\n", pd->name, cmd); |
| 2836 | ret = -ENOTTY; | 2828 | return -ENOTTY; |
| 2837 | } | 2829 | } |
| 2838 | unlock_kernel(); | 2830 | |
| 2839 | return ret; | 2831 | return 0; |
| 2840 | } | 2832 | } |
| 2841 | 2833 | ||
| 2842 | static int pkt_media_changed(struct gendisk *disk) | 2834 | static int pkt_media_changed(struct gendisk *disk) |
| @@ -2858,7 +2850,7 @@ static struct block_device_operations pktcdvd_ops = { | |||
| 2858 | .owner = THIS_MODULE, | 2850 | .owner = THIS_MODULE, |
| 2859 | .open = pkt_open, | 2851 | .open = pkt_open, |
| 2860 | .release = pkt_close, | 2852 | .release = pkt_close, |
| 2861 | .unlocked_ioctl = pkt_ioctl, | 2853 | .ioctl = pkt_ioctl, |
| 2862 | .media_changed = pkt_media_changed, | 2854 | .media_changed = pkt_media_changed, |
| 2863 | }; | 2855 | }; |
| 2864 | 2856 | ||
| @@ -3023,8 +3015,7 @@ static void pkt_get_status(struct pkt_ctrl_command *ctrl_cmd) | |||
| 3023 | mutex_unlock(&ctl_mutex); | 3015 | mutex_unlock(&ctl_mutex); |
| 3024 | } | 3016 | } |
| 3025 | 3017 | ||
| 3026 | static long pkt_ctl_ioctl(struct file *file, unsigned int cmd, | 3018 | static int pkt_ctl_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg) |
| 3027 | unsigned long arg) | ||
| 3028 | { | 3019 | { |
| 3029 | void __user *argp = (void __user *)arg; | 3020 | void __user *argp = (void __user *)arg; |
| 3030 | struct pkt_ctrl_command ctrl_cmd; | 3021 | struct pkt_ctrl_command ctrl_cmd; |
| @@ -3041,22 +3032,16 @@ static long pkt_ctl_ioctl(struct file *file, unsigned int cmd, | |||
| 3041 | case PKT_CTRL_CMD_SETUP: | 3032 | case PKT_CTRL_CMD_SETUP: |
| 3042 | if (!capable(CAP_SYS_ADMIN)) | 3033 | if (!capable(CAP_SYS_ADMIN)) |
| 3043 | return -EPERM; | 3034 | return -EPERM; |
| 3044 | lock_kernel(); | ||
| 3045 | ret = pkt_setup_dev(new_decode_dev(ctrl_cmd.dev), &pkt_dev); | 3035 | ret = pkt_setup_dev(new_decode_dev(ctrl_cmd.dev), &pkt_dev); |
| 3046 | ctrl_cmd.pkt_dev = new_encode_dev(pkt_dev); | 3036 | ctrl_cmd.pkt_dev = new_encode_dev(pkt_dev); |
| 3047 | unlock_kernel(); | ||
| 3048 | break; | 3037 | break; |
| 3049 | case PKT_CTRL_CMD_TEARDOWN: | 3038 | case PKT_CTRL_CMD_TEARDOWN: |
| 3050 | if (!capable(CAP_SYS_ADMIN)) | 3039 | if (!capable(CAP_SYS_ADMIN)) |
| 3051 | return -EPERM; | 3040 | return -EPERM; |
| 3052 | lock_kernel(); | ||
| 3053 | ret = pkt_remove_dev(new_decode_dev(ctrl_cmd.pkt_dev)); | 3041 | ret = pkt_remove_dev(new_decode_dev(ctrl_cmd.pkt_dev)); |
| 3054 | unlock_kernel(); | ||
| 3055 | break; | 3042 | break; |
| 3056 | case PKT_CTRL_CMD_STATUS: | 3043 | case PKT_CTRL_CMD_STATUS: |
| 3057 | lock_kernel(); | ||
| 3058 | pkt_get_status(&ctrl_cmd); | 3044 | pkt_get_status(&ctrl_cmd); |
| 3059 | unlock_kernel(); | ||
| 3060 | break; | 3045 | break; |
| 3061 | default: | 3046 | default: |
| 3062 | return -ENOTTY; | 3047 | return -ENOTTY; |
| @@ -3069,7 +3054,7 @@ static long pkt_ctl_ioctl(struct file *file, unsigned int cmd, | |||
| 3069 | 3054 | ||
| 3070 | 3055 | ||
| 3071 | static const struct file_operations pkt_ctl_fops = { | 3056 | static const struct file_operations pkt_ctl_fops = { |
| 3072 | .unlocked_ioctl = pkt_ctl_ioctl, | 3057 | .ioctl = pkt_ctl_ioctl, |
| 3073 | .owner = THIS_MODULE, | 3058 | .owner = THIS_MODULE, |
| 3074 | }; | 3059 | }; |
| 3075 | 3060 | ||
diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c index 089c015c01d1..53f0e5af1cc8 100644 --- a/drivers/gpu/drm/drm_irq.c +++ b/drivers/gpu/drm/drm_irq.c | |||
| @@ -400,27 +400,31 @@ static void drm_locked_tasklet_func(unsigned long data) | |||
| 400 | { | 400 | { |
| 401 | struct drm_device *dev = (struct drm_device *)data; | 401 | struct drm_device *dev = (struct drm_device *)data; |
| 402 | unsigned long irqflags; | 402 | unsigned long irqflags; |
| 403 | 403 | void (*tasklet_func)(struct drm_device *); | |
| 404 | |||
| 404 | spin_lock_irqsave(&dev->tasklet_lock, irqflags); | 405 | spin_lock_irqsave(&dev->tasklet_lock, irqflags); |
| 406 | tasklet_func = dev->locked_tasklet_func; | ||
| 407 | spin_unlock_irqrestore(&dev->tasklet_lock, irqflags); | ||
| 405 | 408 | ||
| 406 | if (!dev->locked_tasklet_func || | 409 | if (!tasklet_func || |
| 407 | !drm_lock_take(&dev->lock, | 410 | !drm_lock_take(&dev->lock, |
| 408 | DRM_KERNEL_CONTEXT)) { | 411 | DRM_KERNEL_CONTEXT)) { |
| 409 | spin_unlock_irqrestore(&dev->tasklet_lock, irqflags); | ||
| 410 | return; | 412 | return; |
| 411 | } | 413 | } |
| 412 | 414 | ||
| 413 | dev->lock.lock_time = jiffies; | 415 | dev->lock.lock_time = jiffies; |
| 414 | atomic_inc(&dev->counts[_DRM_STAT_LOCKS]); | 416 | atomic_inc(&dev->counts[_DRM_STAT_LOCKS]); |
| 415 | 417 | ||
| 416 | dev->locked_tasklet_func(dev); | 418 | spin_lock_irqsave(&dev->tasklet_lock, irqflags); |
| 419 | tasklet_func = dev->locked_tasklet_func; | ||
| 420 | dev->locked_tasklet_func = NULL; | ||
| 421 | spin_unlock_irqrestore(&dev->tasklet_lock, irqflags); | ||
| 422 | |||
| 423 | if (tasklet_func != NULL) | ||
| 424 | tasklet_func(dev); | ||
| 417 | 425 | ||
| 418 | drm_lock_free(&dev->lock, | 426 | drm_lock_free(&dev->lock, |
| 419 | DRM_KERNEL_CONTEXT); | 427 | DRM_KERNEL_CONTEXT); |
| 420 | |||
| 421 | dev->locked_tasklet_func = NULL; | ||
| 422 | |||
| 423 | spin_unlock_irqrestore(&dev->tasklet_lock, irqflags); | ||
| 424 | } | 428 | } |
| 425 | 429 | ||
| 426 | /** | 430 | /** |
diff --git a/drivers/gpu/drm/drm_lock.c b/drivers/gpu/drm/drm_lock.c index 0998723cde79..a4caf95485d7 100644 --- a/drivers/gpu/drm/drm_lock.c +++ b/drivers/gpu/drm/drm_lock.c | |||
| @@ -105,14 +105,19 @@ int drm_lock(struct drm_device *dev, void *data, struct drm_file *file_priv) | |||
| 105 | ret ? "interrupted" : "has lock"); | 105 | ret ? "interrupted" : "has lock"); |
| 106 | if (ret) return ret; | 106 | if (ret) return ret; |
| 107 | 107 | ||
| 108 | sigemptyset(&dev->sigmask); | 108 | /* don't set the block all signals on the master process for now |
| 109 | sigaddset(&dev->sigmask, SIGSTOP); | 109 | * really probably not the correct answer but lets us debug xkb |
| 110 | sigaddset(&dev->sigmask, SIGTSTP); | 110 | * xserver for now */ |
| 111 | sigaddset(&dev->sigmask, SIGTTIN); | 111 | if (!file_priv->master) { |
| 112 | sigaddset(&dev->sigmask, SIGTTOU); | 112 | sigemptyset(&dev->sigmask); |
| 113 | dev->sigdata.context = lock->context; | 113 | sigaddset(&dev->sigmask, SIGSTOP); |
| 114 | dev->sigdata.lock = dev->lock.hw_lock; | 114 | sigaddset(&dev->sigmask, SIGTSTP); |
| 115 | block_all_signals(drm_notifier, &dev->sigdata, &dev->sigmask); | 115 | sigaddset(&dev->sigmask, SIGTTIN); |
| 116 | sigaddset(&dev->sigmask, SIGTTOU); | ||
| 117 | dev->sigdata.context = lock->context; | ||
| 118 | dev->sigdata.lock = dev->lock.hw_lock; | ||
| 119 | block_all_signals(drm_notifier, &dev->sigdata, &dev->sigmask); | ||
| 120 | } | ||
| 116 | 121 | ||
| 117 | if (dev->driver->dma_ready && (lock->flags & _DRM_LOCK_READY)) | 122 | if (dev->driver->dma_ready && (lock->flags & _DRM_LOCK_READY)) |
| 118 | dev->driver->dma_ready(dev); | 123 | dev->driver->dma_ready(dev); |
| @@ -150,6 +155,7 @@ int drm_unlock(struct drm_device *dev, void *data, struct drm_file *file_priv) | |||
| 150 | { | 155 | { |
| 151 | struct drm_lock *lock = data; | 156 | struct drm_lock *lock = data; |
| 152 | unsigned long irqflags; | 157 | unsigned long irqflags; |
| 158 | void (*tasklet_func)(struct drm_device *); | ||
| 153 | 159 | ||
| 154 | if (lock->context == DRM_KERNEL_CONTEXT) { | 160 | if (lock->context == DRM_KERNEL_CONTEXT) { |
| 155 | DRM_ERROR("Process %d using kernel context %d\n", | 161 | DRM_ERROR("Process %d using kernel context %d\n", |
| @@ -158,14 +164,11 @@ int drm_unlock(struct drm_device *dev, void *data, struct drm_file *file_priv) | |||
| 158 | } | 164 | } |
| 159 | 165 | ||
| 160 | spin_lock_irqsave(&dev->tasklet_lock, irqflags); | 166 | spin_lock_irqsave(&dev->tasklet_lock, irqflags); |
| 161 | 167 | tasklet_func = dev->locked_tasklet_func; | |
| 162 | if (dev->locked_tasklet_func) { | 168 | dev->locked_tasklet_func = NULL; |
| 163 | dev->locked_tasklet_func(dev); | ||
| 164 | |||
| 165 | dev->locked_tasklet_func = NULL; | ||
| 166 | } | ||
| 167 | |||
| 168 | spin_unlock_irqrestore(&dev->tasklet_lock, irqflags); | 169 | spin_unlock_irqrestore(&dev->tasklet_lock, irqflags); |
| 170 | if (tasklet_func != NULL) | ||
| 171 | tasklet_func(dev); | ||
| 169 | 172 | ||
| 170 | atomic_inc(&dev->counts[_DRM_STAT_UNLOCKS]); | 173 | atomic_inc(&dev->counts[_DRM_STAT_UNLOCKS]); |
| 171 | 174 | ||
diff --git a/drivers/gpu/drm/radeon/r300_cmdbuf.c b/drivers/gpu/drm/radeon/r300_cmdbuf.c index 702df45320f7..4b27d9abb7bc 100644 --- a/drivers/gpu/drm/radeon/r300_cmdbuf.c +++ b/drivers/gpu/drm/radeon/r300_cmdbuf.c | |||
| @@ -77,6 +77,9 @@ static int r300_emit_cliprects(drm_radeon_private_t *dev_priv, | |||
| 77 | return -EFAULT; | 77 | return -EFAULT; |
| 78 | } | 78 | } |
| 79 | 79 | ||
| 80 | box.x2--; /* Hardware expects inclusive bottom-right corner */ | ||
| 81 | box.y2--; | ||
| 82 | |||
| 80 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV515) { | 83 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV515) { |
| 81 | box.x1 = (box.x1) & | 84 | box.x1 = (box.x1) & |
| 82 | R300_CLIPRECT_MASK; | 85 | R300_CLIPRECT_MASK; |
| @@ -95,8 +98,8 @@ static int r300_emit_cliprects(drm_radeon_private_t *dev_priv, | |||
| 95 | R300_CLIPRECT_MASK; | 98 | R300_CLIPRECT_MASK; |
| 96 | box.y2 = (box.y2 + R300_CLIPRECT_OFFSET) & | 99 | box.y2 = (box.y2 + R300_CLIPRECT_OFFSET) & |
| 97 | R300_CLIPRECT_MASK; | 100 | R300_CLIPRECT_MASK; |
| 98 | |||
| 99 | } | 101 | } |
| 102 | |||
| 100 | OUT_RING((box.x1 << R300_CLIPRECT_X_SHIFT) | | 103 | OUT_RING((box.x1 << R300_CLIPRECT_X_SHIFT) | |
| 101 | (box.y1 << R300_CLIPRECT_Y_SHIFT)); | 104 | (box.y1 << R300_CLIPRECT_Y_SHIFT)); |
| 102 | OUT_RING((box.x2 << R300_CLIPRECT_X_SHIFT) | | 105 | OUT_RING((box.x2 << R300_CLIPRECT_X_SHIFT) | |
| @@ -136,6 +139,18 @@ static int r300_emit_cliprects(drm_radeon_private_t *dev_priv, | |||
| 136 | ADVANCE_RING(); | 139 | ADVANCE_RING(); |
| 137 | } | 140 | } |
| 138 | 141 | ||
| 142 | /* flus cache and wait idle clean after cliprect change */ | ||
| 143 | BEGIN_RING(2); | ||
| 144 | OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); | ||
| 145 | OUT_RING(R300_RB3D_DC_FLUSH); | ||
| 146 | ADVANCE_RING(); | ||
| 147 | BEGIN_RING(2); | ||
| 148 | OUT_RING(CP_PACKET0(RADEON_WAIT_UNTIL, 0)); | ||
| 149 | OUT_RING(RADEON_WAIT_3D_IDLECLEAN); | ||
| 150 | ADVANCE_RING(); | ||
| 151 | /* set flush flag */ | ||
| 152 | dev_priv->track_flush |= RADEON_FLUSH_EMITED; | ||
| 153 | |||
| 139 | return 0; | 154 | return 0; |
| 140 | } | 155 | } |
| 141 | 156 | ||
| @@ -166,13 +181,13 @@ void r300_init_reg_flags(struct drm_device *dev) | |||
| 166 | ADD_RANGE(0x21DC, 1); | 181 | ADD_RANGE(0x21DC, 1); |
| 167 | ADD_RANGE(R300_VAP_UNKNOWN_221C, 1); | 182 | ADD_RANGE(R300_VAP_UNKNOWN_221C, 1); |
| 168 | ADD_RANGE(R300_VAP_CLIP_X_0, 4); | 183 | ADD_RANGE(R300_VAP_CLIP_X_0, 4); |
| 169 | ADD_RANGE(R300_VAP_PVS_WAITIDLE, 1); | 184 | ADD_RANGE(R300_VAP_PVS_STATE_FLUSH_REG, 1); |
| 170 | ADD_RANGE(R300_VAP_UNKNOWN_2288, 1); | 185 | ADD_RANGE(R300_VAP_UNKNOWN_2288, 1); |
| 171 | ADD_RANGE(R300_VAP_OUTPUT_VTX_FMT_0, 2); | 186 | ADD_RANGE(R300_VAP_OUTPUT_VTX_FMT_0, 2); |
| 172 | ADD_RANGE(R300_VAP_PVS_CNTL_1, 3); | 187 | ADD_RANGE(R300_VAP_PVS_CNTL_1, 3); |
| 173 | ADD_RANGE(R300_GB_ENABLE, 1); | 188 | ADD_RANGE(R300_GB_ENABLE, 1); |
| 174 | ADD_RANGE(R300_GB_MSPOS0, 5); | 189 | ADD_RANGE(R300_GB_MSPOS0, 5); |
| 175 | ADD_RANGE(R300_TX_CNTL, 1); | 190 | ADD_RANGE(R300_TX_INVALTAGS, 1); |
| 176 | ADD_RANGE(R300_TX_ENABLE, 1); | 191 | ADD_RANGE(R300_TX_ENABLE, 1); |
| 177 | ADD_RANGE(0x4200, 4); | 192 | ADD_RANGE(0x4200, 4); |
| 178 | ADD_RANGE(0x4214, 1); | 193 | ADD_RANGE(0x4214, 1); |
| @@ -388,15 +403,28 @@ static __inline__ int r300_emit_vpu(drm_radeon_private_t *dev_priv, | |||
| 388 | if (sz * 16 > cmdbuf->bufsz) | 403 | if (sz * 16 > cmdbuf->bufsz) |
| 389 | return -EINVAL; | 404 | return -EINVAL; |
| 390 | 405 | ||
| 391 | BEGIN_RING(5 + sz * 4); | 406 | /* VAP is very sensitive so we purge cache before we program it |
| 392 | /* Wait for VAP to come to senses.. */ | 407 | * and we also flush its state before & after */ |
| 393 | /* there is no need to emit it multiple times, (only once before VAP is programmed, | 408 | BEGIN_RING(6); |
| 394 | but this optimization is for later */ | 409 | OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); |
| 395 | OUT_RING_REG(R300_VAP_PVS_WAITIDLE, 0); | 410 | OUT_RING(R300_RB3D_DC_FLUSH); |
| 411 | OUT_RING(CP_PACKET0(RADEON_WAIT_UNTIL, 0)); | ||
| 412 | OUT_RING(RADEON_WAIT_3D_IDLECLEAN); | ||
| 413 | OUT_RING(CP_PACKET0(R300_VAP_PVS_STATE_FLUSH_REG, 0)); | ||
| 414 | OUT_RING(0); | ||
| 415 | ADVANCE_RING(); | ||
| 416 | /* set flush flag */ | ||
| 417 | dev_priv->track_flush |= RADEON_FLUSH_EMITED; | ||
| 418 | |||
| 419 | BEGIN_RING(3 + sz * 4); | ||
| 396 | OUT_RING_REG(R300_VAP_PVS_UPLOAD_ADDRESS, addr); | 420 | OUT_RING_REG(R300_VAP_PVS_UPLOAD_ADDRESS, addr); |
| 397 | OUT_RING(CP_PACKET0_TABLE(R300_VAP_PVS_UPLOAD_DATA, sz * 4 - 1)); | 421 | OUT_RING(CP_PACKET0_TABLE(R300_VAP_PVS_UPLOAD_DATA, sz * 4 - 1)); |
| 398 | OUT_RING_TABLE((int *)cmdbuf->buf, sz * 4); | 422 | OUT_RING_TABLE((int *)cmdbuf->buf, sz * 4); |
| 423 | ADVANCE_RING(); | ||
| 399 | 424 | ||
| 425 | BEGIN_RING(2); | ||
| 426 | OUT_RING(CP_PACKET0(R300_VAP_PVS_STATE_FLUSH_REG, 0)); | ||
| 427 | OUT_RING(0); | ||
| 400 | ADVANCE_RING(); | 428 | ADVANCE_RING(); |
| 401 | 429 | ||
| 402 | cmdbuf->buf += sz * 16; | 430 | cmdbuf->buf += sz * 16; |
| @@ -424,6 +452,15 @@ static __inline__ int r300_emit_clear(drm_radeon_private_t *dev_priv, | |||
| 424 | OUT_RING_TABLE((int *)cmdbuf->buf, 8); | 452 | OUT_RING_TABLE((int *)cmdbuf->buf, 8); |
| 425 | ADVANCE_RING(); | 453 | ADVANCE_RING(); |
| 426 | 454 | ||
| 455 | BEGIN_RING(4); | ||
| 456 | OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); | ||
| 457 | OUT_RING(R300_RB3D_DC_FLUSH); | ||
| 458 | OUT_RING(CP_PACKET0(RADEON_WAIT_UNTIL, 0)); | ||
| 459 | OUT_RING(RADEON_WAIT_3D_IDLECLEAN); | ||
| 460 | ADVANCE_RING(); | ||
| 461 | /* set flush flag */ | ||
| 462 | dev_priv->track_flush |= RADEON_FLUSH_EMITED; | ||
| 463 | |||
| 427 | cmdbuf->buf += 8 * 4; | 464 | cmdbuf->buf += 8 * 4; |
| 428 | cmdbuf->bufsz -= 8 * 4; | 465 | cmdbuf->bufsz -= 8 * 4; |
| 429 | 466 | ||
| @@ -543,22 +580,23 @@ static __inline__ int r300_emit_bitblt_multi(drm_radeon_private_t *dev_priv, | |||
| 543 | return 0; | 580 | return 0; |
| 544 | } | 581 | } |
| 545 | 582 | ||
| 546 | static __inline__ int r300_emit_indx_buffer(drm_radeon_private_t *dev_priv, | 583 | static __inline__ int r300_emit_draw_indx_2(drm_radeon_private_t *dev_priv, |
| 547 | drm_radeon_kcmd_buffer_t *cmdbuf) | 584 | drm_radeon_kcmd_buffer_t *cmdbuf) |
| 548 | { | 585 | { |
| 549 | u32 *cmd = (u32 *) cmdbuf->buf; | 586 | u32 *cmd; |
| 550 | int count, ret; | 587 | int count; |
| 588 | int expected_count; | ||
| 551 | RING_LOCALS; | 589 | RING_LOCALS; |
| 552 | 590 | ||
| 553 | count=(cmd[0]>>16) & 0x3fff; | 591 | cmd = (u32 *) cmdbuf->buf; |
| 592 | count = (cmd[0]>>16) & 0x3fff; | ||
| 593 | expected_count = cmd[1] >> 16; | ||
| 594 | if (!(cmd[1] & R300_VAP_VF_CNTL__INDEX_SIZE_32bit)) | ||
| 595 | expected_count = (expected_count+1)/2; | ||
| 554 | 596 | ||
| 555 | if ((cmd[1] & 0x8000ffff) != 0x80000810) { | 597 | if (count && count != expected_count) { |
| 556 | DRM_ERROR("Invalid indx_buffer reg address %08X\n", cmd[1]); | 598 | DRM_ERROR("3D_DRAW_INDX_2: packet size %i, expected %i\n", |
| 557 | return -EINVAL; | 599 | count, expected_count); |
| 558 | } | ||
| 559 | ret = !radeon_check_offset(dev_priv, cmd[2]); | ||
| 560 | if (ret) { | ||
| 561 | DRM_ERROR("Invalid indx_buffer offset is %08X\n", cmd[2]); | ||
| 562 | return -EINVAL; | 600 | return -EINVAL; |
| 563 | } | 601 | } |
| 564 | 602 | ||
| @@ -570,6 +608,50 @@ static __inline__ int r300_emit_indx_buffer(drm_radeon_private_t *dev_priv, | |||
| 570 | cmdbuf->buf += (count+2)*4; | 608 | cmdbuf->buf += (count+2)*4; |
| 571 | cmdbuf->bufsz -= (count+2)*4; | 609 | cmdbuf->bufsz -= (count+2)*4; |
| 572 | 610 | ||
| 611 | if (!count) { | ||
| 612 | drm_r300_cmd_header_t header; | ||
| 613 | |||
| 614 | if (cmdbuf->bufsz < 4*4 + sizeof(header)) { | ||
| 615 | DRM_ERROR("3D_DRAW_INDX_2: expect subsequent INDX_BUFFER, but stream is too short.\n"); | ||
| 616 | return -EINVAL; | ||
| 617 | } | ||
| 618 | |||
| 619 | header.u = *(unsigned int *)cmdbuf->buf; | ||
| 620 | |||
| 621 | cmdbuf->buf += sizeof(header); | ||
| 622 | cmdbuf->bufsz -= sizeof(header); | ||
| 623 | cmd = (u32 *) cmdbuf->buf; | ||
| 624 | |||
| 625 | if (header.header.cmd_type != R300_CMD_PACKET3 || | ||
| 626 | header.packet3.packet != R300_CMD_PACKET3_RAW || | ||
| 627 | cmd[0] != CP_PACKET3(RADEON_CP_INDX_BUFFER, 2)) { | ||
| 628 | DRM_ERROR("3D_DRAW_INDX_2: expect subsequent INDX_BUFFER.\n"); | ||
| 629 | return -EINVAL; | ||
| 630 | } | ||
| 631 | |||
| 632 | if ((cmd[1] & 0x8000ffff) != 0x80000810) { | ||
| 633 | DRM_ERROR("Invalid indx_buffer reg address %08X\n", cmd[1]); | ||
| 634 | return -EINVAL; | ||
| 635 | } | ||
| 636 | if (!radeon_check_offset(dev_priv, cmd[2])) { | ||
| 637 | DRM_ERROR("Invalid indx_buffer offset is %08X\n", cmd[2]); | ||
| 638 | return -EINVAL; | ||
| 639 | } | ||
| 640 | if (cmd[3] != expected_count) { | ||
| 641 | DRM_ERROR("INDX_BUFFER: buffer size %i, expected %i\n", | ||
| 642 | cmd[3], expected_count); | ||
| 643 | return -EINVAL; | ||
| 644 | } | ||
| 645 | |||
| 646 | BEGIN_RING(4); | ||
| 647 | OUT_RING(cmd[0]); | ||
| 648 | OUT_RING_TABLE((int *)(cmdbuf->buf + 4), 3); | ||
| 649 | ADVANCE_RING(); | ||
| 650 | |||
| 651 | cmdbuf->buf += 4*4; | ||
| 652 | cmdbuf->bufsz -= 4*4; | ||
| 653 | } | ||
| 654 | |||
| 573 | return 0; | 655 | return 0; |
| 574 | } | 656 | } |
| 575 | 657 | ||
| @@ -613,11 +695,22 @@ static __inline__ int r300_emit_raw_packet3(drm_radeon_private_t *dev_priv, | |||
| 613 | case RADEON_CNTL_BITBLT_MULTI: | 695 | case RADEON_CNTL_BITBLT_MULTI: |
| 614 | return r300_emit_bitblt_multi(dev_priv, cmdbuf); | 696 | return r300_emit_bitblt_multi(dev_priv, cmdbuf); |
| 615 | 697 | ||
| 616 | case RADEON_CP_INDX_BUFFER: /* DRAW_INDX_2 without INDX_BUFFER seems to lock up the gpu */ | 698 | case RADEON_CP_INDX_BUFFER: |
| 617 | return r300_emit_indx_buffer(dev_priv, cmdbuf); | 699 | DRM_ERROR("packet3 INDX_BUFFER without preceding 3D_DRAW_INDX_2 is illegal.\n"); |
| 618 | case RADEON_CP_3D_DRAW_IMMD_2: /* triggers drawing using in-packet vertex data */ | 700 | return -EINVAL; |
| 619 | case RADEON_CP_3D_DRAW_VBUF_2: /* triggers drawing of vertex buffers setup elsewhere */ | 701 | case RADEON_CP_3D_DRAW_IMMD_2: |
| 620 | case RADEON_CP_3D_DRAW_INDX_2: /* triggers drawing using indices to vertex buffer */ | 702 | /* triggers drawing using in-packet vertex data */ |
| 703 | case RADEON_CP_3D_DRAW_VBUF_2: | ||
| 704 | /* triggers drawing of vertex buffers setup elsewhere */ | ||
| 705 | dev_priv->track_flush &= ~(RADEON_FLUSH_EMITED | | ||
| 706 | RADEON_PURGE_EMITED); | ||
| 707 | break; | ||
| 708 | case RADEON_CP_3D_DRAW_INDX_2: | ||
| 709 | /* triggers drawing using indices to vertex buffer */ | ||
| 710 | /* whenever we send vertex we clear flush & purge */ | ||
| 711 | dev_priv->track_flush &= ~(RADEON_FLUSH_EMITED | | ||
| 712 | RADEON_PURGE_EMITED); | ||
| 713 | return r300_emit_draw_indx_2(dev_priv, cmdbuf); | ||
| 621 | case RADEON_WAIT_FOR_IDLE: | 714 | case RADEON_WAIT_FOR_IDLE: |
| 622 | case RADEON_CP_NOP: | 715 | case RADEON_CP_NOP: |
| 623 | /* these packets are safe */ | 716 | /* these packets are safe */ |
| @@ -713,17 +806,53 @@ static __inline__ int r300_emit_packet3(drm_radeon_private_t *dev_priv, | |||
| 713 | */ | 806 | */ |
| 714 | static __inline__ void r300_pacify(drm_radeon_private_t *dev_priv) | 807 | static __inline__ void r300_pacify(drm_radeon_private_t *dev_priv) |
| 715 | { | 808 | { |
| 809 | uint32_t cache_z, cache_3d, cache_2d; | ||
| 716 | RING_LOCALS; | 810 | RING_LOCALS; |
| 717 | 811 | ||
| 718 | BEGIN_RING(6); | 812 | cache_z = R300_ZC_FLUSH; |
| 719 | OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); | 813 | cache_2d = R300_RB2D_DC_FLUSH; |
| 720 | OUT_RING(R300_RB3D_DSTCACHE_UNKNOWN_0A); | 814 | cache_3d = R300_RB3D_DC_FLUSH; |
| 815 | if (!(dev_priv->track_flush & RADEON_PURGE_EMITED)) { | ||
| 816 | /* we can purge, primitive where draw since last purge */ | ||
| 817 | cache_z |= R300_ZC_FREE; | ||
| 818 | cache_2d |= R300_RB2D_DC_FREE; | ||
| 819 | cache_3d |= R300_RB3D_DC_FREE; | ||
| 820 | } | ||
| 821 | |||
| 822 | /* flush & purge zbuffer */ | ||
| 823 | BEGIN_RING(2); | ||
| 721 | OUT_RING(CP_PACKET0(R300_ZB_ZCACHE_CTLSTAT, 0)); | 824 | OUT_RING(CP_PACKET0(R300_ZB_ZCACHE_CTLSTAT, 0)); |
| 722 | OUT_RING(R300_ZB_ZCACHE_CTLSTAT_ZC_FLUSH_FLUSH_AND_FREE| | 825 | OUT_RING(cache_z); |
| 723 | R300_ZB_ZCACHE_CTLSTAT_ZC_FREE_FREE); | 826 | ADVANCE_RING(); |
| 724 | OUT_RING(CP_PACKET3(RADEON_CP_NOP, 0)); | 827 | /* flush & purge 3d */ |
| 725 | OUT_RING(0x0); | 828 | BEGIN_RING(2); |
| 829 | OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); | ||
| 830 | OUT_RING(cache_3d); | ||
| 831 | ADVANCE_RING(); | ||
| 832 | /* flush & purge texture */ | ||
| 833 | BEGIN_RING(2); | ||
| 834 | OUT_RING(CP_PACKET0(R300_TX_INVALTAGS, 0)); | ||
| 835 | OUT_RING(0); | ||
| 836 | ADVANCE_RING(); | ||
| 837 | /* FIXME: is this one really needed ? */ | ||
| 838 | BEGIN_RING(2); | ||
| 839 | OUT_RING(CP_PACKET0(R300_RB3D_AARESOLVE_CTL, 0)); | ||
| 840 | OUT_RING(0); | ||
| 841 | ADVANCE_RING(); | ||
| 842 | BEGIN_RING(2); | ||
| 843 | OUT_RING(CP_PACKET0(RADEON_WAIT_UNTIL, 0)); | ||
| 844 | OUT_RING(RADEON_WAIT_3D_IDLECLEAN); | ||
| 845 | ADVANCE_RING(); | ||
| 846 | /* flush & purge 2d through E2 as RB2D will trigger lockup */ | ||
| 847 | BEGIN_RING(4); | ||
| 848 | OUT_RING(CP_PACKET0(R300_DSTCACHE_CTLSTAT, 0)); | ||
| 849 | OUT_RING(cache_2d); | ||
| 850 | OUT_RING(CP_PACKET0(RADEON_WAIT_UNTIL, 0)); | ||
| 851 | OUT_RING(RADEON_WAIT_2D_IDLECLEAN | | ||
| 852 | RADEON_WAIT_HOST_IDLECLEAN); | ||
| 726 | ADVANCE_RING(); | 853 | ADVANCE_RING(); |
| 854 | /* set flush & purge flags */ | ||
| 855 | dev_priv->track_flush |= RADEON_FLUSH_EMITED | RADEON_PURGE_EMITED; | ||
| 727 | } | 856 | } |
| 728 | 857 | ||
| 729 | /** | 858 | /** |
| @@ -905,8 +1034,7 @@ int r300_do_cp_cmdbuf(struct drm_device *dev, | |||
| 905 | 1034 | ||
| 906 | DRM_DEBUG("\n"); | 1035 | DRM_DEBUG("\n"); |
| 907 | 1036 | ||
| 908 | /* See the comment above r300_emit_begin3d for why this call must be here, | 1037 | /* pacify */ |
| 909 | * and what the cleanup gotos are for. */ | ||
| 910 | r300_pacify(dev_priv); | 1038 | r300_pacify(dev_priv); |
| 911 | 1039 | ||
| 912 | if (cmdbuf->nbox <= R300_SIMULTANEOUS_CLIPRECTS) { | 1040 | if (cmdbuf->nbox <= R300_SIMULTANEOUS_CLIPRECTS) { |
diff --git a/drivers/gpu/drm/radeon/r300_reg.h b/drivers/gpu/drm/radeon/r300_reg.h index a6802f26afc4..ee6f811599a3 100644 --- a/drivers/gpu/drm/radeon/r300_reg.h +++ b/drivers/gpu/drm/radeon/r300_reg.h | |||
| @@ -317,7 +317,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. | |||
| 317 | * Therefore, I suspect writing zero to 0x2284 synchronizes the engine and | 317 | * Therefore, I suspect writing zero to 0x2284 synchronizes the engine and |
| 318 | * avoids bugs caused by still running shaders reading bad data from memory. | 318 | * avoids bugs caused by still running shaders reading bad data from memory. |
| 319 | */ | 319 | */ |
| 320 | #define R300_VAP_PVS_WAITIDLE 0x2284 /* GUESS */ | 320 | #define R300_VAP_PVS_STATE_FLUSH_REG 0x2284 |
| 321 | 321 | ||
| 322 | /* Absolutely no clue what this register is about. */ | 322 | /* Absolutely no clue what this register is about. */ |
| 323 | #define R300_VAP_UNKNOWN_2288 0x2288 | 323 | #define R300_VAP_UNKNOWN_2288 0x2288 |
| @@ -513,7 +513,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. | |||
| 513 | /* gap */ | 513 | /* gap */ |
| 514 | 514 | ||
| 515 | /* Zero to flush caches. */ | 515 | /* Zero to flush caches. */ |
| 516 | #define R300_TX_CNTL 0x4100 | 516 | #define R300_TX_INVALTAGS 0x4100 |
| 517 | #define R300_TX_FLUSH 0x0 | 517 | #define R300_TX_FLUSH 0x0 |
| 518 | 518 | ||
| 519 | /* The upper enable bits are guessed, based on fglrx reported limits. */ | 519 | /* The upper enable bits are guessed, based on fglrx reported limits. */ |
| @@ -1362,6 +1362,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. | |||
| 1362 | #define R300_RB3D_COLORPITCH2 0x4E40 /* GUESS */ | 1362 | #define R300_RB3D_COLORPITCH2 0x4E40 /* GUESS */ |
| 1363 | #define R300_RB3D_COLORPITCH3 0x4E44 /* GUESS */ | 1363 | #define R300_RB3D_COLORPITCH3 0x4E44 /* GUESS */ |
| 1364 | 1364 | ||
| 1365 | #define R300_RB3D_AARESOLVE_CTL 0x4E88 | ||
| 1365 | /* gap */ | 1366 | /* gap */ |
| 1366 | 1367 | ||
| 1367 | /* Guess by Vladimir. | 1368 | /* Guess by Vladimir. |
diff --git a/drivers/gpu/drm/radeon/radeon_cp.c b/drivers/gpu/drm/radeon/radeon_cp.c index f0de81a5689d..3331f88dcfb6 100644 --- a/drivers/gpu/drm/radeon/radeon_cp.c +++ b/drivers/gpu/drm/radeon/radeon_cp.c | |||
| @@ -40,6 +40,7 @@ | |||
| 40 | #define RADEON_FIFO_DEBUG 0 | 40 | #define RADEON_FIFO_DEBUG 0 |
| 41 | 41 | ||
| 42 | static int radeon_do_cleanup_cp(struct drm_device * dev); | 42 | static int radeon_do_cleanup_cp(struct drm_device * dev); |
| 43 | static void radeon_do_cp_start(drm_radeon_private_t * dev_priv); | ||
| 43 | 44 | ||
| 44 | static u32 R500_READ_MCIND(drm_radeon_private_t *dev_priv, int addr) | 45 | static u32 R500_READ_MCIND(drm_radeon_private_t *dev_priv, int addr) |
| 45 | { | 46 | { |
| @@ -198,23 +199,8 @@ static int radeon_do_pixcache_flush(drm_radeon_private_t * dev_priv) | |||
| 198 | DRM_UDELAY(1); | 199 | DRM_UDELAY(1); |
| 199 | } | 200 | } |
| 200 | } else { | 201 | } else { |
| 201 | /* 3D */ | 202 | /* don't flush or purge cache here or lockup */ |
| 202 | tmp = RADEON_READ(R300_RB3D_DSTCACHE_CTLSTAT); | 203 | return 0; |
| 203 | tmp |= RADEON_RB3D_DC_FLUSH_ALL; | ||
| 204 | RADEON_WRITE(R300_RB3D_DSTCACHE_CTLSTAT, tmp); | ||
| 205 | |||
| 206 | /* 2D */ | ||
| 207 | tmp = RADEON_READ(R300_DSTCACHE_CTLSTAT); | ||
| 208 | tmp |= RADEON_RB3D_DC_FLUSH_ALL; | ||
| 209 | RADEON_WRITE(R300_DSTCACHE_CTLSTAT, tmp); | ||
| 210 | |||
| 211 | for (i = 0; i < dev_priv->usec_timeout; i++) { | ||
| 212 | if (!(RADEON_READ(R300_DSTCACHE_CTLSTAT) | ||
| 213 | & RADEON_RB3D_DC_BUSY)) { | ||
| 214 | return 0; | ||
| 215 | } | ||
| 216 | DRM_UDELAY(1); | ||
| 217 | } | ||
| 218 | } | 204 | } |
| 219 | 205 | ||
| 220 | #if RADEON_FIFO_DEBUG | 206 | #if RADEON_FIFO_DEBUG |
| @@ -237,6 +223,9 @@ static int radeon_do_wait_for_fifo(drm_radeon_private_t * dev_priv, int entries) | |||
| 237 | return 0; | 223 | return 0; |
| 238 | DRM_UDELAY(1); | 224 | DRM_UDELAY(1); |
| 239 | } | 225 | } |
| 226 | DRM_INFO("wait for fifo failed status : 0x%08X 0x%08X\n", | ||
| 227 | RADEON_READ(RADEON_RBBM_STATUS), | ||
| 228 | RADEON_READ(R300_VAP_CNTL_STATUS)); | ||
| 240 | 229 | ||
| 241 | #if RADEON_FIFO_DEBUG | 230 | #if RADEON_FIFO_DEBUG |
| 242 | DRM_ERROR("failed!\n"); | 231 | DRM_ERROR("failed!\n"); |
| @@ -263,6 +252,9 @@ static int radeon_do_wait_for_idle(drm_radeon_private_t * dev_priv) | |||
| 263 | } | 252 | } |
| 264 | DRM_UDELAY(1); | 253 | DRM_UDELAY(1); |
| 265 | } | 254 | } |
| 255 | DRM_INFO("wait idle failed status : 0x%08X 0x%08X\n", | ||
| 256 | RADEON_READ(RADEON_RBBM_STATUS), | ||
| 257 | RADEON_READ(R300_VAP_CNTL_STATUS)); | ||
| 266 | 258 | ||
| 267 | #if RADEON_FIFO_DEBUG | 259 | #if RADEON_FIFO_DEBUG |
| 268 | DRM_ERROR("failed!\n"); | 260 | DRM_ERROR("failed!\n"); |
| @@ -443,14 +435,20 @@ static void radeon_do_cp_start(drm_radeon_private_t * dev_priv) | |||
| 443 | 435 | ||
| 444 | dev_priv->cp_running = 1; | 436 | dev_priv->cp_running = 1; |
| 445 | 437 | ||
| 446 | BEGIN_RING(6); | 438 | BEGIN_RING(8); |
| 447 | 439 | /* isync can only be written through cp on r5xx write it here */ | |
| 440 | OUT_RING(CP_PACKET0(RADEON_ISYNC_CNTL, 0)); | ||
| 441 | OUT_RING(RADEON_ISYNC_ANY2D_IDLE3D | | ||
| 442 | RADEON_ISYNC_ANY3D_IDLE2D | | ||
| 443 | RADEON_ISYNC_WAIT_IDLEGUI | | ||
| 444 | RADEON_ISYNC_CPSCRATCH_IDLEGUI); | ||
| 448 | RADEON_PURGE_CACHE(); | 445 | RADEON_PURGE_CACHE(); |
| 449 | RADEON_PURGE_ZCACHE(); | 446 | RADEON_PURGE_ZCACHE(); |
| 450 | RADEON_WAIT_UNTIL_IDLE(); | 447 | RADEON_WAIT_UNTIL_IDLE(); |
| 451 | |||
| 452 | ADVANCE_RING(); | 448 | ADVANCE_RING(); |
| 453 | COMMIT_RING(); | 449 | COMMIT_RING(); |
| 450 | |||
| 451 | dev_priv->track_flush |= RADEON_FLUSH_EMITED | RADEON_PURGE_EMITED; | ||
| 454 | } | 452 | } |
| 455 | 453 | ||
| 456 | /* Reset the Command Processor. This will not flush any pending | 454 | /* Reset the Command Processor. This will not flush any pending |
diff --git a/drivers/gpu/drm/radeon/radeon_drv.h b/drivers/gpu/drm/radeon/radeon_drv.h index 3f0eca957aa7..099381693175 100644 --- a/drivers/gpu/drm/radeon/radeon_drv.h +++ b/drivers/gpu/drm/radeon/radeon_drv.h | |||
| @@ -220,6 +220,9 @@ struct radeon_virt_surface { | |||
| 220 | struct drm_file *file_priv; | 220 | struct drm_file *file_priv; |
| 221 | }; | 221 | }; |
| 222 | 222 | ||
| 223 | #define RADEON_FLUSH_EMITED (1 < 0) | ||
| 224 | #define RADEON_PURGE_EMITED (1 < 1) | ||
| 225 | |||
| 223 | typedef struct drm_radeon_private { | 226 | typedef struct drm_radeon_private { |
| 224 | drm_radeon_ring_buffer_t ring; | 227 | drm_radeon_ring_buffer_t ring; |
| 225 | drm_radeon_sarea_t *sarea_priv; | 228 | drm_radeon_sarea_t *sarea_priv; |
| @@ -311,6 +314,7 @@ typedef struct drm_radeon_private { | |||
| 311 | unsigned long fb_aper_offset; | 314 | unsigned long fb_aper_offset; |
| 312 | 315 | ||
| 313 | int num_gb_pipes; | 316 | int num_gb_pipes; |
| 317 | int track_flush; | ||
| 314 | } drm_radeon_private_t; | 318 | } drm_radeon_private_t; |
| 315 | 319 | ||
| 316 | typedef struct drm_radeon_buf_priv { | 320 | typedef struct drm_radeon_buf_priv { |
| @@ -693,7 +697,6 @@ extern int r300_do_cp_cmdbuf(struct drm_device * dev, | |||
| 693 | #define R300_ZB_ZCACHE_CTLSTAT 0x4f18 | 697 | #define R300_ZB_ZCACHE_CTLSTAT 0x4f18 |
| 694 | # define R300_ZC_FLUSH (1 << 0) | 698 | # define R300_ZC_FLUSH (1 << 0) |
| 695 | # define R300_ZC_FREE (1 << 1) | 699 | # define R300_ZC_FREE (1 << 1) |
| 696 | # define R300_ZC_FLUSH_ALL 0x3 | ||
| 697 | # define R300_ZC_BUSY (1 << 31) | 700 | # define R300_ZC_BUSY (1 << 31) |
| 698 | #define RADEON_RB3D_DSTCACHE_CTLSTAT 0x325c | 701 | #define RADEON_RB3D_DSTCACHE_CTLSTAT 0x325c |
| 699 | # define RADEON_RB3D_DC_FLUSH (3 << 0) | 702 | # define RADEON_RB3D_DC_FLUSH (3 << 0) |
| @@ -701,6 +704,8 @@ extern int r300_do_cp_cmdbuf(struct drm_device * dev, | |||
| 701 | # define RADEON_RB3D_DC_FLUSH_ALL 0xf | 704 | # define RADEON_RB3D_DC_FLUSH_ALL 0xf |
| 702 | # define RADEON_RB3D_DC_BUSY (1 << 31) | 705 | # define RADEON_RB3D_DC_BUSY (1 << 31) |
| 703 | #define R300_RB3D_DSTCACHE_CTLSTAT 0x4e4c | 706 | #define R300_RB3D_DSTCACHE_CTLSTAT 0x4e4c |
| 707 | # define R300_RB3D_DC_FLUSH (2 << 0) | ||
| 708 | # define R300_RB3D_DC_FREE (2 << 2) | ||
| 704 | # define R300_RB3D_DC_FINISH (1 << 4) | 709 | # define R300_RB3D_DC_FINISH (1 << 4) |
| 705 | #define RADEON_RB3D_ZSTENCILCNTL 0x1c2c | 710 | #define RADEON_RB3D_ZSTENCILCNTL 0x1c2c |
| 706 | # define RADEON_Z_TEST_MASK (7 << 4) | 711 | # define RADEON_Z_TEST_MASK (7 << 4) |
| @@ -1246,17 +1251,17 @@ do { \ | |||
| 1246 | OUT_RING(RADEON_RB3D_DC_FLUSH); \ | 1251 | OUT_RING(RADEON_RB3D_DC_FLUSH); \ |
| 1247 | } else { \ | 1252 | } else { \ |
| 1248 | OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); \ | 1253 | OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); \ |
| 1249 | OUT_RING(RADEON_RB3D_DC_FLUSH); \ | 1254 | OUT_RING(R300_RB3D_DC_FLUSH); \ |
| 1250 | } \ | 1255 | } \ |
| 1251 | } while (0) | 1256 | } while (0) |
| 1252 | 1257 | ||
| 1253 | #define RADEON_PURGE_CACHE() do { \ | 1258 | #define RADEON_PURGE_CACHE() do { \ |
| 1254 | if ((dev_priv->flags & RADEON_FAMILY_MASK) <= CHIP_RV280) { \ | 1259 | if ((dev_priv->flags & RADEON_FAMILY_MASK) <= CHIP_RV280) { \ |
| 1255 | OUT_RING(CP_PACKET0(RADEON_RB3D_DSTCACHE_CTLSTAT, 0)); \ | 1260 | OUT_RING(CP_PACKET0(RADEON_RB3D_DSTCACHE_CTLSTAT, 0)); \ |
| 1256 | OUT_RING(RADEON_RB3D_DC_FLUSH_ALL); \ | 1261 | OUT_RING(RADEON_RB3D_DC_FLUSH | RADEON_RB3D_DC_FREE); \ |
| 1257 | } else { \ | 1262 | } else { \ |
| 1258 | OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); \ | 1263 | OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); \ |
| 1259 | OUT_RING(RADEON_RB3D_DC_FLUSH_ALL); \ | 1264 | OUT_RING(R300_RB3D_DC_FLUSH | R300_RB3D_DC_FREE); \ |
| 1260 | } \ | 1265 | } \ |
| 1261 | } while (0) | 1266 | } while (0) |
| 1262 | 1267 | ||
| @@ -1273,10 +1278,10 @@ do { \ | |||
| 1273 | #define RADEON_PURGE_ZCACHE() do { \ | 1278 | #define RADEON_PURGE_ZCACHE() do { \ |
| 1274 | if ((dev_priv->flags & RADEON_FAMILY_MASK) <= CHIP_RV280) { \ | 1279 | if ((dev_priv->flags & RADEON_FAMILY_MASK) <= CHIP_RV280) { \ |
| 1275 | OUT_RING(CP_PACKET0(RADEON_RB3D_ZCACHE_CTLSTAT, 0)); \ | 1280 | OUT_RING(CP_PACKET0(RADEON_RB3D_ZCACHE_CTLSTAT, 0)); \ |
| 1276 | OUT_RING(RADEON_RB3D_ZC_FLUSH_ALL); \ | 1281 | OUT_RING(RADEON_RB3D_ZC_FLUSH | RADEON_RB3D_ZC_FREE); \ |
| 1277 | } else { \ | 1282 | } else { \ |
| 1278 | OUT_RING(CP_PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0)); \ | 1283 | OUT_RING(CP_PACKET0(R300_ZB_ZCACHE_CTLSTAT, 0)); \ |
| 1279 | OUT_RING(R300_ZC_FLUSH_ALL); \ | 1284 | OUT_RING(R300_ZC_FLUSH | R300_ZC_FREE); \ |
| 1280 | } \ | 1285 | } \ |
| 1281 | } while (0) | 1286 | } while (0) |
| 1282 | 1287 | ||
diff --git a/drivers/lguest/lguest_device.c b/drivers/lguest/lguest_device.c index 37344aaee22f..a661bbdae3d6 100644 --- a/drivers/lguest/lguest_device.c +++ b/drivers/lguest/lguest_device.c | |||
| @@ -98,6 +98,10 @@ static u32 lg_get_features(struct virtio_device *vdev) | |||
| 98 | return features; | 98 | return features; |
| 99 | } | 99 | } |
| 100 | 100 | ||
| 101 | /* The virtio core takes the features the Host offers, and copies the | ||
| 102 | * ones supported by the driver into the vdev->features array. Once | ||
| 103 | * that's all sorted out, this routine is called so we can tell the | ||
| 104 | * Host which features we understand and accept. */ | ||
| 101 | static void lg_finalize_features(struct virtio_device *vdev) | 105 | static void lg_finalize_features(struct virtio_device *vdev) |
| 102 | { | 106 | { |
| 103 | unsigned int i, bits; | 107 | unsigned int i, bits; |
| @@ -108,6 +112,10 @@ static void lg_finalize_features(struct virtio_device *vdev) | |||
| 108 | /* Give virtio_ring a chance to accept features. */ | 112 | /* Give virtio_ring a chance to accept features. */ |
| 109 | vring_transport_features(vdev); | 113 | vring_transport_features(vdev); |
| 110 | 114 | ||
| 115 | /* The vdev->feature array is a Linux bitmask: this isn't the | ||
| 116 | * same as a the simple array of bits used by lguest devices | ||
| 117 | * for features. So we do this slow, manual conversion which is | ||
| 118 | * completely general. */ | ||
| 111 | memset(out_features, 0, desc->feature_len); | 119 | memset(out_features, 0, desc->feature_len); |
| 112 | bits = min_t(unsigned, desc->feature_len, sizeof(vdev->features)) * 8; | 120 | bits = min_t(unsigned, desc->feature_len, sizeof(vdev->features)) * 8; |
| 113 | for (i = 0; i < bits; i++) { | 121 | for (i = 0; i < bits; i++) { |
diff --git a/drivers/misc/acer-wmi.c b/drivers/misc/acer-wmi.c index b2d9878dc3f0..c6c77a505ec1 100644 --- a/drivers/misc/acer-wmi.c +++ b/drivers/misc/acer-wmi.c | |||
| @@ -192,6 +192,9 @@ static struct quirk_entry *quirks; | |||
| 192 | 192 | ||
| 193 | static void set_quirks(void) | 193 | static void set_quirks(void) |
| 194 | { | 194 | { |
| 195 | if (!interface) | ||
| 196 | return; | ||
| 197 | |||
| 195 | if (quirks->mailled) | 198 | if (quirks->mailled) |
| 196 | interface->capability |= ACER_CAP_MAILLED; | 199 | interface->capability |= ACER_CAP_MAILLED; |
| 197 | 200 | ||
| @@ -1237,6 +1240,8 @@ static int __init acer_wmi_init(void) | |||
| 1237 | return -ENODEV; | 1240 | return -ENODEV; |
| 1238 | } | 1241 | } |
| 1239 | 1242 | ||
| 1243 | set_quirks(); | ||
| 1244 | |||
| 1240 | if (platform_driver_register(&acer_platform_driver)) { | 1245 | if (platform_driver_register(&acer_platform_driver)) { |
| 1241 | printk(ACER_ERR "Unable to register platform driver.\n"); | 1246 | printk(ACER_ERR "Unable to register platform driver.\n"); |
| 1242 | goto error_platform_register; | 1247 | goto error_platform_register; |
diff --git a/drivers/net/bnx2x.h b/drivers/net/bnx2x.h index b468f904c7f8..a14dba1afcc5 100644 --- a/drivers/net/bnx2x.h +++ b/drivers/net/bnx2x.h | |||
| @@ -271,7 +271,7 @@ struct bnx2x_fastpath { | |||
| 271 | (fp->tx_pkt_prod != fp->tx_pkt_cons)) | 271 | (fp->tx_pkt_prod != fp->tx_pkt_cons)) |
| 272 | 272 | ||
| 273 | #define BNX2X_HAS_RX_WORK(fp) \ | 273 | #define BNX2X_HAS_RX_WORK(fp) \ |
| 274 | (fp->rx_comp_cons != le16_to_cpu(*fp->rx_cons_sb)) | 274 | (fp->rx_comp_cons != rx_cons_sb) |
| 275 | 275 | ||
| 276 | #define BNX2X_HAS_WORK(fp) (BNX2X_HAS_RX_WORK(fp) || BNX2X_HAS_TX_WORK(fp)) | 276 | #define BNX2X_HAS_WORK(fp) (BNX2X_HAS_RX_WORK(fp) || BNX2X_HAS_TX_WORK(fp)) |
| 277 | 277 | ||
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index 971576b43687..82deea0a63f5 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c | |||
| @@ -59,8 +59,8 @@ | |||
| 59 | #include "bnx2x.h" | 59 | #include "bnx2x.h" |
| 60 | #include "bnx2x_init.h" | 60 | #include "bnx2x_init.h" |
| 61 | 61 | ||
| 62 | #define DRV_MODULE_VERSION "1.45.17" | 62 | #define DRV_MODULE_VERSION "1.45.20" |
| 63 | #define DRV_MODULE_RELDATE "2008/08/13" | 63 | #define DRV_MODULE_RELDATE "2008/08/25" |
| 64 | #define BNX2X_BC_VER 0x040200 | 64 | #define BNX2X_BC_VER 0x040200 |
| 65 | 65 | ||
| 66 | /* Time in jiffies before concluding the transmitter is hung */ | 66 | /* Time in jiffies before concluding the transmitter is hung */ |
| @@ -1717,8 +1717,8 @@ static int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource) | |||
| 1717 | return -EEXIST; | 1717 | return -EEXIST; |
| 1718 | } | 1718 | } |
| 1719 | 1719 | ||
| 1720 | /* Try for 1 second every 5ms */ | 1720 | /* Try for 5 second every 5ms */ |
| 1721 | for (cnt = 0; cnt < 200; cnt++) { | 1721 | for (cnt = 0; cnt < 1000; cnt++) { |
| 1722 | /* Try to acquire the lock */ | 1722 | /* Try to acquire the lock */ |
| 1723 | REG_WR(bp, hw_lock_control_reg + 4, resource_bit); | 1723 | REG_WR(bp, hw_lock_control_reg + 4, resource_bit); |
| 1724 | lock_status = REG_RD(bp, hw_lock_control_reg); | 1724 | lock_status = REG_RD(bp, hw_lock_control_reg); |
| @@ -2550,6 +2550,7 @@ static inline void bnx2x_attn_int_deasserted0(struct bnx2x *bp, u32 attn) | |||
| 2550 | BNX2X_ERR("SPIO5 hw attention\n"); | 2550 | BNX2X_ERR("SPIO5 hw attention\n"); |
| 2551 | 2551 | ||
| 2552 | switch (bp->common.board & SHARED_HW_CFG_BOARD_TYPE_MASK) { | 2552 | switch (bp->common.board & SHARED_HW_CFG_BOARD_TYPE_MASK) { |
| 2553 | case SHARED_HW_CFG_BOARD_TYPE_BCM957710A1021G: | ||
| 2553 | case SHARED_HW_CFG_BOARD_TYPE_BCM957710A1022G: | 2554 | case SHARED_HW_CFG_BOARD_TYPE_BCM957710A1022G: |
| 2554 | /* Fan failure attention */ | 2555 | /* Fan failure attention */ |
| 2555 | 2556 | ||
| @@ -4605,6 +4606,17 @@ static void bnx2x_init_internal_common(struct bnx2x *bp) | |||
| 4605 | { | 4606 | { |
| 4606 | int i; | 4607 | int i; |
| 4607 | 4608 | ||
| 4609 | if (bp->flags & TPA_ENABLE_FLAG) { | ||
| 4610 | struct tstorm_eth_tpa_exist tpa = {0}; | ||
| 4611 | |||
| 4612 | tpa.tpa_exist = 1; | ||
| 4613 | |||
| 4614 | REG_WR(bp, BAR_TSTRORM_INTMEM + TSTORM_TPA_EXIST_OFFSET, | ||
| 4615 | ((u32 *)&tpa)[0]); | ||
| 4616 | REG_WR(bp, BAR_TSTRORM_INTMEM + TSTORM_TPA_EXIST_OFFSET + 4, | ||
| 4617 | ((u32 *)&tpa)[1]); | ||
| 4618 | } | ||
| 4619 | |||
| 4608 | /* Zero this manually as its initialization is | 4620 | /* Zero this manually as its initialization is |
| 4609 | currently missing in the initTool */ | 4621 | currently missing in the initTool */ |
| 4610 | for (i = 0; i < (USTORM_AGG_DATA_SIZE >> 2); i++) | 4622 | for (i = 0; i < (USTORM_AGG_DATA_SIZE >> 2); i++) |
| @@ -5337,6 +5349,7 @@ static int bnx2x_init_common(struct bnx2x *bp) | |||
| 5337 | } | 5349 | } |
| 5338 | 5350 | ||
| 5339 | switch (bp->common.board & SHARED_HW_CFG_BOARD_TYPE_MASK) { | 5351 | switch (bp->common.board & SHARED_HW_CFG_BOARD_TYPE_MASK) { |
| 5352 | case SHARED_HW_CFG_BOARD_TYPE_BCM957710A1021G: | ||
| 5340 | case SHARED_HW_CFG_BOARD_TYPE_BCM957710A1022G: | 5353 | case SHARED_HW_CFG_BOARD_TYPE_BCM957710A1022G: |
| 5341 | /* Fan failure is indicated by SPIO 5 */ | 5354 | /* Fan failure is indicated by SPIO 5 */ |
| 5342 | bnx2x_set_spio(bp, MISC_REGISTERS_SPIO_5, | 5355 | bnx2x_set_spio(bp, MISC_REGISTERS_SPIO_5, |
| @@ -5363,17 +5376,6 @@ static int bnx2x_init_common(struct bnx2x *bp) | |||
| 5363 | 5376 | ||
| 5364 | enable_blocks_attention(bp); | 5377 | enable_blocks_attention(bp); |
| 5365 | 5378 | ||
| 5366 | if (bp->flags & TPA_ENABLE_FLAG) { | ||
| 5367 | struct tstorm_eth_tpa_exist tmp = {0}; | ||
| 5368 | |||
| 5369 | tmp.tpa_exist = 1; | ||
| 5370 | |||
| 5371 | REG_WR(bp, BAR_TSTRORM_INTMEM + TSTORM_TPA_EXIST_OFFSET, | ||
| 5372 | ((u32 *)&tmp)[0]); | ||
| 5373 | REG_WR(bp, BAR_TSTRORM_INTMEM + TSTORM_TPA_EXIST_OFFSET + 4, | ||
| 5374 | ((u32 *)&tmp)[1]); | ||
| 5375 | } | ||
| 5376 | |||
| 5377 | if (!BP_NOMCP(bp)) { | 5379 | if (!BP_NOMCP(bp)) { |
| 5378 | bnx2x_acquire_phy_lock(bp); | 5380 | bnx2x_acquire_phy_lock(bp); |
| 5379 | bnx2x_common_init_phy(bp, bp->common.shmem_base); | 5381 | bnx2x_common_init_phy(bp, bp->common.shmem_base); |
| @@ -5531,6 +5533,7 @@ static int bnx2x_init_port(struct bnx2x *bp) | |||
| 5531 | /* Port DMAE comes here */ | 5533 | /* Port DMAE comes here */ |
| 5532 | 5534 | ||
| 5533 | switch (bp->common.board & SHARED_HW_CFG_BOARD_TYPE_MASK) { | 5535 | switch (bp->common.board & SHARED_HW_CFG_BOARD_TYPE_MASK) { |
| 5536 | case SHARED_HW_CFG_BOARD_TYPE_BCM957710A1021G: | ||
| 5534 | case SHARED_HW_CFG_BOARD_TYPE_BCM957710A1022G: | 5537 | case SHARED_HW_CFG_BOARD_TYPE_BCM957710A1022G: |
| 5535 | /* add SPIO 5 to group 0 */ | 5538 | /* add SPIO 5 to group 0 */ |
| 5536 | val = REG_RD(bp, MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0); | 5539 | val = REG_RD(bp, MISC_REG_AEU_ENABLE1_FUNC_0_OUT_0); |
| @@ -6055,6 +6058,44 @@ static int bnx2x_req_irq(struct bnx2x *bp) | |||
| 6055 | return rc; | 6058 | return rc; |
| 6056 | } | 6059 | } |
| 6057 | 6060 | ||
| 6061 | static void bnx2x_napi_enable(struct bnx2x *bp) | ||
| 6062 | { | ||
| 6063 | int i; | ||
| 6064 | |||
| 6065 | for_each_queue(bp, i) | ||
| 6066 | napi_enable(&bnx2x_fp(bp, i, napi)); | ||
| 6067 | } | ||
| 6068 | |||
| 6069 | static void bnx2x_napi_disable(struct bnx2x *bp) | ||
| 6070 | { | ||
| 6071 | int i; | ||
| 6072 | |||
| 6073 | for_each_queue(bp, i) | ||
| 6074 | napi_disable(&bnx2x_fp(bp, i, napi)); | ||
| 6075 | } | ||
| 6076 | |||
| 6077 | static void bnx2x_netif_start(struct bnx2x *bp) | ||
| 6078 | { | ||
| 6079 | if (atomic_dec_and_test(&bp->intr_sem)) { | ||
| 6080 | if (netif_running(bp->dev)) { | ||
| 6081 | if (bp->state == BNX2X_STATE_OPEN) | ||
| 6082 | netif_wake_queue(bp->dev); | ||
| 6083 | bnx2x_napi_enable(bp); | ||
| 6084 | bnx2x_int_enable(bp); | ||
| 6085 | } | ||
| 6086 | } | ||
| 6087 | } | ||
| 6088 | |||
| 6089 | static void bnx2x_netif_stop(struct bnx2x *bp) | ||
| 6090 | { | ||
| 6091 | bnx2x_int_disable_sync(bp); | ||
| 6092 | if (netif_running(bp->dev)) { | ||
| 6093 | bnx2x_napi_disable(bp); | ||
| 6094 | netif_tx_disable(bp->dev); | ||
| 6095 | bp->dev->trans_start = jiffies; /* prevent tx timeout */ | ||
| 6096 | } | ||
| 6097 | } | ||
| 6098 | |||
| 6058 | /* | 6099 | /* |
| 6059 | * Init service functions | 6100 | * Init service functions |
| 6060 | */ | 6101 | */ |
| @@ -6338,7 +6379,7 @@ static int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
| 6338 | rc = bnx2x_init_hw(bp, load_code); | 6379 | rc = bnx2x_init_hw(bp, load_code); |
| 6339 | if (rc) { | 6380 | if (rc) { |
| 6340 | BNX2X_ERR("HW init failed, aborting\n"); | 6381 | BNX2X_ERR("HW init failed, aborting\n"); |
| 6341 | goto load_error; | 6382 | goto load_int_disable; |
| 6342 | } | 6383 | } |
| 6343 | 6384 | ||
| 6344 | /* Setup NIC internals and enable interrupts */ | 6385 | /* Setup NIC internals and enable interrupts */ |
| @@ -6350,7 +6391,7 @@ static int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
| 6350 | if (!load_code) { | 6391 | if (!load_code) { |
| 6351 | BNX2X_ERR("MCP response failure, aborting\n"); | 6392 | BNX2X_ERR("MCP response failure, aborting\n"); |
| 6352 | rc = -EBUSY; | 6393 | rc = -EBUSY; |
| 6353 | goto load_int_disable; | 6394 | goto load_rings_free; |
| 6354 | } | 6395 | } |
| 6355 | } | 6396 | } |
| 6356 | 6397 | ||
| @@ -6360,8 +6401,7 @@ static int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
| 6360 | 6401 | ||
| 6361 | /* Enable Rx interrupt handling before sending the ramrod | 6402 | /* Enable Rx interrupt handling before sending the ramrod |
| 6362 | as it's completed on Rx FP queue */ | 6403 | as it's completed on Rx FP queue */ |
| 6363 | for_each_queue(bp, i) | 6404 | bnx2x_napi_enable(bp); |
| 6364 | napi_enable(&bnx2x_fp(bp, i, napi)); | ||
| 6365 | 6405 | ||
| 6366 | /* Enable interrupt handling */ | 6406 | /* Enable interrupt handling */ |
| 6367 | atomic_set(&bp->intr_sem, 0); | 6407 | atomic_set(&bp->intr_sem, 0); |
| @@ -6369,7 +6409,7 @@ static int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
| 6369 | rc = bnx2x_setup_leading(bp); | 6409 | rc = bnx2x_setup_leading(bp); |
| 6370 | if (rc) { | 6410 | if (rc) { |
| 6371 | BNX2X_ERR("Setup leading failed!\n"); | 6411 | BNX2X_ERR("Setup leading failed!\n"); |
| 6372 | goto load_stop_netif; | 6412 | goto load_netif_stop; |
| 6373 | } | 6413 | } |
| 6374 | 6414 | ||
| 6375 | if (CHIP_IS_E1H(bp)) | 6415 | if (CHIP_IS_E1H(bp)) |
| @@ -6382,7 +6422,7 @@ static int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
| 6382 | for_each_nondefault_queue(bp, i) { | 6422 | for_each_nondefault_queue(bp, i) { |
| 6383 | rc = bnx2x_setup_multi(bp, i); | 6423 | rc = bnx2x_setup_multi(bp, i); |
| 6384 | if (rc) | 6424 | if (rc) |
| 6385 | goto load_stop_netif; | 6425 | goto load_netif_stop; |
| 6386 | } | 6426 | } |
| 6387 | 6427 | ||
| 6388 | if (CHIP_IS_E1(bp)) | 6428 | if (CHIP_IS_E1(bp)) |
| @@ -6427,20 +6467,17 @@ static int bnx2x_nic_load(struct bnx2x *bp, int load_mode) | |||
| 6427 | 6467 | ||
| 6428 | return 0; | 6468 | return 0; |
| 6429 | 6469 | ||
| 6430 | load_stop_netif: | 6470 | load_netif_stop: |
| 6471 | bnx2x_napi_disable(bp); | ||
| 6472 | load_rings_free: | ||
| 6473 | /* Free SKBs, SGEs, TPA pool and driver internals */ | ||
| 6474 | bnx2x_free_skbs(bp); | ||
| 6431 | for_each_queue(bp, i) | 6475 | for_each_queue(bp, i) |
| 6432 | napi_disable(&bnx2x_fp(bp, i, napi)); | 6476 | bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE); |
| 6433 | |||
| 6434 | load_int_disable: | 6477 | load_int_disable: |
| 6435 | bnx2x_int_disable_sync(bp); | 6478 | bnx2x_int_disable_sync(bp); |
| 6436 | |||
| 6437 | /* Release IRQs */ | 6479 | /* Release IRQs */ |
| 6438 | bnx2x_free_irq(bp); | 6480 | bnx2x_free_irq(bp); |
| 6439 | |||
| 6440 | /* Free SKBs, SGEs, TPA pool and driver internals */ | ||
| 6441 | bnx2x_free_skbs(bp); | ||
| 6442 | for_each_queue(bp, i) | ||
| 6443 | bnx2x_free_rx_sge_range(bp, bp->fp + i, NUM_RX_SGE); | ||
| 6444 | load_error: | 6481 | load_error: |
| 6445 | bnx2x_free_mem(bp); | 6482 | bnx2x_free_mem(bp); |
| 6446 | 6483 | ||
| @@ -6455,7 +6492,7 @@ static int bnx2x_stop_multi(struct bnx2x *bp, int index) | |||
| 6455 | 6492 | ||
| 6456 | /* halt the connection */ | 6493 | /* halt the connection */ |
| 6457 | bp->fp[index].state = BNX2X_FP_STATE_HALTING; | 6494 | bp->fp[index].state = BNX2X_FP_STATE_HALTING; |
| 6458 | bnx2x_sp_post(bp, RAMROD_CMD_ID_ETH_HALT, index, 0, 0, 0); | 6495 | bnx2x_sp_post(bp, RAMROD_CMD_ID_ETH_HALT, index, 0, index, 0); |
| 6459 | 6496 | ||
| 6460 | /* Wait for completion */ | 6497 | /* Wait for completion */ |
| 6461 | rc = bnx2x_wait_ramrod(bp, BNX2X_FP_STATE_HALTED, index, | 6498 | rc = bnx2x_wait_ramrod(bp, BNX2X_FP_STATE_HALTED, index, |
| @@ -6613,11 +6650,9 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode) | |||
| 6613 | bp->rx_mode = BNX2X_RX_MODE_NONE; | 6650 | bp->rx_mode = BNX2X_RX_MODE_NONE; |
| 6614 | bnx2x_set_storm_rx_mode(bp); | 6651 | bnx2x_set_storm_rx_mode(bp); |
| 6615 | 6652 | ||
| 6616 | if (netif_running(bp->dev)) { | 6653 | bnx2x_netif_stop(bp); |
| 6617 | netif_tx_disable(bp->dev); | 6654 | if (!netif_running(bp->dev)) |
| 6618 | bp->dev->trans_start = jiffies; /* prevent tx timeout */ | 6655 | bnx2x_napi_disable(bp); |
| 6619 | } | ||
| 6620 | |||
| 6621 | del_timer_sync(&bp->timer); | 6656 | del_timer_sync(&bp->timer); |
| 6622 | SHMEM_WR(bp, func_mb[BP_FUNC(bp)].drv_pulse_mb, | 6657 | SHMEM_WR(bp, func_mb[BP_FUNC(bp)].drv_pulse_mb, |
| 6623 | (DRV_PULSE_ALWAYS_ALIVE | bp->fw_drv_pulse_wr_seq)); | 6658 | (DRV_PULSE_ALWAYS_ALIVE | bp->fw_drv_pulse_wr_seq)); |
| @@ -6631,9 +6666,7 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode) | |||
| 6631 | smp_rmb(); | 6666 | smp_rmb(); |
| 6632 | while (BNX2X_HAS_TX_WORK(fp)) { | 6667 | while (BNX2X_HAS_TX_WORK(fp)) { |
| 6633 | 6668 | ||
| 6634 | if (!netif_running(bp->dev)) | 6669 | bnx2x_tx_int(fp, 1000); |
| 6635 | bnx2x_tx_int(fp, 1000); | ||
| 6636 | |||
| 6637 | if (!cnt) { | 6670 | if (!cnt) { |
| 6638 | BNX2X_ERR("timeout waiting for queue[%d]\n", | 6671 | BNX2X_ERR("timeout waiting for queue[%d]\n", |
| 6639 | i); | 6672 | i); |
| @@ -6649,46 +6682,12 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode) | |||
| 6649 | smp_rmb(); | 6682 | smp_rmb(); |
| 6650 | } | 6683 | } |
| 6651 | } | 6684 | } |
| 6652 | |||
| 6653 | /* Give HW time to discard old tx messages */ | 6685 | /* Give HW time to discard old tx messages */ |
| 6654 | msleep(1); | 6686 | msleep(1); |
| 6655 | 6687 | ||
| 6656 | for_each_queue(bp, i) | ||
| 6657 | napi_disable(&bnx2x_fp(bp, i, napi)); | ||
| 6658 | /* Disable interrupts after Tx and Rx are disabled on stack level */ | ||
| 6659 | bnx2x_int_disable_sync(bp); | ||
| 6660 | |||
| 6661 | /* Release IRQs */ | 6688 | /* Release IRQs */ |
| 6662 | bnx2x_free_irq(bp); | 6689 | bnx2x_free_irq(bp); |
| 6663 | 6690 | ||
| 6664 | if (unload_mode == UNLOAD_NORMAL) | ||
| 6665 | reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS; | ||
| 6666 | |||
| 6667 | else if (bp->flags & NO_WOL_FLAG) { | ||
| 6668 | reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP; | ||
| 6669 | if (CHIP_IS_E1H(bp)) | ||
| 6670 | REG_WR(bp, MISC_REG_E1HMF_MODE, 0); | ||
| 6671 | |||
| 6672 | } else if (bp->wol) { | ||
| 6673 | u32 emac_base = port ? GRCBASE_EMAC1 : GRCBASE_EMAC0; | ||
| 6674 | u8 *mac_addr = bp->dev->dev_addr; | ||
| 6675 | u32 val; | ||
| 6676 | /* The mac address is written to entries 1-4 to | ||
| 6677 | preserve entry 0 which is used by the PMF */ | ||
| 6678 | u8 entry = (BP_E1HVN(bp) + 1)*8; | ||
| 6679 | |||
| 6680 | val = (mac_addr[0] << 8) | mac_addr[1]; | ||
| 6681 | EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry, val); | ||
| 6682 | |||
| 6683 | val = (mac_addr[2] << 24) | (mac_addr[3] << 16) | | ||
| 6684 | (mac_addr[4] << 8) | mac_addr[5]; | ||
| 6685 | EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry + 4, val); | ||
| 6686 | |||
| 6687 | reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_EN; | ||
| 6688 | |||
| 6689 | } else | ||
| 6690 | reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS; | ||
| 6691 | |||
| 6692 | if (CHIP_IS_E1(bp)) { | 6691 | if (CHIP_IS_E1(bp)) { |
| 6693 | struct mac_configuration_cmd *config = | 6692 | struct mac_configuration_cmd *config = |
| 6694 | bnx2x_sp(bp, mcast_config); | 6693 | bnx2x_sp(bp, mcast_config); |
| @@ -6711,14 +6710,41 @@ static int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode) | |||
| 6711 | U64_LO(bnx2x_sp_mapping(bp, mcast_config)), 0); | 6710 | U64_LO(bnx2x_sp_mapping(bp, mcast_config)), 0); |
| 6712 | 6711 | ||
| 6713 | } else { /* E1H */ | 6712 | } else { /* E1H */ |
| 6713 | REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0); | ||
| 6714 | |||
| 6714 | bnx2x_set_mac_addr_e1h(bp, 0); | 6715 | bnx2x_set_mac_addr_e1h(bp, 0); |
| 6715 | 6716 | ||
| 6716 | for (i = 0; i < MC_HASH_SIZE; i++) | 6717 | for (i = 0; i < MC_HASH_SIZE; i++) |
| 6717 | REG_WR(bp, MC_HASH_OFFSET(bp, i), 0); | 6718 | REG_WR(bp, MC_HASH_OFFSET(bp, i), 0); |
| 6718 | } | 6719 | } |
| 6719 | 6720 | ||
| 6720 | if (CHIP_IS_E1H(bp)) | 6721 | if (unload_mode == UNLOAD_NORMAL) |
| 6721 | REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0); | 6722 | reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS; |
| 6723 | |||
| 6724 | else if (bp->flags & NO_WOL_FLAG) { | ||
| 6725 | reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_MCP; | ||
| 6726 | if (CHIP_IS_E1H(bp)) | ||
| 6727 | REG_WR(bp, MISC_REG_E1HMF_MODE, 0); | ||
| 6728 | |||
| 6729 | } else if (bp->wol) { | ||
| 6730 | u32 emac_base = port ? GRCBASE_EMAC1 : GRCBASE_EMAC0; | ||
| 6731 | u8 *mac_addr = bp->dev->dev_addr; | ||
| 6732 | u32 val; | ||
| 6733 | /* The mac address is written to entries 1-4 to | ||
| 6734 | preserve entry 0 which is used by the PMF */ | ||
| 6735 | u8 entry = (BP_E1HVN(bp) + 1)*8; | ||
| 6736 | |||
| 6737 | val = (mac_addr[0] << 8) | mac_addr[1]; | ||
| 6738 | EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry, val); | ||
| 6739 | |||
| 6740 | val = (mac_addr[2] << 24) | (mac_addr[3] << 16) | | ||
| 6741 | (mac_addr[4] << 8) | mac_addr[5]; | ||
| 6742 | EMAC_WR(bp, EMAC_REG_EMAC_MAC_MATCH + entry + 4, val); | ||
| 6743 | |||
| 6744 | reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_EN; | ||
| 6745 | |||
| 6746 | } else | ||
| 6747 | reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS; | ||
| 6722 | 6748 | ||
| 6723 | /* Close multi and leading connections | 6749 | /* Close multi and leading connections |
| 6724 | Completions for ramrods are collected in a synchronous way */ | 6750 | Completions for ramrods are collected in a synchronous way */ |
| @@ -6821,6 +6847,10 @@ static void __devinit bnx2x_undi_unload(struct bnx2x *bp) | |||
| 6821 | */ | 6847 | */ |
| 6822 | bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_UNDI); | 6848 | bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_UNDI); |
| 6823 | val = REG_RD(bp, DORQ_REG_NORM_CID_OFST); | 6849 | val = REG_RD(bp, DORQ_REG_NORM_CID_OFST); |
| 6850 | if (val == 0x7) | ||
| 6851 | REG_WR(bp, DORQ_REG_NORM_CID_OFST, 0); | ||
| 6852 | bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_UNDI); | ||
| 6853 | |||
| 6824 | if (val == 0x7) { | 6854 | if (val == 0x7) { |
| 6825 | u32 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS; | 6855 | u32 reset_code = DRV_MSG_CODE_UNLOAD_REQ_WOL_DIS; |
| 6826 | /* save our func */ | 6856 | /* save our func */ |
| @@ -6898,7 +6928,6 @@ static void __devinit bnx2x_undi_unload(struct bnx2x *bp) | |||
| 6898 | (SHMEM_RD(bp, func_mb[bp->func].drv_mb_header) & | 6928 | (SHMEM_RD(bp, func_mb[bp->func].drv_mb_header) & |
| 6899 | DRV_MSG_SEQ_NUMBER_MASK); | 6929 | DRV_MSG_SEQ_NUMBER_MASK); |
| 6900 | } | 6930 | } |
| 6901 | bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_UNDI); | ||
| 6902 | } | 6931 | } |
| 6903 | } | 6932 | } |
| 6904 | 6933 | ||
| @@ -8617,34 +8646,6 @@ test_mem_exit: | |||
| 8617 | return rc; | 8646 | return rc; |
| 8618 | } | 8647 | } |
| 8619 | 8648 | ||
| 8620 | static void bnx2x_netif_start(struct bnx2x *bp) | ||
| 8621 | { | ||
| 8622 | int i; | ||
| 8623 | |||
| 8624 | if (atomic_dec_and_test(&bp->intr_sem)) { | ||
| 8625 | if (netif_running(bp->dev)) { | ||
| 8626 | bnx2x_int_enable(bp); | ||
| 8627 | for_each_queue(bp, i) | ||
| 8628 | napi_enable(&bnx2x_fp(bp, i, napi)); | ||
| 8629 | if (bp->state == BNX2X_STATE_OPEN) | ||
| 8630 | netif_wake_queue(bp->dev); | ||
| 8631 | } | ||
| 8632 | } | ||
| 8633 | } | ||
| 8634 | |||
| 8635 | static void bnx2x_netif_stop(struct bnx2x *bp) | ||
| 8636 | { | ||
| 8637 | int i; | ||
| 8638 | |||
| 8639 | if (netif_running(bp->dev)) { | ||
| 8640 | netif_tx_disable(bp->dev); | ||
| 8641 | bp->dev->trans_start = jiffies; /* prevent tx timeout */ | ||
| 8642 | for_each_queue(bp, i) | ||
| 8643 | napi_disable(&bnx2x_fp(bp, i, napi)); | ||
| 8644 | } | ||
| 8645 | bnx2x_int_disable_sync(bp); | ||
| 8646 | } | ||
| 8647 | |||
| 8648 | static void bnx2x_wait_for_link(struct bnx2x *bp, u8 link_up) | 8649 | static void bnx2x_wait_for_link(struct bnx2x *bp, u8 link_up) |
| 8649 | { | 8650 | { |
| 8650 | int cnt = 1000; | 8651 | int cnt = 1000; |
| @@ -9250,6 +9251,7 @@ static int bnx2x_poll(struct napi_struct *napi, int budget) | |||
| 9250 | napi); | 9251 | napi); |
| 9251 | struct bnx2x *bp = fp->bp; | 9252 | struct bnx2x *bp = fp->bp; |
| 9252 | int work_done = 0; | 9253 | int work_done = 0; |
| 9254 | u16 rx_cons_sb; | ||
| 9253 | 9255 | ||
| 9254 | #ifdef BNX2X_STOP_ON_ERROR | 9256 | #ifdef BNX2X_STOP_ON_ERROR |
| 9255 | if (unlikely(bp->panic)) | 9257 | if (unlikely(bp->panic)) |
| @@ -9265,10 +9267,16 @@ static int bnx2x_poll(struct napi_struct *napi, int budget) | |||
| 9265 | if (BNX2X_HAS_TX_WORK(fp)) | 9267 | if (BNX2X_HAS_TX_WORK(fp)) |
| 9266 | bnx2x_tx_int(fp, budget); | 9268 | bnx2x_tx_int(fp, budget); |
| 9267 | 9269 | ||
| 9270 | rx_cons_sb = le16_to_cpu(*fp->rx_cons_sb); | ||
| 9271 | if ((rx_cons_sb & MAX_RCQ_DESC_CNT) == MAX_RCQ_DESC_CNT) | ||
| 9272 | rx_cons_sb++; | ||
| 9268 | if (BNX2X_HAS_RX_WORK(fp)) | 9273 | if (BNX2X_HAS_RX_WORK(fp)) |
| 9269 | work_done = bnx2x_rx_int(fp, budget); | 9274 | work_done = bnx2x_rx_int(fp, budget); |
| 9270 | 9275 | ||
| 9271 | rmb(); /* BNX2X_HAS_WORK() reads the status block */ | 9276 | rmb(); /* BNX2X_HAS_WORK() reads the status block */ |
| 9277 | rx_cons_sb = le16_to_cpu(*fp->rx_cons_sb); | ||
| 9278 | if ((rx_cons_sb & MAX_RCQ_DESC_CNT) == MAX_RCQ_DESC_CNT) | ||
| 9279 | rx_cons_sb++; | ||
| 9272 | 9280 | ||
| 9273 | /* must not complete if we consumed full budget */ | 9281 | /* must not complete if we consumed full budget */ |
| 9274 | if ((work_done < budget) && !BNX2X_HAS_WORK(fp)) { | 9282 | if ((work_done < budget) && !BNX2X_HAS_WORK(fp)) { |
| @@ -9484,8 +9492,7 @@ static int bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
| 9484 | fp_index = (smp_processor_id() % bp->num_queues); | 9492 | fp_index = (smp_processor_id() % bp->num_queues); |
| 9485 | fp = &bp->fp[fp_index]; | 9493 | fp = &bp->fp[fp_index]; |
| 9486 | 9494 | ||
| 9487 | if (unlikely(bnx2x_tx_avail(bp->fp) < | 9495 | if (unlikely(bnx2x_tx_avail(fp) < (skb_shinfo(skb)->nr_frags + 3))) { |
| 9488 | (skb_shinfo(skb)->nr_frags + 3))) { | ||
| 9489 | bp->eth_stats.driver_xoff++, | 9496 | bp->eth_stats.driver_xoff++, |
| 9490 | netif_stop_queue(dev); | 9497 | netif_stop_queue(dev); |
| 9491 | BNX2X_ERR("BUG! Tx ring full when queue awake!\n"); | 9498 | BNX2X_ERR("BUG! Tx ring full when queue awake!\n"); |
| @@ -9548,7 +9555,6 @@ static int bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
| 9548 | tx_bd->vlan = cpu_to_le16(pkt_prod); | 9555 | tx_bd->vlan = cpu_to_le16(pkt_prod); |
| 9549 | 9556 | ||
| 9550 | if (xmit_type) { | 9557 | if (xmit_type) { |
| 9551 | |||
| 9552 | /* turn on parsing and get a BD */ | 9558 | /* turn on parsing and get a BD */ |
| 9553 | bd_prod = TX_BD(NEXT_TX_IDX(bd_prod)); | 9559 | bd_prod = TX_BD(NEXT_TX_IDX(bd_prod)); |
| 9554 | pbd = (void *)&fp->tx_desc_ring[bd_prod]; | 9560 | pbd = (void *)&fp->tx_desc_ring[bd_prod]; |
diff --git a/drivers/net/e1000/e1000_param.c b/drivers/net/e1000/e1000_param.c index b9f90a5d3d4d..213437d13154 100644 --- a/drivers/net/e1000/e1000_param.c +++ b/drivers/net/e1000/e1000_param.c | |||
| @@ -208,7 +208,7 @@ struct e1000_option { | |||
| 208 | } r; | 208 | } r; |
| 209 | struct { /* list_option info */ | 209 | struct { /* list_option info */ |
| 210 | int nr; | 210 | int nr; |
| 211 | struct e1000_opt_list { int i; char *str; } *p; | 211 | const struct e1000_opt_list { int i; char *str; } *p; |
| 212 | } l; | 212 | } l; |
| 213 | } arg; | 213 | } arg; |
| 214 | }; | 214 | }; |
| @@ -242,7 +242,7 @@ static int __devinit e1000_validate_option(unsigned int *value, | |||
| 242 | break; | 242 | break; |
| 243 | case list_option: { | 243 | case list_option: { |
| 244 | int i; | 244 | int i; |
| 245 | struct e1000_opt_list *ent; | 245 | const struct e1000_opt_list *ent; |
| 246 | 246 | ||
| 247 | for (i = 0; i < opt->arg.l.nr; i++) { | 247 | for (i = 0; i < opt->arg.l.nr; i++) { |
| 248 | ent = &opt->arg.l.p[i]; | 248 | ent = &opt->arg.l.p[i]; |
| @@ -279,7 +279,9 @@ static void e1000_check_copper_options(struct e1000_adapter *adapter); | |||
| 279 | 279 | ||
| 280 | void __devinit e1000_check_options(struct e1000_adapter *adapter) | 280 | void __devinit e1000_check_options(struct e1000_adapter *adapter) |
| 281 | { | 281 | { |
| 282 | struct e1000_option opt; | ||
| 282 | int bd = adapter->bd_number; | 283 | int bd = adapter->bd_number; |
| 284 | |||
| 283 | if (bd >= E1000_MAX_NIC) { | 285 | if (bd >= E1000_MAX_NIC) { |
| 284 | DPRINTK(PROBE, NOTICE, | 286 | DPRINTK(PROBE, NOTICE, |
| 285 | "Warning: no configuration for board #%i\n", bd); | 287 | "Warning: no configuration for board #%i\n", bd); |
| @@ -287,19 +289,21 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter) | |||
| 287 | } | 289 | } |
| 288 | 290 | ||
| 289 | { /* Transmit Descriptor Count */ | 291 | { /* Transmit Descriptor Count */ |
| 290 | struct e1000_option opt = { | 292 | struct e1000_tx_ring *tx_ring = adapter->tx_ring; |
| 293 | int i; | ||
| 294 | e1000_mac_type mac_type = adapter->hw.mac_type; | ||
| 295 | |||
| 296 | opt = (struct e1000_option) { | ||
| 291 | .type = range_option, | 297 | .type = range_option, |
| 292 | .name = "Transmit Descriptors", | 298 | .name = "Transmit Descriptors", |
| 293 | .err = "using default of " | 299 | .err = "using default of " |
| 294 | __MODULE_STRING(E1000_DEFAULT_TXD), | 300 | __MODULE_STRING(E1000_DEFAULT_TXD), |
| 295 | .def = E1000_DEFAULT_TXD, | 301 | .def = E1000_DEFAULT_TXD, |
| 296 | .arg = { .r = { .min = E1000_MIN_TXD }} | 302 | .arg = { .r = { |
| 303 | .min = E1000_MIN_TXD, | ||
| 304 | .max = mac_type < e1000_82544 ? E1000_MAX_TXD : E1000_MAX_82544_TXD | ||
| 305 | }} | ||
| 297 | }; | 306 | }; |
| 298 | struct e1000_tx_ring *tx_ring = adapter->tx_ring; | ||
| 299 | int i; | ||
| 300 | e1000_mac_type mac_type = adapter->hw.mac_type; | ||
| 301 | opt.arg.r.max = mac_type < e1000_82544 ? | ||
| 302 | E1000_MAX_TXD : E1000_MAX_82544_TXD; | ||
| 303 | 307 | ||
| 304 | if (num_TxDescriptors > bd) { | 308 | if (num_TxDescriptors > bd) { |
| 305 | tx_ring->count = TxDescriptors[bd]; | 309 | tx_ring->count = TxDescriptors[bd]; |
| @@ -313,19 +317,21 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter) | |||
| 313 | tx_ring[i].count = tx_ring->count; | 317 | tx_ring[i].count = tx_ring->count; |
| 314 | } | 318 | } |
| 315 | { /* Receive Descriptor Count */ | 319 | { /* Receive Descriptor Count */ |
| 316 | struct e1000_option opt = { | 320 | struct e1000_rx_ring *rx_ring = adapter->rx_ring; |
| 321 | int i; | ||
| 322 | e1000_mac_type mac_type = adapter->hw.mac_type; | ||
| 323 | |||
| 324 | opt = (struct e1000_option) { | ||
| 317 | .type = range_option, | 325 | .type = range_option, |
| 318 | .name = "Receive Descriptors", | 326 | .name = "Receive Descriptors", |
| 319 | .err = "using default of " | 327 | .err = "using default of " |
| 320 | __MODULE_STRING(E1000_DEFAULT_RXD), | 328 | __MODULE_STRING(E1000_DEFAULT_RXD), |
| 321 | .def = E1000_DEFAULT_RXD, | 329 | .def = E1000_DEFAULT_RXD, |
| 322 | .arg = { .r = { .min = E1000_MIN_RXD }} | 330 | .arg = { .r = { |
| 331 | .min = E1000_MIN_RXD, | ||
| 332 | .max = mac_type < e1000_82544 ? E1000_MAX_RXD : E1000_MAX_82544_RXD | ||
| 333 | }} | ||
| 323 | }; | 334 | }; |
| 324 | struct e1000_rx_ring *rx_ring = adapter->rx_ring; | ||
| 325 | int i; | ||
| 326 | e1000_mac_type mac_type = adapter->hw.mac_type; | ||
| 327 | opt.arg.r.max = mac_type < e1000_82544 ? E1000_MAX_RXD : | ||
| 328 | E1000_MAX_82544_RXD; | ||
| 329 | 335 | ||
| 330 | if (num_RxDescriptors > bd) { | 336 | if (num_RxDescriptors > bd) { |
| 331 | rx_ring->count = RxDescriptors[bd]; | 337 | rx_ring->count = RxDescriptors[bd]; |
| @@ -339,7 +345,7 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter) | |||
| 339 | rx_ring[i].count = rx_ring->count; | 345 | rx_ring[i].count = rx_ring->count; |
| 340 | } | 346 | } |
| 341 | { /* Checksum Offload Enable/Disable */ | 347 | { /* Checksum Offload Enable/Disable */ |
| 342 | struct e1000_option opt = { | 348 | opt = (struct e1000_option) { |
| 343 | .type = enable_option, | 349 | .type = enable_option, |
| 344 | .name = "Checksum Offload", | 350 | .name = "Checksum Offload", |
| 345 | .err = "defaulting to Enabled", | 351 | .err = "defaulting to Enabled", |
| @@ -363,7 +369,7 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter) | |||
| 363 | { E1000_FC_FULL, "Flow Control Enabled" }, | 369 | { E1000_FC_FULL, "Flow Control Enabled" }, |
| 364 | { E1000_FC_DEFAULT, "Flow Control Hardware Default" }}; | 370 | { E1000_FC_DEFAULT, "Flow Control Hardware Default" }}; |
| 365 | 371 | ||
| 366 | struct e1000_option opt = { | 372 | opt = (struct e1000_option) { |
| 367 | .type = list_option, | 373 | .type = list_option, |
| 368 | .name = "Flow Control", | 374 | .name = "Flow Control", |
| 369 | .err = "reading default settings from EEPROM", | 375 | .err = "reading default settings from EEPROM", |
| @@ -381,7 +387,7 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter) | |||
| 381 | } | 387 | } |
| 382 | } | 388 | } |
| 383 | { /* Transmit Interrupt Delay */ | 389 | { /* Transmit Interrupt Delay */ |
| 384 | struct e1000_option opt = { | 390 | opt = (struct e1000_option) { |
| 385 | .type = range_option, | 391 | .type = range_option, |
| 386 | .name = "Transmit Interrupt Delay", | 392 | .name = "Transmit Interrupt Delay", |
| 387 | .err = "using default of " __MODULE_STRING(DEFAULT_TIDV), | 393 | .err = "using default of " __MODULE_STRING(DEFAULT_TIDV), |
| @@ -399,7 +405,7 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter) | |||
| 399 | } | 405 | } |
| 400 | } | 406 | } |
| 401 | { /* Transmit Absolute Interrupt Delay */ | 407 | { /* Transmit Absolute Interrupt Delay */ |
| 402 | struct e1000_option opt = { | 408 | opt = (struct e1000_option) { |
| 403 | .type = range_option, | 409 | .type = range_option, |
| 404 | .name = "Transmit Absolute Interrupt Delay", | 410 | .name = "Transmit Absolute Interrupt Delay", |
| 405 | .err = "using default of " __MODULE_STRING(DEFAULT_TADV), | 411 | .err = "using default of " __MODULE_STRING(DEFAULT_TADV), |
| @@ -417,7 +423,7 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter) | |||
| 417 | } | 423 | } |
| 418 | } | 424 | } |
| 419 | { /* Receive Interrupt Delay */ | 425 | { /* Receive Interrupt Delay */ |
| 420 | struct e1000_option opt = { | 426 | opt = (struct e1000_option) { |
| 421 | .type = range_option, | 427 | .type = range_option, |
| 422 | .name = "Receive Interrupt Delay", | 428 | .name = "Receive Interrupt Delay", |
| 423 | .err = "using default of " __MODULE_STRING(DEFAULT_RDTR), | 429 | .err = "using default of " __MODULE_STRING(DEFAULT_RDTR), |
| @@ -435,7 +441,7 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter) | |||
| 435 | } | 441 | } |
| 436 | } | 442 | } |
| 437 | { /* Receive Absolute Interrupt Delay */ | 443 | { /* Receive Absolute Interrupt Delay */ |
| 438 | struct e1000_option opt = { | 444 | opt = (struct e1000_option) { |
| 439 | .type = range_option, | 445 | .type = range_option, |
| 440 | .name = "Receive Absolute Interrupt Delay", | 446 | .name = "Receive Absolute Interrupt Delay", |
| 441 | .err = "using default of " __MODULE_STRING(DEFAULT_RADV), | 447 | .err = "using default of " __MODULE_STRING(DEFAULT_RADV), |
| @@ -453,7 +459,7 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter) | |||
| 453 | } | 459 | } |
| 454 | } | 460 | } |
| 455 | { /* Interrupt Throttling Rate */ | 461 | { /* Interrupt Throttling Rate */ |
| 456 | struct e1000_option opt = { | 462 | opt = (struct e1000_option) { |
| 457 | .type = range_option, | 463 | .type = range_option, |
| 458 | .name = "Interrupt Throttling Rate (ints/sec)", | 464 | .name = "Interrupt Throttling Rate (ints/sec)", |
| 459 | .err = "using default of " __MODULE_STRING(DEFAULT_ITR), | 465 | .err = "using default of " __MODULE_STRING(DEFAULT_ITR), |
| @@ -497,7 +503,7 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter) | |||
| 497 | } | 503 | } |
| 498 | } | 504 | } |
| 499 | { /* Smart Power Down */ | 505 | { /* Smart Power Down */ |
| 500 | struct e1000_option opt = { | 506 | opt = (struct e1000_option) { |
| 501 | .type = enable_option, | 507 | .type = enable_option, |
| 502 | .name = "PHY Smart Power Down", | 508 | .name = "PHY Smart Power Down", |
| 503 | .err = "defaulting to Disabled", | 509 | .err = "defaulting to Disabled", |
| @@ -513,7 +519,7 @@ void __devinit e1000_check_options(struct e1000_adapter *adapter) | |||
| 513 | } | 519 | } |
| 514 | } | 520 | } |
| 515 | { /* Kumeran Lock Loss Workaround */ | 521 | { /* Kumeran Lock Loss Workaround */ |
| 516 | struct e1000_option opt = { | 522 | opt = (struct e1000_option) { |
| 517 | .type = enable_option, | 523 | .type = enable_option, |
| 518 | .name = "Kumeran Lock Loss Workaround", | 524 | .name = "Kumeran Lock Loss Workaround", |
| 519 | .err = "defaulting to Enabled", | 525 | .err = "defaulting to Enabled", |
| @@ -578,16 +584,18 @@ static void __devinit e1000_check_fiber_options(struct e1000_adapter *adapter) | |||
| 578 | 584 | ||
| 579 | static void __devinit e1000_check_copper_options(struct e1000_adapter *adapter) | 585 | static void __devinit e1000_check_copper_options(struct e1000_adapter *adapter) |
| 580 | { | 586 | { |
| 587 | struct e1000_option opt; | ||
| 581 | unsigned int speed, dplx, an; | 588 | unsigned int speed, dplx, an; |
| 582 | int bd = adapter->bd_number; | 589 | int bd = adapter->bd_number; |
| 583 | 590 | ||
| 584 | { /* Speed */ | 591 | { /* Speed */ |
| 585 | struct e1000_opt_list speed_list[] = {{ 0, "" }, | 592 | static const struct e1000_opt_list speed_list[] = { |
| 586 | { SPEED_10, "" }, | 593 | { 0, "" }, |
| 587 | { SPEED_100, "" }, | 594 | { SPEED_10, "" }, |
| 588 | { SPEED_1000, "" }}; | 595 | { SPEED_100, "" }, |
| 596 | { SPEED_1000, "" }}; | ||
| 589 | 597 | ||
| 590 | struct e1000_option opt = { | 598 | opt = (struct e1000_option) { |
| 591 | .type = list_option, | 599 | .type = list_option, |
| 592 | .name = "Speed", | 600 | .name = "Speed", |
| 593 | .err = "parameter ignored", | 601 | .err = "parameter ignored", |
| @@ -604,11 +612,12 @@ static void __devinit e1000_check_copper_options(struct e1000_adapter *adapter) | |||
| 604 | } | 612 | } |
| 605 | } | 613 | } |
| 606 | { /* Duplex */ | 614 | { /* Duplex */ |
| 607 | struct e1000_opt_list dplx_list[] = {{ 0, "" }, | 615 | static const struct e1000_opt_list dplx_list[] = { |
| 608 | { HALF_DUPLEX, "" }, | 616 | { 0, "" }, |
| 609 | { FULL_DUPLEX, "" }}; | 617 | { HALF_DUPLEX, "" }, |
| 618 | { FULL_DUPLEX, "" }}; | ||
| 610 | 619 | ||
| 611 | struct e1000_option opt = { | 620 | opt = (struct e1000_option) { |
| 612 | .type = list_option, | 621 | .type = list_option, |
| 613 | .name = "Duplex", | 622 | .name = "Duplex", |
| 614 | .err = "parameter ignored", | 623 | .err = "parameter ignored", |
| @@ -637,7 +646,7 @@ static void __devinit e1000_check_copper_options(struct e1000_adapter *adapter) | |||
| 637 | "parameter ignored\n"); | 646 | "parameter ignored\n"); |
| 638 | adapter->hw.autoneg_advertised = AUTONEG_ADV_DEFAULT; | 647 | adapter->hw.autoneg_advertised = AUTONEG_ADV_DEFAULT; |
| 639 | } else { /* Autoneg */ | 648 | } else { /* Autoneg */ |
| 640 | struct e1000_opt_list an_list[] = | 649 | static const struct e1000_opt_list an_list[] = |
| 641 | #define AA "AutoNeg advertising " | 650 | #define AA "AutoNeg advertising " |
| 642 | {{ 0x01, AA "10/HD" }, | 651 | {{ 0x01, AA "10/HD" }, |
| 643 | { 0x02, AA "10/FD" }, | 652 | { 0x02, AA "10/FD" }, |
| @@ -671,7 +680,7 @@ static void __devinit e1000_check_copper_options(struct e1000_adapter *adapter) | |||
| 671 | { 0x2e, AA "1000/FD, 100/FD, 100/HD, 10/FD" }, | 680 | { 0x2e, AA "1000/FD, 100/FD, 100/HD, 10/FD" }, |
| 672 | { 0x2f, AA "1000/FD, 100/FD, 100/HD, 10/FD, 10/HD" }}; | 681 | { 0x2f, AA "1000/FD, 100/FD, 100/HD, 10/FD, 10/HD" }}; |
| 673 | 682 | ||
| 674 | struct e1000_option opt = { | 683 | opt = (struct e1000_option) { |
| 675 | .type = list_option, | 684 | .type = list_option, |
| 676 | .name = "AutoNeg", | 685 | .name = "AutoNeg", |
| 677 | .err = "parameter ignored", | 686 | .err = "parameter ignored", |
diff --git a/drivers/oprofile/cpu_buffer.c b/drivers/oprofile/cpu_buffer.c index 2450b3a393ff..7ba78e6d210e 100644 --- a/drivers/oprofile/cpu_buffer.c +++ b/drivers/oprofile/cpu_buffer.c | |||
| @@ -38,8 +38,10 @@ void free_cpu_buffers(void) | |||
| 38 | { | 38 | { |
| 39 | int i; | 39 | int i; |
| 40 | 40 | ||
| 41 | for_each_online_cpu(i) | 41 | for_each_online_cpu(i) { |
| 42 | vfree(per_cpu(cpu_buffer, i).buffer); | 42 | vfree(per_cpu(cpu_buffer, i).buffer); |
| 43 | per_cpu(cpu_buffer, i).buffer = NULL; | ||
| 44 | } | ||
| 43 | } | 45 | } |
| 44 | 46 | ||
| 45 | int alloc_cpu_buffers(void) | 47 | int alloc_cpu_buffers(void) |
diff --git a/drivers/oprofile/event_buffer.c b/drivers/oprofile/event_buffer.c index e7fbac529935..8d692a5c8e73 100644 --- a/drivers/oprofile/event_buffer.c +++ b/drivers/oprofile/event_buffer.c | |||
| @@ -93,6 +93,8 @@ out: | |||
| 93 | void free_event_buffer(void) | 93 | void free_event_buffer(void) |
| 94 | { | 94 | { |
| 95 | vfree(event_buffer); | 95 | vfree(event_buffer); |
| 96 | |||
| 97 | event_buffer = NULL; | ||
| 96 | } | 98 | } |
| 97 | 99 | ||
| 98 | 100 | ||
diff --git a/drivers/pci/hotplug/pciehp.h b/drivers/pci/hotplug/pciehp.h index e3a1e7e7dba2..9e6cec67e1cc 100644 --- a/drivers/pci/hotplug/pciehp.h +++ b/drivers/pci/hotplug/pciehp.h | |||
| @@ -43,7 +43,6 @@ extern int pciehp_poll_mode; | |||
| 43 | extern int pciehp_poll_time; | 43 | extern int pciehp_poll_time; |
| 44 | extern int pciehp_debug; | 44 | extern int pciehp_debug; |
| 45 | extern int pciehp_force; | 45 | extern int pciehp_force; |
| 46 | extern int pciehp_slot_with_bus; | ||
| 47 | extern struct workqueue_struct *pciehp_wq; | 46 | extern struct workqueue_struct *pciehp_wq; |
| 48 | 47 | ||
| 49 | #define dbg(format, arg...) \ | 48 | #define dbg(format, arg...) \ |
diff --git a/drivers/pci/hotplug/pciehp_core.c b/drivers/pci/hotplug/pciehp_core.c index 3677495c4f91..4fd5355bc3b5 100644 --- a/drivers/pci/hotplug/pciehp_core.c +++ b/drivers/pci/hotplug/pciehp_core.c | |||
| @@ -41,7 +41,6 @@ int pciehp_debug; | |||
| 41 | int pciehp_poll_mode; | 41 | int pciehp_poll_mode; |
| 42 | int pciehp_poll_time; | 42 | int pciehp_poll_time; |
| 43 | int pciehp_force; | 43 | int pciehp_force; |
| 44 | int pciehp_slot_with_bus; | ||
| 45 | struct workqueue_struct *pciehp_wq; | 44 | struct workqueue_struct *pciehp_wq; |
| 46 | 45 | ||
| 47 | #define DRIVER_VERSION "0.4" | 46 | #define DRIVER_VERSION "0.4" |
| @@ -56,12 +55,10 @@ module_param(pciehp_debug, bool, 0644); | |||
| 56 | module_param(pciehp_poll_mode, bool, 0644); | 55 | module_param(pciehp_poll_mode, bool, 0644); |
| 57 | module_param(pciehp_poll_time, int, 0644); | 56 | module_param(pciehp_poll_time, int, 0644); |
| 58 | module_param(pciehp_force, bool, 0644); | 57 | module_param(pciehp_force, bool, 0644); |
| 59 | module_param(pciehp_slot_with_bus, bool, 0644); | ||
| 60 | MODULE_PARM_DESC(pciehp_debug, "Debugging mode enabled or not"); | 58 | MODULE_PARM_DESC(pciehp_debug, "Debugging mode enabled or not"); |
| 61 | MODULE_PARM_DESC(pciehp_poll_mode, "Using polling mechanism for hot-plug events or not"); | 59 | MODULE_PARM_DESC(pciehp_poll_mode, "Using polling mechanism for hot-plug events or not"); |
| 62 | MODULE_PARM_DESC(pciehp_poll_time, "Polling mechanism frequency, in seconds"); | 60 | MODULE_PARM_DESC(pciehp_poll_time, "Polling mechanism frequency, in seconds"); |
| 63 | MODULE_PARM_DESC(pciehp_force, "Force pciehp, even if _OSC and OSHP are missing"); | 61 | MODULE_PARM_DESC(pciehp_force, "Force pciehp, even if _OSC and OSHP are missing"); |
| 64 | MODULE_PARM_DESC(pciehp_slot_with_bus, "Use bus number in the slot name"); | ||
| 65 | 62 | ||
| 66 | #define PCIE_MODULE_NAME "pciehp" | 63 | #define PCIE_MODULE_NAME "pciehp" |
| 67 | 64 | ||
| @@ -194,6 +191,7 @@ static int init_slots(struct controller *ctrl) | |||
| 194 | struct slot *slot; | 191 | struct slot *slot; |
| 195 | struct hotplug_slot *hotplug_slot; | 192 | struct hotplug_slot *hotplug_slot; |
| 196 | struct hotplug_slot_info *info; | 193 | struct hotplug_slot_info *info; |
| 194 | int len, dup = 1; | ||
| 197 | int retval = -ENOMEM; | 195 | int retval = -ENOMEM; |
| 198 | 196 | ||
| 199 | list_for_each_entry(slot, &ctrl->slot_list, slot_list) { | 197 | list_for_each_entry(slot, &ctrl->slot_list, slot_list) { |
| @@ -220,15 +218,24 @@ static int init_slots(struct controller *ctrl) | |||
| 220 | dbg("Registering bus=%x dev=%x hp_slot=%x sun=%x " | 218 | dbg("Registering bus=%x dev=%x hp_slot=%x sun=%x " |
| 221 | "slot_device_offset=%x\n", slot->bus, slot->device, | 219 | "slot_device_offset=%x\n", slot->bus, slot->device, |
| 222 | slot->hp_slot, slot->number, ctrl->slot_device_offset); | 220 | slot->hp_slot, slot->number, ctrl->slot_device_offset); |
| 221 | duplicate_name: | ||
| 223 | retval = pci_hp_register(hotplug_slot, | 222 | retval = pci_hp_register(hotplug_slot, |
| 224 | ctrl->pci_dev->subordinate, | 223 | ctrl->pci_dev->subordinate, |
| 225 | slot->device); | 224 | slot->device); |
| 226 | if (retval) { | 225 | if (retval) { |
| 226 | /* | ||
| 227 | * If slot N already exists, we'll try to create | ||
| 228 | * slot N-1, N-2 ... N-M, until we overflow. | ||
| 229 | */ | ||
| 230 | if (retval == -EEXIST) { | ||
| 231 | len = snprintf(slot->name, SLOT_NAME_SIZE, | ||
| 232 | "%d-%d", slot->number, dup++); | ||
| 233 | if (len < SLOT_NAME_SIZE) | ||
| 234 | goto duplicate_name; | ||
| 235 | else | ||
| 236 | err("duplicate slot name overflow\n"); | ||
| 237 | } | ||
| 227 | err("pci_hp_register failed with error %d\n", retval); | 238 | err("pci_hp_register failed with error %d\n", retval); |
| 228 | if (retval == -EEXIST) | ||
| 229 | err("Failed to register slot because of name " | ||
| 230 | "collision. Try \'pciehp_slot_with_bus\' " | ||
| 231 | "module option.\n"); | ||
| 232 | goto error_info; | 239 | goto error_info; |
| 233 | } | 240 | } |
| 234 | /* create additional sysfs entries */ | 241 | /* create additional sysfs entries */ |
diff --git a/drivers/pci/hotplug/pciehp_hpc.c b/drivers/pci/hotplug/pciehp_hpc.c index ad27e9e225a6..ab31f5ba665d 100644 --- a/drivers/pci/hotplug/pciehp_hpc.c +++ b/drivers/pci/hotplug/pciehp_hpc.c | |||
| @@ -1030,15 +1030,6 @@ static void pcie_shutdown_notification(struct controller *ctrl) | |||
| 1030 | pciehp_free_irq(ctrl); | 1030 | pciehp_free_irq(ctrl); |
| 1031 | } | 1031 | } |
| 1032 | 1032 | ||
| 1033 | static void make_slot_name(struct slot *slot) | ||
| 1034 | { | ||
| 1035 | if (pciehp_slot_with_bus) | ||
| 1036 | snprintf(slot->name, SLOT_NAME_SIZE, "%04d_%04d", | ||
| 1037 | slot->bus, slot->number); | ||
| 1038 | else | ||
| 1039 | snprintf(slot->name, SLOT_NAME_SIZE, "%d", slot->number); | ||
| 1040 | } | ||
| 1041 | |||
| 1042 | static int pcie_init_slot(struct controller *ctrl) | 1033 | static int pcie_init_slot(struct controller *ctrl) |
| 1043 | { | 1034 | { |
| 1044 | struct slot *slot; | 1035 | struct slot *slot; |
| @@ -1053,7 +1044,7 @@ static int pcie_init_slot(struct controller *ctrl) | |||
| 1053 | slot->device = ctrl->slot_device_offset + slot->hp_slot; | 1044 | slot->device = ctrl->slot_device_offset + slot->hp_slot; |
| 1054 | slot->hpc_ops = ctrl->hpc_ops; | 1045 | slot->hpc_ops = ctrl->hpc_ops; |
| 1055 | slot->number = ctrl->first_slot; | 1046 | slot->number = ctrl->first_slot; |
| 1056 | make_slot_name(slot); | 1047 | snprintf(slot->name, SLOT_NAME_SIZE, "%d", slot->number); |
| 1057 | mutex_init(&slot->lock); | 1048 | mutex_init(&slot->lock); |
| 1058 | INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work); | 1049 | INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work); |
| 1059 | list_add(&slot->slot_list, &ctrl->slot_list); | 1050 | list_add(&slot->slot_list, &ctrl->slot_list); |
diff --git a/drivers/pci/hotplug/shpchp_core.c b/drivers/pci/hotplug/shpchp_core.c index a8cbd039b85b..cc38615395f1 100644 --- a/drivers/pci/hotplug/shpchp_core.c +++ b/drivers/pci/hotplug/shpchp_core.c | |||
| @@ -39,7 +39,6 @@ | |||
| 39 | int shpchp_debug; | 39 | int shpchp_debug; |
| 40 | int shpchp_poll_mode; | 40 | int shpchp_poll_mode; |
| 41 | int shpchp_poll_time; | 41 | int shpchp_poll_time; |
| 42 | static int shpchp_slot_with_bus; | ||
| 43 | struct workqueue_struct *shpchp_wq; | 42 | struct workqueue_struct *shpchp_wq; |
| 44 | 43 | ||
| 45 | #define DRIVER_VERSION "0.4" | 44 | #define DRIVER_VERSION "0.4" |
| @@ -53,11 +52,9 @@ MODULE_LICENSE("GPL"); | |||
| 53 | module_param(shpchp_debug, bool, 0644); | 52 | module_param(shpchp_debug, bool, 0644); |
| 54 | module_param(shpchp_poll_mode, bool, 0644); | 53 | module_param(shpchp_poll_mode, bool, 0644); |
| 55 | module_param(shpchp_poll_time, int, 0644); | 54 | module_param(shpchp_poll_time, int, 0644); |
| 56 | module_param(shpchp_slot_with_bus, bool, 0644); | ||
| 57 | MODULE_PARM_DESC(shpchp_debug, "Debugging mode enabled or not"); | 55 | MODULE_PARM_DESC(shpchp_debug, "Debugging mode enabled or not"); |
| 58 | MODULE_PARM_DESC(shpchp_poll_mode, "Using polling mechanism for hot-plug events or not"); | 56 | MODULE_PARM_DESC(shpchp_poll_mode, "Using polling mechanism for hot-plug events or not"); |
| 59 | MODULE_PARM_DESC(shpchp_poll_time, "Polling mechanism frequency, in seconds"); | 57 | MODULE_PARM_DESC(shpchp_poll_time, "Polling mechanism frequency, in seconds"); |
| 60 | MODULE_PARM_DESC(shpchp_slot_with_bus, "Use bus number in the slot name"); | ||
| 61 | 58 | ||
| 62 | #define SHPC_MODULE_NAME "shpchp" | 59 | #define SHPC_MODULE_NAME "shpchp" |
| 63 | 60 | ||
| @@ -99,23 +96,13 @@ static void release_slot(struct hotplug_slot *hotplug_slot) | |||
| 99 | kfree(slot); | 96 | kfree(slot); |
| 100 | } | 97 | } |
| 101 | 98 | ||
| 102 | static void make_slot_name(struct slot *slot) | ||
| 103 | { | ||
| 104 | if (shpchp_slot_with_bus) | ||
| 105 | snprintf(slot->hotplug_slot->name, SLOT_NAME_SIZE, "%04d_%04d", | ||
| 106 | slot->bus, slot->number); | ||
| 107 | else | ||
| 108 | snprintf(slot->hotplug_slot->name, SLOT_NAME_SIZE, "%d", | ||
| 109 | slot->number); | ||
| 110 | } | ||
| 111 | |||
| 112 | static int init_slots(struct controller *ctrl) | 99 | static int init_slots(struct controller *ctrl) |
| 113 | { | 100 | { |
| 114 | struct slot *slot; | 101 | struct slot *slot; |
| 115 | struct hotplug_slot *hotplug_slot; | 102 | struct hotplug_slot *hotplug_slot; |
| 116 | struct hotplug_slot_info *info; | 103 | struct hotplug_slot_info *info; |
| 117 | int retval = -ENOMEM; | 104 | int retval = -ENOMEM; |
| 118 | int i; | 105 | int i, len, dup = 1; |
| 119 | 106 | ||
| 120 | for (i = 0; i < ctrl->num_slots; i++) { | 107 | for (i = 0; i < ctrl->num_slots; i++) { |
| 121 | slot = kzalloc(sizeof(*slot), GFP_KERNEL); | 108 | slot = kzalloc(sizeof(*slot), GFP_KERNEL); |
| @@ -146,7 +133,7 @@ static int init_slots(struct controller *ctrl) | |||
| 146 | /* register this slot with the hotplug pci core */ | 133 | /* register this slot with the hotplug pci core */ |
| 147 | hotplug_slot->private = slot; | 134 | hotplug_slot->private = slot; |
| 148 | hotplug_slot->release = &release_slot; | 135 | hotplug_slot->release = &release_slot; |
| 149 | make_slot_name(slot); | 136 | snprintf(slot->name, SLOT_NAME_SIZE, "%d", slot->number); |
| 150 | hotplug_slot->ops = &shpchp_hotplug_slot_ops; | 137 | hotplug_slot->ops = &shpchp_hotplug_slot_ops; |
| 151 | 138 | ||
| 152 | get_power_status(hotplug_slot, &info->power_status); | 139 | get_power_status(hotplug_slot, &info->power_status); |
| @@ -157,14 +144,23 @@ static int init_slots(struct controller *ctrl) | |||
| 157 | dbg("Registering bus=%x dev=%x hp_slot=%x sun=%x " | 144 | dbg("Registering bus=%x dev=%x hp_slot=%x sun=%x " |
| 158 | "slot_device_offset=%x\n", slot->bus, slot->device, | 145 | "slot_device_offset=%x\n", slot->bus, slot->device, |
| 159 | slot->hp_slot, slot->number, ctrl->slot_device_offset); | 146 | slot->hp_slot, slot->number, ctrl->slot_device_offset); |
| 147 | duplicate_name: | ||
| 160 | retval = pci_hp_register(slot->hotplug_slot, | 148 | retval = pci_hp_register(slot->hotplug_slot, |
| 161 | ctrl->pci_dev->subordinate, slot->device); | 149 | ctrl->pci_dev->subordinate, slot->device); |
| 162 | if (retval) { | 150 | if (retval) { |
| 151 | /* | ||
| 152 | * If slot N already exists, we'll try to create | ||
| 153 | * slot N-1, N-2 ... N-M, until we overflow. | ||
| 154 | */ | ||
| 155 | if (retval == -EEXIST) { | ||
| 156 | len = snprintf(slot->name, SLOT_NAME_SIZE, | ||
| 157 | "%d-%d", slot->number, dup++); | ||
| 158 | if (len < SLOT_NAME_SIZE) | ||
| 159 | goto duplicate_name; | ||
| 160 | else | ||
| 161 | err("duplicate slot name overflow\n"); | ||
| 162 | } | ||
| 163 | err("pci_hp_register failed with error %d\n", retval); | 163 | err("pci_hp_register failed with error %d\n", retval); |
| 164 | if (retval == -EEXIST) | ||
| 165 | err("Failed to register slot because of name " | ||
| 166 | "collision. Try \'shpchp_slot_with_bus\' " | ||
| 167 | "module option.\n"); | ||
| 168 | goto error_info; | 164 | goto error_info; |
| 169 | } | 165 | } |
| 170 | 166 | ||
diff --git a/drivers/pci/search.c b/drivers/pci/search.c index 217814fef4ef..3b3b5f178797 100644 --- a/drivers/pci/search.c +++ b/drivers/pci/search.c | |||
| @@ -280,6 +280,8 @@ static struct pci_dev *pci_get_dev_by_id(const struct pci_device_id *id, | |||
| 280 | match_pci_dev_by_id); | 280 | match_pci_dev_by_id); |
| 281 | if (dev) | 281 | if (dev) |
| 282 | pdev = to_pci_dev(dev); | 282 | pdev = to_pci_dev(dev); |
| 283 | if (from) | ||
| 284 | pci_dev_put(from); | ||
| 283 | return pdev; | 285 | return pdev; |
| 284 | } | 286 | } |
| 285 | 287 | ||
diff --git a/drivers/s390/block/dcssblk.c b/drivers/s390/block/dcssblk.c index db85f1fb131e..711b3004b3e6 100644 --- a/drivers/s390/block/dcssblk.c +++ b/drivers/s390/block/dcssblk.c | |||
| @@ -384,9 +384,10 @@ dcssblk_add_store(struct device *dev, struct device_attribute *attr, const char | |||
| 384 | * get minor, add to list | 384 | * get minor, add to list |
| 385 | */ | 385 | */ |
| 386 | down_write(&dcssblk_devices_sem); | 386 | down_write(&dcssblk_devices_sem); |
| 387 | if (dcssblk_get_segment_by_name(local_buf)) { | 387 | if (dcssblk_get_device_by_name(local_buf)) { |
| 388 | up_write(&dcssblk_devices_sem); | ||
| 388 | rc = -EEXIST; | 389 | rc = -EEXIST; |
| 389 | goto release_gd; | 390 | goto unload_seg; |
| 390 | } | 391 | } |
| 391 | rc = dcssblk_assign_free_minor(dev_info); | 392 | rc = dcssblk_assign_free_minor(dev_info); |
| 392 | if (rc) { | 393 | if (rc) { |
diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c index 3d36270a8b4d..661f9f21650a 100644 --- a/drivers/scsi/sg.c +++ b/drivers/scsi/sg.c | |||
| @@ -217,6 +217,18 @@ static int sg_last_dev(void); | |||
| 217 | #define SZ_SG_IOVEC sizeof(sg_iovec_t) | 217 | #define SZ_SG_IOVEC sizeof(sg_iovec_t) |
| 218 | #define SZ_SG_REQ_INFO sizeof(sg_req_info_t) | 218 | #define SZ_SG_REQ_INFO sizeof(sg_req_info_t) |
| 219 | 219 | ||
| 220 | static int sg_allow_access(struct file *filp, unsigned char *cmd) | ||
| 221 | { | ||
| 222 | struct sg_fd *sfp = (struct sg_fd *)filp->private_data; | ||
| 223 | struct request_queue *q = sfp->parentdp->device->request_queue; | ||
| 224 | |||
| 225 | if (sfp->parentdp->device->type == TYPE_SCANNER) | ||
| 226 | return 0; | ||
| 227 | |||
| 228 | return blk_verify_command(&q->cmd_filter, | ||
| 229 | cmd, filp->f_mode & FMODE_WRITE); | ||
| 230 | } | ||
| 231 | |||
| 220 | static int | 232 | static int |
| 221 | sg_open(struct inode *inode, struct file *filp) | 233 | sg_open(struct inode *inode, struct file *filp) |
| 222 | { | 234 | { |
| @@ -689,7 +701,7 @@ sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf, | |||
| 689 | sg_remove_request(sfp, srp); | 701 | sg_remove_request(sfp, srp); |
| 690 | return -EFAULT; | 702 | return -EFAULT; |
| 691 | } | 703 | } |
| 692 | if (read_only && !blk_verify_command(file, cmnd)) { | 704 | if (read_only && sg_allow_access(file, cmnd)) { |
| 693 | sg_remove_request(sfp, srp); | 705 | sg_remove_request(sfp, srp); |
| 694 | return -EPERM; | 706 | return -EPERM; |
| 695 | } | 707 | } |
| @@ -793,6 +805,7 @@ sg_ioctl(struct inode *inode, struct file *filp, | |||
| 793 | 805 | ||
| 794 | if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp))) | 806 | if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp))) |
| 795 | return -ENXIO; | 807 | return -ENXIO; |
| 808 | |||
| 796 | SCSI_LOG_TIMEOUT(3, printk("sg_ioctl: %s, cmd=0x%x\n", | 809 | SCSI_LOG_TIMEOUT(3, printk("sg_ioctl: %s, cmd=0x%x\n", |
| 797 | sdp->disk->disk_name, (int) cmd_in)); | 810 | sdp->disk->disk_name, (int) cmd_in)); |
| 798 | read_only = (O_RDWR != (filp->f_flags & O_ACCMODE)); | 811 | read_only = (O_RDWR != (filp->f_flags & O_ACCMODE)); |
| @@ -1061,7 +1074,7 @@ sg_ioctl(struct inode *inode, struct file *filp, | |||
| 1061 | 1074 | ||
| 1062 | if (copy_from_user(&opcode, siocp->data, 1)) | 1075 | if (copy_from_user(&opcode, siocp->data, 1)) |
| 1063 | return -EFAULT; | 1076 | return -EFAULT; |
| 1064 | if (!blk_verify_command(filp, &opcode)) | 1077 | if (sg_allow_access(filp, &opcode)) |
| 1065 | return -EPERM; | 1078 | return -EPERM; |
| 1066 | } | 1079 | } |
| 1067 | return sg_scsi_ioctl(filp, sdp->device->request_queue, NULL, p); | 1080 | return sg_scsi_ioctl(filp, sdp->device->request_queue, NULL, p); |
diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c index bfef604160d1..62eab43152d2 100644 --- a/drivers/virtio/virtio_balloon.c +++ b/drivers/virtio/virtio_balloon.c | |||
| @@ -158,7 +158,7 @@ static inline s64 towards_target(struct virtio_balloon *vb) | |||
| 158 | vb->vdev->config->get(vb->vdev, | 158 | vb->vdev->config->get(vb->vdev, |
| 159 | offsetof(struct virtio_balloon_config, num_pages), | 159 | offsetof(struct virtio_balloon_config, num_pages), |
| 160 | &v, sizeof(v)); | 160 | &v, sizeof(v)); |
| 161 | return v - vb->num_pages; | 161 | return (s64)v - vb->num_pages; |
| 162 | } | 162 | } |
| 163 | 163 | ||
| 164 | static void update_balloon_size(struct virtio_balloon *vb) | 164 | static void update_balloon_size(struct virtio_balloon *vb) |
diff --git a/drivers/xen/manage.c b/drivers/xen/manage.c index a5bc91ae6ff6..d0e87cbe157c 100644 --- a/drivers/xen/manage.c +++ b/drivers/xen/manage.c | |||
| @@ -102,7 +102,7 @@ static void do_suspend(void) | |||
| 102 | /* XXX use normal device tree? */ | 102 | /* XXX use normal device tree? */ |
| 103 | xenbus_suspend(); | 103 | xenbus_suspend(); |
| 104 | 104 | ||
| 105 | err = stop_machine_run(xen_suspend, &cancelled, 0); | 105 | err = stop_machine(xen_suspend, &cancelled, &cpumask_of_cpu(0)); |
| 106 | if (err) { | 106 | if (err) { |
| 107 | printk(KERN_ERR "failed to start xen_suspend: %d\n", err); | 107 | printk(KERN_ERR "failed to start xen_suspend: %d\n", err); |
| 108 | goto out; | 108 | goto out; |
diff --git a/fs/Kconfig b/fs/Kconfig index d3873583360b..f0427105a619 100644 --- a/fs/Kconfig +++ b/fs/Kconfig | |||
| @@ -1984,7 +1984,6 @@ config CIFS_EXPERIMENTAL | |||
| 1984 | 1984 | ||
| 1985 | config CIFS_UPCALL | 1985 | config CIFS_UPCALL |
| 1986 | bool "Kerberos/SPNEGO advanced session setup (EXPERIMENTAL)" | 1986 | bool "Kerberos/SPNEGO advanced session setup (EXPERIMENTAL)" |
| 1987 | depends on CIFS_EXPERIMENTAL | ||
| 1988 | depends on KEYS | 1987 | depends on KEYS |
| 1989 | help | 1988 | help |
| 1990 | Enables an upcall mechanism for CIFS which accesses | 1989 | Enables an upcall mechanism for CIFS which accesses |
| @@ -469,20 +469,21 @@ static void bio_free_map_data(struct bio_map_data *bmd) | |||
| 469 | kfree(bmd); | 469 | kfree(bmd); |
| 470 | } | 470 | } |
| 471 | 471 | ||
| 472 | static struct bio_map_data *bio_alloc_map_data(int nr_segs, int iov_count) | 472 | static struct bio_map_data *bio_alloc_map_data(int nr_segs, int iov_count, |
| 473 | gfp_t gfp_mask) | ||
| 473 | { | 474 | { |
| 474 | struct bio_map_data *bmd = kmalloc(sizeof(*bmd), GFP_KERNEL); | 475 | struct bio_map_data *bmd = kmalloc(sizeof(*bmd), gfp_mask); |
| 475 | 476 | ||
| 476 | if (!bmd) | 477 | if (!bmd) |
| 477 | return NULL; | 478 | return NULL; |
| 478 | 479 | ||
| 479 | bmd->iovecs = kmalloc(sizeof(struct bio_vec) * nr_segs, GFP_KERNEL); | 480 | bmd->iovecs = kmalloc(sizeof(struct bio_vec) * nr_segs, gfp_mask); |
| 480 | if (!bmd->iovecs) { | 481 | if (!bmd->iovecs) { |
| 481 | kfree(bmd); | 482 | kfree(bmd); |
| 482 | return NULL; | 483 | return NULL; |
| 483 | } | 484 | } |
| 484 | 485 | ||
| 485 | bmd->sgvecs = kmalloc(sizeof(struct sg_iovec) * iov_count, GFP_KERNEL); | 486 | bmd->sgvecs = kmalloc(sizeof(struct sg_iovec) * iov_count, gfp_mask); |
| 486 | if (bmd->sgvecs) | 487 | if (bmd->sgvecs) |
| 487 | return bmd; | 488 | return bmd; |
| 488 | 489 | ||
| @@ -491,8 +492,8 @@ static struct bio_map_data *bio_alloc_map_data(int nr_segs, int iov_count) | |||
| 491 | return NULL; | 492 | return NULL; |
| 492 | } | 493 | } |
| 493 | 494 | ||
| 494 | static int __bio_copy_iov(struct bio *bio, struct sg_iovec *iov, int iov_count, | 495 | static int __bio_copy_iov(struct bio *bio, struct bio_vec *iovecs, |
| 495 | int uncopy) | 496 | struct sg_iovec *iov, int iov_count, int uncopy) |
| 496 | { | 497 | { |
| 497 | int ret = 0, i; | 498 | int ret = 0, i; |
| 498 | struct bio_vec *bvec; | 499 | struct bio_vec *bvec; |
| @@ -502,7 +503,7 @@ static int __bio_copy_iov(struct bio *bio, struct sg_iovec *iov, int iov_count, | |||
| 502 | 503 | ||
| 503 | __bio_for_each_segment(bvec, bio, i, 0) { | 504 | __bio_for_each_segment(bvec, bio, i, 0) { |
| 504 | char *bv_addr = page_address(bvec->bv_page); | 505 | char *bv_addr = page_address(bvec->bv_page); |
| 505 | unsigned int bv_len = bvec->bv_len; | 506 | unsigned int bv_len = iovecs[i].bv_len; |
| 506 | 507 | ||
| 507 | while (bv_len && iov_idx < iov_count) { | 508 | while (bv_len && iov_idx < iov_count) { |
| 508 | unsigned int bytes; | 509 | unsigned int bytes; |
| @@ -554,7 +555,7 @@ int bio_uncopy_user(struct bio *bio) | |||
| 554 | struct bio_map_data *bmd = bio->bi_private; | 555 | struct bio_map_data *bmd = bio->bi_private; |
| 555 | int ret; | 556 | int ret; |
| 556 | 557 | ||
| 557 | ret = __bio_copy_iov(bio, bmd->sgvecs, bmd->nr_sgvecs, 1); | 558 | ret = __bio_copy_iov(bio, bmd->iovecs, bmd->sgvecs, bmd->nr_sgvecs, 1); |
| 558 | 559 | ||
| 559 | bio_free_map_data(bmd); | 560 | bio_free_map_data(bmd); |
| 560 | bio_put(bio); | 561 | bio_put(bio); |
| @@ -596,7 +597,7 @@ struct bio *bio_copy_user_iov(struct request_queue *q, struct sg_iovec *iov, | |||
| 596 | len += iov[i].iov_len; | 597 | len += iov[i].iov_len; |
| 597 | } | 598 | } |
| 598 | 599 | ||
| 599 | bmd = bio_alloc_map_data(nr_pages, iov_count); | 600 | bmd = bio_alloc_map_data(nr_pages, iov_count, GFP_KERNEL); |
| 600 | if (!bmd) | 601 | if (!bmd) |
| 601 | return ERR_PTR(-ENOMEM); | 602 | return ERR_PTR(-ENOMEM); |
| 602 | 603 | ||
| @@ -633,7 +634,7 @@ struct bio *bio_copy_user_iov(struct request_queue *q, struct sg_iovec *iov, | |||
| 633 | * success | 634 | * success |
| 634 | */ | 635 | */ |
| 635 | if (!write_to_vm) { | 636 | if (!write_to_vm) { |
| 636 | ret = __bio_copy_iov(bio, iov, iov_count, 0); | 637 | ret = __bio_copy_iov(bio, bio->bi_io_vec, iov, iov_count, 0); |
| 637 | if (ret) | 638 | if (ret) |
| 638 | goto cleanup; | 639 | goto cleanup; |
| 639 | } | 640 | } |
| @@ -942,19 +943,22 @@ static void bio_copy_kern_endio(struct bio *bio, int err) | |||
| 942 | { | 943 | { |
| 943 | struct bio_vec *bvec; | 944 | struct bio_vec *bvec; |
| 944 | const int read = bio_data_dir(bio) == READ; | 945 | const int read = bio_data_dir(bio) == READ; |
| 945 | char *p = bio->bi_private; | 946 | struct bio_map_data *bmd = bio->bi_private; |
| 946 | int i; | 947 | int i; |
| 948 | char *p = bmd->sgvecs[0].iov_base; | ||
| 947 | 949 | ||
| 948 | __bio_for_each_segment(bvec, bio, i, 0) { | 950 | __bio_for_each_segment(bvec, bio, i, 0) { |
| 949 | char *addr = page_address(bvec->bv_page); | 951 | char *addr = page_address(bvec->bv_page); |
| 952 | int len = bmd->iovecs[i].bv_len; | ||
| 950 | 953 | ||
| 951 | if (read && !err) | 954 | if (read && !err) |
| 952 | memcpy(p, addr, bvec->bv_len); | 955 | memcpy(p, addr, len); |
| 953 | 956 | ||
| 954 | __free_page(bvec->bv_page); | 957 | __free_page(bvec->bv_page); |
| 955 | p += bvec->bv_len; | 958 | p += len; |
| 956 | } | 959 | } |
| 957 | 960 | ||
| 961 | bio_free_map_data(bmd); | ||
| 958 | bio_put(bio); | 962 | bio_put(bio); |
| 959 | } | 963 | } |
| 960 | 964 | ||
| @@ -978,11 +982,21 @@ struct bio *bio_copy_kern(struct request_queue *q, void *data, unsigned int len, | |||
| 978 | const int nr_pages = end - start; | 982 | const int nr_pages = end - start; |
| 979 | struct bio *bio; | 983 | struct bio *bio; |
| 980 | struct bio_vec *bvec; | 984 | struct bio_vec *bvec; |
| 985 | struct bio_map_data *bmd; | ||
| 981 | int i, ret; | 986 | int i, ret; |
| 987 | struct sg_iovec iov; | ||
| 988 | |||
| 989 | iov.iov_base = data; | ||
| 990 | iov.iov_len = len; | ||
| 991 | |||
| 992 | bmd = bio_alloc_map_data(nr_pages, 1, gfp_mask); | ||
| 993 | if (!bmd) | ||
| 994 | return ERR_PTR(-ENOMEM); | ||
| 982 | 995 | ||
| 996 | ret = -ENOMEM; | ||
| 983 | bio = bio_alloc(gfp_mask, nr_pages); | 997 | bio = bio_alloc(gfp_mask, nr_pages); |
| 984 | if (!bio) | 998 | if (!bio) |
| 985 | return ERR_PTR(-ENOMEM); | 999 | goto out_bmd; |
| 986 | 1000 | ||
| 987 | while (len) { | 1001 | while (len) { |
| 988 | struct page *page; | 1002 | struct page *page; |
| @@ -1016,14 +1030,18 @@ struct bio *bio_copy_kern(struct request_queue *q, void *data, unsigned int len, | |||
| 1016 | } | 1030 | } |
| 1017 | } | 1031 | } |
| 1018 | 1032 | ||
| 1019 | bio->bi_private = data; | 1033 | bio->bi_private = bmd; |
| 1020 | bio->bi_end_io = bio_copy_kern_endio; | 1034 | bio->bi_end_io = bio_copy_kern_endio; |
| 1035 | |||
| 1036 | bio_set_map_data(bmd, bio, &iov, 1); | ||
| 1021 | return bio; | 1037 | return bio; |
| 1022 | cleanup: | 1038 | cleanup: |
| 1023 | bio_for_each_segment(bvec, bio, i) | 1039 | bio_for_each_segment(bvec, bio, i) |
| 1024 | __free_page(bvec->bv_page); | 1040 | __free_page(bvec->bv_page); |
| 1025 | 1041 | ||
| 1026 | bio_put(bio); | 1042 | bio_put(bio); |
| 1043 | out_bmd: | ||
| 1044 | bio_free_map_data(bmd); | ||
| 1027 | 1045 | ||
| 1028 | return ERR_PTR(ret); | 1046 | return ERR_PTR(ret); |
| 1029 | } | 1047 | } |
diff --git a/fs/buffer.c b/fs/buffer.c index 38653e36e225..ac78d4c19b3b 100644 --- a/fs/buffer.c +++ b/fs/buffer.c | |||
| @@ -2926,14 +2926,17 @@ int submit_bh(int rw, struct buffer_head * bh) | |||
| 2926 | BUG_ON(!buffer_mapped(bh)); | 2926 | BUG_ON(!buffer_mapped(bh)); |
| 2927 | BUG_ON(!bh->b_end_io); | 2927 | BUG_ON(!bh->b_end_io); |
| 2928 | 2928 | ||
| 2929 | if (buffer_ordered(bh) && (rw == WRITE)) | 2929 | /* |
| 2930 | rw = WRITE_BARRIER; | 2930 | * Mask in barrier bit for a write (could be either a WRITE or a |
| 2931 | * WRITE_SYNC | ||
| 2932 | */ | ||
| 2933 | if (buffer_ordered(bh) && (rw & WRITE)) | ||
| 2934 | rw |= WRITE_BARRIER; | ||
| 2931 | 2935 | ||
| 2932 | /* | 2936 | /* |
| 2933 | * Only clear out a write error when rewriting, should this | 2937 | * Only clear out a write error when rewriting |
| 2934 | * include WRITE_SYNC as well? | ||
| 2935 | */ | 2938 | */ |
| 2936 | if (test_set_buffer_req(bh) && (rw == WRITE || rw == WRITE_BARRIER)) | 2939 | if (test_set_buffer_req(bh) && (rw & WRITE)) |
| 2937 | clear_buffer_write_io_error(bh); | 2940 | clear_buffer_write_io_error(bh); |
| 2938 | 2941 | ||
| 2939 | /* | 2942 | /* |
diff --git a/fs/cifs/CHANGES b/fs/cifs/CHANGES index f5d0083e09fa..526041a52d35 100644 --- a/fs/cifs/CHANGES +++ b/fs/cifs/CHANGES | |||
| @@ -4,7 +4,11 @@ Fix premature write failure on congested networks (we would give up | |||
| 4 | on EAGAIN from the socket too quickly on large writes). | 4 | on EAGAIN from the socket too quickly on large writes). |
| 5 | Cifs_mkdir and cifs_create now respect the setgid bit on parent dir. | 5 | Cifs_mkdir and cifs_create now respect the setgid bit on parent dir. |
| 6 | Fix endian problems in acl (mode from/to cifs acl) on bigendian | 6 | Fix endian problems in acl (mode from/to cifs acl) on bigendian |
| 7 | architectures. | 7 | architectures. Fix problems with preserving timestamps on copying open |
| 8 | files (e.g. "cp -a") to Windows servers. For mkdir and create honor setgid bit | ||
| 9 | on parent directory when server supports Unix Extensions but not POSIX | ||
| 10 | create. Update cifs.upcall version to handle new Kerberos sec flags | ||
| 11 | (this requires update of cifs.upcall program from Samba). | ||
| 8 | 12 | ||
| 9 | Version 1.53 | 13 | Version 1.53 |
| 10 | ------------ | 14 | ------------ |
diff --git a/fs/cifs/README b/fs/cifs/README index 2bd6fe556f88..68b5c1169d9d 100644 --- a/fs/cifs/README +++ b/fs/cifs/README | |||
| @@ -642,8 +642,30 @@ The statistics for the number of total SMBs and oplock breaks are different in | |||
| 642 | that they represent all for that share, not just those for which the server | 642 | that they represent all for that share, not just those for which the server |
| 643 | returned success. | 643 | returned success. |
| 644 | 644 | ||
| 645 | Also note that "cat /proc/fs/cifs/DebugData" will display information about | 645 | Also note that "cat /proc/fs/cifs/DebugData" will display information about |
| 646 | the active sessions and the shares that are mounted. | 646 | the active sessions and the shares that are mounted. |
| 647 | Enabling Kerberos (extended security) works when CONFIG_CIFS_EXPERIMENTAL is | 647 | |
| 648 | on but requires a user space helper (from the Samba project). NTLM and NTLMv2 and | 648 | Enabling Kerberos (extended security) works but requires version 1.2 or later |
| 649 | LANMAN support do not require this helper. | 649 | of the helper program cifs.upcall to be present and to be configured in the |
| 650 | /etc/request-key.conf file. The cifs.upcall helper program is from the Samba | ||
| 651 | project(http://www.samba.org). NTLM and NTLMv2 and LANMAN support do not | ||
| 652 | require this helper. Note that NTLMv2 security (which does not require the | ||
| 653 | cifs.upcall helper program), instead of using Kerberos, is sufficient for | ||
| 654 | some use cases. | ||
| 655 | |||
| 656 | Enabling DFS support (used to access shares transparently in an MS-DFS | ||
| 657 | global name space) requires that CONFIG_CIFS_EXPERIMENTAL be enabled. In | ||
| 658 | addition, DFS support for target shares which are specified as UNC | ||
| 659 | names which begin with host names (rather than IP addresses) requires | ||
| 660 | a user space helper (such as cifs.upcall) to be present in order to | ||
| 661 | translate host names to ip address, and the user space helper must also | ||
| 662 | be configured in the file /etc/request-key.conf | ||
| 663 | |||
| 664 | To use cifs Kerberos and DFS support, the Linux keyutils package should be | ||
| 665 | installed and something like the following lines should be added to the | ||
| 666 | /etc/request-key.conf file: | ||
| 667 | |||
| 668 | create cifs.spnego * * /usr/local/sbin/cifs.upcall %k | ||
| 669 | create dns_resolver * * /usr/local/sbin/cifs.upcall %k | ||
| 670 | |||
| 671 | |||
diff --git a/fs/cifs/asn1.c b/fs/cifs/asn1.c index 5fabd2caf93c..1b09f1670061 100644 --- a/fs/cifs/asn1.c +++ b/fs/cifs/asn1.c | |||
| @@ -476,6 +476,7 @@ decode_negTokenInit(unsigned char *security_blob, int length, | |||
| 476 | unsigned int cls, con, tag, oidlen, rc; | 476 | unsigned int cls, con, tag, oidlen, rc; |
| 477 | bool use_ntlmssp = false; | 477 | bool use_ntlmssp = false; |
| 478 | bool use_kerberos = false; | 478 | bool use_kerberos = false; |
| 479 | bool use_mskerberos = false; | ||
| 479 | 480 | ||
| 480 | *secType = NTLM; /* BB eventually make Kerberos or NLTMSSP the default*/ | 481 | *secType = NTLM; /* BB eventually make Kerberos or NLTMSSP the default*/ |
| 481 | 482 | ||
| @@ -574,10 +575,12 @@ decode_negTokenInit(unsigned char *security_blob, int length, | |||
| 574 | *(oid + 1), *(oid + 2), *(oid + 3))); | 575 | *(oid + 1), *(oid + 2), *(oid + 3))); |
| 575 | 576 | ||
| 576 | if (compare_oid(oid, oidlen, MSKRB5_OID, | 577 | if (compare_oid(oid, oidlen, MSKRB5_OID, |
| 577 | MSKRB5_OID_LEN)) | 578 | MSKRB5_OID_LEN) && |
| 578 | use_kerberos = true; | 579 | !use_kerberos) |
| 580 | use_mskerberos = true; | ||
| 579 | else if (compare_oid(oid, oidlen, KRB5_OID, | 581 | else if (compare_oid(oid, oidlen, KRB5_OID, |
| 580 | KRB5_OID_LEN)) | 582 | KRB5_OID_LEN) && |
| 583 | !use_mskerberos) | ||
| 581 | use_kerberos = true; | 584 | use_kerberos = true; |
| 582 | else if (compare_oid(oid, oidlen, NTLMSSP_OID, | 585 | else if (compare_oid(oid, oidlen, NTLMSSP_OID, |
| 583 | NTLMSSP_OID_LEN)) | 586 | NTLMSSP_OID_LEN)) |
| @@ -630,6 +633,8 @@ decode_negTokenInit(unsigned char *security_blob, int length, | |||
| 630 | 633 | ||
| 631 | if (use_kerberos) | 634 | if (use_kerberos) |
| 632 | *secType = Kerberos; | 635 | *secType = Kerberos; |
| 636 | else if (use_mskerberos) | ||
| 637 | *secType = MSKerberos; | ||
| 633 | else if (use_ntlmssp) | 638 | else if (use_ntlmssp) |
| 634 | *secType = NTLMSSP; | 639 | *secType = NTLMSSP; |
| 635 | 640 | ||
diff --git a/fs/cifs/cifs_spnego.c b/fs/cifs/cifs_spnego.c index 2434ab0e8791..117ef4bba68e 100644 --- a/fs/cifs/cifs_spnego.c +++ b/fs/cifs/cifs_spnego.c | |||
| @@ -114,9 +114,11 @@ cifs_get_spnego_key(struct cifsSesInfo *sesInfo) | |||
| 114 | 114 | ||
| 115 | dp = description + strlen(description); | 115 | dp = description + strlen(description); |
| 116 | 116 | ||
| 117 | /* for now, only sec=krb5 is valid */ | 117 | /* for now, only sec=krb5 and sec=mskrb5 are valid */ |
| 118 | if (server->secType == Kerberos) | 118 | if (server->secType == Kerberos) |
| 119 | sprintf(dp, ";sec=krb5"); | 119 | sprintf(dp, ";sec=krb5"); |
| 120 | else if (server->secType == MSKerberos) | ||
| 121 | sprintf(dp, ";sec=mskrb5"); | ||
| 120 | else | 122 | else |
| 121 | goto out; | 123 | goto out; |
| 122 | 124 | ||
diff --git a/fs/cifs/cifs_spnego.h b/fs/cifs/cifs_spnego.h index 05a34b17a1ab..e4041ec4d712 100644 --- a/fs/cifs/cifs_spnego.h +++ b/fs/cifs/cifs_spnego.h | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | #ifndef _CIFS_SPNEGO_H | 23 | #ifndef _CIFS_SPNEGO_H |
| 24 | #define _CIFS_SPNEGO_H | 24 | #define _CIFS_SPNEGO_H |
| 25 | 25 | ||
| 26 | #define CIFS_SPNEGO_UPCALL_VERSION 1 | 26 | #define CIFS_SPNEGO_UPCALL_VERSION 2 |
| 27 | 27 | ||
| 28 | /* | 28 | /* |
| 29 | * The version field should always be set to CIFS_SPNEGO_UPCALL_VERSION. | 29 | * The version field should always be set to CIFS_SPNEGO_UPCALL_VERSION. |
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 7e1cf262effe..8dfd6f24d488 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h | |||
| @@ -80,7 +80,8 @@ enum securityEnum { | |||
| 80 | NTLMv2, /* Legacy NTLM auth with NTLMv2 hash */ | 80 | NTLMv2, /* Legacy NTLM auth with NTLMv2 hash */ |
| 81 | RawNTLMSSP, /* NTLMSSP without SPNEGO */ | 81 | RawNTLMSSP, /* NTLMSSP without SPNEGO */ |
| 82 | NTLMSSP, /* NTLMSSP via SPNEGO */ | 82 | NTLMSSP, /* NTLMSSP via SPNEGO */ |
| 83 | Kerberos /* Kerberos via SPNEGO */ | 83 | Kerberos, /* Kerberos via SPNEGO */ |
| 84 | MSKerberos, /* MS Kerberos via SPNEGO */ | ||
| 84 | }; | 85 | }; |
| 85 | 86 | ||
| 86 | enum protocolEnum { | 87 | enum protocolEnum { |
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 0711db65afe8..4c13bcdb92a5 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c | |||
| @@ -3598,19 +3598,21 @@ int cifs_setup_session(unsigned int xid, struct cifsSesInfo *pSesInfo, | |||
| 3598 | char ntlm_session_key[CIFS_SESS_KEY_SIZE]; | 3598 | char ntlm_session_key[CIFS_SESS_KEY_SIZE]; |
| 3599 | bool ntlmv2_flag = false; | 3599 | bool ntlmv2_flag = false; |
| 3600 | int first_time = 0; | 3600 | int first_time = 0; |
| 3601 | struct TCP_Server_Info *server = pSesInfo->server; | ||
| 3601 | 3602 | ||
| 3602 | /* what if server changes its buffer size after dropping the session? */ | 3603 | /* what if server changes its buffer size after dropping the session? */ |
| 3603 | if (pSesInfo->server->maxBuf == 0) /* no need to send on reconnect */ { | 3604 | if (server->maxBuf == 0) /* no need to send on reconnect */ { |
| 3604 | rc = CIFSSMBNegotiate(xid, pSesInfo); | 3605 | rc = CIFSSMBNegotiate(xid, pSesInfo); |
| 3605 | if (rc == -EAGAIN) /* retry only once on 1st time connection */ { | 3606 | if (rc == -EAGAIN) { |
| 3607 | /* retry only once on 1st time connection */ | ||
| 3606 | rc = CIFSSMBNegotiate(xid, pSesInfo); | 3608 | rc = CIFSSMBNegotiate(xid, pSesInfo); |
| 3607 | if (rc == -EAGAIN) | 3609 | if (rc == -EAGAIN) |
| 3608 | rc = -EHOSTDOWN; | 3610 | rc = -EHOSTDOWN; |
| 3609 | } | 3611 | } |
| 3610 | if (rc == 0) { | 3612 | if (rc == 0) { |
| 3611 | spin_lock(&GlobalMid_Lock); | 3613 | spin_lock(&GlobalMid_Lock); |
| 3612 | if (pSesInfo->server->tcpStatus != CifsExiting) | 3614 | if (server->tcpStatus != CifsExiting) |
| 3613 | pSesInfo->server->tcpStatus = CifsGood; | 3615 | server->tcpStatus = CifsGood; |
| 3614 | else | 3616 | else |
| 3615 | rc = -EHOSTDOWN; | 3617 | rc = -EHOSTDOWN; |
| 3616 | spin_unlock(&GlobalMid_Lock); | 3618 | spin_unlock(&GlobalMid_Lock); |
| @@ -3623,23 +3625,22 @@ int cifs_setup_session(unsigned int xid, struct cifsSesInfo *pSesInfo, | |||
| 3623 | goto ss_err_exit; | 3625 | goto ss_err_exit; |
| 3624 | 3626 | ||
| 3625 | pSesInfo->flags = 0; | 3627 | pSesInfo->flags = 0; |
| 3626 | pSesInfo->capabilities = pSesInfo->server->capabilities; | 3628 | pSesInfo->capabilities = server->capabilities; |
| 3627 | if (linuxExtEnabled == 0) | 3629 | if (linuxExtEnabled == 0) |
| 3628 | pSesInfo->capabilities &= (~CAP_UNIX); | 3630 | pSesInfo->capabilities &= (~CAP_UNIX); |
| 3629 | /* pSesInfo->sequence_number = 0;*/ | 3631 | /* pSesInfo->sequence_number = 0;*/ |
| 3630 | cFYI(1, ("Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d", | 3632 | cFYI(1, ("Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d", |
| 3631 | pSesInfo->server->secMode, | 3633 | server->secMode, server->capabilities, server->timeAdj)); |
| 3632 | pSesInfo->server->capabilities, | 3634 | |
| 3633 | pSesInfo->server->timeAdj)); | ||
| 3634 | if (experimEnabled < 2) | 3635 | if (experimEnabled < 2) |
| 3635 | rc = CIFS_SessSetup(xid, pSesInfo, first_time, nls_info); | 3636 | rc = CIFS_SessSetup(xid, pSesInfo, first_time, nls_info); |
| 3636 | else if (extended_security | 3637 | else if (extended_security |
| 3637 | && (pSesInfo->capabilities & CAP_EXTENDED_SECURITY) | 3638 | && (pSesInfo->capabilities & CAP_EXTENDED_SECURITY) |
| 3638 | && (pSesInfo->server->secType == NTLMSSP)) { | 3639 | && (server->secType == NTLMSSP)) { |
| 3639 | rc = -EOPNOTSUPP; | 3640 | rc = -EOPNOTSUPP; |
| 3640 | } else if (extended_security | 3641 | } else if (extended_security |
| 3641 | && (pSesInfo->capabilities & CAP_EXTENDED_SECURITY) | 3642 | && (pSesInfo->capabilities & CAP_EXTENDED_SECURITY) |
| 3642 | && (pSesInfo->server->secType == RawNTLMSSP)) { | 3643 | && (server->secType == RawNTLMSSP)) { |
| 3643 | cFYI(1, ("NTLMSSP sesssetup")); | 3644 | cFYI(1, ("NTLMSSP sesssetup")); |
| 3644 | rc = CIFSNTLMSSPNegotiateSessSetup(xid, pSesInfo, &ntlmv2_flag, | 3645 | rc = CIFSNTLMSSPNegotiateSessSetup(xid, pSesInfo, &ntlmv2_flag, |
| 3645 | nls_info); | 3646 | nls_info); |
| @@ -3668,12 +3669,12 @@ int cifs_setup_session(unsigned int xid, struct cifsSesInfo *pSesInfo, | |||
| 3668 | 3669 | ||
| 3669 | } else { | 3670 | } else { |
| 3670 | SMBNTencrypt(pSesInfo->password, | 3671 | SMBNTencrypt(pSesInfo->password, |
| 3671 | pSesInfo->server->cryptKey, | 3672 | server->cryptKey, |
| 3672 | ntlm_session_key); | 3673 | ntlm_session_key); |
| 3673 | 3674 | ||
| 3674 | if (first_time) | 3675 | if (first_time) |
| 3675 | cifs_calculate_mac_key( | 3676 | cifs_calculate_mac_key( |
| 3676 | &pSesInfo->server->mac_signing_key, | 3677 | &server->mac_signing_key, |
| 3677 | ntlm_session_key, | 3678 | ntlm_session_key, |
| 3678 | pSesInfo->password); | 3679 | pSesInfo->password); |
| 3679 | } | 3680 | } |
| @@ -3686,13 +3687,13 @@ int cifs_setup_session(unsigned int xid, struct cifsSesInfo *pSesInfo, | |||
| 3686 | nls_info); | 3687 | nls_info); |
| 3687 | } | 3688 | } |
| 3688 | } else { /* old style NTLM 0.12 session setup */ | 3689 | } else { /* old style NTLM 0.12 session setup */ |
| 3689 | SMBNTencrypt(pSesInfo->password, pSesInfo->server->cryptKey, | 3690 | SMBNTencrypt(pSesInfo->password, server->cryptKey, |
| 3690 | ntlm_session_key); | 3691 | ntlm_session_key); |
| 3691 | 3692 | ||
| 3692 | if (first_time) | 3693 | if (first_time) |
| 3693 | cifs_calculate_mac_key( | 3694 | cifs_calculate_mac_key(&server->mac_signing_key, |
| 3694 | &pSesInfo->server->mac_signing_key, | 3695 | ntlm_session_key, |
| 3695 | ntlm_session_key, pSesInfo->password); | 3696 | pSesInfo->password); |
| 3696 | 3697 | ||
| 3697 | rc = CIFSSessSetup(xid, pSesInfo, ntlm_session_key, nls_info); | 3698 | rc = CIFSSessSetup(xid, pSesInfo, ntlm_session_key, nls_info); |
| 3698 | } | 3699 | } |
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 848286861c31..9c548f110102 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c | |||
| @@ -546,7 +546,8 @@ int cifs_get_inode_info(struct inode **pinode, | |||
| 546 | if ((inode->i_mode & S_IWUGO) == 0 && | 546 | if ((inode->i_mode & S_IWUGO) == 0 && |
| 547 | (attr & ATTR_READONLY) == 0) | 547 | (attr & ATTR_READONLY) == 0) |
| 548 | inode->i_mode |= (S_IWUGO & default_mode); | 548 | inode->i_mode |= (S_IWUGO & default_mode); |
| 549 | inode->i_mode &= ~S_IFMT; | 549 | |
| 550 | inode->i_mode &= ~S_IFMT; | ||
| 550 | } | 551 | } |
| 551 | /* clear write bits if ATTR_READONLY is set */ | 552 | /* clear write bits if ATTR_READONLY is set */ |
| 552 | if (attr & ATTR_READONLY) | 553 | if (attr & ATTR_READONLY) |
diff --git a/fs/cifs/sess.c b/fs/cifs/sess.c index ed150efbe27c..b537fad3bf50 100644 --- a/fs/cifs/sess.c +++ b/fs/cifs/sess.c | |||
| @@ -505,7 +505,7 @@ CIFS_SessSetup(unsigned int xid, struct cifsSesInfo *ses, int first_time, | |||
| 505 | unicode_ssetup_strings(&bcc_ptr, ses, nls_cp); | 505 | unicode_ssetup_strings(&bcc_ptr, ses, nls_cp); |
| 506 | } else | 506 | } else |
| 507 | ascii_ssetup_strings(&bcc_ptr, ses, nls_cp); | 507 | ascii_ssetup_strings(&bcc_ptr, ses, nls_cp); |
| 508 | } else if (type == Kerberos) { | 508 | } else if (type == Kerberos || type == MSKerberos) { |
| 509 | #ifdef CONFIG_CIFS_UPCALL | 509 | #ifdef CONFIG_CIFS_UPCALL |
| 510 | struct cifs_spnego_msg *msg; | 510 | struct cifs_spnego_msg *msg; |
| 511 | spnego_key = cifs_get_spnego_key(ses); | 511 | spnego_key = cifs_get_spnego_key(ses); |
| @@ -516,6 +516,15 @@ CIFS_SessSetup(unsigned int xid, struct cifsSesInfo *ses, int first_time, | |||
| 516 | } | 516 | } |
| 517 | 517 | ||
| 518 | msg = spnego_key->payload.data; | 518 | msg = spnego_key->payload.data; |
| 519 | /* check version field to make sure that cifs.upcall is | ||
| 520 | sending us a response in an expected form */ | ||
| 521 | if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) { | ||
| 522 | cERROR(1, ("incorrect version of cifs.upcall (expected" | ||
| 523 | " %d but got %d)", | ||
| 524 | CIFS_SPNEGO_UPCALL_VERSION, msg->version)); | ||
| 525 | rc = -EKEYREJECTED; | ||
| 526 | goto ssetup_exit; | ||
| 527 | } | ||
| 519 | /* bail out if key is too long */ | 528 | /* bail out if key is too long */ |
| 520 | if (msg->sesskey_len > | 529 | if (msg->sesskey_len > |
| 521 | sizeof(ses->server->mac_signing_key.data.krb5)) { | 530 | sizeof(ses->server->mac_signing_key.data.krb5)) { |
diff --git a/fs/configfs/dir.c b/fs/configfs/dir.c index 7a8db78a91d2..8e93341f3e82 100644 --- a/fs/configfs/dir.c +++ b/fs/configfs/dir.c | |||
| @@ -1311,16 +1311,18 @@ static int configfs_rmdir(struct inode *dir, struct dentry *dentry) | |||
| 1311 | * Ensure that no racing symlink() will make detach_prep() fail while | 1311 | * Ensure that no racing symlink() will make detach_prep() fail while |
| 1312 | * the new link is temporarily attached | 1312 | * the new link is temporarily attached |
| 1313 | */ | 1313 | */ |
| 1314 | mutex_lock(&configfs_symlink_mutex); | ||
| 1315 | spin_lock(&configfs_dirent_lock); | ||
| 1316 | do { | 1314 | do { |
| 1317 | struct mutex *wait_mutex; | 1315 | struct mutex *wait_mutex; |
| 1318 | 1316 | ||
| 1317 | mutex_lock(&configfs_symlink_mutex); | ||
| 1318 | spin_lock(&configfs_dirent_lock); | ||
| 1319 | ret = configfs_detach_prep(dentry, &wait_mutex); | 1319 | ret = configfs_detach_prep(dentry, &wait_mutex); |
| 1320 | if (ret) { | 1320 | if (ret) |
| 1321 | configfs_detach_rollback(dentry); | 1321 | configfs_detach_rollback(dentry); |
| 1322 | spin_unlock(&configfs_dirent_lock); | 1322 | spin_unlock(&configfs_dirent_lock); |
| 1323 | mutex_unlock(&configfs_symlink_mutex); | 1323 | mutex_unlock(&configfs_symlink_mutex); |
| 1324 | |||
| 1325 | if (ret) { | ||
| 1324 | if (ret != -EAGAIN) { | 1326 | if (ret != -EAGAIN) { |
| 1325 | config_item_put(parent_item); | 1327 | config_item_put(parent_item); |
| 1326 | return ret; | 1328 | return ret; |
| @@ -1329,13 +1331,8 @@ static int configfs_rmdir(struct inode *dir, struct dentry *dentry) | |||
| 1329 | /* Wait until the racing operation terminates */ | 1331 | /* Wait until the racing operation terminates */ |
| 1330 | mutex_lock(wait_mutex); | 1332 | mutex_lock(wait_mutex); |
| 1331 | mutex_unlock(wait_mutex); | 1333 | mutex_unlock(wait_mutex); |
| 1332 | |||
| 1333 | mutex_lock(&configfs_symlink_mutex); | ||
| 1334 | spin_lock(&configfs_dirent_lock); | ||
| 1335 | } | 1334 | } |
| 1336 | } while (ret == -EAGAIN); | 1335 | } while (ret == -EAGAIN); |
| 1337 | spin_unlock(&configfs_dirent_lock); | ||
| 1338 | mutex_unlock(&configfs_symlink_mutex); | ||
| 1339 | 1336 | ||
| 1340 | /* Get a working ref for the duration of this function */ | 1337 | /* Get a working ref for the duration of this function */ |
| 1341 | item = configfs_get_config_item(dentry); | 1338 | item = configfs_get_config_item(dentry); |
diff --git a/fs/ocfs2/cluster/netdebug.c b/fs/ocfs2/cluster/netdebug.c index d8bfa0eb41b2..52276c02f710 100644 --- a/fs/ocfs2/cluster/netdebug.c +++ b/fs/ocfs2/cluster/netdebug.c | |||
| @@ -138,20 +138,20 @@ static int nst_seq_show(struct seq_file *seq, void *v) | |||
| 138 | " message id: %d\n" | 138 | " message id: %d\n" |
| 139 | " message type: %u\n" | 139 | " message type: %u\n" |
| 140 | " message key: 0x%08x\n" | 140 | " message key: 0x%08x\n" |
| 141 | " sock acquiry: %lu.%lu\n" | 141 | " sock acquiry: %lu.%ld\n" |
| 142 | " send start: %lu.%lu\n" | 142 | " send start: %lu.%ld\n" |
| 143 | " wait start: %lu.%lu\n", | 143 | " wait start: %lu.%ld\n", |
| 144 | nst, (unsigned long)nst->st_task->pid, | 144 | nst, (unsigned long)nst->st_task->pid, |
| 145 | (unsigned long)nst->st_task->tgid, | 145 | (unsigned long)nst->st_task->tgid, |
| 146 | nst->st_task->comm, nst->st_node, | 146 | nst->st_task->comm, nst->st_node, |
| 147 | nst->st_sc, nst->st_id, nst->st_msg_type, | 147 | nst->st_sc, nst->st_id, nst->st_msg_type, |
| 148 | nst->st_msg_key, | 148 | nst->st_msg_key, |
| 149 | nst->st_sock_time.tv_sec, | 149 | nst->st_sock_time.tv_sec, |
| 150 | (unsigned long)nst->st_sock_time.tv_usec, | 150 | (long)nst->st_sock_time.tv_usec, |
| 151 | nst->st_send_time.tv_sec, | 151 | nst->st_send_time.tv_sec, |
| 152 | (unsigned long)nst->st_send_time.tv_usec, | 152 | (long)nst->st_send_time.tv_usec, |
| 153 | nst->st_status_time.tv_sec, | 153 | nst->st_status_time.tv_sec, |
| 154 | nst->st_status_time.tv_usec); | 154 | (long)nst->st_status_time.tv_usec); |
| 155 | } | 155 | } |
| 156 | 156 | ||
| 157 | spin_unlock(&o2net_debug_lock); | 157 | spin_unlock(&o2net_debug_lock); |
| @@ -276,7 +276,7 @@ static void *sc_seq_next(struct seq_file *seq, void *v, loff_t *pos) | |||
| 276 | return sc; /* unused, just needs to be null when done */ | 276 | return sc; /* unused, just needs to be null when done */ |
| 277 | } | 277 | } |
| 278 | 278 | ||
| 279 | #define TV_SEC_USEC(TV) TV.tv_sec, (unsigned long)TV.tv_usec | 279 | #define TV_SEC_USEC(TV) TV.tv_sec, (long)TV.tv_usec |
| 280 | 280 | ||
| 281 | static int sc_seq_show(struct seq_file *seq, void *v) | 281 | static int sc_seq_show(struct seq_file *seq, void *v) |
| 282 | { | 282 | { |
| @@ -309,12 +309,12 @@ static int sc_seq_show(struct seq_file *seq, void *v) | |||
| 309 | " remote node: %s\n" | 309 | " remote node: %s\n" |
| 310 | " page off: %zu\n" | 310 | " page off: %zu\n" |
| 311 | " handshake ok: %u\n" | 311 | " handshake ok: %u\n" |
| 312 | " timer: %lu.%lu\n" | 312 | " timer: %lu.%ld\n" |
| 313 | " data ready: %lu.%lu\n" | 313 | " data ready: %lu.%ld\n" |
| 314 | " advance start: %lu.%lu\n" | 314 | " advance start: %lu.%ld\n" |
| 315 | " advance stop: %lu.%lu\n" | 315 | " advance stop: %lu.%ld\n" |
| 316 | " func start: %lu.%lu\n" | 316 | " func start: %lu.%ld\n" |
| 317 | " func stop: %lu.%lu\n" | 317 | " func stop: %lu.%ld\n" |
| 318 | " func key: %u\n" | 318 | " func key: %u\n" |
| 319 | " func type: %u\n", | 319 | " func type: %u\n", |
| 320 | sc, | 320 | sc, |
diff --git a/fs/ocfs2/cluster/tcp.c b/fs/ocfs2/cluster/tcp.c index a27d61581bd6..2bcf706d9dd3 100644 --- a/fs/ocfs2/cluster/tcp.c +++ b/fs/ocfs2/cluster/tcp.c | |||
| @@ -143,8 +143,8 @@ static void o2net_sc_postpone_idle(struct o2net_sock_container *sc); | |||
| 143 | static void o2net_sc_reset_idle_timer(struct o2net_sock_container *sc); | 143 | static void o2net_sc_reset_idle_timer(struct o2net_sock_container *sc); |
| 144 | 144 | ||
| 145 | #ifdef CONFIG_DEBUG_FS | 145 | #ifdef CONFIG_DEBUG_FS |
| 146 | void o2net_init_nst(struct o2net_send_tracking *nst, u32 msgtype, | 146 | static void o2net_init_nst(struct o2net_send_tracking *nst, u32 msgtype, |
| 147 | u32 msgkey, struct task_struct *task, u8 node) | 147 | u32 msgkey, struct task_struct *task, u8 node) |
| 148 | { | 148 | { |
| 149 | INIT_LIST_HEAD(&nst->st_net_debug_item); | 149 | INIT_LIST_HEAD(&nst->st_net_debug_item); |
| 150 | nst->st_task = task; | 150 | nst->st_task = task; |
| @@ -153,31 +153,61 @@ void o2net_init_nst(struct o2net_send_tracking *nst, u32 msgtype, | |||
| 153 | nst->st_node = node; | 153 | nst->st_node = node; |
| 154 | } | 154 | } |
| 155 | 155 | ||
| 156 | void o2net_set_nst_sock_time(struct o2net_send_tracking *nst) | 156 | static void o2net_set_nst_sock_time(struct o2net_send_tracking *nst) |
| 157 | { | 157 | { |
| 158 | do_gettimeofday(&nst->st_sock_time); | 158 | do_gettimeofday(&nst->st_sock_time); |
| 159 | } | 159 | } |
| 160 | 160 | ||
| 161 | void o2net_set_nst_send_time(struct o2net_send_tracking *nst) | 161 | static void o2net_set_nst_send_time(struct o2net_send_tracking *nst) |
| 162 | { | 162 | { |
| 163 | do_gettimeofday(&nst->st_send_time); | 163 | do_gettimeofday(&nst->st_send_time); |
| 164 | } | 164 | } |
| 165 | 165 | ||
| 166 | void o2net_set_nst_status_time(struct o2net_send_tracking *nst) | 166 | static void o2net_set_nst_status_time(struct o2net_send_tracking *nst) |
| 167 | { | 167 | { |
| 168 | do_gettimeofday(&nst->st_status_time); | 168 | do_gettimeofday(&nst->st_status_time); |
| 169 | } | 169 | } |
| 170 | 170 | ||
| 171 | void o2net_set_nst_sock_container(struct o2net_send_tracking *nst, | 171 | static void o2net_set_nst_sock_container(struct o2net_send_tracking *nst, |
| 172 | struct o2net_sock_container *sc) | 172 | struct o2net_sock_container *sc) |
| 173 | { | 173 | { |
| 174 | nst->st_sc = sc; | 174 | nst->st_sc = sc; |
| 175 | } | 175 | } |
| 176 | 176 | ||
| 177 | void o2net_set_nst_msg_id(struct o2net_send_tracking *nst, u32 msg_id) | 177 | static void o2net_set_nst_msg_id(struct o2net_send_tracking *nst, u32 msg_id) |
| 178 | { | 178 | { |
| 179 | nst->st_id = msg_id; | 179 | nst->st_id = msg_id; |
| 180 | } | 180 | } |
| 181 | |||
| 182 | #else /* CONFIG_DEBUG_FS */ | ||
| 183 | |||
| 184 | static inline void o2net_init_nst(struct o2net_send_tracking *nst, u32 msgtype, | ||
| 185 | u32 msgkey, struct task_struct *task, u8 node) | ||
| 186 | { | ||
| 187 | } | ||
| 188 | |||
| 189 | static inline void o2net_set_nst_sock_time(struct o2net_send_tracking *nst) | ||
| 190 | { | ||
| 191 | } | ||
| 192 | |||
| 193 | static inline void o2net_set_nst_send_time(struct o2net_send_tracking *nst) | ||
| 194 | { | ||
| 195 | } | ||
| 196 | |||
| 197 | static inline void o2net_set_nst_status_time(struct o2net_send_tracking *nst) | ||
| 198 | { | ||
| 199 | } | ||
| 200 | |||
| 201 | static inline void o2net_set_nst_sock_container(struct o2net_send_tracking *nst, | ||
| 202 | struct o2net_sock_container *sc) | ||
| 203 | { | ||
| 204 | } | ||
| 205 | |||
| 206 | static inline void o2net_set_nst_msg_id(struct o2net_send_tracking *nst, | ||
| 207 | u32 msg_id) | ||
| 208 | { | ||
| 209 | } | ||
| 210 | |||
| 181 | #endif /* CONFIG_DEBUG_FS */ | 211 | #endif /* CONFIG_DEBUG_FS */ |
| 182 | 212 | ||
| 183 | static inline int o2net_reconnect_delay(void) | 213 | static inline int o2net_reconnect_delay(void) |
diff --git a/fs/ocfs2/cluster/tcp_internal.h b/fs/ocfs2/cluster/tcp_internal.h index 18307ff81b77..8d58cfe410b1 100644 --- a/fs/ocfs2/cluster/tcp_internal.h +++ b/fs/ocfs2/cluster/tcp_internal.h | |||
| @@ -224,42 +224,10 @@ struct o2net_send_tracking { | |||
| 224 | struct timeval st_send_time; | 224 | struct timeval st_send_time; |
| 225 | struct timeval st_status_time; | 225 | struct timeval st_status_time; |
| 226 | }; | 226 | }; |
| 227 | |||
| 228 | void o2net_init_nst(struct o2net_send_tracking *nst, u32 msgtype, | ||
| 229 | u32 msgkey, struct task_struct *task, u8 node); | ||
| 230 | void o2net_set_nst_sock_time(struct o2net_send_tracking *nst); | ||
| 231 | void o2net_set_nst_send_time(struct o2net_send_tracking *nst); | ||
| 232 | void o2net_set_nst_status_time(struct o2net_send_tracking *nst); | ||
| 233 | void o2net_set_nst_sock_container(struct o2net_send_tracking *nst, | ||
| 234 | struct o2net_sock_container *sc); | ||
| 235 | void o2net_set_nst_msg_id(struct o2net_send_tracking *nst, u32 msg_id); | ||
| 236 | |||
| 237 | #else | 227 | #else |
| 238 | struct o2net_send_tracking { | 228 | struct o2net_send_tracking { |
| 239 | u32 dummy; | 229 | u32 dummy; |
| 240 | }; | 230 | }; |
| 241 | |||
| 242 | static inline void o2net_init_nst(struct o2net_send_tracking *nst, u32 msgtype, | ||
| 243 | u32 msgkey, struct task_struct *task, u8 node) | ||
| 244 | { | ||
| 245 | } | ||
| 246 | static inline void o2net_set_nst_sock_time(struct o2net_send_tracking *nst) | ||
| 247 | { | ||
| 248 | } | ||
| 249 | static inline void o2net_set_nst_send_time(struct o2net_send_tracking *nst) | ||
| 250 | { | ||
| 251 | } | ||
| 252 | static inline void o2net_set_nst_status_time(struct o2net_send_tracking *nst) | ||
| 253 | { | ||
| 254 | } | ||
| 255 | static inline void o2net_set_nst_sock_container(struct o2net_send_tracking *nst, | ||
| 256 | struct o2net_sock_container *sc) | ||
| 257 | { | ||
| 258 | } | ||
| 259 | static inline void o2net_set_nst_msg_id(struct o2net_send_tracking *nst, | ||
| 260 | u32 msg_id) | ||
| 261 | { | ||
| 262 | } | ||
| 263 | #endif /* CONFIG_DEBUG_FS */ | 231 | #endif /* CONFIG_DEBUG_FS */ |
| 264 | 232 | ||
| 265 | #endif /* O2CLUSTER_TCP_INTERNAL_H */ | 233 | #endif /* O2CLUSTER_TCP_INTERNAL_H */ |
diff --git a/fs/ocfs2/dir.c b/fs/ocfs2/dir.c index 8a1875848080..9cce563fd627 100644 --- a/fs/ocfs2/dir.c +++ b/fs/ocfs2/dir.c | |||
| @@ -1300,7 +1300,6 @@ static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh, | |||
| 1300 | di->i_size = cpu_to_le64(sb->s_blocksize); | 1300 | di->i_size = cpu_to_le64(sb->s_blocksize); |
| 1301 | di->i_ctime = di->i_mtime = cpu_to_le64(dir->i_ctime.tv_sec); | 1301 | di->i_ctime = di->i_mtime = cpu_to_le64(dir->i_ctime.tv_sec); |
| 1302 | di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(dir->i_ctime.tv_nsec); | 1302 | di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(dir->i_ctime.tv_nsec); |
| 1303 | dir->i_blocks = ocfs2_inode_sector_count(dir); | ||
| 1304 | 1303 | ||
| 1305 | /* | 1304 | /* |
| 1306 | * This should never fail as our extent list is empty and all | 1305 | * This should never fail as our extent list is empty and all |
| @@ -1310,9 +1309,15 @@ static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh, | |||
| 1310 | NULL); | 1309 | NULL); |
| 1311 | if (ret) { | 1310 | if (ret) { |
| 1312 | mlog_errno(ret); | 1311 | mlog_errno(ret); |
| 1313 | goto out; | 1312 | goto out_commit; |
| 1314 | } | 1313 | } |
| 1315 | 1314 | ||
| 1315 | /* | ||
| 1316 | * Set i_blocks after the extent insert for the most up to | ||
| 1317 | * date ip_clusters value. | ||
| 1318 | */ | ||
| 1319 | dir->i_blocks = ocfs2_inode_sector_count(dir); | ||
| 1320 | |||
| 1316 | ret = ocfs2_journal_dirty(handle, di_bh); | 1321 | ret = ocfs2_journal_dirty(handle, di_bh); |
| 1317 | if (ret) { | 1322 | if (ret) { |
| 1318 | mlog_errno(ret); | 1323 | mlog_errno(ret); |
| @@ -1336,7 +1341,7 @@ static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh, | |||
| 1336 | len, 0, NULL); | 1341 | len, 0, NULL); |
| 1337 | if (ret) { | 1342 | if (ret) { |
| 1338 | mlog_errno(ret); | 1343 | mlog_errno(ret); |
| 1339 | goto out; | 1344 | goto out_commit; |
| 1340 | } | 1345 | } |
| 1341 | } | 1346 | } |
| 1342 | 1347 | ||
diff --git a/fs/ocfs2/journal.c b/fs/ocfs2/journal.c index 7a37240f7a31..c47bc2a809c2 100644 --- a/fs/ocfs2/journal.c +++ b/fs/ocfs2/journal.c | |||
| @@ -1418,13 +1418,13 @@ int ocfs2_mark_dead_nodes(struct ocfs2_super *osb) | |||
| 1418 | { | 1418 | { |
| 1419 | unsigned int node_num; | 1419 | unsigned int node_num; |
| 1420 | int status, i; | 1420 | int status, i; |
| 1421 | u32 gen; | ||
| 1421 | struct buffer_head *bh = NULL; | 1422 | struct buffer_head *bh = NULL; |
| 1422 | struct ocfs2_dinode *di; | 1423 | struct ocfs2_dinode *di; |
| 1423 | 1424 | ||
| 1424 | /* This is called with the super block cluster lock, so we | 1425 | /* This is called with the super block cluster lock, so we |
| 1425 | * know that the slot map can't change underneath us. */ | 1426 | * know that the slot map can't change underneath us. */ |
| 1426 | 1427 | ||
| 1427 | spin_lock(&osb->osb_lock); | ||
| 1428 | for (i = 0; i < osb->max_slots; i++) { | 1428 | for (i = 0; i < osb->max_slots; i++) { |
| 1429 | /* Read journal inode to get the recovery generation */ | 1429 | /* Read journal inode to get the recovery generation */ |
| 1430 | status = ocfs2_read_journal_inode(osb, i, &bh, NULL); | 1430 | status = ocfs2_read_journal_inode(osb, i, &bh, NULL); |
| @@ -1433,23 +1433,31 @@ int ocfs2_mark_dead_nodes(struct ocfs2_super *osb) | |||
| 1433 | goto bail; | 1433 | goto bail; |
| 1434 | } | 1434 | } |
| 1435 | di = (struct ocfs2_dinode *)bh->b_data; | 1435 | di = (struct ocfs2_dinode *)bh->b_data; |
| 1436 | osb->slot_recovery_generations[i] = | 1436 | gen = ocfs2_get_recovery_generation(di); |
| 1437 | ocfs2_get_recovery_generation(di); | ||
| 1438 | brelse(bh); | 1437 | brelse(bh); |
| 1439 | bh = NULL; | 1438 | bh = NULL; |
| 1440 | 1439 | ||
| 1440 | spin_lock(&osb->osb_lock); | ||
| 1441 | osb->slot_recovery_generations[i] = gen; | ||
| 1442 | |||
| 1441 | mlog(0, "Slot %u recovery generation is %u\n", i, | 1443 | mlog(0, "Slot %u recovery generation is %u\n", i, |
| 1442 | osb->slot_recovery_generations[i]); | 1444 | osb->slot_recovery_generations[i]); |
| 1443 | 1445 | ||
| 1444 | if (i == osb->slot_num) | 1446 | if (i == osb->slot_num) { |
| 1447 | spin_unlock(&osb->osb_lock); | ||
| 1445 | continue; | 1448 | continue; |
| 1449 | } | ||
| 1446 | 1450 | ||
| 1447 | status = ocfs2_slot_to_node_num_locked(osb, i, &node_num); | 1451 | status = ocfs2_slot_to_node_num_locked(osb, i, &node_num); |
| 1448 | if (status == -ENOENT) | 1452 | if (status == -ENOENT) { |
| 1453 | spin_unlock(&osb->osb_lock); | ||
| 1449 | continue; | 1454 | continue; |
| 1455 | } | ||
| 1450 | 1456 | ||
| 1451 | if (__ocfs2_recovery_map_test(osb, node_num)) | 1457 | if (__ocfs2_recovery_map_test(osb, node_num)) { |
| 1458 | spin_unlock(&osb->osb_lock); | ||
| 1452 | continue; | 1459 | continue; |
| 1460 | } | ||
| 1453 | spin_unlock(&osb->osb_lock); | 1461 | spin_unlock(&osb->osb_lock); |
| 1454 | 1462 | ||
| 1455 | /* Ok, we have a slot occupied by another node which | 1463 | /* Ok, we have a slot occupied by another node which |
| @@ -1465,10 +1473,7 @@ int ocfs2_mark_dead_nodes(struct ocfs2_super *osb) | |||
| 1465 | mlog_errno(status); | 1473 | mlog_errno(status); |
| 1466 | goto bail; | 1474 | goto bail; |
| 1467 | } | 1475 | } |
| 1468 | |||
| 1469 | spin_lock(&osb->osb_lock); | ||
| 1470 | } | 1476 | } |
| 1471 | spin_unlock(&osb->osb_lock); | ||
| 1472 | 1477 | ||
| 1473 | status = 0; | 1478 | status = 0; |
| 1474 | bail: | 1479 | bail: |
diff --git a/fs/ocfs2/stackglue.c b/fs/ocfs2/stackglue.c index 10e149ae5e3a..07f348b8d721 100644 --- a/fs/ocfs2/stackglue.c +++ b/fs/ocfs2/stackglue.c | |||
| @@ -97,13 +97,14 @@ static int ocfs2_stack_driver_request(const char *stack_name, | |||
| 97 | goto out; | 97 | goto out; |
| 98 | } | 98 | } |
| 99 | 99 | ||
| 100 | /* Ok, the stack is pinned */ | ||
| 101 | p->sp_count++; | ||
| 102 | active_stack = p; | 100 | active_stack = p; |
| 103 | |||
| 104 | rc = 0; | 101 | rc = 0; |
| 105 | 102 | ||
| 106 | out: | 103 | out: |
| 104 | /* If we found it, pin it */ | ||
| 105 | if (!rc) | ||
| 106 | active_stack->sp_count++; | ||
| 107 | |||
| 107 | spin_unlock(&ocfs2_stack_lock); | 108 | spin_unlock(&ocfs2_stack_lock); |
| 108 | return rc; | 109 | return rc; |
| 109 | } | 110 | } |
diff --git a/include/asm-generic/rtc.h b/include/asm-generic/rtc.h index be4af0029ac0..71ef3f0b9685 100644 --- a/include/asm-generic/rtc.h +++ b/include/asm-generic/rtc.h | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #include <linux/mc146818rtc.h> | 15 | #include <linux/mc146818rtc.h> |
| 16 | #include <linux/rtc.h> | 16 | #include <linux/rtc.h> |
| 17 | #include <linux/bcd.h> | 17 | #include <linux/bcd.h> |
| 18 | #include <linux/delay.h> | ||
| 18 | 19 | ||
| 19 | #define RTC_PIE 0x40 /* periodic interrupt enable */ | 20 | #define RTC_PIE 0x40 /* periodic interrupt enable */ |
| 20 | #define RTC_AIE 0x20 /* alarm interrupt enable */ | 21 | #define RTC_AIE 0x20 /* alarm interrupt enable */ |
| @@ -43,7 +44,6 @@ static inline unsigned char rtc_is_updating(void) | |||
| 43 | 44 | ||
| 44 | static inline unsigned int get_rtc_time(struct rtc_time *time) | 45 | static inline unsigned int get_rtc_time(struct rtc_time *time) |
| 45 | { | 46 | { |
| 46 | unsigned long uip_watchdog = jiffies; | ||
| 47 | unsigned char ctrl; | 47 | unsigned char ctrl; |
| 48 | unsigned long flags; | 48 | unsigned long flags; |
| 49 | 49 | ||
| @@ -53,19 +53,15 @@ static inline unsigned int get_rtc_time(struct rtc_time *time) | |||
| 53 | 53 | ||
| 54 | /* | 54 | /* |
| 55 | * read RTC once any update in progress is done. The update | 55 | * read RTC once any update in progress is done. The update |
| 56 | * can take just over 2ms. We wait 10 to 20ms. There is no need to | 56 | * can take just over 2ms. We wait 20ms. There is no need to |
| 57 | * to poll-wait (up to 1s - eeccch) for the falling edge of RTC_UIP. | 57 | * to poll-wait (up to 1s - eeccch) for the falling edge of RTC_UIP. |
| 58 | * If you need to know *exactly* when a second has started, enable | 58 | * If you need to know *exactly* when a second has started, enable |
| 59 | * periodic update complete interrupts, (via ioctl) and then | 59 | * periodic update complete interrupts, (via ioctl) and then |
| 60 | * immediately read /dev/rtc which will block until you get the IRQ. | 60 | * immediately read /dev/rtc which will block until you get the IRQ. |
| 61 | * Once the read clears, read the RTC time (again via ioctl). Easy. | 61 | * Once the read clears, read the RTC time (again via ioctl). Easy. |
| 62 | */ | 62 | */ |
| 63 | 63 | if (rtc_is_updating()) | |
| 64 | if (rtc_is_updating() != 0) | 64 | mdelay(20); |
| 65 | while (jiffies - uip_watchdog < 2*HZ/100) { | ||
| 66 | barrier(); | ||
| 67 | cpu_relax(); | ||
| 68 | } | ||
| 69 | 65 | ||
| 70 | /* | 66 | /* |
| 71 | * Only the values that we read from the RTC are set. We leave | 67 | * Only the values that we read from the RTC are set. We leave |
diff --git a/include/asm-mips/unistd.h b/include/asm-mips/unistd.h index 4964c82f85f9..a73e1531e151 100644 --- a/include/asm-mips/unistd.h +++ b/include/asm-mips/unistd.h | |||
| @@ -344,16 +344,22 @@ | |||
| 344 | #define __NR_timerfd_create (__NR_Linux + 321) | 344 | #define __NR_timerfd_create (__NR_Linux + 321) |
| 345 | #define __NR_timerfd_gettime (__NR_Linux + 322) | 345 | #define __NR_timerfd_gettime (__NR_Linux + 322) |
| 346 | #define __NR_timerfd_settime (__NR_Linux + 323) | 346 | #define __NR_timerfd_settime (__NR_Linux + 323) |
| 347 | #define __NR_signalfd4 (__NR_Linux + 324) | ||
| 348 | #define __NR_eventfd2 (__NR_Linux + 325) | ||
| 349 | #define __NR_epoll_create1 (__NR_Linux + 326) | ||
| 350 | #define __NR_dup3 (__NR_Linux + 327) | ||
| 351 | #define __NR_pipe2 (__NR_Linux + 328) | ||
| 352 | #define __NR_inotify_init1 (__NR_Linux + 329) | ||
| 347 | 353 | ||
| 348 | /* | 354 | /* |
| 349 | * Offset of the last Linux o32 flavoured syscall | 355 | * Offset of the last Linux o32 flavoured syscall |
| 350 | */ | 356 | */ |
| 351 | #define __NR_Linux_syscalls 323 | 357 | #define __NR_Linux_syscalls 329 |
| 352 | 358 | ||
| 353 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */ | 359 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */ |
| 354 | 360 | ||
| 355 | #define __NR_O32_Linux 4000 | 361 | #define __NR_O32_Linux 4000 |
| 356 | #define __NR_O32_Linux_syscalls 323 | 362 | #define __NR_O32_Linux_syscalls 329 |
| 357 | 363 | ||
| 358 | #if _MIPS_SIM == _MIPS_SIM_ABI64 | 364 | #if _MIPS_SIM == _MIPS_SIM_ABI64 |
| 359 | 365 | ||
| @@ -644,16 +650,22 @@ | |||
| 644 | #define __NR_timerfd_create (__NR_Linux + 280) | 650 | #define __NR_timerfd_create (__NR_Linux + 280) |
| 645 | #define __NR_timerfd_gettime (__NR_Linux + 281) | 651 | #define __NR_timerfd_gettime (__NR_Linux + 281) |
| 646 | #define __NR_timerfd_settime (__NR_Linux + 282) | 652 | #define __NR_timerfd_settime (__NR_Linux + 282) |
| 653 | #define __NR_signalfd4 (__NR_Linux + 283) | ||
| 654 | #define __NR_eventfd2 (__NR_Linux + 284) | ||
| 655 | #define __NR_epoll_create1 (__NR_Linux + 285) | ||
| 656 | #define __NR_dup3 (__NR_Linux + 286) | ||
| 657 | #define __NR_pipe2 (__NR_Linux + 287) | ||
| 658 | #define __NR_inotify_init1 (__NR_Linux + 288) | ||
| 647 | 659 | ||
| 648 | /* | 660 | /* |
| 649 | * Offset of the last Linux 64-bit flavoured syscall | 661 | * Offset of the last Linux 64-bit flavoured syscall |
| 650 | */ | 662 | */ |
| 651 | #define __NR_Linux_syscalls 282 | 663 | #define __NR_Linux_syscalls 288 |
| 652 | 664 | ||
| 653 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */ | 665 | #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */ |
| 654 | 666 | ||
| 655 | #define __NR_64_Linux 5000 | 667 | #define __NR_64_Linux 5000 |
| 656 | #define __NR_64_Linux_syscalls 282 | 668 | #define __NR_64_Linux_syscalls 288 |
| 657 | 669 | ||
| 658 | #if _MIPS_SIM == _MIPS_SIM_NABI32 | 670 | #if _MIPS_SIM == _MIPS_SIM_NABI32 |
| 659 | 671 | ||
| @@ -948,16 +960,22 @@ | |||
| 948 | #define __NR_timerfd_create (__NR_Linux + 284) | 960 | #define __NR_timerfd_create (__NR_Linux + 284) |
| 949 | #define __NR_timerfd_gettime (__NR_Linux + 285) | 961 | #define __NR_timerfd_gettime (__NR_Linux + 285) |
| 950 | #define __NR_timerfd_settime (__NR_Linux + 286) | 962 | #define __NR_timerfd_settime (__NR_Linux + 286) |
| 963 | #define __NR_signalfd4 (__NR_Linux + 287) | ||
| 964 | #define __NR_eventfd2 (__NR_Linux + 288) | ||
| 965 | #define __NR_epoll_create1 (__NR_Linux + 289) | ||
| 966 | #define __NR_dup3 (__NR_Linux + 290) | ||
| 967 | #define __NR_pipe2 (__NR_Linux + 291) | ||
| 968 | #define __NR_inotify_init1 (__NR_Linux + 292) | ||
| 951 | 969 | ||
| 952 | /* | 970 | /* |
| 953 | * Offset of the last N32 flavoured syscall | 971 | * Offset of the last N32 flavoured syscall |
| 954 | */ | 972 | */ |
| 955 | #define __NR_Linux_syscalls 286 | 973 | #define __NR_Linux_syscalls 292 |
| 956 | 974 | ||
| 957 | #endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */ | 975 | #endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */ |
| 958 | 976 | ||
| 959 | #define __NR_N32_Linux 6000 | 977 | #define __NR_N32_Linux 6000 |
| 960 | #define __NR_N32_Linux_syscalls 286 | 978 | #define __NR_N32_Linux_syscalls 292 |
| 961 | 979 | ||
| 962 | #ifdef __KERNEL__ | 980 | #ifdef __KERNEL__ |
| 963 | 981 | ||
diff --git a/include/asm-x86/cpufeature.h b/include/asm-x86/cpufeature.h index 2f5a792b0acc..762f6a6bc707 100644 --- a/include/asm-x86/cpufeature.h +++ b/include/asm-x86/cpufeature.h | |||
| @@ -91,6 +91,7 @@ | |||
| 91 | #define X86_FEATURE_CX16 (4*32+13) /* CMPXCHG16B */ | 91 | #define X86_FEATURE_CX16 (4*32+13) /* CMPXCHG16B */ |
| 92 | #define X86_FEATURE_XTPR (4*32+14) /* Send Task Priority Messages */ | 92 | #define X86_FEATURE_XTPR (4*32+14) /* Send Task Priority Messages */ |
| 93 | #define X86_FEATURE_DCA (4*32+18) /* Direct Cache Access */ | 93 | #define X86_FEATURE_DCA (4*32+18) /* Direct Cache Access */ |
| 94 | #define X86_FEATURE_XMM4_2 (4*32+20) /* Streaming SIMD Extensions-4.2 */ | ||
| 94 | 95 | ||
| 95 | /* VIA/Cyrix/Centaur-defined CPU features, CPUID level 0xC0000001, word 5 */ | 96 | /* VIA/Cyrix/Centaur-defined CPU features, CPUID level 0xC0000001, word 5 */ |
| 96 | #define X86_FEATURE_XSTORE (5*32+ 2) /* on-CPU RNG present (xstore insn) */ | 97 | #define X86_FEATURE_XSTORE (5*32+ 2) /* on-CPU RNG present (xstore insn) */ |
| @@ -189,6 +190,7 @@ extern const char * const x86_power_flags[32]; | |||
| 189 | #define cpu_has_gbpages boot_cpu_has(X86_FEATURE_GBPAGES) | 190 | #define cpu_has_gbpages boot_cpu_has(X86_FEATURE_GBPAGES) |
| 190 | #define cpu_has_arch_perfmon boot_cpu_has(X86_FEATURE_ARCH_PERFMON) | 191 | #define cpu_has_arch_perfmon boot_cpu_has(X86_FEATURE_ARCH_PERFMON) |
| 191 | #define cpu_has_pat boot_cpu_has(X86_FEATURE_PAT) | 192 | #define cpu_has_pat boot_cpu_has(X86_FEATURE_PAT) |
| 193 | #define cpu_has_xmm4_2 boot_cpu_has(X86_FEATURE_XMM4_2) | ||
| 192 | 194 | ||
| 193 | #if defined(CONFIG_X86_INVLPG) || defined(CONFIG_X86_64) | 195 | #if defined(CONFIG_X86_INVLPG) || defined(CONFIG_X86_64) |
| 194 | # define cpu_has_invlpg 1 | 196 | # define cpu_has_invlpg 1 |
diff --git a/include/asm-x86/kvm_host.h b/include/asm-x86/kvm_host.h index 0f3c53114614..c2e34c275900 100644 --- a/include/asm-x86/kvm_host.h +++ b/include/asm-x86/kvm_host.h | |||
| @@ -722,7 +722,7 @@ asmlinkage void kvm_handle_fault_on_reboot(void); | |||
| 722 | 722 | ||
| 723 | #define __kvm_handle_fault_on_reboot(insn) \ | 723 | #define __kvm_handle_fault_on_reboot(insn) \ |
| 724 | "666: " insn "\n\t" \ | 724 | "666: " insn "\n\t" \ |
| 725 | ".pushsection .text.fixup, \"ax\" \n" \ | 725 | ".pushsection .fixup, \"ax\" \n" \ |
| 726 | "667: \n\t" \ | 726 | "667: \n\t" \ |
| 727 | KVM_EX_PUSH " $666b \n\t" \ | 727 | KVM_EX_PUSH " $666b \n\t" \ |
| 728 | "jmp kvm_handle_fault_on_reboot \n\t" \ | 728 | "jmp kvm_handle_fault_on_reboot \n\t" \ |
diff --git a/include/asm-x86/mce.h b/include/asm-x86/mce.h index 94f1fd79e22a..531eaa587455 100644 --- a/include/asm-x86/mce.h +++ b/include/asm-x86/mce.h | |||
| @@ -92,6 +92,7 @@ extern int mce_disabled; | |||
| 92 | 92 | ||
| 93 | void mce_log(struct mce *m); | 93 | void mce_log(struct mce *m); |
| 94 | DECLARE_PER_CPU(struct sys_device, device_mce); | 94 | DECLARE_PER_CPU(struct sys_device, device_mce); |
| 95 | extern void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu); | ||
| 95 | 96 | ||
| 96 | #ifdef CONFIG_X86_MCE_INTEL | 97 | #ifdef CONFIG_X86_MCE_INTEL |
| 97 | void mce_intel_feature_init(struct cpuinfo_x86 *c); | 98 | void mce_intel_feature_init(struct cpuinfo_x86 *c); |
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index e61f22be4d0e..44710d7e7bff 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
| @@ -280,6 +280,15 @@ struct blk_queue_tag { | |||
| 280 | atomic_t refcnt; /* map can be shared */ | 280 | atomic_t refcnt; /* map can be shared */ |
| 281 | }; | 281 | }; |
| 282 | 282 | ||
| 283 | #define BLK_SCSI_MAX_CMDS (256) | ||
| 284 | #define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8)) | ||
| 285 | |||
| 286 | struct blk_cmd_filter { | ||
| 287 | unsigned long read_ok[BLK_SCSI_CMD_PER_LONG]; | ||
| 288 | unsigned long write_ok[BLK_SCSI_CMD_PER_LONG]; | ||
| 289 | struct kobject kobj; | ||
| 290 | }; | ||
| 291 | |||
| 283 | struct request_queue | 292 | struct request_queue |
| 284 | { | 293 | { |
| 285 | /* | 294 | /* |
| @@ -398,6 +407,7 @@ struct request_queue | |||
| 398 | #if defined(CONFIG_BLK_DEV_BSG) | 407 | #if defined(CONFIG_BLK_DEV_BSG) |
| 399 | struct bsg_class_device bsg_dev; | 408 | struct bsg_class_device bsg_dev; |
| 400 | #endif | 409 | #endif |
| 410 | struct blk_cmd_filter cmd_filter; | ||
| 401 | }; | 411 | }; |
| 402 | 412 | ||
| 403 | #define QUEUE_FLAG_CLUSTER 0 /* cluster several segments into 1 */ | 413 | #define QUEUE_FLAG_CLUSTER 0 /* cluster several segments into 1 */ |
| @@ -807,8 +817,6 @@ extern void blk_put_queue(struct request_queue *); | |||
| 807 | /* | 817 | /* |
| 808 | * tag stuff | 818 | * tag stuff |
| 809 | */ | 819 | */ |
| 810 | #define blk_queue_tag_depth(q) ((q)->queue_tags->busy) | ||
| 811 | #define blk_queue_tag_queue(q) ((q)->queue_tags->busy < (q)->queue_tags->max_depth) | ||
| 812 | #define blk_rq_tagged(rq) ((rq)->cmd_flags & REQ_QUEUED) | 820 | #define blk_rq_tagged(rq) ((rq)->cmd_flags & REQ_QUEUED) |
| 813 | extern int blk_queue_start_tag(struct request_queue *, struct request *); | 821 | extern int blk_queue_start_tag(struct request_queue *, struct request *); |
| 814 | extern struct request *blk_queue_find_tag(struct request_queue *, int); | 822 | extern struct request *blk_queue_find_tag(struct request_queue *, int); |
| @@ -833,11 +841,11 @@ extern int blkdev_issue_flush(struct block_device *, sector_t *); | |||
| 833 | /* | 841 | /* |
| 834 | * command filter functions | 842 | * command filter functions |
| 835 | */ | 843 | */ |
| 836 | extern int blk_verify_command(struct file *file, unsigned char *cmd); | 844 | extern int blk_verify_command(struct blk_cmd_filter *filter, |
| 837 | extern int blk_cmd_filter_verify_command(struct blk_scsi_cmd_filter *filter, | 845 | unsigned char *cmd, int has_write_perm); |
| 838 | unsigned char *cmd, mode_t *f_mode); | ||
| 839 | extern int blk_register_filter(struct gendisk *disk); | 846 | extern int blk_register_filter(struct gendisk *disk); |
| 840 | extern void blk_unregister_filter(struct gendisk *disk); | 847 | extern void blk_unregister_filter(struct gendisk *disk); |
| 848 | extern void blk_set_cmd_filter_defaults(struct blk_cmd_filter *filter); | ||
| 841 | 849 | ||
| 842 | #define MAX_PHYS_SEGMENTS 128 | 850 | #define MAX_PHYS_SEGMENTS 128 |
| 843 | #define MAX_HW_SEGMENTS 128 | 851 | #define MAX_HW_SEGMENTS 128 |
diff --git a/include/linux/genhd.h b/include/linux/genhd.h index 118216f1bd3c..be4f5e5bfe06 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h | |||
| @@ -110,15 +110,6 @@ struct hd_struct { | |||
| 110 | #define GENHD_FL_SUPPRESS_PARTITION_INFO 32 | 110 | #define GENHD_FL_SUPPRESS_PARTITION_INFO 32 |
| 111 | #define GENHD_FL_FAIL 64 | 111 | #define GENHD_FL_FAIL 64 |
| 112 | 112 | ||
| 113 | #define BLK_SCSI_MAX_CMDS (256) | ||
| 114 | #define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8)) | ||
| 115 | |||
| 116 | struct blk_scsi_cmd_filter { | ||
| 117 | unsigned long read_ok[BLK_SCSI_CMD_PER_LONG]; | ||
| 118 | unsigned long write_ok[BLK_SCSI_CMD_PER_LONG]; | ||
| 119 | struct kobject kobj; | ||
| 120 | }; | ||
| 121 | |||
| 122 | struct gendisk { | 113 | struct gendisk { |
| 123 | int major; /* major number of driver */ | 114 | int major; /* major number of driver */ |
| 124 | int first_minor; | 115 | int first_minor; |
| @@ -128,7 +119,6 @@ struct gendisk { | |||
| 128 | struct hd_struct **part; /* [indexed by minor] */ | 119 | struct hd_struct **part; /* [indexed by minor] */ |
| 129 | struct block_device_operations *fops; | 120 | struct block_device_operations *fops; |
| 130 | struct request_queue *queue; | 121 | struct request_queue *queue; |
| 131 | struct blk_scsi_cmd_filter cmd_filter; | ||
| 132 | void *private_data; | 122 | void *private_data; |
| 133 | sector_t capacity; | 123 | sector_t capacity; |
| 134 | 124 | ||
diff --git a/include/linux/kvm.h b/include/linux/kvm.h index 69511f74f912..70a30651cd12 100644 --- a/include/linux/kvm.h +++ b/include/linux/kvm.h | |||
| @@ -320,12 +320,12 @@ struct kvm_trace_rec { | |||
| 320 | struct { | 320 | struct { |
| 321 | __u64 cycle_u64; | 321 | __u64 cycle_u64; |
| 322 | __u32 extra_u32[KVM_TRC_EXTRA_MAX]; | 322 | __u32 extra_u32[KVM_TRC_EXTRA_MAX]; |
| 323 | } cycle; | 323 | } __attribute__((packed)) cycle; |
| 324 | struct { | 324 | struct { |
| 325 | __u32 extra_u32[KVM_TRC_EXTRA_MAX]; | 325 | __u32 extra_u32[KVM_TRC_EXTRA_MAX]; |
| 326 | } nocycle; | 326 | } nocycle; |
| 327 | } u; | 327 | } u; |
| 328 | } __attribute__((packed)); | 328 | }; |
| 329 | 329 | ||
| 330 | #define KVMIO 0xAE | 330 | #define KVMIO 0xAE |
| 331 | 331 | ||
diff --git a/include/linux/net.h b/include/linux/net.h index 4a9a30f2d68f..6dc14a240042 100644 --- a/include/linux/net.h +++ b/include/linux/net.h | |||
| @@ -18,16 +18,9 @@ | |||
| 18 | #ifndef _LINUX_NET_H | 18 | #ifndef _LINUX_NET_H |
| 19 | #define _LINUX_NET_H | 19 | #define _LINUX_NET_H |
| 20 | 20 | ||
| 21 | #include <linux/wait.h> | ||
| 22 | #include <linux/socket.h> | 21 | #include <linux/socket.h> |
| 23 | #include <linux/fcntl.h> /* For O_CLOEXEC and O_NONBLOCK */ | ||
| 24 | #include <asm/socket.h> | 22 | #include <asm/socket.h> |
| 25 | 23 | ||
| 26 | struct poll_table_struct; | ||
| 27 | struct pipe_inode_info; | ||
| 28 | struct inode; | ||
| 29 | struct net; | ||
| 30 | |||
| 31 | #define NPROTO AF_MAX | 24 | #define NPROTO AF_MAX |
| 32 | 25 | ||
| 33 | #define SYS_SOCKET 1 /* sys_socket(2) */ | 26 | #define SYS_SOCKET 1 /* sys_socket(2) */ |
| @@ -62,6 +55,13 @@ typedef enum { | |||
| 62 | #ifdef __KERNEL__ | 55 | #ifdef __KERNEL__ |
| 63 | #include <linux/stringify.h> | 56 | #include <linux/stringify.h> |
| 64 | #include <linux/random.h> | 57 | #include <linux/random.h> |
| 58 | #include <linux/wait.h> | ||
| 59 | #include <linux/fcntl.h> /* For O_CLOEXEC and O_NONBLOCK */ | ||
| 60 | |||
| 61 | struct poll_table_struct; | ||
| 62 | struct pipe_inode_info; | ||
| 63 | struct inode; | ||
| 64 | struct net; | ||
| 65 | 65 | ||
| 66 | #define SOCK_ASYNC_NOSPACE 0 | 66 | #define SOCK_ASYNC_NOSPACE 0 |
| 67 | #define SOCK_ASYNC_WAITDATA 1 | 67 | #define SOCK_ASYNC_WAITDATA 1 |
diff --git a/include/linux/stop_machine.h b/include/linux/stop_machine.h index f1cb0ba6d715..faf1519b5adc 100644 --- a/include/linux/stop_machine.h +++ b/include/linux/stop_machine.h | |||
| @@ -3,16 +3,13 @@ | |||
| 3 | /* "Bogolock": stop the entire machine, disable interrupts. This is a | 3 | /* "Bogolock": stop the entire machine, disable interrupts. This is a |
| 4 | very heavy lock, which is equivalent to grabbing every spinlock | 4 | very heavy lock, which is equivalent to grabbing every spinlock |
| 5 | (and more). So the "read" side to such a lock is anything which | 5 | (and more). So the "read" side to such a lock is anything which |
| 6 | diables preeempt. */ | 6 | disables preeempt. */ |
| 7 | #include <linux/cpu.h> | 7 | #include <linux/cpu.h> |
| 8 | #include <linux/cpumask.h> | 8 | #include <linux/cpumask.h> |
| 9 | #include <asm/system.h> | 9 | #include <asm/system.h> |
| 10 | 10 | ||
| 11 | #if defined(CONFIG_STOP_MACHINE) && defined(CONFIG_SMP) | 11 | #if defined(CONFIG_STOP_MACHINE) && defined(CONFIG_SMP) |
| 12 | 12 | ||
| 13 | /* Deprecated, but useful for transition. */ | ||
| 14 | #define ALL_CPUS ~0U | ||
| 15 | |||
| 16 | /** | 13 | /** |
| 17 | * stop_machine: freeze the machine on all CPUs and run this function | 14 | * stop_machine: freeze the machine on all CPUs and run this function |
| 18 | * @fn: the function to run | 15 | * @fn: the function to run |
| @@ -50,18 +47,4 @@ static inline int stop_machine(int (*fn)(void *), void *data, | |||
| 50 | return ret; | 47 | return ret; |
| 51 | } | 48 | } |
| 52 | #endif /* CONFIG_SMP */ | 49 | #endif /* CONFIG_SMP */ |
| 53 | |||
| 54 | static inline int __deprecated stop_machine_run(int (*fn)(void *), void *data, | ||
| 55 | unsigned int cpu) | ||
| 56 | { | ||
| 57 | /* If they don't care which cpu fn runs on, just pick one. */ | ||
| 58 | if (cpu == NR_CPUS) | ||
| 59 | return stop_machine(fn, data, NULL); | ||
| 60 | else if (cpu == ~0U) | ||
| 61 | return stop_machine(fn, data, &cpu_possible_map); | ||
| 62 | else { | ||
| 63 | cpumask_t cpus = cpumask_of_cpu(cpu); | ||
| 64 | return stop_machine(fn, data, &cpus); | ||
| 65 | } | ||
| 66 | } | ||
| 67 | #endif /* _LINUX_STOP_MACHINE */ | 50 | #endif /* _LINUX_STOP_MACHINE */ |
diff --git a/kernel/module.c b/kernel/module.c index 08864d257eb0..9db11911e04b 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
| @@ -1799,7 +1799,7 @@ static void *module_alloc_update_bounds(unsigned long size) | |||
| 1799 | 1799 | ||
| 1800 | /* Allocate and load the module: note that size of section 0 is always | 1800 | /* Allocate and load the module: note that size of section 0 is always |
| 1801 | zero, and we rely on this for optional sections. */ | 1801 | zero, and we rely on this for optional sections. */ |
| 1802 | static struct module *load_module(void __user *umod, | 1802 | static noinline struct module *load_module(void __user *umod, |
| 1803 | unsigned long len, | 1803 | unsigned long len, |
| 1804 | const char __user *uargs) | 1804 | const char __user *uargs) |
| 1805 | { | 1805 | { |
diff --git a/kernel/power/main.c b/kernel/power/main.c index 0b7476f5d2a6..540b16b68565 100644 --- a/kernel/power/main.c +++ b/kernel/power/main.c | |||
| @@ -21,6 +21,7 @@ | |||
| 21 | #include <linux/freezer.h> | 21 | #include <linux/freezer.h> |
| 22 | #include <linux/vmstat.h> | 22 | #include <linux/vmstat.h> |
| 23 | #include <linux/syscalls.h> | 23 | #include <linux/syscalls.h> |
| 24 | #include <linux/ftrace.h> | ||
| 24 | 25 | ||
| 25 | #include "power.h" | 26 | #include "power.h" |
| 26 | 27 | ||
| @@ -310,7 +311,7 @@ static int suspend_enter(suspend_state_t state) | |||
| 310 | */ | 311 | */ |
| 311 | int suspend_devices_and_enter(suspend_state_t state) | 312 | int suspend_devices_and_enter(suspend_state_t state) |
| 312 | { | 313 | { |
| 313 | int error; | 314 | int error, ftrace_save; |
| 314 | 315 | ||
| 315 | if (!suspend_ops) | 316 | if (!suspend_ops) |
| 316 | return -ENOSYS; | 317 | return -ENOSYS; |
| @@ -321,6 +322,7 @@ int suspend_devices_and_enter(suspend_state_t state) | |||
| 321 | goto Close; | 322 | goto Close; |
| 322 | } | 323 | } |
| 323 | suspend_console(); | 324 | suspend_console(); |
| 325 | ftrace_save = __ftrace_enabled_save(); | ||
| 324 | suspend_test_start(); | 326 | suspend_test_start(); |
| 325 | error = device_suspend(PMSG_SUSPEND); | 327 | error = device_suspend(PMSG_SUSPEND); |
| 326 | if (error) { | 328 | if (error) { |
| @@ -352,6 +354,7 @@ int suspend_devices_and_enter(suspend_state_t state) | |||
| 352 | suspend_test_start(); | 354 | suspend_test_start(); |
| 353 | device_resume(PMSG_RESUME); | 355 | device_resume(PMSG_RESUME); |
| 354 | suspend_test_finish("resume devices"); | 356 | suspend_test_finish("resume devices"); |
| 357 | __ftrace_enabled_restore(ftrace_save); | ||
| 355 | resume_console(); | 358 | resume_console(); |
| 356 | Close: | 359 | Close: |
| 357 | if (suspend_ops->end) | 360 | if (suspend_ops->end) |
diff --git a/kernel/sched_clock.c b/kernel/sched_clock.c index 204991a0bfa7..e8ab096ddfe3 100644 --- a/kernel/sched_clock.c +++ b/kernel/sched_clock.c | |||
| @@ -12,19 +12,17 @@ | |||
| 12 | * | 12 | * |
| 13 | * Create a semi stable clock from a mixture of other events, including: | 13 | * Create a semi stable clock from a mixture of other events, including: |
| 14 | * - gtod | 14 | * - gtod |
| 15 | * - jiffies | ||
| 16 | * - sched_clock() | 15 | * - sched_clock() |
| 17 | * - explicit idle events | 16 | * - explicit idle events |
| 18 | * | 17 | * |
| 19 | * We use gtod as base and the unstable clock deltas. The deltas are filtered, | 18 | * We use gtod as base and the unstable clock deltas. The deltas are filtered, |
| 20 | * making it monotonic and keeping it within an expected window. This window | 19 | * making it monotonic and keeping it within an expected window. |
| 21 | * is set up using jiffies. | ||
| 22 | * | 20 | * |
| 23 | * Furthermore, explicit sleep and wakeup hooks allow us to account for time | 21 | * Furthermore, explicit sleep and wakeup hooks allow us to account for time |
| 24 | * that is otherwise invisible (TSC gets stopped). | 22 | * that is otherwise invisible (TSC gets stopped). |
| 25 | * | 23 | * |
| 26 | * The clock: sched_clock_cpu() is monotonic per cpu, and should be somewhat | 24 | * The clock: sched_clock_cpu() is monotonic per cpu, and should be somewhat |
| 27 | * consistent between cpus (never more than 1 jiffies difference). | 25 | * consistent between cpus (never more than 2 jiffies difference). |
| 28 | */ | 26 | */ |
| 29 | #include <linux/sched.h> | 27 | #include <linux/sched.h> |
| 30 | #include <linux/percpu.h> | 28 | #include <linux/percpu.h> |
| @@ -54,7 +52,6 @@ struct sched_clock_data { | |||
| 54 | */ | 52 | */ |
| 55 | raw_spinlock_t lock; | 53 | raw_spinlock_t lock; |
| 56 | 54 | ||
| 57 | unsigned long tick_jiffies; | ||
| 58 | u64 tick_raw; | 55 | u64 tick_raw; |
| 59 | u64 tick_gtod; | 56 | u64 tick_gtod; |
| 60 | u64 clock; | 57 | u64 clock; |
| @@ -75,14 +72,12 @@ static inline struct sched_clock_data *cpu_sdc(int cpu) | |||
| 75 | void sched_clock_init(void) | 72 | void sched_clock_init(void) |
| 76 | { | 73 | { |
| 77 | u64 ktime_now = ktime_to_ns(ktime_get()); | 74 | u64 ktime_now = ktime_to_ns(ktime_get()); |
| 78 | unsigned long now_jiffies = jiffies; | ||
| 79 | int cpu; | 75 | int cpu; |
| 80 | 76 | ||
| 81 | for_each_possible_cpu(cpu) { | 77 | for_each_possible_cpu(cpu) { |
| 82 | struct sched_clock_data *scd = cpu_sdc(cpu); | 78 | struct sched_clock_data *scd = cpu_sdc(cpu); |
| 83 | 79 | ||
| 84 | scd->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED; | 80 | scd->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED; |
| 85 | scd->tick_jiffies = now_jiffies; | ||
| 86 | scd->tick_raw = 0; | 81 | scd->tick_raw = 0; |
| 87 | scd->tick_gtod = ktime_now; | 82 | scd->tick_gtod = ktime_now; |
| 88 | scd->clock = ktime_now; | 83 | scd->clock = ktime_now; |
| @@ -92,46 +87,51 @@ void sched_clock_init(void) | |||
| 92 | } | 87 | } |
| 93 | 88 | ||
| 94 | /* | 89 | /* |
| 90 | * min,max except they take wrapping into account | ||
| 91 | */ | ||
| 92 | |||
| 93 | static inline u64 wrap_min(u64 x, u64 y) | ||
| 94 | { | ||
| 95 | return (s64)(x - y) < 0 ? x : y; | ||
| 96 | } | ||
| 97 | |||
| 98 | static inline u64 wrap_max(u64 x, u64 y) | ||
| 99 | { | ||
| 100 | return (s64)(x - y) > 0 ? x : y; | ||
| 101 | } | ||
| 102 | |||
| 103 | /* | ||
| 95 | * update the percpu scd from the raw @now value | 104 | * update the percpu scd from the raw @now value |
| 96 | * | 105 | * |
| 97 | * - filter out backward motion | 106 | * - filter out backward motion |
| 98 | * - use jiffies to generate a min,max window to clip the raw values | 107 | * - use the GTOD tick value to create a window to filter crazy TSC values |
| 99 | */ | 108 | */ |
| 100 | static u64 __update_sched_clock(struct sched_clock_data *scd, u64 now) | 109 | static u64 __update_sched_clock(struct sched_clock_data *scd, u64 now) |
| 101 | { | 110 | { |
| 102 | unsigned long now_jiffies = jiffies; | ||
| 103 | long delta_jiffies = now_jiffies - scd->tick_jiffies; | ||
| 104 | u64 clock = scd->clock; | ||
| 105 | u64 min_clock, max_clock; | ||
| 106 | s64 delta = now - scd->tick_raw; | 111 | s64 delta = now - scd->tick_raw; |
| 112 | u64 clock, min_clock, max_clock; | ||
| 107 | 113 | ||
| 108 | WARN_ON_ONCE(!irqs_disabled()); | 114 | WARN_ON_ONCE(!irqs_disabled()); |
| 109 | min_clock = scd->tick_gtod + delta_jiffies * TICK_NSEC; | ||
| 110 | 115 | ||
| 111 | if (unlikely(delta < 0)) { | 116 | if (unlikely(delta < 0)) |
| 112 | clock++; | 117 | delta = 0; |
| 113 | goto out; | ||
| 114 | } | ||
| 115 | 118 | ||
| 116 | max_clock = min_clock + TICK_NSEC; | 119 | /* |
| 120 | * scd->clock = clamp(scd->tick_gtod + delta, | ||
| 121 | * max(scd->tick_gtod, scd->clock), | ||
| 122 | * scd->tick_gtod + TICK_NSEC); | ||
| 123 | */ | ||
| 117 | 124 | ||
| 118 | if (unlikely(clock + delta > max_clock)) { | 125 | clock = scd->tick_gtod + delta; |
| 119 | if (clock < max_clock) | 126 | min_clock = wrap_max(scd->tick_gtod, scd->clock); |
| 120 | clock = max_clock; | 127 | max_clock = scd->tick_gtod + TICK_NSEC; |
| 121 | else | ||
| 122 | clock++; | ||
| 123 | } else { | ||
| 124 | clock += delta; | ||
| 125 | } | ||
| 126 | 128 | ||
| 127 | out: | 129 | clock = wrap_max(clock, min_clock); |
| 128 | if (unlikely(clock < min_clock)) | 130 | clock = wrap_min(clock, max_clock); |
| 129 | clock = min_clock; | ||
| 130 | 131 | ||
| 131 | scd->tick_jiffies = now_jiffies; | ||
| 132 | scd->clock = clock; | 132 | scd->clock = clock; |
| 133 | 133 | ||
| 134 | return clock; | 134 | return scd->clock; |
| 135 | } | 135 | } |
| 136 | 136 | ||
| 137 | static void lock_double_clock(struct sched_clock_data *data1, | 137 | static void lock_double_clock(struct sched_clock_data *data1, |
| @@ -171,7 +171,7 @@ u64 sched_clock_cpu(int cpu) | |||
| 171 | * larger time as the latest time for both | 171 | * larger time as the latest time for both |
| 172 | * runqueues. (this creates monotonic movement) | 172 | * runqueues. (this creates monotonic movement) |
| 173 | */ | 173 | */ |
| 174 | if (likely(remote_clock < this_clock)) { | 174 | if (likely((s64)(remote_clock - this_clock) < 0)) { |
| 175 | clock = this_clock; | 175 | clock = this_clock; |
| 176 | scd->clock = clock; | 176 | scd->clock = clock; |
| 177 | } else { | 177 | } else { |
| @@ -207,14 +207,9 @@ void sched_clock_tick(void) | |||
| 207 | now = sched_clock(); | 207 | now = sched_clock(); |
| 208 | 208 | ||
| 209 | __raw_spin_lock(&scd->lock); | 209 | __raw_spin_lock(&scd->lock); |
| 210 | __update_sched_clock(scd, now); | ||
| 211 | /* | ||
| 212 | * update tick_gtod after __update_sched_clock() because that will | ||
| 213 | * already observe 1 new jiffy; adding a new tick_gtod to that would | ||
| 214 | * increase the clock 2 jiffies. | ||
| 215 | */ | ||
| 216 | scd->tick_raw = now; | 210 | scd->tick_raw = now; |
| 217 | scd->tick_gtod = now_gtod; | 211 | scd->tick_gtod = now_gtod; |
| 212 | __update_sched_clock(scd, now); | ||
| 218 | __raw_spin_unlock(&scd->lock); | 213 | __raw_spin_unlock(&scd->lock); |
| 219 | } | 214 | } |
| 220 | 215 | ||
| @@ -232,18 +227,7 @@ EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event); | |||
| 232 | */ | 227 | */ |
| 233 | void sched_clock_idle_wakeup_event(u64 delta_ns) | 228 | void sched_clock_idle_wakeup_event(u64 delta_ns) |
| 234 | { | 229 | { |
| 235 | struct sched_clock_data *scd = this_scd(); | 230 | sched_clock_tick(); |
| 236 | |||
| 237 | /* | ||
| 238 | * Override the previous timestamp and ignore all | ||
| 239 | * sched_clock() deltas that occured while we idled, | ||
| 240 | * and use the PM-provided delta_ns to advance the | ||
| 241 | * rq clock: | ||
| 242 | */ | ||
| 243 | __raw_spin_lock(&scd->lock); | ||
| 244 | scd->clock += delta_ns; | ||
| 245 | __raw_spin_unlock(&scd->lock); | ||
| 246 | |||
| 247 | touch_softlockup_watchdog(); | 231 | touch_softlockup_watchdog(); |
| 248 | } | 232 | } |
| 249 | EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event); | 233 | EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event); |
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index cca921ea8550..e91bafeb32f4 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c | |||
| @@ -3116,14 +3116,23 @@ static ctl_table ipv4_route_table[] = { | |||
| 3116 | { .ctl_name = 0 } | 3116 | { .ctl_name = 0 } |
| 3117 | }; | 3117 | }; |
| 3118 | 3118 | ||
| 3119 | static __net_initdata struct ctl_path ipv4_route_path[] = { | 3119 | static struct ctl_table empty[1]; |
| 3120 | |||
| 3121 | static struct ctl_table ipv4_skeleton[] = | ||
| 3122 | { | ||
| 3123 | { .procname = "route", .ctl_name = NET_IPV4_ROUTE, | ||
| 3124 | .child = ipv4_route_table}, | ||
| 3125 | { .procname = "neigh", .ctl_name = NET_IPV4_NEIGH, | ||
| 3126 | .child = empty}, | ||
| 3127 | { } | ||
| 3128 | }; | ||
| 3129 | |||
| 3130 | static __net_initdata struct ctl_path ipv4_path[] = { | ||
| 3120 | { .procname = "net", .ctl_name = CTL_NET, }, | 3131 | { .procname = "net", .ctl_name = CTL_NET, }, |
| 3121 | { .procname = "ipv4", .ctl_name = NET_IPV4, }, | 3132 | { .procname = "ipv4", .ctl_name = NET_IPV4, }, |
| 3122 | { .procname = "route", .ctl_name = NET_IPV4_ROUTE, }, | ||
| 3123 | { }, | 3133 | { }, |
| 3124 | }; | 3134 | }; |
| 3125 | 3135 | ||
| 3126 | |||
| 3127 | static struct ctl_table ipv4_route_flush_table[] = { | 3136 | static struct ctl_table ipv4_route_flush_table[] = { |
| 3128 | { | 3137 | { |
| 3129 | .ctl_name = NET_IPV4_ROUTE_FLUSH, | 3138 | .ctl_name = NET_IPV4_ROUTE_FLUSH, |
| @@ -3136,6 +3145,13 @@ static struct ctl_table ipv4_route_flush_table[] = { | |||
| 3136 | { .ctl_name = 0 }, | 3145 | { .ctl_name = 0 }, |
| 3137 | }; | 3146 | }; |
| 3138 | 3147 | ||
| 3148 | static __net_initdata struct ctl_path ipv4_route_path[] = { | ||
| 3149 | { .procname = "net", .ctl_name = CTL_NET, }, | ||
| 3150 | { .procname = "ipv4", .ctl_name = NET_IPV4, }, | ||
| 3151 | { .procname = "route", .ctl_name = NET_IPV4_ROUTE, }, | ||
| 3152 | { }, | ||
| 3153 | }; | ||
| 3154 | |||
| 3139 | static __net_init int sysctl_route_net_init(struct net *net) | 3155 | static __net_init int sysctl_route_net_init(struct net *net) |
| 3140 | { | 3156 | { |
| 3141 | struct ctl_table *tbl; | 3157 | struct ctl_table *tbl; |
| @@ -3287,7 +3303,7 @@ int __init ip_rt_init(void) | |||
| 3287 | */ | 3303 | */ |
| 3288 | void __init ip_static_sysctl_init(void) | 3304 | void __init ip_static_sysctl_init(void) |
| 3289 | { | 3305 | { |
| 3290 | register_sysctl_paths(ipv4_route_path, ipv4_route_table); | 3306 | register_sysctl_paths(ipv4_path, ipv4_skeleton); |
| 3291 | } | 3307 | } |
| 3292 | #endif | 3308 | #endif |
| 3293 | 3309 | ||
diff --git a/net/ipv6/sysctl_net_ipv6.c b/net/ipv6/sysctl_net_ipv6.c index e6dfaeac6be3..587f8f60c489 100644 --- a/net/ipv6/sysctl_net_ipv6.c +++ b/net/ipv6/sysctl_net_ipv6.c | |||
| @@ -156,7 +156,7 @@ static struct ctl_table_header *ip6_base; | |||
| 156 | int ipv6_static_sysctl_register(void) | 156 | int ipv6_static_sysctl_register(void) |
| 157 | { | 157 | { |
| 158 | static struct ctl_table empty[1]; | 158 | static struct ctl_table empty[1]; |
| 159 | ip6_base = register_net_sysctl_rotable(net_ipv6_ctl_path, empty); | 159 | ip6_base = register_sysctl_paths(net_ipv6_ctl_path, empty); |
| 160 | if (ip6_base == NULL) | 160 | if (ip6_base == NULL) |
| 161 | return -ENOMEM; | 161 | return -ENOMEM; |
| 162 | return 0; | 162 | return 0; |
diff --git a/net/sctp/auth.c b/net/sctp/auth.c index 675a5c3e68a6..1fcb4cf2f4c9 100644 --- a/net/sctp/auth.c +++ b/net/sctp/auth.c | |||
| @@ -80,6 +80,10 @@ static struct sctp_auth_bytes *sctp_auth_create_key(__u32 key_len, gfp_t gfp) | |||
| 80 | { | 80 | { |
| 81 | struct sctp_auth_bytes *key; | 81 | struct sctp_auth_bytes *key; |
| 82 | 82 | ||
| 83 | /* Verify that we are not going to overflow INT_MAX */ | ||
| 84 | if ((INT_MAX - key_len) < sizeof(struct sctp_auth_bytes)) | ||
| 85 | return NULL; | ||
| 86 | |||
| 83 | /* Allocate the shared key */ | 87 | /* Allocate the shared key */ |
| 84 | key = kmalloc(sizeof(struct sctp_auth_bytes) + key_len, gfp); | 88 | key = kmalloc(sizeof(struct sctp_auth_bytes) + key_len, gfp); |
| 85 | if (!key) | 89 | if (!key) |
diff --git a/net/sctp/socket.c b/net/sctp/socket.c index bb5c9ef13046..afa952e726d7 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c | |||
| @@ -3144,6 +3144,11 @@ static int sctp_setsockopt_auth_key(struct sock *sk, | |||
| 3144 | goto out; | 3144 | goto out; |
| 3145 | } | 3145 | } |
| 3146 | 3146 | ||
| 3147 | if (authkey->sca_keylength > optlen) { | ||
| 3148 | ret = -EINVAL; | ||
| 3149 | goto out; | ||
| 3150 | } | ||
| 3151 | |||
| 3147 | asoc = sctp_id2assoc(sk, authkey->sca_assoc_id); | 3152 | asoc = sctp_id2assoc(sk, authkey->sca_assoc_id); |
| 3148 | if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) { | 3153 | if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) { |
| 3149 | ret = -EINVAL; | 3154 | ret = -EINVAL; |
diff --git a/sound/pci/ca0106/ca0106_main.c b/sound/pci/ca0106/ca0106_main.c index 2f8b28add276..6abe8a3bd365 100644 --- a/sound/pci/ca0106/ca0106_main.c +++ b/sound/pci/ca0106/ca0106_main.c | |||
| @@ -249,11 +249,12 @@ static struct snd_ca0106_details ca0106_chip_details[] = { | |||
| 249 | .name = "MSI K8N Diamond MB [SB0438]", | 249 | .name = "MSI K8N Diamond MB [SB0438]", |
| 250 | .gpio_type = 2, | 250 | .gpio_type = 2, |
| 251 | .i2c_adc = 1 } , | 251 | .i2c_adc = 1 } , |
| 252 | /* Another MSI K8N Diamond MB, which has apprently a different SSID */ | 252 | /* MSI K8N Diamond PLUS MB */ |
| 253 | { .serial = 0x10091102, | 253 | { .serial = 0x10091102, |
| 254 | .name = "MSI K8N Diamond MB", | 254 | .name = "MSI K8N Diamond MB", |
| 255 | .gpio_type = 2, | 255 | .gpio_type = 2, |
| 256 | .i2c_adc = 1 } , | 256 | .i2c_adc = 1, |
| 257 | .spi_dac = 2 }, | ||
| 257 | /* Shuttle XPC SD31P which has an onboard Creative Labs | 258 | /* Shuttle XPC SD31P which has an onboard Creative Labs |
| 258 | * Sound Blaster Live! 24-bit EAX | 259 | * Sound Blaster Live! 24-bit EAX |
| 259 | * high-definition 7.1 audio processor". | 260 | * high-definition 7.1 audio processor". |
diff --git a/sound/pci/oxygen/oxygen_mixer.c b/sound/pci/oxygen/oxygen_mixer.c index 6facac5aed90..05eb8994c141 100644 --- a/sound/pci/oxygen/oxygen_mixer.c +++ b/sound/pci/oxygen/oxygen_mixer.c | |||
| @@ -512,9 +512,12 @@ static int ac97_switch_get(struct snd_kcontrol *ctl, | |||
| 512 | 512 | ||
| 513 | static void mute_ac97_ctl(struct oxygen *chip, unsigned int control) | 513 | static void mute_ac97_ctl(struct oxygen *chip, unsigned int control) |
| 514 | { | 514 | { |
| 515 | unsigned int priv_idx = chip->controls[control]->private_value & 0xff; | 515 | unsigned int priv_idx; |
| 516 | u16 value; | 516 | u16 value; |
| 517 | 517 | ||
| 518 | if (!chip->controls[control]) | ||
| 519 | return; | ||
| 520 | priv_idx = chip->controls[control]->private_value & 0xff; | ||
| 518 | value = oxygen_read_ac97(chip, 0, priv_idx); | 521 | value = oxygen_read_ac97(chip, 0, priv_idx); |
| 519 | if (!(value & 0x8000)) { | 522 | if (!(value & 0x8000)) { |
| 520 | oxygen_write_ac97(chip, 0, priv_idx, value | 0x8000); | 523 | oxygen_write_ac97(chip, 0, priv_idx, value | 0x8000); |
diff --git a/sound/soc/codecs/ak4535.c b/sound/soc/codecs/ak4535.c index b26003c4f3e8..7da9f467b7b8 100644 --- a/sound/soc/codecs/ak4535.c +++ b/sound/soc/codecs/ak4535.c | |||
| @@ -562,10 +562,9 @@ static int ak4535_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 562 | client_template.addr = addr; | 562 | client_template.addr = addr; |
| 563 | 563 | ||
| 564 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); | 564 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); |
| 565 | if (i2c == NULL) { | 565 | if (i2c == NULL) |
| 566 | kfree(codec); | ||
| 567 | return -ENOMEM; | 566 | return -ENOMEM; |
| 568 | } | 567 | |
| 569 | i2c_set_clientdata(i2c, codec); | 568 | i2c_set_clientdata(i2c, codec); |
| 570 | codec->control_data = i2c; | 569 | codec->control_data = i2c; |
| 571 | 570 | ||
| @@ -583,7 +582,6 @@ static int ak4535_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 583 | return ret; | 582 | return ret; |
| 584 | 583 | ||
| 585 | err: | 584 | err: |
| 586 | kfree(codec); | ||
| 587 | kfree(i2c); | 585 | kfree(i2c); |
| 588 | return ret; | 586 | return ret; |
| 589 | } | 587 | } |
| @@ -660,6 +658,11 @@ static int ak4535_probe(struct platform_device *pdev) | |||
| 660 | #else | 658 | #else |
| 661 | /* Add other interfaces here */ | 659 | /* Add other interfaces here */ |
| 662 | #endif | 660 | #endif |
| 661 | |||
| 662 | if (ret != 0) { | ||
| 663 | kfree(codec->private_data); | ||
| 664 | kfree(codec); | ||
| 665 | } | ||
| 663 | return ret; | 666 | return ret; |
| 664 | } | 667 | } |
| 665 | 668 | ||
diff --git a/sound/soc/codecs/tlv320aic3x.c b/sound/soc/codecs/tlv320aic3x.c index b1dce5f459db..5f9abb199435 100644 --- a/sound/soc/codecs/tlv320aic3x.c +++ b/sound/soc/codecs/tlv320aic3x.c | |||
| @@ -1199,10 +1199,9 @@ static int aic3x_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 1199 | client_template.addr = addr; | 1199 | client_template.addr = addr; |
| 1200 | 1200 | ||
| 1201 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); | 1201 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); |
| 1202 | if (i2c == NULL) { | 1202 | if (i2c == NULL) |
| 1203 | kfree(codec); | ||
| 1204 | return -ENOMEM; | 1203 | return -ENOMEM; |
| 1205 | } | 1204 | |
| 1206 | i2c_set_clientdata(i2c, codec); | 1205 | i2c_set_clientdata(i2c, codec); |
| 1207 | codec->control_data = i2c; | 1206 | codec->control_data = i2c; |
| 1208 | 1207 | ||
| @@ -1221,7 +1220,6 @@ static int aic3x_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 1221 | return ret; | 1220 | return ret; |
| 1222 | 1221 | ||
| 1223 | err: | 1222 | err: |
| 1224 | kfree(codec); | ||
| 1225 | kfree(i2c); | 1223 | kfree(i2c); |
| 1226 | return ret; | 1224 | return ret; |
| 1227 | } | 1225 | } |
| @@ -1302,6 +1300,11 @@ static int aic3x_probe(struct platform_device *pdev) | |||
| 1302 | #else | 1300 | #else |
| 1303 | /* Add other interfaces here */ | 1301 | /* Add other interfaces here */ |
| 1304 | #endif | 1302 | #endif |
| 1303 | |||
| 1304 | if (ret != 0) { | ||
| 1305 | kfree(codec->private_data); | ||
| 1306 | kfree(codec); | ||
| 1307 | } | ||
| 1305 | return ret; | 1308 | return ret; |
| 1306 | } | 1309 | } |
| 1307 | 1310 | ||
diff --git a/sound/soc/codecs/uda1380.c b/sound/soc/codecs/uda1380.c index a52d6d9e007a..807318fbdc8f 100644 --- a/sound/soc/codecs/uda1380.c +++ b/sound/soc/codecs/uda1380.c | |||
| @@ -729,10 +729,9 @@ static int uda1380_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 729 | client_template.addr = addr; | 729 | client_template.addr = addr; |
| 730 | 730 | ||
| 731 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); | 731 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); |
| 732 | if (i2c == NULL) { | 732 | if (i2c == NULL) |
| 733 | kfree(codec); | ||
| 734 | return -ENOMEM; | 733 | return -ENOMEM; |
| 735 | } | 734 | |
| 736 | i2c_set_clientdata(i2c, codec); | 735 | i2c_set_clientdata(i2c, codec); |
| 737 | codec->control_data = i2c; | 736 | codec->control_data = i2c; |
| 738 | 737 | ||
| @@ -750,7 +749,6 @@ static int uda1380_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 750 | return ret; | 749 | return ret; |
| 751 | 750 | ||
| 752 | err: | 751 | err: |
| 753 | kfree(codec); | ||
| 754 | kfree(i2c); | 752 | kfree(i2c); |
| 755 | return ret; | 753 | return ret; |
| 756 | } | 754 | } |
| @@ -817,6 +815,9 @@ static int uda1380_probe(struct platform_device *pdev) | |||
| 817 | #else | 815 | #else |
| 818 | /* Add other interfaces here */ | 816 | /* Add other interfaces here */ |
| 819 | #endif | 817 | #endif |
| 818 | |||
| 819 | if (ret != 0) | ||
| 820 | kfree(codec); | ||
| 820 | return ret; | 821 | return ret; |
| 821 | } | 822 | } |
| 822 | 823 | ||
diff --git a/sound/soc/codecs/wm8510.c b/sound/soc/codecs/wm8510.c index 67325fd95447..3d998e6a997e 100644 --- a/sound/soc/codecs/wm8510.c +++ b/sound/soc/codecs/wm8510.c | |||
| @@ -693,10 +693,9 @@ static int wm8510_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 693 | client_template.addr = addr; | 693 | client_template.addr = addr; |
| 694 | 694 | ||
| 695 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); | 695 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); |
| 696 | if (i2c == NULL) { | 696 | if (i2c == NULL) |
| 697 | kfree(codec); | ||
| 698 | return -ENOMEM; | 697 | return -ENOMEM; |
| 699 | } | 698 | |
| 700 | i2c_set_clientdata(i2c, codec); | 699 | i2c_set_clientdata(i2c, codec); |
| 701 | codec->control_data = i2c; | 700 | codec->control_data = i2c; |
| 702 | 701 | ||
| @@ -714,7 +713,6 @@ static int wm8510_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 714 | return ret; | 713 | return ret; |
| 715 | 714 | ||
| 716 | err: | 715 | err: |
| 717 | kfree(codec); | ||
| 718 | kfree(i2c); | 716 | kfree(i2c); |
| 719 | return ret; | 717 | return ret; |
| 720 | } | 718 | } |
| @@ -782,6 +780,9 @@ static int wm8510_probe(struct platform_device *pdev) | |||
| 782 | #else | 780 | #else |
| 783 | /* Add other interfaces here */ | 781 | /* Add other interfaces here */ |
| 784 | #endif | 782 | #endif |
| 783 | |||
| 784 | if (ret != 0) | ||
| 785 | kfree(codec); | ||
| 785 | return ret; | 786 | return ret; |
| 786 | } | 787 | } |
| 787 | 788 | ||
diff --git a/sound/soc/codecs/wm8731.c b/sound/soc/codecs/wm8731.c index 369d39c3f745..9402fcaf04fa 100644 --- a/sound/soc/codecs/wm8731.c +++ b/sound/soc/codecs/wm8731.c | |||
| @@ -596,10 +596,9 @@ static int wm8731_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 596 | client_template.addr = addr; | 596 | client_template.addr = addr; |
| 597 | 597 | ||
| 598 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); | 598 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); |
| 599 | if (i2c == NULL) { | 599 | if (i2c == NULL) |
| 600 | kfree(codec); | ||
| 601 | return -ENOMEM; | 600 | return -ENOMEM; |
| 602 | } | 601 | |
| 603 | i2c_set_clientdata(i2c, codec); | 602 | i2c_set_clientdata(i2c, codec); |
| 604 | codec->control_data = i2c; | 603 | codec->control_data = i2c; |
| 605 | 604 | ||
| @@ -617,7 +616,6 @@ static int wm8731_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 617 | return ret; | 616 | return ret; |
| 618 | 617 | ||
| 619 | err: | 618 | err: |
| 620 | kfree(codec); | ||
| 621 | kfree(i2c); | 619 | kfree(i2c); |
| 622 | return ret; | 620 | return ret; |
| 623 | } | 621 | } |
| @@ -693,6 +691,11 @@ static int wm8731_probe(struct platform_device *pdev) | |||
| 693 | #else | 691 | #else |
| 694 | /* Add other interfaces here */ | 692 | /* Add other interfaces here */ |
| 695 | #endif | 693 | #endif |
| 694 | |||
| 695 | if (ret != 0) { | ||
| 696 | kfree(codec->private_data); | ||
| 697 | kfree(codec); | ||
| 698 | } | ||
| 696 | return ret; | 699 | return ret; |
| 697 | } | 700 | } |
| 698 | 701 | ||
diff --git a/sound/soc/codecs/wm8750.c b/sound/soc/codecs/wm8750.c index c6a8edf302ad..dd1f55404b29 100644 --- a/sound/soc/codecs/wm8750.c +++ b/sound/soc/codecs/wm8750.c | |||
| @@ -869,10 +869,9 @@ static int wm8750_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 869 | client_template.addr = addr; | 869 | client_template.addr = addr; |
| 870 | 870 | ||
| 871 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); | 871 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); |
| 872 | if (i2c == NULL) { | 872 | if (i2c == NULL) |
| 873 | kfree(codec); | ||
| 874 | return -ENOMEM; | 873 | return -ENOMEM; |
| 875 | } | 874 | |
| 876 | i2c_set_clientdata(i2c, codec); | 875 | i2c_set_clientdata(i2c, codec); |
| 877 | codec->control_data = i2c; | 876 | codec->control_data = i2c; |
| 878 | 877 | ||
| @@ -890,7 +889,6 @@ static int wm8750_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 890 | return ret; | 889 | return ret; |
| 891 | 890 | ||
| 892 | err: | 891 | err: |
| 893 | kfree(codec); | ||
| 894 | kfree(i2c); | 892 | kfree(i2c); |
| 895 | return ret; | 893 | return ret; |
| 896 | } | 894 | } |
| @@ -966,6 +964,10 @@ static int wm8750_probe(struct platform_device *pdev) | |||
| 966 | /* Add other interfaces here */ | 964 | /* Add other interfaces here */ |
| 967 | #endif | 965 | #endif |
| 968 | 966 | ||
| 967 | if (ret != 0) { | ||
| 968 | kfree(codec->private_data); | ||
| 969 | kfree(codec); | ||
| 970 | } | ||
| 969 | return ret; | 971 | return ret; |
| 970 | } | 972 | } |
| 971 | 973 | ||
diff --git a/sound/soc/codecs/wm8753.c b/sound/soc/codecs/wm8753.c index dc7b18fd2782..5761164fe16d 100644 --- a/sound/soc/codecs/wm8753.c +++ b/sound/soc/codecs/wm8753.c | |||
| @@ -1660,10 +1660,9 @@ static int wm8753_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 1660 | client_template.addr = addr; | 1660 | client_template.addr = addr; |
| 1661 | 1661 | ||
| 1662 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); | 1662 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); |
| 1663 | if (!i2c) { | 1663 | if (!i2c) |
| 1664 | kfree(codec); | ||
| 1665 | return -ENOMEM; | 1664 | return -ENOMEM; |
| 1666 | } | 1665 | |
| 1667 | i2c_set_clientdata(i2c, codec); | 1666 | i2c_set_clientdata(i2c, codec); |
| 1668 | codec->control_data = i2c; | 1667 | codec->control_data = i2c; |
| 1669 | 1668 | ||
| @@ -1682,7 +1681,6 @@ static int wm8753_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 1682 | return ret; | 1681 | return ret; |
| 1683 | 1682 | ||
| 1684 | err: | 1683 | err: |
| 1685 | kfree(codec); | ||
| 1686 | kfree(i2c); | 1684 | kfree(i2c); |
| 1687 | return ret; | 1685 | return ret; |
| 1688 | } | 1686 | } |
| @@ -1759,6 +1757,11 @@ static int wm8753_probe(struct platform_device *pdev) | |||
| 1759 | #else | 1757 | #else |
| 1760 | /* Add other interfaces here */ | 1758 | /* Add other interfaces here */ |
| 1761 | #endif | 1759 | #endif |
| 1760 | |||
| 1761 | if (ret != 0) { | ||
| 1762 | kfree(codec->private_data); | ||
| 1763 | kfree(codec); | ||
| 1764 | } | ||
| 1762 | return ret; | 1765 | return ret; |
| 1763 | } | 1766 | } |
| 1764 | 1767 | ||
diff --git a/sound/soc/codecs/wm8990.c b/sound/soc/codecs/wm8990.c index e44153fa38de..dd995ef448b4 100644 --- a/sound/soc/codecs/wm8990.c +++ b/sound/soc/codecs/wm8990.c | |||
| @@ -1500,10 +1500,9 @@ static int wm8990_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 1500 | client_template.addr = addr; | 1500 | client_template.addr = addr; |
| 1501 | 1501 | ||
| 1502 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); | 1502 | i2c = kmemdup(&client_template, sizeof(client_template), GFP_KERNEL); |
| 1503 | if (i2c == NULL) { | 1503 | if (i2c == NULL) |
| 1504 | kfree(codec); | ||
| 1505 | return -ENOMEM; | 1504 | return -ENOMEM; |
| 1506 | } | 1505 | |
| 1507 | i2c_set_clientdata(i2c, codec); | 1506 | i2c_set_clientdata(i2c, codec); |
| 1508 | codec->control_data = i2c; | 1507 | codec->control_data = i2c; |
| 1509 | 1508 | ||
| @@ -1521,7 +1520,6 @@ static int wm8990_codec_probe(struct i2c_adapter *adap, int addr, int kind) | |||
| 1521 | return ret; | 1520 | return ret; |
| 1522 | 1521 | ||
| 1523 | err: | 1522 | err: |
| 1524 | kfree(codec); | ||
| 1525 | kfree(i2c); | 1523 | kfree(i2c); |
| 1526 | return ret; | 1524 | return ret; |
| 1527 | } | 1525 | } |
| @@ -1595,6 +1593,11 @@ static int wm8990_probe(struct platform_device *pdev) | |||
| 1595 | #else | 1593 | #else |
| 1596 | /* Add other interfaces here */ | 1594 | /* Add other interfaces here */ |
| 1597 | #endif | 1595 | #endif |
| 1596 | |||
| 1597 | if (ret != 0) { | ||
| 1598 | kfree(codec->private_data); | ||
| 1599 | kfree(codec); | ||
| 1600 | } | ||
| 1598 | return ret; | 1601 | return ret; |
| 1599 | } | 1602 | } |
| 1600 | 1603 | ||
diff --git a/sound/soc/omap/n810.c b/sound/soc/omap/n810.c index 7694621ec40b..87d0ed01f65a 100644 --- a/sound/soc/omap/n810.c +++ b/sound/soc/omap/n810.c | |||
| @@ -329,12 +329,14 @@ static int __init n810_soc_init(void) | |||
| 329 | sys_clkout2_src = clk_get(dev, "sys_clkout2_src"); | 329 | sys_clkout2_src = clk_get(dev, "sys_clkout2_src"); |
| 330 | if (IS_ERR(sys_clkout2_src)) { | 330 | if (IS_ERR(sys_clkout2_src)) { |
| 331 | dev_err(dev, "Could not get sys_clkout2_src clock\n"); | 331 | dev_err(dev, "Could not get sys_clkout2_src clock\n"); |
| 332 | return -ENODEV; | 332 | err = PTR_ERR(sys_clkout2_src); |
| 333 | goto err2; | ||
| 333 | } | 334 | } |
| 334 | sys_clkout2 = clk_get(dev, "sys_clkout2"); | 335 | sys_clkout2 = clk_get(dev, "sys_clkout2"); |
| 335 | if (IS_ERR(sys_clkout2)) { | 336 | if (IS_ERR(sys_clkout2)) { |
| 336 | dev_err(dev, "Could not get sys_clkout2\n"); | 337 | dev_err(dev, "Could not get sys_clkout2\n"); |
| 337 | goto err1; | 338 | err = PTR_ERR(sys_clkout2); |
| 339 | goto err3; | ||
| 338 | } | 340 | } |
| 339 | /* | 341 | /* |
| 340 | * Configure 12 MHz output on SYS_CLKOUT2. Therefore we must use | 342 | * Configure 12 MHz output on SYS_CLKOUT2. Therefore we must use |
| @@ -343,7 +345,8 @@ static int __init n810_soc_init(void) | |||
| 343 | func96m_clk = clk_get(dev, "func_96m_ck"); | 345 | func96m_clk = clk_get(dev, "func_96m_ck"); |
| 344 | if (IS_ERR(func96m_clk)) { | 346 | if (IS_ERR(func96m_clk)) { |
| 345 | dev_err(dev, "Could not get func 96M clock\n"); | 347 | dev_err(dev, "Could not get func 96M clock\n"); |
| 346 | goto err2; | 348 | err = PTR_ERR(func96m_clk); |
| 349 | goto err4; | ||
| 347 | } | 350 | } |
| 348 | clk_set_parent(sys_clkout2_src, func96m_clk); | 351 | clk_set_parent(sys_clkout2_src, func96m_clk); |
| 349 | clk_set_rate(sys_clkout2, 12000000); | 352 | clk_set_rate(sys_clkout2, 12000000); |
| @@ -356,20 +359,25 @@ static int __init n810_soc_init(void) | |||
| 356 | gpio_direction_output(N810_SPEAKER_AMP_GPIO, 0); | 359 | gpio_direction_output(N810_SPEAKER_AMP_GPIO, 0); |
| 357 | 360 | ||
| 358 | return 0; | 361 | return 0; |
| 359 | err2: | 362 | err4: |
| 360 | clk_put(sys_clkout2); | 363 | clk_put(sys_clkout2); |
| 364 | err3: | ||
| 365 | clk_put(sys_clkout2_src); | ||
| 366 | err2: | ||
| 361 | platform_device_del(n810_snd_device); | 367 | platform_device_del(n810_snd_device); |
| 362 | err1: | 368 | err1: |
| 363 | platform_device_put(n810_snd_device); | 369 | platform_device_put(n810_snd_device); |
| 364 | 370 | ||
| 365 | return err; | 371 | return err; |
| 366 | |||
| 367 | } | 372 | } |
| 368 | 373 | ||
| 369 | static void __exit n810_soc_exit(void) | 374 | static void __exit n810_soc_exit(void) |
| 370 | { | 375 | { |
| 371 | gpio_free(N810_SPEAKER_AMP_GPIO); | 376 | gpio_free(N810_SPEAKER_AMP_GPIO); |
| 372 | gpio_free(N810_HEADSET_AMP_GPIO); | 377 | gpio_free(N810_HEADSET_AMP_GPIO); |
| 378 | clk_put(sys_clkout2_src); | ||
| 379 | clk_put(sys_clkout2); | ||
| 380 | clk_put(func96m_clk); | ||
| 373 | 381 | ||
| 374 | platform_device_unregister(n810_snd_device); | 382 | platform_device_unregister(n810_snd_device); |
| 375 | } | 383 | } |
