diff options
Diffstat (limited to 'arch')
94 files changed, 5500 insertions, 3049 deletions
diff --git a/arch/ia64/Makefile b/arch/ia64/Makefile index 88f1a55c6c94..e67ee3f27698 100644 --- a/arch/ia64/Makefile +++ b/arch/ia64/Makefile | |||
| @@ -57,6 +57,7 @@ core-$(CONFIG_IA64_GENERIC) += arch/ia64/dig/ | |||
| 57 | core-$(CONFIG_IA64_HP_ZX1) += arch/ia64/dig/ | 57 | core-$(CONFIG_IA64_HP_ZX1) += arch/ia64/dig/ |
| 58 | core-$(CONFIG_IA64_HP_ZX1_SWIOTLB) += arch/ia64/dig/ | 58 | core-$(CONFIG_IA64_HP_ZX1_SWIOTLB) += arch/ia64/dig/ |
| 59 | core-$(CONFIG_IA64_SGI_SN2) += arch/ia64/sn/ | 59 | core-$(CONFIG_IA64_SGI_SN2) += arch/ia64/sn/ |
| 60 | core-$(CONFIG_IA64_SGI_UV) += arch/ia64/uv/ | ||
| 60 | core-$(CONFIG_KVM) += arch/ia64/kvm/ | 61 | core-$(CONFIG_KVM) += arch/ia64/kvm/ |
| 61 | 62 | ||
| 62 | drivers-$(CONFIG_PCI) += arch/ia64/pci/ | 63 | drivers-$(CONFIG_PCI) += arch/ia64/pci/ |
diff --git a/arch/ia64/kernel/perfmon.c b/arch/ia64/kernel/perfmon.c index 71d05133f556..7714a97b0104 100644 --- a/arch/ia64/kernel/perfmon.c +++ b/arch/ia64/kernel/perfmon.c | |||
| @@ -1864,11 +1864,6 @@ pfm_flush(struct file *filp, fl_owner_t id) | |||
| 1864 | * invoked after, it will find an empty queue and no | 1864 | * invoked after, it will find an empty queue and no |
| 1865 | * signal will be sent. In both case, we are safe | 1865 | * signal will be sent. In both case, we are safe |
| 1866 | */ | 1866 | */ |
| 1867 | if (filp->f_flags & FASYNC) { | ||
| 1868 | DPRINT(("cleaning up async_queue=%p\n", ctx->ctx_async_queue)); | ||
| 1869 | pfm_do_fasync (-1, filp, ctx, 0); | ||
| 1870 | } | ||
| 1871 | |||
| 1872 | PROTECT_CTX(ctx, flags); | 1867 | PROTECT_CTX(ctx, flags); |
| 1873 | 1868 | ||
| 1874 | state = ctx->ctx_state; | 1869 | state = ctx->ctx_state; |
| @@ -1999,6 +1994,11 @@ pfm_close(struct inode *inode, struct file *filp) | |||
| 1999 | return -EBADF; | 1994 | return -EBADF; |
| 2000 | } | 1995 | } |
| 2001 | 1996 | ||
| 1997 | if (filp->f_flags & FASYNC) { | ||
| 1998 | DPRINT(("cleaning up async_queue=%p\n", ctx->ctx_async_queue)); | ||
| 1999 | pfm_do_fasync(-1, filp, ctx, 0); | ||
| 2000 | } | ||
| 2001 | |||
| 2002 | PROTECT_CTX(ctx, flags); | 2002 | PROTECT_CTX(ctx, flags); |
| 2003 | 2003 | ||
| 2004 | state = ctx->ctx_state; | 2004 | state = ctx->ctx_state; |
diff --git a/arch/ia64/kernel/sal.c b/arch/ia64/kernel/sal.c index 7e0259709c04..0464173ea568 100644 --- a/arch/ia64/kernel/sal.c +++ b/arch/ia64/kernel/sal.c | |||
| @@ -252,11 +252,10 @@ check_sal_cache_flush (void) | |||
| 252 | local_irq_save(flags); | 252 | local_irq_save(flags); |
| 253 | 253 | ||
| 254 | /* | 254 | /* |
| 255 | * Schedule a timer interrupt, wait until it's reported, and see if | 255 | * Send ourselves a timer interrupt, wait until it's reported, and see |
| 256 | * SAL_CACHE_FLUSH drops it. | 256 | * if SAL_CACHE_FLUSH drops it. |
| 257 | */ | 257 | */ |
| 258 | ia64_set_itv(IA64_TIMER_VECTOR); | 258 | platform_send_ipi(cpu, IA64_TIMER_VECTOR, IA64_IPI_DM_INT, 0); |
| 259 | ia64_set_itm(ia64_get_itc() + 1000); | ||
| 260 | 259 | ||
| 261 | while (!ia64_get_irr(IA64_TIMER_VECTOR)) | 260 | while (!ia64_get_irr(IA64_TIMER_VECTOR)) |
| 262 | cpu_relax(); | 261 | cpu_relax(); |
diff --git a/arch/ia64/uv/kernel/setup.c b/arch/ia64/uv/kernel/setup.c index 9aa743203c3c..cf5f28ae96c4 100644 --- a/arch/ia64/uv/kernel/setup.c +++ b/arch/ia64/uv/kernel/setup.c | |||
| @@ -17,6 +17,9 @@ | |||
| 17 | DEFINE_PER_CPU(struct uv_hub_info_s, __uv_hub_info); | 17 | DEFINE_PER_CPU(struct uv_hub_info_s, __uv_hub_info); |
| 18 | EXPORT_PER_CPU_SYMBOL_GPL(__uv_hub_info); | 18 | EXPORT_PER_CPU_SYMBOL_GPL(__uv_hub_info); |
| 19 | 19 | ||
| 20 | #ifdef CONFIG_IA64_SGI_UV | ||
| 21 | int sn_prom_type; | ||
| 22 | #endif | ||
| 20 | 23 | ||
| 21 | struct redir_addr { | 24 | struct redir_addr { |
| 22 | unsigned long redirect; | 25 | unsigned long redirect; |
| @@ -64,6 +67,15 @@ void __init uv_setup(char **cmdline_p) | |||
| 64 | m_n_config.s.m_skt = 37; | 67 | m_n_config.s.m_skt = 37; |
| 65 | m_n_config.s.n_skt = 0; | 68 | m_n_config.s.n_skt = 0; |
| 66 | mmr_base = 0; | 69 | mmr_base = 0; |
| 70 | #if 0 | ||
| 71 | /* Need BIOS calls - TDB */ | ||
| 72 | if (!ia64_sn_is_fake_prom()) | ||
| 73 | sn_prom_type = 1; | ||
| 74 | else | ||
| 75 | #endif | ||
| 76 | sn_prom_type = 2; | ||
| 77 | printk(KERN_INFO "Running on medusa with %s PROM\n", | ||
| 78 | (sn_prom_type == 1) ? "real" : "fake"); | ||
| 67 | } else { | 79 | } else { |
| 68 | get_lowmem_redirect(&lowmem_redir_base, &lowmem_redir_size); | 80 | get_lowmem_redirect(&lowmem_redir_base, &lowmem_redir_size); |
| 69 | node_id.v = uv_read_local_mmr(UVH_NODE_ID); | 81 | node_id.v = uv_read_local_mmr(UVH_NODE_ID); |
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 69648d01acc0..ad36c946ff96 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
| @@ -538,19 +538,19 @@ cflags-$(CONFIG_SIBYTE_BCM1x80) += -Iinclude/asm-mips/mach-sibyte \ | |||
| 538 | # Sibyte SWARM board | 538 | # Sibyte SWARM board |
| 539 | # Sibyte BCM91x80 (BigSur) board | 539 | # Sibyte BCM91x80 (BigSur) board |
| 540 | # | 540 | # |
| 541 | libs-$(CONFIG_SIBYTE_CARMEL) += arch/mips/sibyte/swarm/ | 541 | core-$(CONFIG_SIBYTE_CARMEL) += arch/mips/sibyte/swarm/ |
| 542 | load-$(CONFIG_SIBYTE_CARMEL) := 0xffffffff80100000 | 542 | load-$(CONFIG_SIBYTE_CARMEL) := 0xffffffff80100000 |
| 543 | libs-$(CONFIG_SIBYTE_CRHINE) += arch/mips/sibyte/swarm/ | 543 | core-$(CONFIG_SIBYTE_CRHINE) += arch/mips/sibyte/swarm/ |
| 544 | load-$(CONFIG_SIBYTE_CRHINE) := 0xffffffff80100000 | 544 | load-$(CONFIG_SIBYTE_CRHINE) := 0xffffffff80100000 |
| 545 | libs-$(CONFIG_SIBYTE_CRHONE) += arch/mips/sibyte/swarm/ | 545 | core-$(CONFIG_SIBYTE_CRHONE) += arch/mips/sibyte/swarm/ |
| 546 | load-$(CONFIG_SIBYTE_CRHONE) := 0xffffffff80100000 | 546 | load-$(CONFIG_SIBYTE_CRHONE) := 0xffffffff80100000 |
| 547 | libs-$(CONFIG_SIBYTE_RHONE) += arch/mips/sibyte/swarm/ | 547 | core-$(CONFIG_SIBYTE_RHONE) += arch/mips/sibyte/swarm/ |
| 548 | load-$(CONFIG_SIBYTE_RHONE) := 0xffffffff80100000 | 548 | load-$(CONFIG_SIBYTE_RHONE) := 0xffffffff80100000 |
| 549 | libs-$(CONFIG_SIBYTE_SENTOSA) += arch/mips/sibyte/swarm/ | 549 | core-$(CONFIG_SIBYTE_SENTOSA) += arch/mips/sibyte/swarm/ |
| 550 | load-$(CONFIG_SIBYTE_SENTOSA) := 0xffffffff80100000 | 550 | load-$(CONFIG_SIBYTE_SENTOSA) := 0xffffffff80100000 |
| 551 | libs-$(CONFIG_SIBYTE_SWARM) += arch/mips/sibyte/swarm/ | 551 | core-$(CONFIG_SIBYTE_SWARM) += arch/mips/sibyte/swarm/ |
| 552 | load-$(CONFIG_SIBYTE_SWARM) := 0xffffffff80100000 | 552 | load-$(CONFIG_SIBYTE_SWARM) := 0xffffffff80100000 |
| 553 | libs-$(CONFIG_SIBYTE_BIGSUR) += arch/mips/sibyte/swarm/ | 553 | core-$(CONFIG_SIBYTE_BIGSUR) += arch/mips/sibyte/swarm/ |
| 554 | load-$(CONFIG_SIBYTE_BIGSUR) := 0xffffffff80100000 | 554 | load-$(CONFIG_SIBYTE_BIGSUR) := 0xffffffff80100000 |
| 555 | 555 | ||
| 556 | # | 556 | # |
| @@ -565,7 +565,11 @@ load-$(CONFIG_BCM47XX) := 0xffffffff80001000 | |||
| 565 | # | 565 | # |
| 566 | core-$(CONFIG_SNI_RM) += arch/mips/sni/ | 566 | core-$(CONFIG_SNI_RM) += arch/mips/sni/ |
| 567 | cflags-$(CONFIG_SNI_RM) += -Iinclude/asm-mips/mach-rm | 567 | cflags-$(CONFIG_SNI_RM) += -Iinclude/asm-mips/mach-rm |
| 568 | ifdef CONFIG_CPU_LITTLE_ENDIAN | ||
| 568 | load-$(CONFIG_SNI_RM) += 0xffffffff80600000 | 569 | load-$(CONFIG_SNI_RM) += 0xffffffff80600000 |
| 570 | else | ||
| 571 | load-$(CONFIG_SNI_RM) += 0xffffffff80030000 | ||
| 572 | endif | ||
| 569 | all-$(CONFIG_SNI_RM) := vmlinux.ecoff | 573 | all-$(CONFIG_SNI_RM) := vmlinux.ecoff |
| 570 | 574 | ||
| 571 | # | 575 | # |
diff --git a/arch/mips/au1000/common/platform.c b/arch/mips/au1000/common/platform.c index 8cae7753ef79..74d6d4a593be 100644 --- a/arch/mips/au1000/common/platform.c +++ b/arch/mips/au1000/common/platform.c | |||
| @@ -165,12 +165,12 @@ static struct resource au1xxx_usb_gdt_resources[] = { | |||
| 165 | static struct resource au1xxx_mmc_resources[] = { | 165 | static struct resource au1xxx_mmc_resources[] = { |
| 166 | [0] = { | 166 | [0] = { |
| 167 | .start = SD0_PHYS_ADDR, | 167 | .start = SD0_PHYS_ADDR, |
| 168 | .end = SD0_PHYS_ADDR + 0x40, | 168 | .end = SD0_PHYS_ADDR + 0x7ffff, |
| 169 | .flags = IORESOURCE_MEM, | 169 | .flags = IORESOURCE_MEM, |
| 170 | }, | 170 | }, |
| 171 | [1] = { | 171 | [1] = { |
| 172 | .start = SD1_PHYS_ADDR, | 172 | .start = SD1_PHYS_ADDR, |
| 173 | .end = SD1_PHYS_ADDR + 0x40, | 173 | .end = SD1_PHYS_ADDR + 0x7ffff, |
| 174 | .flags = IORESOURCE_MEM, | 174 | .flags = IORESOURCE_MEM, |
| 175 | }, | 175 | }, |
| 176 | [2] = { | 176 | [2] = { |
diff --git a/arch/mips/configs/sb1250-swarm_defconfig b/arch/mips/configs/sb1250-swarm_defconfig index 117470b60e34..4b8799802788 100644 --- a/arch/mips/configs/sb1250-swarm_defconfig +++ b/arch/mips/configs/sb1250-swarm_defconfig | |||
| @@ -1,67 +1,58 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.20 | 3 | # Linux kernel version: 2.6.25 |
| 4 | # Tue Feb 20 21:47:40 2007 | 4 | # Sat May 3 00:38:11 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_MIPS=y | 6 | CONFIG_MIPS=y |
| 7 | 7 | ||
| 8 | # | 8 | # |
| 9 | # Machine selection | 9 | # Machine selection |
| 10 | # | 10 | # |
| 11 | CONFIG_ZONE_DMA=y | 11 | # CONFIG_MACH_ALCHEMY is not set |
| 12 | # CONFIG_MIPS_MTX1 is not set | ||
| 13 | # CONFIG_MIPS_BOSPORUS is not set | ||
| 14 | # CONFIG_MIPS_PB1000 is not set | ||
| 15 | # CONFIG_MIPS_PB1100 is not set | ||
| 16 | # CONFIG_MIPS_PB1500 is not set | ||
| 17 | # CONFIG_MIPS_PB1550 is not set | ||
| 18 | # CONFIG_MIPS_PB1200 is not set | ||
| 19 | # CONFIG_MIPS_DB1000 is not set | ||
| 20 | # CONFIG_MIPS_DB1100 is not set | ||
| 21 | # CONFIG_MIPS_DB1500 is not set | ||
| 22 | # CONFIG_MIPS_DB1550 is not set | ||
| 23 | # CONFIG_MIPS_DB1200 is not set | ||
| 24 | # CONFIG_MIPS_MIRAGE is not set | ||
| 25 | # CONFIG_BASLER_EXCITE is not set | 12 | # CONFIG_BASLER_EXCITE is not set |
| 13 | # CONFIG_BCM47XX is not set | ||
| 26 | # CONFIG_MIPS_COBALT is not set | 14 | # CONFIG_MIPS_COBALT is not set |
| 27 | # CONFIG_MACH_DECSTATION is not set | 15 | # CONFIG_MACH_DECSTATION is not set |
| 28 | # CONFIG_MACH_JAZZ is not set | 16 | # CONFIG_MACH_JAZZ is not set |
| 17 | # CONFIG_LASAT is not set | ||
| 18 | # CONFIG_LEMOTE_FULONG is not set | ||
| 29 | # CONFIG_MIPS_ATLAS is not set | 19 | # CONFIG_MIPS_ATLAS is not set |
| 30 | # CONFIG_MIPS_MALTA is not set | 20 | # CONFIG_MIPS_MALTA is not set |
| 31 | # CONFIG_MIPS_SEAD is not set | 21 | # CONFIG_MIPS_SEAD is not set |
| 32 | # CONFIG_WR_PPMC is not set | ||
| 33 | # CONFIG_MIPS_SIM is not set | 22 | # CONFIG_MIPS_SIM is not set |
| 34 | # CONFIG_MOMENCO_JAGUAR_ATX is not set | 23 | # CONFIG_MARKEINS is not set |
| 35 | # CONFIG_MIPS_XXS1500 is not set | 24 | # CONFIG_MACH_VR41XX is not set |
| 36 | # CONFIG_PNX8550_JBS is not set | 25 | # CONFIG_PNX8550_JBS is not set |
| 37 | # CONFIG_PNX8550_STB810 is not set | 26 | # CONFIG_PNX8550_STB810 is not set |
| 38 | # CONFIG_MACH_VR41XX is not set | 27 | # CONFIG_PMC_MSP is not set |
| 39 | # CONFIG_PMC_YOSEMITE is not set | 28 | # CONFIG_PMC_YOSEMITE is not set |
| 40 | # CONFIG_MARKEINS is not set | ||
| 41 | # CONFIG_SGI_IP22 is not set | 29 | # CONFIG_SGI_IP22 is not set |
| 42 | # CONFIG_SGI_IP27 is not set | 30 | # CONFIG_SGI_IP27 is not set |
| 31 | # CONFIG_SGI_IP28 is not set | ||
| 43 | # CONFIG_SGI_IP32 is not set | 32 | # CONFIG_SGI_IP32 is not set |
| 44 | # CONFIG_SIBYTE_BIGSUR is not set | ||
| 45 | CONFIG_SIBYTE_SWARM=y | ||
| 46 | # CONFIG_SIBYTE_SENTOSA is not set | ||
| 47 | # CONFIG_SIBYTE_RHONE is not set | ||
| 48 | # CONFIG_SIBYTE_CARMEL is not set | ||
| 49 | # CONFIG_SIBYTE_LITTLESUR is not set | ||
| 50 | # CONFIG_SIBYTE_CRHINE is not set | 33 | # CONFIG_SIBYTE_CRHINE is not set |
| 34 | # CONFIG_SIBYTE_CARMEL is not set | ||
| 51 | # CONFIG_SIBYTE_CRHONE is not set | 35 | # CONFIG_SIBYTE_CRHONE is not set |
| 36 | # CONFIG_SIBYTE_RHONE is not set | ||
| 37 | CONFIG_SIBYTE_SWARM=y | ||
| 38 | # CONFIG_SIBYTE_LITTLESUR is not set | ||
| 39 | # CONFIG_SIBYTE_SENTOSA is not set | ||
| 40 | # CONFIG_SIBYTE_BIGSUR is not set | ||
| 52 | # CONFIG_SNI_RM is not set | 41 | # CONFIG_SNI_RM is not set |
| 53 | # CONFIG_TOSHIBA_JMR3927 is not set | 42 | # CONFIG_TOSHIBA_JMR3927 is not set |
| 54 | # CONFIG_TOSHIBA_RBTX4927 is not set | 43 | # CONFIG_TOSHIBA_RBTX4927 is not set |
| 55 | # CONFIG_TOSHIBA_RBTX4938 is not set | 44 | # CONFIG_TOSHIBA_RBTX4938 is not set |
| 45 | # CONFIG_WR_PPMC is not set | ||
| 56 | CONFIG_SIBYTE_SB1250=y | 46 | CONFIG_SIBYTE_SB1250=y |
| 57 | CONFIG_SIBYTE_SB1xxx_SOC=y | 47 | CONFIG_SIBYTE_SB1xxx_SOC=y |
| 58 | CONFIG_CPU_SB1_PASS_1=y | 48 | # CONFIG_CPU_SB1_PASS_1 is not set |
| 59 | # CONFIG_CPU_SB1_PASS_2_1250 is not set | 49 | # CONFIG_CPU_SB1_PASS_2_1250 is not set |
| 60 | # CONFIG_CPU_SB1_PASS_2_2 is not set | 50 | CONFIG_CPU_SB1_PASS_2_2=y |
| 61 | # CONFIG_CPU_SB1_PASS_4 is not set | 51 | # CONFIG_CPU_SB1_PASS_4 is not set |
| 62 | # CONFIG_CPU_SB1_PASS_2_112x is not set | 52 | # CONFIG_CPU_SB1_PASS_2_112x is not set |
| 63 | # CONFIG_CPU_SB1_PASS_3 is not set | 53 | # CONFIG_CPU_SB1_PASS_3 is not set |
| 64 | CONFIG_SIBYTE_HAS_LDT=y | 54 | CONFIG_SIBYTE_HAS_LDT=y |
| 55 | CONFIG_SIBYTE_ENABLE_LDT_IF_PCI=y | ||
| 65 | # CONFIG_SIMULATION is not set | 56 | # CONFIG_SIMULATION is not set |
| 66 | # CONFIG_SB1_CEX_ALWAYS_FATAL is not set | 57 | # CONFIG_SB1_CEX_ALWAYS_FATAL is not set |
| 67 | # CONFIG_SB1_CERR_STALL is not set | 58 | # CONFIG_SB1_CERR_STALL is not set |
| @@ -69,20 +60,32 @@ CONFIG_SIBYTE_CFE=y | |||
| 69 | # CONFIG_SIBYTE_CFE_CONSOLE is not set | 60 | # CONFIG_SIBYTE_CFE_CONSOLE is not set |
| 70 | # CONFIG_SIBYTE_BUS_WATCHER is not set | 61 | # CONFIG_SIBYTE_BUS_WATCHER is not set |
| 71 | # CONFIG_SIBYTE_TBPROF is not set | 62 | # CONFIG_SIBYTE_TBPROF is not set |
| 63 | CONFIG_SIBYTE_HAS_ZBUS_PROFILING=y | ||
| 72 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 64 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
| 73 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 65 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 74 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 66 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 67 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
| 75 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 68 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 76 | CONFIG_GENERIC_HWEIGHT=y | 69 | CONFIG_GENERIC_HWEIGHT=y |
| 77 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 70 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 71 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 78 | CONFIG_GENERIC_TIME=y | 72 | CONFIG_GENERIC_TIME=y |
| 73 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
| 79 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 74 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
| 80 | # CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ is not set | 75 | # CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ is not set |
| 76 | CONFIG_CEVT_SB1250=y | ||
| 77 | CONFIG_CSRC_SB1250=y | ||
| 78 | CONFIG_CFE=y | ||
| 81 | CONFIG_DMA_COHERENT=y | 79 | CONFIG_DMA_COHERENT=y |
| 80 | CONFIG_EARLY_PRINTK=y | ||
| 81 | CONFIG_SYS_HAS_EARLY_PRINTK=y | ||
| 82 | # CONFIG_HOTPLUG_CPU is not set | ||
| 83 | # CONFIG_NO_IOPORT is not set | ||
| 82 | CONFIG_CPU_BIG_ENDIAN=y | 84 | CONFIG_CPU_BIG_ENDIAN=y |
| 83 | # CONFIG_CPU_LITTLE_ENDIAN is not set | 85 | # CONFIG_CPU_LITTLE_ENDIAN is not set |
| 84 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y | 86 | CONFIG_SYS_SUPPORTS_BIG_ENDIAN=y |
| 85 | CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y | 87 | CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y |
| 88 | CONFIG_IRQ_CPU=y | ||
| 86 | CONFIG_SWAP_IO_SPACE=y | 89 | CONFIG_SWAP_IO_SPACE=y |
| 87 | CONFIG_BOOT_ELF32=y | 90 | CONFIG_BOOT_ELF32=y |
| 88 | CONFIG_MIPS_L1_CACHE_SHIFT=5 | 91 | CONFIG_MIPS_L1_CACHE_SHIFT=5 |
| @@ -90,6 +93,7 @@ CONFIG_MIPS_L1_CACHE_SHIFT=5 | |||
| 90 | # | 93 | # |
| 91 | # CPU selection | 94 | # CPU selection |
| 92 | # | 95 | # |
| 96 | # CONFIG_CPU_LOONGSON2 is not set | ||
| 93 | # CONFIG_CPU_MIPS32_R1 is not set | 97 | # CONFIG_CPU_MIPS32_R1 is not set |
| 94 | # CONFIG_CPU_MIPS32_R2 is not set | 98 | # CONFIG_CPU_MIPS32_R2 is not set |
| 95 | # CONFIG_CPU_MIPS64_R1 is not set | 99 | # CONFIG_CPU_MIPS64_R1 is not set |
| @@ -130,8 +134,7 @@ CONFIG_CPU_HAS_PREFETCH=y | |||
| 130 | CONFIG_MIPS_MT_DISABLED=y | 134 | CONFIG_MIPS_MT_DISABLED=y |
| 131 | # CONFIG_MIPS_MT_SMP is not set | 135 | # CONFIG_MIPS_MT_SMP is not set |
| 132 | # CONFIG_MIPS_MT_SMTC is not set | 136 | # CONFIG_MIPS_MT_SMTC is not set |
| 133 | # CONFIG_MIPS_VPE_LOADER is not set | 137 | CONFIG_SB1_PASS_2_WORKAROUNDS=y |
| 134 | CONFIG_SB1_PASS_1_WORKAROUNDS=y | ||
| 135 | CONFIG_CPU_HAS_LLSC=y | 138 | CONFIG_CPU_HAS_LLSC=y |
| 136 | CONFIG_CPU_HAS_SYNC=y | 139 | CONFIG_CPU_HAS_SYNC=y |
| 137 | CONFIG_GENERIC_HARDIRQS=y | 140 | CONFIG_GENERIC_HARDIRQS=y |
| @@ -140,6 +143,7 @@ CONFIG_IRQ_PER_CPU=y | |||
| 140 | CONFIG_CPU_SUPPORTS_HIGHMEM=y | 143 | CONFIG_CPU_SUPPORTS_HIGHMEM=y |
| 141 | CONFIG_SYS_SUPPORTS_HIGHMEM=y | 144 | CONFIG_SYS_SUPPORTS_HIGHMEM=y |
| 142 | CONFIG_ARCH_FLATMEM_ENABLE=y | 145 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 146 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
| 143 | CONFIG_SELECT_MEMORY_MODEL=y | 147 | CONFIG_SELECT_MEMORY_MODEL=y |
| 144 | CONFIG_FLATMEM_MANUAL=y | 148 | CONFIG_FLATMEM_MANUAL=y |
| 145 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 149 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
| @@ -147,13 +151,19 @@ CONFIG_FLATMEM_MANUAL=y | |||
| 147 | CONFIG_FLATMEM=y | 151 | CONFIG_FLATMEM=y |
| 148 | CONFIG_FLAT_NODE_MEM_MAP=y | 152 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 149 | # CONFIG_SPARSEMEM_STATIC is not set | 153 | # CONFIG_SPARSEMEM_STATIC is not set |
| 154 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
| 150 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 155 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 151 | CONFIG_RESOURCES_64BIT=y | 156 | CONFIG_RESOURCES_64BIT=y |
| 152 | CONFIG_ZONE_DMA_FLAG=1 | 157 | CONFIG_ZONE_DMA_FLAG=0 |
| 158 | CONFIG_VIRT_TO_BUS=y | ||
| 153 | CONFIG_SMP=y | 159 | CONFIG_SMP=y |
| 154 | CONFIG_SYS_SUPPORTS_SMP=y | 160 | CONFIG_SYS_SUPPORTS_SMP=y |
| 155 | CONFIG_NR_CPUS_DEFAULT_2=y | 161 | CONFIG_NR_CPUS_DEFAULT_2=y |
| 156 | CONFIG_NR_CPUS=2 | 162 | CONFIG_NR_CPUS=2 |
| 163 | CONFIG_TICK_ONESHOT=y | ||
| 164 | # CONFIG_NO_HZ is not set | ||
| 165 | CONFIG_HIGH_RES_TIMERS=y | ||
| 166 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 157 | # CONFIG_HZ_48 is not set | 167 | # CONFIG_HZ_48 is not set |
| 158 | # CONFIG_HZ_100 is not set | 168 | # CONFIG_HZ_100 is not set |
| 159 | # CONFIG_HZ_128 is not set | 169 | # CONFIG_HZ_128 is not set |
| @@ -166,38 +176,49 @@ CONFIG_HZ=1000 | |||
| 166 | CONFIG_PREEMPT_NONE=y | 176 | CONFIG_PREEMPT_NONE=y |
| 167 | # CONFIG_PREEMPT_VOLUNTARY is not set | 177 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 168 | # CONFIG_PREEMPT is not set | 178 | # CONFIG_PREEMPT is not set |
| 169 | CONFIG_PREEMPT_BKL=y | ||
| 170 | # CONFIG_KEXEC is not set | 179 | # CONFIG_KEXEC is not set |
| 180 | CONFIG_SECCOMP=y | ||
| 171 | CONFIG_LOCKDEP_SUPPORT=y | 181 | CONFIG_LOCKDEP_SUPPORT=y |
| 172 | CONFIG_STACKTRACE_SUPPORT=y | 182 | CONFIG_STACKTRACE_SUPPORT=y |
| 173 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 183 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 174 | 184 | ||
| 175 | # | 185 | # |
| 176 | # Code maturity level options | 186 | # General setup |
| 177 | # | 187 | # |
| 178 | CONFIG_EXPERIMENTAL=y | 188 | CONFIG_EXPERIMENTAL=y |
| 179 | CONFIG_LOCK_KERNEL=y | 189 | CONFIG_LOCK_KERNEL=y |
| 180 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 190 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
| 181 | |||
| 182 | # | ||
| 183 | # General setup | ||
| 184 | # | ||
| 185 | CONFIG_LOCALVERSION="" | 191 | CONFIG_LOCALVERSION="" |
| 186 | CONFIG_LOCALVERSION_AUTO=y | 192 | CONFIG_LOCALVERSION_AUTO=y |
| 187 | CONFIG_SWAP=y | 193 | CONFIG_SWAP=y |
| 188 | CONFIG_SYSVIPC=y | 194 | CONFIG_SYSVIPC=y |
| 189 | # CONFIG_IPC_NS is not set | ||
| 190 | CONFIG_SYSVIPC_SYSCTL=y | 195 | CONFIG_SYSVIPC_SYSCTL=y |
| 191 | # CONFIG_POSIX_MQUEUE is not set | 196 | # CONFIG_POSIX_MQUEUE is not set |
| 192 | # CONFIG_BSD_PROCESS_ACCT is not set | 197 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 193 | # CONFIG_TASKSTATS is not set | 198 | # CONFIG_TASKSTATS is not set |
| 194 | # CONFIG_UTS_NS is not set | ||
| 195 | # CONFIG_AUDIT is not set | 199 | # CONFIG_AUDIT is not set |
| 196 | # CONFIG_IKCONFIG is not set | 200 | # CONFIG_IKCONFIG is not set |
| 201 | CONFIG_LOG_BUF_SHIFT=15 | ||
| 197 | CONFIG_CGROUPS=y | 202 | CONFIG_CGROUPS=y |
| 203 | # CONFIG_CGROUP_DEBUG is not set | ||
| 204 | # CONFIG_CGROUP_NS is not set | ||
| 198 | CONFIG_CPUSETS=y | 205 | CONFIG_CPUSETS=y |
| 199 | CONFIG_SYSFS_DEPRECATED=y | 206 | CONFIG_GROUP_SCHED=y |
| 207 | CONFIG_FAIR_GROUP_SCHED=y | ||
| 208 | # CONFIG_RT_GROUP_SCHED is not set | ||
| 209 | CONFIG_USER_SCHED=y | ||
| 210 | # CONFIG_CGROUP_SCHED is not set | ||
| 211 | CONFIG_CGROUP_CPUACCT=y | ||
| 212 | # CONFIG_RESOURCE_COUNTERS is not set | ||
| 213 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | ||
| 214 | # CONFIG_PROC_PID_CPUSET is not set | ||
| 200 | CONFIG_RELAY=y | 215 | CONFIG_RELAY=y |
| 216 | CONFIG_NAMESPACES=y | ||
| 217 | # CONFIG_UTS_NS is not set | ||
| 218 | # CONFIG_IPC_NS is not set | ||
| 219 | # CONFIG_USER_NS is not set | ||
| 220 | # CONFIG_PID_NS is not set | ||
| 221 | CONFIG_BLK_DEV_INITRD=y | ||
| 201 | CONFIG_INITRAMFS_SOURCE="" | 222 | CONFIG_INITRAMFS_SOURCE="" |
| 202 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 223 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 203 | CONFIG_SYSCTL=y | 224 | CONFIG_SYSCTL=y |
| @@ -209,20 +230,29 @@ CONFIG_HOTPLUG=y | |||
| 209 | CONFIG_PRINTK=y | 230 | CONFIG_PRINTK=y |
| 210 | CONFIG_BUG=y | 231 | CONFIG_BUG=y |
| 211 | CONFIG_ELF_CORE=y | 232 | CONFIG_ELF_CORE=y |
| 233 | # CONFIG_COMPAT_BRK is not set | ||
| 212 | CONFIG_BASE_FULL=y | 234 | CONFIG_BASE_FULL=y |
| 213 | CONFIG_FUTEX=y | 235 | CONFIG_FUTEX=y |
| 236 | CONFIG_ANON_INODES=y | ||
| 214 | CONFIG_EPOLL=y | 237 | CONFIG_EPOLL=y |
| 238 | CONFIG_SIGNALFD=y | ||
| 239 | CONFIG_TIMERFD=y | ||
| 240 | CONFIG_EVENTFD=y | ||
| 215 | CONFIG_SHMEM=y | 241 | CONFIG_SHMEM=y |
| 216 | CONFIG_SLAB=y | ||
| 217 | CONFIG_VM_EVENT_COUNTERS=y | 242 | CONFIG_VM_EVENT_COUNTERS=y |
| 243 | CONFIG_SLAB=y | ||
| 244 | # CONFIG_SLUB is not set | ||
| 245 | # CONFIG_SLOB is not set | ||
| 246 | # CONFIG_PROFILING is not set | ||
| 247 | # CONFIG_MARKERS is not set | ||
| 248 | CONFIG_HAVE_OPROFILE=y | ||
| 249 | # CONFIG_HAVE_KPROBES is not set | ||
| 250 | # CONFIG_HAVE_KRETPROBES is not set | ||
| 251 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 252 | CONFIG_SLABINFO=y | ||
| 218 | CONFIG_RT_MUTEXES=y | 253 | CONFIG_RT_MUTEXES=y |
| 219 | # CONFIG_TINY_SHMEM is not set | 254 | # CONFIG_TINY_SHMEM is not set |
| 220 | CONFIG_BASE_SMALL=0 | 255 | CONFIG_BASE_SMALL=0 |
| 221 | # CONFIG_SLOB is not set | ||
| 222 | |||
| 223 | # | ||
| 224 | # Loadable module support | ||
| 225 | # | ||
| 226 | CONFIG_MODULES=y | 256 | CONFIG_MODULES=y |
| 227 | CONFIG_MODULE_UNLOAD=y | 257 | CONFIG_MODULE_UNLOAD=y |
| 228 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 258 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| @@ -230,12 +260,10 @@ CONFIG_MODVERSIONS=y | |||
| 230 | CONFIG_MODULE_SRCVERSION_ALL=y | 260 | CONFIG_MODULE_SRCVERSION_ALL=y |
| 231 | CONFIG_KMOD=y | 261 | CONFIG_KMOD=y |
| 232 | CONFIG_STOP_MACHINE=y | 262 | CONFIG_STOP_MACHINE=y |
| 233 | |||
| 234 | # | ||
| 235 | # Block layer | ||
| 236 | # | ||
| 237 | CONFIG_BLOCK=y | 263 | CONFIG_BLOCK=y |
| 238 | # CONFIG_BLK_DEV_IO_TRACE is not set | 264 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| 265 | CONFIG_BLK_DEV_BSG=y | ||
| 266 | CONFIG_BLOCK_COMPAT=y | ||
| 239 | 267 | ||
| 240 | # | 268 | # |
| 241 | # IO Schedulers | 269 | # IO Schedulers |
| @@ -249,22 +277,19 @@ CONFIG_DEFAULT_AS=y | |||
| 249 | # CONFIG_DEFAULT_CFQ is not set | 277 | # CONFIG_DEFAULT_CFQ is not set |
| 250 | # CONFIG_DEFAULT_NOOP is not set | 278 | # CONFIG_DEFAULT_NOOP is not set |
| 251 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 279 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 280 | CONFIG_CLASSIC_RCU=y | ||
| 252 | 281 | ||
| 253 | # | 282 | # |
| 254 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | 283 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) |
| 255 | # | 284 | # |
| 256 | CONFIG_HW_HAS_PCI=y | 285 | CONFIG_HW_HAS_PCI=y |
| 257 | CONFIG_PCI=y | 286 | CONFIG_PCI=y |
| 287 | CONFIG_PCI_DOMAINS=y | ||
| 288 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 289 | # CONFIG_PCI_LEGACY is not set | ||
| 258 | CONFIG_MMU=y | 290 | CONFIG_MMU=y |
| 259 | 291 | CONFIG_ZONE_DMA32=y | |
| 260 | # | ||
| 261 | # PCCARD (PCMCIA/CardBus) support | ||
| 262 | # | ||
| 263 | # CONFIG_PCCARD is not set | 292 | # CONFIG_PCCARD is not set |
| 264 | |||
| 265 | # | ||
| 266 | # PCI Hotplug Support | ||
| 267 | # | ||
| 268 | # CONFIG_HOTPLUG_PCI is not set | 293 | # CONFIG_HOTPLUG_PCI is not set |
| 269 | 294 | ||
| 270 | # | 295 | # |
| @@ -272,7 +297,6 @@ CONFIG_MMU=y | |||
| 272 | # | 297 | # |
| 273 | CONFIG_BINFMT_ELF=y | 298 | CONFIG_BINFMT_ELF=y |
| 274 | # CONFIG_BINFMT_MISC is not set | 299 | # CONFIG_BINFMT_MISC is not set |
| 275 | # CONFIG_BUILD_ELF64 is not set | ||
| 276 | CONFIG_MIPS32_COMPAT=y | 300 | CONFIG_MIPS32_COMPAT=y |
| 277 | CONFIG_COMPAT=y | 301 | CONFIG_COMPAT=y |
| 278 | CONFIG_SYSVIPC_COMPAT=y | 302 | CONFIG_SYSVIPC_COMPAT=y |
| @@ -286,7 +310,6 @@ CONFIG_BINFMT_ELF32=y | |||
| 286 | CONFIG_PM=y | 310 | CONFIG_PM=y |
| 287 | # CONFIG_PM_LEGACY is not set | 311 | # CONFIG_PM_LEGACY is not set |
| 288 | # CONFIG_PM_DEBUG is not set | 312 | # CONFIG_PM_DEBUG is not set |
| 289 | # CONFIG_PM_SYSFS_DEPRECATED is not set | ||
| 290 | 313 | ||
| 291 | # | 314 | # |
| 292 | # Networking | 315 | # Networking |
| @@ -296,7 +319,6 @@ CONFIG_NET=y | |||
| 296 | # | 319 | # |
| 297 | # Networking options | 320 | # Networking options |
| 298 | # | 321 | # |
| 299 | # CONFIG_NETDEBUG is not set | ||
| 300 | CONFIG_PACKET=y | 322 | CONFIG_PACKET=y |
| 301 | CONFIG_PACKET_MMAP=y | 323 | CONFIG_PACKET_MMAP=y |
| 302 | CONFIG_UNIX=y | 324 | CONFIG_UNIX=y |
| @@ -304,6 +326,7 @@ CONFIG_XFRM=y | |||
| 304 | CONFIG_XFRM_USER=m | 326 | CONFIG_XFRM_USER=m |
| 305 | # CONFIG_XFRM_SUB_POLICY is not set | 327 | # CONFIG_XFRM_SUB_POLICY is not set |
| 306 | CONFIG_XFRM_MIGRATE=y | 328 | CONFIG_XFRM_MIGRATE=y |
| 329 | # CONFIG_XFRM_STATISTICS is not set | ||
| 307 | CONFIG_NET_KEY=y | 330 | CONFIG_NET_KEY=y |
| 308 | CONFIG_NET_KEY_MIGRATE=y | 331 | CONFIG_NET_KEY_MIGRATE=y |
| 309 | CONFIG_INET=y | 332 | CONFIG_INET=y |
| @@ -326,6 +349,7 @@ CONFIG_IP_PNP_BOOTP=y | |||
| 326 | CONFIG_INET_XFRM_MODE_TRANSPORT=m | 349 | CONFIG_INET_XFRM_MODE_TRANSPORT=m |
| 327 | CONFIG_INET_XFRM_MODE_TUNNEL=m | 350 | CONFIG_INET_XFRM_MODE_TUNNEL=m |
| 328 | CONFIG_INET_XFRM_MODE_BEET=m | 351 | CONFIG_INET_XFRM_MODE_BEET=m |
| 352 | CONFIG_INET_LRO=m | ||
| 329 | CONFIG_INET_DIAG=y | 353 | CONFIG_INET_DIAG=y |
| 330 | CONFIG_INET_TCP_DIAG=y | 354 | CONFIG_INET_TCP_DIAG=y |
| 331 | # CONFIG_TCP_CONG_ADVANCED is not set | 355 | # CONFIG_TCP_CONG_ADVANCED is not set |
| @@ -333,24 +357,15 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 333 | CONFIG_DEFAULT_TCP_CONG="cubic" | 357 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 334 | CONFIG_TCP_MD5SIG=y | 358 | CONFIG_TCP_MD5SIG=y |
| 335 | # CONFIG_IPV6 is not set | 359 | # CONFIG_IPV6 is not set |
| 336 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 337 | # CONFIG_INET6_TUNNEL is not set | ||
| 338 | CONFIG_NETWORK_SECMARK=y | 360 | CONFIG_NETWORK_SECMARK=y |
| 339 | # CONFIG_NETFILTER is not set | 361 | # CONFIG_NETFILTER is not set |
| 340 | |||
| 341 | # | ||
| 342 | # DCCP Configuration (EXPERIMENTAL) | ||
| 343 | # | ||
| 344 | # CONFIG_IP_DCCP is not set | 362 | # CONFIG_IP_DCCP is not set |
| 345 | 363 | CONFIG_IP_SCTP=m | |
| 346 | # | 364 | # CONFIG_SCTP_DBG_MSG is not set |
| 347 | # SCTP Configuration (EXPERIMENTAL) | 365 | # CONFIG_SCTP_DBG_OBJCNT is not set |
| 348 | # | 366 | # CONFIG_SCTP_HMAC_NONE is not set |
| 349 | # CONFIG_IP_SCTP is not set | 367 | # CONFIG_SCTP_HMAC_SHA1 is not set |
| 350 | 368 | CONFIG_SCTP_HMAC_MD5=y | |
| 351 | # | ||
| 352 | # TIPC Configuration (EXPERIMENTAL) | ||
| 353 | # | ||
| 354 | # CONFIG_TIPC is not set | 369 | # CONFIG_TIPC is not set |
| 355 | # CONFIG_ATM is not set | 370 | # CONFIG_ATM is not set |
| 356 | # CONFIG_BRIDGE is not set | 371 | # CONFIG_BRIDGE is not set |
| @@ -363,26 +378,52 @@ CONFIG_NETWORK_SECMARK=y | |||
| 363 | # CONFIG_LAPB is not set | 378 | # CONFIG_LAPB is not set |
| 364 | # CONFIG_ECONET is not set | 379 | # CONFIG_ECONET is not set |
| 365 | # CONFIG_WAN_ROUTER is not set | 380 | # CONFIG_WAN_ROUTER is not set |
| 366 | |||
| 367 | # | ||
| 368 | # QoS and/or fair queueing | ||
| 369 | # | ||
| 370 | # CONFIG_NET_SCHED is not set | 381 | # CONFIG_NET_SCHED is not set |
| 382 | CONFIG_NET_SCH_FIFO=y | ||
| 371 | 383 | ||
| 372 | # | 384 | # |
| 373 | # Network testing | 385 | # Network testing |
| 374 | # | 386 | # |
| 375 | # CONFIG_NET_PKTGEN is not set | 387 | # CONFIG_NET_PKTGEN is not set |
| 376 | # CONFIG_HAMRADIO is not set | 388 | # CONFIG_HAMRADIO is not set |
| 389 | # CONFIG_CAN is not set | ||
| 377 | # CONFIG_IRDA is not set | 390 | # CONFIG_IRDA is not set |
| 378 | # CONFIG_BT is not set | 391 | # CONFIG_BT is not set |
| 392 | # CONFIG_AF_RXRPC is not set | ||
| 393 | |||
| 394 | # | ||
| 395 | # Wireless | ||
| 396 | # | ||
| 397 | CONFIG_CFG80211=m | ||
| 398 | CONFIG_NL80211=y | ||
| 399 | CONFIG_WIRELESS_EXT=y | ||
| 400 | CONFIG_MAC80211=m | ||
| 401 | |||
| 402 | # | ||
| 403 | # Rate control algorithm selection | ||
| 404 | # | ||
| 405 | CONFIG_MAC80211_RC_DEFAULT_PID=y | ||
| 406 | # CONFIG_MAC80211_RC_DEFAULT_NONE is not set | ||
| 407 | |||
| 408 | # | ||
| 409 | # Selecting 'y' for an algorithm will | ||
| 410 | # | ||
| 411 | |||
| 412 | # | ||
| 413 | # build the algorithm into mac80211. | ||
| 414 | # | ||
| 415 | CONFIG_MAC80211_RC_DEFAULT="pid" | ||
| 416 | CONFIG_MAC80211_RC_PID=y | ||
| 417 | # CONFIG_MAC80211_MESH is not set | ||
| 418 | # CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT is not set | ||
| 419 | # CONFIG_MAC80211_DEBUG is not set | ||
| 379 | CONFIG_IEEE80211=m | 420 | CONFIG_IEEE80211=m |
| 380 | # CONFIG_IEEE80211_DEBUG is not set | 421 | # CONFIG_IEEE80211_DEBUG is not set |
| 381 | CONFIG_IEEE80211_CRYPT_WEP=m | 422 | CONFIG_IEEE80211_CRYPT_WEP=m |
| 382 | CONFIG_IEEE80211_CRYPT_CCMP=m | 423 | CONFIG_IEEE80211_CRYPT_CCMP=m |
| 383 | CONFIG_IEEE80211_SOFTMAC=m | 424 | CONFIG_IEEE80211_CRYPT_TKIP=m |
| 384 | # CONFIG_IEEE80211_SOFTMAC_DEBUG is not set | 425 | CONFIG_RFKILL=m |
| 385 | CONFIG_WIRELESS_EXT=y | 426 | # CONFIG_NET_9P is not set |
| 386 | 427 | ||
| 387 | # | 428 | # |
| 388 | # Device Drivers | 429 | # Device Drivers |
| @@ -391,34 +432,15 @@ CONFIG_WIRELESS_EXT=y | |||
| 391 | # | 432 | # |
| 392 | # Generic Driver Options | 433 | # Generic Driver Options |
| 393 | # | 434 | # |
| 435 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
| 394 | CONFIG_STANDALONE=y | 436 | CONFIG_STANDALONE=y |
| 395 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 437 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 396 | CONFIG_FW_LOADER=m | 438 | CONFIG_FW_LOADER=m |
| 397 | # CONFIG_SYS_HYPERVISOR is not set | 439 | # CONFIG_SYS_HYPERVISOR is not set |
| 398 | |||
| 399 | # | ||
| 400 | # Connector - unified userspace <-> kernelspace linker | ||
| 401 | # | ||
| 402 | CONFIG_CONNECTOR=m | 440 | CONFIG_CONNECTOR=m |
| 403 | |||
| 404 | # | ||
| 405 | # Memory Technology Devices (MTD) | ||
| 406 | # | ||
| 407 | # CONFIG_MTD is not set | 441 | # CONFIG_MTD is not set |
| 408 | |||
| 409 | # | ||
| 410 | # Parallel port support | ||
| 411 | # | ||
| 412 | # CONFIG_PARPORT is not set | 442 | # CONFIG_PARPORT is not set |
| 413 | 443 | CONFIG_BLK_DEV=y | |
| 414 | # | ||
| 415 | # Plug and Play support | ||
| 416 | # | ||
| 417 | # CONFIG_PNPACPI is not set | ||
| 418 | |||
| 419 | # | ||
| 420 | # Block devices | ||
| 421 | # | ||
| 422 | # CONFIG_BLK_CPQ_DA is not set | 444 | # CONFIG_BLK_CPQ_DA is not set |
| 423 | # CONFIG_BLK_CPQ_CISS_DA is not set | 445 | # CONFIG_BLK_CPQ_CISS_DA is not set |
| 424 | # CONFIG_BLK_DEV_DAC960 is not set | 446 | # CONFIG_BLK_DEV_DAC960 is not set |
| @@ -427,49 +449,77 @@ CONFIG_CONNECTOR=m | |||
| 427 | # CONFIG_BLK_DEV_LOOP is not set | 449 | # CONFIG_BLK_DEV_LOOP is not set |
| 428 | # CONFIG_BLK_DEV_NBD is not set | 450 | # CONFIG_BLK_DEV_NBD is not set |
| 429 | # CONFIG_BLK_DEV_SX8 is not set | 451 | # CONFIG_BLK_DEV_SX8 is not set |
| 452 | # CONFIG_BLK_DEV_UB is not set | ||
| 430 | CONFIG_BLK_DEV_RAM=y | 453 | CONFIG_BLK_DEV_RAM=y |
| 431 | CONFIG_BLK_DEV_RAM_COUNT=16 | 454 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 432 | CONFIG_BLK_DEV_RAM_SIZE=9220 | 455 | CONFIG_BLK_DEV_RAM_SIZE=9220 |
| 433 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 456 | # CONFIG_BLK_DEV_XIP is not set |
| 434 | CONFIG_BLK_DEV_INITRD=y | ||
| 435 | CONFIG_CDROM_PKTCDVD=m | 457 | CONFIG_CDROM_PKTCDVD=m |
| 436 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 | 458 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 |
| 437 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set | 459 | # CONFIG_CDROM_PKTCDVD_WCACHE is not set |
| 438 | CONFIG_ATA_OVER_ETH=m | 460 | CONFIG_ATA_OVER_ETH=m |
| 439 | 461 | CONFIG_MISC_DEVICES=y | |
| 440 | # | 462 | # CONFIG_PHANTOM is not set |
| 441 | # Misc devices | 463 | # CONFIG_EEPROM_93CX6 is not set |
| 442 | # | ||
| 443 | CONFIG_SGI_IOC4=m | 464 | CONFIG_SGI_IOC4=m |
| 444 | # CONFIG_TIFM_CORE is not set | 465 | # CONFIG_TIFM_CORE is not set |
| 445 | 466 | # CONFIG_ENCLOSURE_SERVICES is not set | |
| 446 | # | 467 | CONFIG_HAVE_IDE=y |
| 447 | # ATA/ATAPI/MFM/RLL support | ||
| 448 | # | ||
| 449 | CONFIG_IDE=y | 468 | CONFIG_IDE=y |
| 450 | CONFIG_IDE_MAX_HWIFS=4 | 469 | CONFIG_IDE_MAX_HWIFS=4 |
| 451 | CONFIG_BLK_DEV_IDE=y | 470 | CONFIG_BLK_DEV_IDE=y |
| 452 | 471 | ||
| 453 | # | 472 | # |
| 454 | # Please see Documentation/ide.txt for help/info on IDE drives | 473 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 455 | # | 474 | # |
| 456 | # CONFIG_BLK_DEV_IDE_SATA is not set | 475 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 457 | CONFIG_BLK_DEV_IDEDISK=y | 476 | CONFIG_BLK_DEV_IDEDISK=y |
| 458 | # CONFIG_IDEDISK_MULTI_MODE is not set | 477 | # CONFIG_IDEDISK_MULTI_MODE is not set |
| 459 | CONFIG_BLK_DEV_IDECD=y | 478 | CONFIG_BLK_DEV_IDECD=y |
| 479 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | ||
| 460 | CONFIG_BLK_DEV_IDETAPE=y | 480 | CONFIG_BLK_DEV_IDETAPE=y |
| 461 | CONFIG_BLK_DEV_IDEFLOPPY=y | 481 | CONFIG_BLK_DEV_IDEFLOPPY=y |
| 462 | # CONFIG_IDE_TASK_IOCTL is not set | 482 | # CONFIG_IDE_TASK_IOCTL is not set |
| 483 | CONFIG_IDE_PROC_FS=y | ||
| 463 | 484 | ||
| 464 | # | 485 | # |
| 465 | # IDE chipset support/bugfixes | 486 | # IDE chipset support/bugfixes |
| 466 | # | 487 | # |
| 467 | CONFIG_IDE_GENERIC=y | 488 | # CONFIG_IDE_GENERIC is not set |
| 468 | # CONFIG_BLK_DEV_IDEPCI is not set | 489 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 490 | |||
| 491 | # | ||
| 492 | # PCI IDE chipsets support | ||
| 493 | # | ||
| 494 | # CONFIG_BLK_DEV_GENERIC is not set | ||
| 495 | # CONFIG_BLK_DEV_OPTI621 is not set | ||
| 496 | # CONFIG_BLK_DEV_AEC62XX is not set | ||
| 497 | # CONFIG_BLK_DEV_ALI15X3 is not set | ||
| 498 | # CONFIG_BLK_DEV_AMD74XX is not set | ||
| 499 | # CONFIG_BLK_DEV_CMD64X is not set | ||
| 500 | # CONFIG_BLK_DEV_TRIFLEX is not set | ||
| 501 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 502 | # CONFIG_BLK_DEV_CS5520 is not set | ||
| 503 | # CONFIG_BLK_DEV_CS5530 is not set | ||
| 504 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 505 | # CONFIG_BLK_DEV_HPT366 is not set | ||
| 506 | # CONFIG_BLK_DEV_JMICRON is not set | ||
| 507 | # CONFIG_BLK_DEV_SC1200 is not set | ||
| 508 | # CONFIG_BLK_DEV_PIIX is not set | ||
| 509 | # CONFIG_BLK_DEV_IT8213 is not set | ||
| 510 | # CONFIG_BLK_DEV_IT821X is not set | ||
| 511 | # CONFIG_BLK_DEV_NS87415 is not set | ||
| 512 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | ||
| 513 | # CONFIG_BLK_DEV_PDC202XX_NEW is not set | ||
| 514 | # CONFIG_BLK_DEV_SVWKS is not set | ||
| 515 | # CONFIG_BLK_DEV_SIIMAGE is not set | ||
| 516 | # CONFIG_BLK_DEV_SLC90E66 is not set | ||
| 517 | # CONFIG_BLK_DEV_TRM290 is not set | ||
| 518 | # CONFIG_BLK_DEV_VIA82CXXX is not set | ||
| 519 | # CONFIG_BLK_DEV_TC86C001 is not set | ||
| 469 | CONFIG_BLK_DEV_IDE_SWARM=y | 520 | CONFIG_BLK_DEV_IDE_SWARM=y |
| 470 | # CONFIG_IDE_ARM is not set | ||
| 471 | # CONFIG_BLK_DEV_IDEDMA is not set | 521 | # CONFIG_BLK_DEV_IDEDMA is not set |
| 472 | # CONFIG_IDEDMA_AUTO is not set | 522 | # CONFIG_BLK_DEV_HD_ONLY is not set |
| 473 | # CONFIG_BLK_DEV_HD is not set | 523 | # CONFIG_BLK_DEV_HD is not set |
| 474 | 524 | ||
| 475 | # | 525 | # |
| @@ -477,89 +527,68 @@ CONFIG_BLK_DEV_IDE_SWARM=y | |||
| 477 | # | 527 | # |
| 478 | CONFIG_RAID_ATTRS=m | 528 | CONFIG_RAID_ATTRS=m |
| 479 | # CONFIG_SCSI is not set | 529 | # CONFIG_SCSI is not set |
| 530 | # CONFIG_SCSI_DMA is not set | ||
| 480 | # CONFIG_SCSI_NETLINK is not set | 531 | # CONFIG_SCSI_NETLINK is not set |
| 481 | |||
| 482 | # | ||
| 483 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
| 484 | # | ||
| 485 | # CONFIG_ATA is not set | 532 | # CONFIG_ATA is not set |
| 486 | |||
| 487 | # | ||
| 488 | # Multi-device support (RAID and LVM) | ||
| 489 | # | ||
| 490 | # CONFIG_MD is not set | 533 | # CONFIG_MD is not set |
| 491 | |||
| 492 | # | ||
| 493 | # Fusion MPT device support | ||
| 494 | # | ||
| 495 | # CONFIG_FUSION is not set | 534 | # CONFIG_FUSION is not set |
| 496 | 535 | ||
| 497 | # | 536 | # |
| 498 | # IEEE 1394 (FireWire) support | 537 | # IEEE 1394 (FireWire) support |
| 499 | # | 538 | # |
| 539 | # CONFIG_FIREWIRE is not set | ||
| 500 | # CONFIG_IEEE1394 is not set | 540 | # CONFIG_IEEE1394 is not set |
| 501 | |||
| 502 | # | ||
| 503 | # I2O device support | ||
| 504 | # | ||
| 505 | # CONFIG_I2O is not set | 541 | # CONFIG_I2O is not set |
| 506 | |||
| 507 | # | ||
| 508 | # Network device support | ||
| 509 | # | ||
| 510 | CONFIG_NETDEVICES=y | 542 | CONFIG_NETDEVICES=y |
| 543 | CONFIG_NETDEVICES_MULTIQUEUE=y | ||
| 511 | # CONFIG_DUMMY is not set | 544 | # CONFIG_DUMMY is not set |
| 512 | # CONFIG_BONDING is not set | 545 | # CONFIG_BONDING is not set |
| 546 | CONFIG_MACVLAN=m | ||
| 513 | # CONFIG_EQUALIZER is not set | 547 | # CONFIG_EQUALIZER is not set |
| 514 | # CONFIG_TUN is not set | 548 | # CONFIG_TUN is not set |
| 515 | 549 | # CONFIG_VETH is not set | |
| 516 | # | ||
| 517 | # ARCnet devices | ||
| 518 | # | ||
| 519 | # CONFIG_ARCNET is not set | 550 | # CONFIG_ARCNET is not set |
| 520 | 551 | CONFIG_PHYLIB=y | |
| 521 | # | ||
| 522 | # PHY device support | ||
| 523 | # | ||
| 524 | CONFIG_PHYLIB=m | ||
| 525 | 552 | ||
| 526 | # | 553 | # |
| 527 | # MII PHY device drivers | 554 | # MII PHY device drivers |
| 528 | # | 555 | # |
| 529 | CONFIG_MARVELL_PHY=m | 556 | # CONFIG_MARVELL_PHY is not set |
| 530 | CONFIG_DAVICOM_PHY=m | 557 | # CONFIG_DAVICOM_PHY is not set |
| 531 | CONFIG_QSEMI_PHY=m | 558 | # CONFIG_QSEMI_PHY is not set |
| 532 | CONFIG_LXT_PHY=m | 559 | # CONFIG_LXT_PHY is not set |
| 533 | CONFIG_CICADA_PHY=m | 560 | # CONFIG_CICADA_PHY is not set |
| 534 | CONFIG_VITESSE_PHY=m | 561 | # CONFIG_VITESSE_PHY is not set |
| 535 | CONFIG_SMSC_PHY=m | 562 | # CONFIG_SMSC_PHY is not set |
| 536 | # CONFIG_BROADCOM_PHY is not set | 563 | CONFIG_BROADCOM_PHY=y |
| 564 | # CONFIG_ICPLUS_PHY is not set | ||
| 565 | # CONFIG_REALTEK_PHY is not set | ||
| 537 | # CONFIG_FIXED_PHY is not set | 566 | # CONFIG_FIXED_PHY is not set |
| 538 | 567 | # CONFIG_MDIO_BITBANG is not set | |
| 539 | # | ||
| 540 | # Ethernet (10 or 100Mbit) | ||
| 541 | # | ||
| 542 | CONFIG_NET_ETHERNET=y | 568 | CONFIG_NET_ETHERNET=y |
| 543 | CONFIG_MII=y | 569 | CONFIG_MII=y |
| 570 | # CONFIG_AX88796 is not set | ||
| 544 | # CONFIG_HAPPYMEAL is not set | 571 | # CONFIG_HAPPYMEAL is not set |
| 545 | # CONFIG_SUNGEM is not set | 572 | # CONFIG_SUNGEM is not set |
| 546 | # CONFIG_CASSINI is not set | 573 | # CONFIG_CASSINI is not set |
| 547 | # CONFIG_NET_VENDOR_3COM is not set | 574 | # CONFIG_NET_VENDOR_3COM is not set |
| 548 | # CONFIG_DM9000 is not set | 575 | # CONFIG_DM9000 is not set |
| 549 | |||
| 550 | # | ||
| 551 | # Tulip family network device support | ||
| 552 | # | ||
| 553 | # CONFIG_NET_TULIP is not set | 576 | # CONFIG_NET_TULIP is not set |
| 554 | # CONFIG_HP100 is not set | 577 | # CONFIG_HP100 is not set |
| 578 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
| 579 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
| 580 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
| 581 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
| 555 | # CONFIG_NET_PCI is not set | 582 | # CONFIG_NET_PCI is not set |
| 556 | 583 | # CONFIG_B44 is not set | |
| 557 | # | 584 | CONFIG_NETDEV_1000=y |
| 558 | # Ethernet (1000 Mbit) | ||
| 559 | # | ||
| 560 | # CONFIG_ACENIC is not set | 585 | # CONFIG_ACENIC is not set |
| 561 | # CONFIG_DL2K is not set | 586 | # CONFIG_DL2K is not set |
| 562 | # CONFIG_E1000 is not set | 587 | # CONFIG_E1000 is not set |
| 588 | # CONFIG_E1000E is not set | ||
| 589 | # CONFIG_E1000E_ENABLED is not set | ||
| 590 | # CONFIG_IP1000 is not set | ||
| 591 | # CONFIG_IGB is not set | ||
| 563 | # CONFIG_NS83820 is not set | 592 | # CONFIG_NS83820 is not set |
| 564 | # CONFIG_HAMACHI is not set | 593 | # CONFIG_HAMACHI is not set |
| 565 | # CONFIG_YELLOWFIN is not set | 594 | # CONFIG_YELLOWFIN is not set |
| @@ -568,53 +597,70 @@ CONFIG_SB1250_MAC=y | |||
| 568 | # CONFIG_SIS190 is not set | 597 | # CONFIG_SIS190 is not set |
| 569 | # CONFIG_SKGE is not set | 598 | # CONFIG_SKGE is not set |
| 570 | # CONFIG_SKY2 is not set | 599 | # CONFIG_SKY2 is not set |
| 571 | # CONFIG_SK98LIN is not set | 600 | # CONFIG_VIA_VELOCITY is not set |
| 572 | # CONFIG_TIGON3 is not set | 601 | # CONFIG_TIGON3 is not set |
| 573 | # CONFIG_BNX2 is not set | 602 | # CONFIG_BNX2 is not set |
| 574 | CONFIG_QLA3XXX=m | 603 | # CONFIG_QLA3XXX is not set |
| 575 | # CONFIG_ATL1 is not set | 604 | # CONFIG_ATL1 is not set |
| 576 | 605 | CONFIG_NETDEV_10000=y | |
| 577 | # | ||
| 578 | # Ethernet (10000 Mbit) | ||
| 579 | # | ||
| 580 | # CONFIG_CHELSIO_T1 is not set | 606 | # CONFIG_CHELSIO_T1 is not set |
| 581 | CONFIG_CHELSIO_T3=m | 607 | # CONFIG_CHELSIO_T3 is not set |
| 608 | # CONFIG_IXGBE is not set | ||
| 582 | # CONFIG_IXGB is not set | 609 | # CONFIG_IXGB is not set |
| 583 | # CONFIG_S2IO is not set | 610 | # CONFIG_S2IO is not set |
| 584 | # CONFIG_MYRI10GE is not set | 611 | # CONFIG_MYRI10GE is not set |
| 585 | CONFIG_NETXEN_NIC=m | 612 | # CONFIG_NETXEN_NIC is not set |
| 586 | 613 | # CONFIG_NIU is not set | |
| 587 | # | 614 | # CONFIG_MLX4_CORE is not set |
| 588 | # Token Ring devices | 615 | # CONFIG_TEHUTI is not set |
| 589 | # | 616 | # CONFIG_BNX2X is not set |
| 590 | # CONFIG_TR is not set | 617 | # CONFIG_TR is not set |
| 591 | 618 | ||
| 592 | # | 619 | # |
| 593 | # Wireless LAN (non-hamradio) | 620 | # Wireless LAN |
| 594 | # | 621 | # |
| 595 | # CONFIG_NET_RADIO is not set | 622 | # CONFIG_WLAN_PRE80211 is not set |
| 596 | 623 | CONFIG_WLAN_80211=y | |
| 597 | # | 624 | # CONFIG_IPW2100 is not set |
| 598 | # Wan interfaces | 625 | # CONFIG_IPW2200 is not set |
| 599 | # | 626 | # CONFIG_LIBERTAS is not set |
| 627 | # CONFIG_HERMES is not set | ||
| 628 | # CONFIG_ATMEL is not set | ||
| 629 | # CONFIG_PRISM54 is not set | ||
| 630 | # CONFIG_USB_ZD1201 is not set | ||
| 631 | # CONFIG_USB_NET_RNDIS_WLAN is not set | ||
| 632 | # CONFIG_RTL8180 is not set | ||
| 633 | # CONFIG_RTL8187 is not set | ||
| 634 | # CONFIG_ADM8211 is not set | ||
| 635 | # CONFIG_P54_COMMON is not set | ||
| 636 | # CONFIG_ATH5K is not set | ||
| 637 | # CONFIG_IWLCORE is not set | ||
| 638 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 639 | # CONFIG_IWL4965 is not set | ||
| 640 | # CONFIG_IWL3945 is not set | ||
| 641 | # CONFIG_HOSTAP is not set | ||
| 642 | # CONFIG_B43 is not set | ||
| 643 | # CONFIG_B43LEGACY is not set | ||
| 644 | # CONFIG_ZD1211RW is not set | ||
| 645 | # CONFIG_RT2X00 is not set | ||
| 646 | |||
| 647 | # | ||
| 648 | # USB Network Adapters | ||
| 649 | # | ||
| 650 | # CONFIG_USB_CATC is not set | ||
| 651 | # CONFIG_USB_KAWETH is not set | ||
| 652 | # CONFIG_USB_PEGASUS is not set | ||
| 653 | # CONFIG_USB_RTL8150 is not set | ||
| 654 | # CONFIG_USB_USBNET is not set | ||
| 600 | # CONFIG_WAN is not set | 655 | # CONFIG_WAN is not set |
| 601 | # CONFIG_FDDI is not set | 656 | # CONFIG_FDDI is not set |
| 602 | # CONFIG_HIPPI is not set | 657 | # CONFIG_HIPPI is not set |
| 603 | # CONFIG_PPP is not set | 658 | # CONFIG_PPP is not set |
| 604 | # CONFIG_SLIP is not set | 659 | # CONFIG_SLIP is not set |
| 605 | # CONFIG_SHAPER is not set | ||
| 606 | # CONFIG_NETCONSOLE is not set | 660 | # CONFIG_NETCONSOLE is not set |
| 607 | # CONFIG_NETPOLL is not set | 661 | # CONFIG_NETPOLL is not set |
| 608 | # CONFIG_NET_POLL_CONTROLLER is not set | 662 | # CONFIG_NET_POLL_CONTROLLER is not set |
| 609 | |||
| 610 | # | ||
| 611 | # ISDN subsystem | ||
| 612 | # | ||
| 613 | # CONFIG_ISDN is not set | 663 | # CONFIG_ISDN is not set |
| 614 | |||
| 615 | # | ||
| 616 | # Telephony Support | ||
| 617 | # | ||
| 618 | # CONFIG_PHONE is not set | 664 | # CONFIG_PHONE is not set |
| 619 | 665 | ||
| 620 | # | 666 | # |
| @@ -637,24 +683,8 @@ CONFIG_SERIO_RAW=m | |||
| 637 | # Character devices | 683 | # Character devices |
| 638 | # | 684 | # |
| 639 | # CONFIG_VT is not set | 685 | # CONFIG_VT is not set |
| 640 | CONFIG_SERIAL_NONSTANDARD=y | 686 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 641 | # CONFIG_COMPUTONE is not set | 687 | # CONFIG_NOZOMI is not set |
| 642 | # CONFIG_ROCKETPORT is not set | ||
| 643 | # CONFIG_CYCLADES is not set | ||
| 644 | # CONFIG_DIGIEPCA is not set | ||
| 645 | # CONFIG_MOXA_INTELLIO is not set | ||
| 646 | # CONFIG_MOXA_SMARTIO is not set | ||
| 647 | CONFIG_MOXA_SMARTIO_NEW=m | ||
| 648 | # CONFIG_ISI is not set | ||
| 649 | # CONFIG_SYNCLINKMP is not set | ||
| 650 | # CONFIG_SYNCLINK_GT is not set | ||
| 651 | # CONFIG_N_HDLC is not set | ||
| 652 | # CONFIG_SPECIALIX is not set | ||
| 653 | # CONFIG_SX is not set | ||
| 654 | # CONFIG_RIO is not set | ||
| 655 | # CONFIG_STALDRV is not set | ||
| 656 | CONFIG_SERIAL_SB1250_DUART=y | ||
| 657 | CONFIG_SERIAL_SB1250_DUART_CONSOLE=y | ||
| 658 | 688 | ||
| 659 | # | 689 | # |
| 660 | # Serial drivers | 690 | # Serial drivers |
| @@ -664,37 +694,22 @@ CONFIG_SERIAL_SB1250_DUART_CONSOLE=y | |||
| 664 | # | 694 | # |
| 665 | # Non-8250 serial port support | 695 | # Non-8250 serial port support |
| 666 | # | 696 | # |
| 697 | CONFIG_SERIAL_SB1250_DUART=y | ||
| 698 | CONFIG_SERIAL_SB1250_DUART_CONSOLE=y | ||
| 699 | CONFIG_SERIAL_CORE=y | ||
| 700 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 667 | # CONFIG_SERIAL_JSM is not set | 701 | # CONFIG_SERIAL_JSM is not set |
| 668 | CONFIG_UNIX98_PTYS=y | 702 | CONFIG_UNIX98_PTYS=y |
| 669 | CONFIG_LEGACY_PTYS=y | 703 | CONFIG_LEGACY_PTYS=y |
| 670 | CONFIG_LEGACY_PTY_COUNT=256 | 704 | CONFIG_LEGACY_PTY_COUNT=256 |
| 671 | |||
| 672 | # | ||
| 673 | # IPMI | ||
| 674 | # | ||
| 675 | # CONFIG_IPMI_HANDLER is not set | 705 | # CONFIG_IPMI_HANDLER is not set |
| 676 | |||
| 677 | # | ||
| 678 | # Watchdog Cards | ||
| 679 | # | ||
| 680 | # CONFIG_WATCHDOG is not set | ||
| 681 | # CONFIG_HW_RANDOM is not set | 706 | # CONFIG_HW_RANDOM is not set |
| 682 | # CONFIG_RTC is not set | 707 | # CONFIG_RTC is not set |
| 683 | # CONFIG_GEN_RTC is not set | ||
| 684 | # CONFIG_DTLK is not set | ||
| 685 | # CONFIG_R3964 is not set | 708 | # CONFIG_R3964 is not set |
| 686 | # CONFIG_APPLICOM is not set | 709 | # CONFIG_APPLICOM is not set |
| 687 | # CONFIG_DRM is not set | ||
| 688 | # CONFIG_RAW_DRIVER is not set | 710 | # CONFIG_RAW_DRIVER is not set |
| 689 | |||
| 690 | # | ||
| 691 | # TPM devices | ||
| 692 | # | ||
| 693 | # CONFIG_TCG_TPM is not set | 711 | # CONFIG_TCG_TPM is not set |
| 694 | 712 | CONFIG_DEVPORT=y | |
| 695 | # | ||
| 696 | # I2C support | ||
| 697 | # | ||
| 698 | # CONFIG_I2C is not set | 713 | # CONFIG_I2C is not set |
| 699 | 714 | ||
| 700 | # | 715 | # |
| @@ -702,109 +717,139 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 702 | # | 717 | # |
| 703 | # CONFIG_SPI is not set | 718 | # CONFIG_SPI is not set |
| 704 | # CONFIG_SPI_MASTER is not set | 719 | # CONFIG_SPI_MASTER is not set |
| 720 | # CONFIG_W1 is not set | ||
| 721 | # CONFIG_POWER_SUPPLY is not set | ||
| 722 | # CONFIG_HWMON is not set | ||
| 723 | # CONFIG_THERMAL is not set | ||
| 724 | # CONFIG_WATCHDOG is not set | ||
| 705 | 725 | ||
| 706 | # | 726 | # |
| 707 | # Dallas's 1-wire bus | 727 | # Sonics Silicon Backplane |
| 708 | # | 728 | # |
| 709 | # CONFIG_W1 is not set | 729 | CONFIG_SSB_POSSIBLE=y |
| 730 | # CONFIG_SSB is not set | ||
| 710 | 731 | ||
| 711 | # | 732 | # |
| 712 | # Hardware Monitoring support | 733 | # Multifunction device drivers |
| 713 | # | 734 | # |
| 714 | # CONFIG_HWMON is not set | 735 | # CONFIG_MFD_SM501 is not set |
| 715 | # CONFIG_HWMON_VID is not set | ||
| 716 | 736 | ||
| 717 | # | 737 | # |
| 718 | # Multimedia devices | 738 | # Multimedia devices |
| 719 | # | 739 | # |
| 720 | # CONFIG_VIDEO_DEV is not set | 740 | # CONFIG_VIDEO_DEV is not set |
| 721 | 741 | # CONFIG_DVB_CORE is not set | |
| 722 | # | 742 | # CONFIG_DAB is not set |
| 723 | # Digital Video Broadcasting Devices | ||
| 724 | # | ||
| 725 | # CONFIG_DVB is not set | ||
| 726 | 743 | ||
| 727 | # | 744 | # |
| 728 | # Graphics support | 745 | # Graphics support |
| 729 | # | 746 | # |
| 730 | # CONFIG_FIRMWARE_EDID is not set | 747 | # CONFIG_DRM is not set |
| 748 | # CONFIG_VGASTATE is not set | ||
| 749 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
| 731 | # CONFIG_FB is not set | 750 | # CONFIG_FB is not set |
| 732 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 751 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 733 | 752 | ||
| 734 | # | 753 | # |
| 735 | # Sound | 754 | # Display device support |
| 736 | # | 755 | # |
| 737 | # CONFIG_SOUND is not set | 756 | # CONFIG_DISPLAY_SUPPORT is not set |
| 738 | 757 | ||
| 739 | # | 758 | # |
| 740 | # USB support | 759 | # Sound |
| 741 | # | 760 | # |
| 761 | # CONFIG_SOUND is not set | ||
| 762 | CONFIG_USB_SUPPORT=y | ||
| 742 | CONFIG_USB_ARCH_HAS_HCD=y | 763 | CONFIG_USB_ARCH_HAS_HCD=y |
| 743 | CONFIG_USB_ARCH_HAS_OHCI=y | 764 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 744 | CONFIG_USB_ARCH_HAS_EHCI=y | 765 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 745 | # CONFIG_USB is not set | 766 | CONFIG_USB=y |
| 746 | 767 | # CONFIG_USB_DEBUG is not set | |
| 747 | # | 768 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set |
| 748 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
| 749 | # | ||
| 750 | 769 | ||
| 751 | # | 770 | # |
| 752 | # USB Gadget Support | 771 | # Miscellaneous USB options |
| 753 | # | 772 | # |
| 754 | # CONFIG_USB_GADGET is not set | 773 | CONFIG_USB_DEVICEFS=y |
| 774 | CONFIG_USB_DEVICE_CLASS=y | ||
| 775 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 776 | # CONFIG_USB_SUSPEND is not set | ||
| 777 | # CONFIG_USB_PERSIST is not set | ||
| 778 | # CONFIG_USB_OTG is not set | ||
| 755 | 779 | ||
| 756 | # | 780 | # |
| 757 | # MMC/SD Card support | 781 | # USB Host Controller Drivers |
| 758 | # | 782 | # |
| 759 | # CONFIG_MMC is not set | 783 | # CONFIG_USB_EHCI_HCD is not set |
| 784 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 785 | CONFIG_USB_OHCI_HCD=y | ||
| 786 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
| 787 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
| 788 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 789 | # CONFIG_USB_UHCI_HCD is not set | ||
| 790 | # CONFIG_USB_SL811_HCD is not set | ||
| 791 | # CONFIG_USB_R8A66597_HCD is not set | ||
| 760 | 792 | ||
| 761 | # | 793 | # |
| 762 | # LED devices | 794 | # USB Device Class drivers |
| 763 | # | 795 | # |
| 764 | # CONFIG_NEW_LEDS is not set | 796 | # CONFIG_USB_ACM is not set |
| 797 | # CONFIG_USB_PRINTER is not set | ||
| 765 | 798 | ||
| 766 | # | 799 | # |
| 767 | # LED drivers | 800 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 768 | # | 801 | # |
| 769 | 802 | ||
| 770 | # | 803 | # |
| 771 | # LED Triggers | 804 | # may also be needed; see USB_STORAGE Help for more information |
| 772 | # | 805 | # |
| 806 | # CONFIG_USB_LIBUSUAL is not set | ||
| 773 | 807 | ||
| 774 | # | 808 | # |
| 775 | # InfiniBand support | 809 | # USB Imaging devices |
| 776 | # | 810 | # |
| 777 | # CONFIG_INFINIBAND is not set | 811 | # CONFIG_USB_MDC800 is not set |
| 812 | CONFIG_USB_MON=y | ||
| 778 | 813 | ||
| 779 | # | 814 | # |
| 780 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | 815 | # USB port drivers |
| 781 | # | 816 | # |
| 817 | # CONFIG_USB_SERIAL is not set | ||
| 782 | 818 | ||
| 783 | # | 819 | # |
| 784 | # Real Time Clock | 820 | # USB Miscellaneous drivers |
| 785 | # | 821 | # |
| 822 | # CONFIG_USB_EMI62 is not set | ||
| 823 | # CONFIG_USB_EMI26 is not set | ||
| 824 | # CONFIG_USB_ADUTUX is not set | ||
| 825 | # CONFIG_USB_AUERSWALD is not set | ||
| 826 | # CONFIG_USB_RIO500 is not set | ||
| 827 | # CONFIG_USB_LEGOTOWER is not set | ||
| 828 | # CONFIG_USB_LCD is not set | ||
| 829 | # CONFIG_USB_BERRY_CHARGE is not set | ||
| 830 | # CONFIG_USB_LED is not set | ||
| 831 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
| 832 | # CONFIG_USB_CYTHERM is not set | ||
| 833 | # CONFIG_USB_PHIDGET is not set | ||
| 834 | # CONFIG_USB_IDMOUSE is not set | ||
| 835 | # CONFIG_USB_FTDI_ELAN is not set | ||
| 836 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 837 | # CONFIG_USB_LD is not set | ||
| 838 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
| 839 | # CONFIG_USB_IOWARRIOR is not set | ||
| 840 | # CONFIG_USB_TEST is not set | ||
| 841 | # CONFIG_USB_GADGET is not set | ||
| 842 | # CONFIG_MMC is not set | ||
| 843 | # CONFIG_MEMSTICK is not set | ||
| 844 | # CONFIG_NEW_LEDS is not set | ||
| 845 | # CONFIG_INFINIBAND is not set | ||
| 846 | CONFIG_RTC_LIB=y | ||
| 786 | # CONFIG_RTC_CLASS is not set | 847 | # CONFIG_RTC_CLASS is not set |
| 787 | 848 | ||
| 788 | # | 849 | # |
| 789 | # DMA Engine support | 850 | # Userspace I/O |
| 790 | # | ||
| 791 | # CONFIG_DMA_ENGINE is not set | ||
| 792 | |||
| 793 | # | ||
| 794 | # DMA Clients | ||
| 795 | # | ||
| 796 | |||
| 797 | # | ||
| 798 | # DMA Devices | ||
| 799 | # | ||
| 800 | |||
| 801 | # | ||
| 802 | # Auxiliary Display support | ||
| 803 | # | ||
| 804 | |||
| 805 | # | ||
| 806 | # Virtualization | ||
| 807 | # | 851 | # |
| 852 | # CONFIG_UIO is not set | ||
| 808 | 853 | ||
| 809 | # | 854 | # |
| 810 | # File systems | 855 | # File systems |
| @@ -823,15 +868,14 @@ CONFIG_FS_POSIX_ACL=y | |||
| 823 | # CONFIG_XFS_FS is not set | 868 | # CONFIG_XFS_FS is not set |
| 824 | # CONFIG_GFS2_FS is not set | 869 | # CONFIG_GFS2_FS is not set |
| 825 | # CONFIG_OCFS2_FS is not set | 870 | # CONFIG_OCFS2_FS is not set |
| 826 | # CONFIG_MINIX_FS is not set | 871 | CONFIG_DNOTIFY=y |
| 827 | # CONFIG_ROMFS_FS is not set | ||
| 828 | CONFIG_INOTIFY=y | 872 | CONFIG_INOTIFY=y |
| 829 | CONFIG_INOTIFY_USER=y | 873 | CONFIG_INOTIFY_USER=y |
| 830 | # CONFIG_QUOTA is not set | 874 | # CONFIG_QUOTA is not set |
| 831 | CONFIG_DNOTIFY=y | ||
| 832 | # CONFIG_AUTOFS_FS is not set | 875 | # CONFIG_AUTOFS_FS is not set |
| 833 | # CONFIG_AUTOFS4_FS is not set | 876 | # CONFIG_AUTOFS4_FS is not set |
| 834 | CONFIG_FUSE_FS=m | 877 | CONFIG_FUSE_FS=m |
| 878 | CONFIG_GENERIC_ACL=y | ||
| 835 | 879 | ||
| 836 | # | 880 | # |
| 837 | # CD-ROM/DVD Filesystems | 881 | # CD-ROM/DVD Filesystems |
| @@ -853,9 +897,9 @@ CONFIG_PROC_FS=y | |||
| 853 | CONFIG_PROC_KCORE=y | 897 | CONFIG_PROC_KCORE=y |
| 854 | CONFIG_PROC_SYSCTL=y | 898 | CONFIG_PROC_SYSCTL=y |
| 855 | CONFIG_SYSFS=y | 899 | CONFIG_SYSFS=y |
| 856 | # CONFIG_TMPFS is not set | 900 | CONFIG_TMPFS=y |
| 901 | CONFIG_TMPFS_POSIX_ACL=y | ||
| 857 | # CONFIG_HUGETLB_PAGE is not set | 902 | # CONFIG_HUGETLB_PAGE is not set |
| 858 | CONFIG_RAMFS=y | ||
| 859 | CONFIG_CONFIGFS_FS=m | 903 | CONFIG_CONFIGFS_FS=m |
| 860 | 904 | ||
| 861 | # | 905 | # |
| @@ -871,14 +915,13 @@ CONFIG_CONFIGFS_FS=m | |||
| 871 | # CONFIG_EFS_FS is not set | 915 | # CONFIG_EFS_FS is not set |
| 872 | # CONFIG_CRAMFS is not set | 916 | # CONFIG_CRAMFS is not set |
| 873 | # CONFIG_VXFS_FS is not set | 917 | # CONFIG_VXFS_FS is not set |
| 918 | # CONFIG_MINIX_FS is not set | ||
| 874 | # CONFIG_HPFS_FS is not set | 919 | # CONFIG_HPFS_FS is not set |
| 875 | # CONFIG_QNX4FS_FS is not set | 920 | # CONFIG_QNX4FS_FS is not set |
| 921 | # CONFIG_ROMFS_FS is not set | ||
| 876 | # CONFIG_SYSV_FS is not set | 922 | # CONFIG_SYSV_FS is not set |
| 877 | # CONFIG_UFS_FS is not set | 923 | # CONFIG_UFS_FS is not set |
| 878 | 924 | CONFIG_NETWORK_FILESYSTEMS=y | |
| 879 | # | ||
| 880 | # Network File Systems | ||
| 881 | # | ||
| 882 | CONFIG_NFS_FS=y | 925 | CONFIG_NFS_FS=y |
| 883 | CONFIG_NFS_V3=y | 926 | CONFIG_NFS_V3=y |
| 884 | # CONFIG_NFS_V3_ACL is not set | 927 | # CONFIG_NFS_V3_ACL is not set |
| @@ -890,6 +933,7 @@ CONFIG_LOCKD=y | |||
| 890 | CONFIG_LOCKD_V4=y | 933 | CONFIG_LOCKD_V4=y |
| 891 | CONFIG_NFS_COMMON=y | 934 | CONFIG_NFS_COMMON=y |
| 892 | CONFIG_SUNRPC=y | 935 | CONFIG_SUNRPC=y |
| 936 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 893 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 937 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 894 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 938 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 895 | # CONFIG_SMB_FS is not set | 939 | # CONFIG_SMB_FS is not set |
| @@ -897,45 +941,29 @@ CONFIG_SUNRPC=y | |||
| 897 | # CONFIG_NCP_FS is not set | 941 | # CONFIG_NCP_FS is not set |
| 898 | # CONFIG_CODA_FS is not set | 942 | # CONFIG_CODA_FS is not set |
| 899 | # CONFIG_AFS_FS is not set | 943 | # CONFIG_AFS_FS is not set |
| 900 | # CONFIG_9P_FS is not set | ||
| 901 | 944 | ||
| 902 | # | 945 | # |
| 903 | # Partition Types | 946 | # Partition Types |
| 904 | # | 947 | # |
| 905 | # CONFIG_PARTITION_ADVANCED is not set | 948 | # CONFIG_PARTITION_ADVANCED is not set |
| 906 | CONFIG_MSDOS_PARTITION=y | 949 | CONFIG_MSDOS_PARTITION=y |
| 907 | |||
| 908 | # | ||
| 909 | # Native Language Support | ||
| 910 | # | ||
| 911 | # CONFIG_NLS is not set | 950 | # CONFIG_NLS is not set |
| 912 | |||
| 913 | # | ||
| 914 | # Distributed Lock Manager | ||
| 915 | # | ||
| 916 | CONFIG_DLM=m | 951 | CONFIG_DLM=m |
| 917 | CONFIG_DLM_TCP=y | ||
| 918 | # CONFIG_DLM_SCTP is not set | ||
| 919 | # CONFIG_DLM_DEBUG is not set | 952 | # CONFIG_DLM_DEBUG is not set |
| 920 | 953 | ||
| 921 | # | 954 | # |
| 922 | # Profiling support | ||
| 923 | # | ||
| 924 | # CONFIG_PROFILING is not set | ||
| 925 | |||
| 926 | # | ||
| 927 | # Kernel hacking | 955 | # Kernel hacking |
| 928 | # | 956 | # |
| 929 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 957 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
| 930 | # CONFIG_PRINTK_TIME is not set | 958 | # CONFIG_PRINTK_TIME is not set |
| 959 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 931 | CONFIG_ENABLE_MUST_CHECK=y | 960 | CONFIG_ENABLE_MUST_CHECK=y |
| 932 | # CONFIG_MAGIC_SYSRQ is not set | 961 | # CONFIG_MAGIC_SYSRQ is not set |
| 933 | # CONFIG_UNUSED_SYMBOLS is not set | 962 | # CONFIG_UNUSED_SYMBOLS is not set |
| 934 | # CONFIG_DEBUG_FS is not set | 963 | # CONFIG_DEBUG_FS is not set |
| 935 | # CONFIG_HEADERS_CHECK is not set | 964 | # CONFIG_HEADERS_CHECK is not set |
| 936 | # CONFIG_DEBUG_KERNEL is not set | 965 | # CONFIG_DEBUG_KERNEL is not set |
| 937 | CONFIG_LOG_BUF_SHIFT=15 | 966 | # CONFIG_SAMPLES is not set |
| 938 | CONFIG_CROSSCOMPILE=y | ||
| 939 | CONFIG_CMDLINE="" | 967 | CONFIG_CMDLINE="" |
| 940 | CONFIG_SYS_SUPPORTS_KGDB=y | 968 | CONFIG_SYS_SUPPORTS_KGDB=y |
| 941 | # CONFIG_SB1XXX_CORELIS is not set | 969 | # CONFIG_SB1XXX_CORELIS is not set |
| @@ -946,13 +974,12 @@ CONFIG_SYS_SUPPORTS_KGDB=y | |||
| 946 | CONFIG_KEYS=y | 974 | CONFIG_KEYS=y |
| 947 | CONFIG_KEYS_DEBUG_PROC_KEYS=y | 975 | CONFIG_KEYS_DEBUG_PROC_KEYS=y |
| 948 | # CONFIG_SECURITY is not set | 976 | # CONFIG_SECURITY is not set |
| 949 | 977 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | |
| 950 | # | ||
| 951 | # Cryptographic options | ||
| 952 | # | ||
| 953 | CONFIG_CRYPTO=y | 978 | CONFIG_CRYPTO=y |
| 954 | CONFIG_CRYPTO_ALGAPI=y | 979 | CONFIG_CRYPTO_ALGAPI=y |
| 980 | CONFIG_CRYPTO_AEAD=m | ||
| 955 | CONFIG_CRYPTO_BLKCIPHER=m | 981 | CONFIG_CRYPTO_BLKCIPHER=m |
| 982 | CONFIG_CRYPTO_SEQIV=m | ||
| 956 | CONFIG_CRYPTO_HASH=y | 983 | CONFIG_CRYPTO_HASH=y |
| 957 | CONFIG_CRYPTO_MANAGER=y | 984 | CONFIG_CRYPTO_MANAGER=y |
| 958 | CONFIG_CRYPTO_HMAC=y | 985 | CONFIG_CRYPTO_HMAC=y |
| @@ -970,6 +997,11 @@ CONFIG_CRYPTO_ECB=m | |||
| 970 | CONFIG_CRYPTO_CBC=m | 997 | CONFIG_CRYPTO_CBC=m |
| 971 | CONFIG_CRYPTO_PCBC=m | 998 | CONFIG_CRYPTO_PCBC=m |
| 972 | CONFIG_CRYPTO_LRW=m | 999 | CONFIG_CRYPTO_LRW=m |
| 1000 | CONFIG_CRYPTO_XTS=m | ||
| 1001 | CONFIG_CRYPTO_CTR=m | ||
| 1002 | CONFIG_CRYPTO_GCM=m | ||
| 1003 | CONFIG_CRYPTO_CCM=m | ||
| 1004 | CONFIG_CRYPTO_CRYPTD=m | ||
| 973 | CONFIG_CRYPTO_DES=m | 1005 | CONFIG_CRYPTO_DES=m |
| 974 | CONFIG_CRYPTO_FCRYPT=m | 1006 | CONFIG_CRYPTO_FCRYPT=m |
| 975 | CONFIG_CRYPTO_BLOWFISH=m | 1007 | CONFIG_CRYPTO_BLOWFISH=m |
| @@ -983,15 +1015,16 @@ CONFIG_CRYPTO_TEA=m | |||
| 983 | CONFIG_CRYPTO_ARC4=m | 1015 | CONFIG_CRYPTO_ARC4=m |
| 984 | CONFIG_CRYPTO_KHAZAD=m | 1016 | CONFIG_CRYPTO_KHAZAD=m |
| 985 | CONFIG_CRYPTO_ANUBIS=m | 1017 | CONFIG_CRYPTO_ANUBIS=m |
| 1018 | CONFIG_CRYPTO_SEED=m | ||
| 1019 | CONFIG_CRYPTO_SALSA20=m | ||
| 986 | CONFIG_CRYPTO_DEFLATE=m | 1020 | CONFIG_CRYPTO_DEFLATE=m |
| 987 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1021 | CONFIG_CRYPTO_MICHAEL_MIC=m |
| 988 | CONFIG_CRYPTO_CRC32C=m | 1022 | CONFIG_CRYPTO_CRC32C=m |
| 989 | CONFIG_CRYPTO_CAMELLIA=m | 1023 | CONFIG_CRYPTO_CAMELLIA=m |
| 990 | # CONFIG_CRYPTO_TEST is not set | 1024 | # CONFIG_CRYPTO_TEST is not set |
| 991 | 1025 | CONFIG_CRYPTO_AUTHENC=m | |
| 992 | # | 1026 | CONFIG_CRYPTO_LZO=m |
| 993 | # Hardware crypto devices | 1027 | # CONFIG_CRYPTO_HW is not set |
| 994 | # | ||
| 995 | 1028 | ||
| 996 | # | 1029 | # |
| 997 | # Library routines | 1030 | # Library routines |
| @@ -999,10 +1032,15 @@ CONFIG_CRYPTO_CAMELLIA=m | |||
| 999 | CONFIG_BITREVERSE=y | 1032 | CONFIG_BITREVERSE=y |
| 1000 | # CONFIG_CRC_CCITT is not set | 1033 | # CONFIG_CRC_CCITT is not set |
| 1001 | CONFIG_CRC16=m | 1034 | CONFIG_CRC16=m |
| 1035 | # CONFIG_CRC_ITU_T is not set | ||
| 1002 | CONFIG_CRC32=y | 1036 | CONFIG_CRC32=y |
| 1037 | # CONFIG_CRC7 is not set | ||
| 1003 | CONFIG_LIBCRC32C=m | 1038 | CONFIG_LIBCRC32C=m |
| 1004 | CONFIG_ZLIB_INFLATE=m | 1039 | CONFIG_ZLIB_INFLATE=m |
| 1005 | CONFIG_ZLIB_DEFLATE=m | 1040 | CONFIG_ZLIB_DEFLATE=m |
| 1041 | CONFIG_LZO_COMPRESS=m | ||
| 1042 | CONFIG_LZO_DECOMPRESS=m | ||
| 1006 | CONFIG_PLIST=y | 1043 | CONFIG_PLIST=y |
| 1007 | CONFIG_HAS_IOMEM=y | 1044 | CONFIG_HAS_IOMEM=y |
| 1008 | CONFIG_HAS_IOPORT=y | 1045 | CONFIG_HAS_IOPORT=y |
| 1046 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/mips/configs/tb0219_defconfig b/arch/mips/configs/tb0219_defconfig index af82e1a1823c..8dd3ae39bcad 100644 --- a/arch/mips/configs/tb0219_defconfig +++ b/arch/mips/configs/tb0219_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.23-rc2 | 3 | # Linux kernel version: 2.6.26-rc1 |
| 4 | # Wed Aug 8 16:11:47 2007 | 4 | # Mon May 12 11:54:51 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_MIPS=y | 6 | CONFIG_MIPS=y |
| 7 | 7 | ||
| @@ -10,9 +10,11 @@ CONFIG_MIPS=y | |||
| 10 | # | 10 | # |
| 11 | # CONFIG_MACH_ALCHEMY is not set | 11 | # CONFIG_MACH_ALCHEMY is not set |
| 12 | # CONFIG_BASLER_EXCITE is not set | 12 | # CONFIG_BASLER_EXCITE is not set |
| 13 | # CONFIG_BCM47XX is not set | ||
| 13 | # CONFIG_MIPS_COBALT is not set | 14 | # CONFIG_MIPS_COBALT is not set |
| 14 | # CONFIG_MACH_DECSTATION is not set | 15 | # CONFIG_MACH_DECSTATION is not set |
| 15 | # CONFIG_MACH_JAZZ is not set | 16 | # CONFIG_MACH_JAZZ is not set |
| 17 | # CONFIG_LASAT is not set | ||
| 16 | # CONFIG_LEMOTE_FULONG is not set | 18 | # CONFIG_LEMOTE_FULONG is not set |
| 17 | # CONFIG_MIPS_ATLAS is not set | 19 | # CONFIG_MIPS_ATLAS is not set |
| 18 | # CONFIG_MIPS_MALTA is not set | 20 | # CONFIG_MIPS_MALTA is not set |
| @@ -26,6 +28,7 @@ CONFIG_MACH_VR41XX=y | |||
| 26 | # CONFIG_PMC_YOSEMITE is not set | 28 | # CONFIG_PMC_YOSEMITE is not set |
| 27 | # CONFIG_SGI_IP22 is not set | 29 | # CONFIG_SGI_IP22 is not set |
| 28 | # CONFIG_SGI_IP27 is not set | 30 | # CONFIG_SGI_IP27 is not set |
| 31 | # CONFIG_SGI_IP28 is not set | ||
| 29 | # CONFIG_SGI_IP32 is not set | 32 | # CONFIG_SGI_IP32 is not set |
| 30 | # CONFIG_SIBYTE_CRHINE is not set | 33 | # CONFIG_SIBYTE_CRHINE is not set |
| 31 | # CONFIG_SIBYTE_CARMEL is not set | 34 | # CONFIG_SIBYTE_CARMEL is not set |
| @@ -53,12 +56,17 @@ CONFIG_PCI_VR41XX=y | |||
| 53 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 56 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
| 54 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 57 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 55 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 58 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 59 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
| 56 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 60 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 57 | CONFIG_GENERIC_HWEIGHT=y | 61 | CONFIG_GENERIC_HWEIGHT=y |
| 58 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 62 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 63 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 59 | CONFIG_GENERIC_TIME=y | 64 | CONFIG_GENERIC_TIME=y |
| 65 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
| 60 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 66 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
| 61 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | 67 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y |
| 68 | CONFIG_CEVT_R4K=y | ||
| 69 | CONFIG_CSRC_R4K=y | ||
| 62 | CONFIG_DMA_NONCOHERENT=y | 70 | CONFIG_DMA_NONCOHERENT=y |
| 63 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | 71 | CONFIG_DMA_NEED_PCI_MAP_STATE=y |
| 64 | # CONFIG_HOTPLUG_CPU is not set | 72 | # CONFIG_HOTPLUG_CPU is not set |
| @@ -113,6 +121,7 @@ CONFIG_CPU_HAS_SYNC=y | |||
| 113 | CONFIG_GENERIC_HARDIRQS=y | 121 | CONFIG_GENERIC_HARDIRQS=y |
| 114 | CONFIG_GENERIC_IRQ_PROBE=y | 122 | CONFIG_GENERIC_IRQ_PROBE=y |
| 115 | CONFIG_ARCH_FLATMEM_ENABLE=y | 123 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 124 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
| 116 | CONFIG_SELECT_MEMORY_MODEL=y | 125 | CONFIG_SELECT_MEMORY_MODEL=y |
| 117 | CONFIG_FLATMEM_MANUAL=y | 126 | CONFIG_FLATMEM_MANUAL=y |
| 118 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 127 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
| @@ -120,10 +129,16 @@ CONFIG_FLATMEM_MANUAL=y | |||
| 120 | CONFIG_FLATMEM=y | 129 | CONFIG_FLATMEM=y |
| 121 | CONFIG_FLAT_NODE_MEM_MAP=y | 130 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 122 | # CONFIG_SPARSEMEM_STATIC is not set | 131 | # CONFIG_SPARSEMEM_STATIC is not set |
| 132 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
| 133 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 123 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 134 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 124 | # CONFIG_RESOURCES_64BIT is not set | 135 | # CONFIG_RESOURCES_64BIT is not set |
| 125 | CONFIG_ZONE_DMA_FLAG=0 | 136 | CONFIG_ZONE_DMA_FLAG=0 |
| 126 | CONFIG_VIRT_TO_BUS=y | 137 | CONFIG_VIRT_TO_BUS=y |
| 138 | # CONFIG_TICK_ONESHOT is not set | ||
| 139 | # CONFIG_NO_HZ is not set | ||
| 140 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 141 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 127 | # CONFIG_HZ_48 is not set | 142 | # CONFIG_HZ_48 is not set |
| 128 | # CONFIG_HZ_100 is not set | 143 | # CONFIG_HZ_100 is not set |
| 129 | # CONFIG_HZ_128 is not set | 144 | # CONFIG_HZ_128 is not set |
| @@ -156,23 +171,29 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 156 | # CONFIG_POSIX_MQUEUE is not set | 171 | # CONFIG_POSIX_MQUEUE is not set |
| 157 | # CONFIG_BSD_PROCESS_ACCT is not set | 172 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 158 | # CONFIG_TASKSTATS is not set | 173 | # CONFIG_TASKSTATS is not set |
| 159 | # CONFIG_USER_NS is not set | ||
| 160 | # CONFIG_AUDIT is not set | 174 | # CONFIG_AUDIT is not set |
| 161 | # CONFIG_IKCONFIG is not set | 175 | # CONFIG_IKCONFIG is not set |
| 162 | CONFIG_LOG_BUF_SHIFT=14 | 176 | CONFIG_LOG_BUF_SHIFT=14 |
| 177 | # CONFIG_CGROUPS is not set | ||
| 178 | # CONFIG_GROUP_SCHED is not set | ||
| 163 | CONFIG_SYSFS_DEPRECATED=y | 179 | CONFIG_SYSFS_DEPRECATED=y |
| 180 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
| 164 | # CONFIG_RELAY is not set | 181 | # CONFIG_RELAY is not set |
| 182 | # CONFIG_NAMESPACES is not set | ||
| 165 | # CONFIG_BLK_DEV_INITRD is not set | 183 | # CONFIG_BLK_DEV_INITRD is not set |
| 166 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 184 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 167 | CONFIG_SYSCTL=y | 185 | CONFIG_SYSCTL=y |
| 168 | CONFIG_EMBEDDED=y | 186 | CONFIG_EMBEDDED=y |
| 169 | CONFIG_SYSCTL_SYSCALL=y | 187 | CONFIG_SYSCTL_SYSCALL=y |
| 188 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 170 | CONFIG_KALLSYMS=y | 189 | CONFIG_KALLSYMS=y |
| 171 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 190 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 172 | CONFIG_HOTPLUG=y | 191 | CONFIG_HOTPLUG=y |
| 173 | CONFIG_PRINTK=y | 192 | CONFIG_PRINTK=y |
| 174 | CONFIG_BUG=y | 193 | CONFIG_BUG=y |
| 175 | CONFIG_ELF_CORE=y | 194 | CONFIG_ELF_CORE=y |
| 195 | # CONFIG_PCSPKR_PLATFORM is not set | ||
| 196 | CONFIG_COMPAT_BRK=y | ||
| 176 | CONFIG_BASE_FULL=y | 197 | CONFIG_BASE_FULL=y |
| 177 | CONFIG_FUTEX=y | 198 | CONFIG_FUTEX=y |
| 178 | CONFIG_ANON_INODES=y | 199 | CONFIG_ANON_INODES=y |
| @@ -185,10 +206,19 @@ CONFIG_VM_EVENT_COUNTERS=y | |||
| 185 | CONFIG_SLAB=y | 206 | CONFIG_SLAB=y |
| 186 | # CONFIG_SLUB is not set | 207 | # CONFIG_SLUB is not set |
| 187 | # CONFIG_SLOB is not set | 208 | # CONFIG_SLOB is not set |
| 209 | # CONFIG_PROFILING is not set | ||
| 210 | # CONFIG_MARKERS is not set | ||
| 211 | CONFIG_HAVE_OPROFILE=y | ||
| 212 | # CONFIG_HAVE_KPROBES is not set | ||
| 213 | # CONFIG_HAVE_KRETPROBES is not set | ||
| 214 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 215 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 216 | CONFIG_SLABINFO=y | ||
| 188 | CONFIG_RT_MUTEXES=y | 217 | CONFIG_RT_MUTEXES=y |
| 189 | # CONFIG_TINY_SHMEM is not set | 218 | # CONFIG_TINY_SHMEM is not set |
| 190 | CONFIG_BASE_SMALL=0 | 219 | CONFIG_BASE_SMALL=0 |
| 191 | CONFIG_MODULES=y | 220 | CONFIG_MODULES=y |
| 221 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 192 | CONFIG_MODULE_UNLOAD=y | 222 | CONFIG_MODULE_UNLOAD=y |
| 193 | CONFIG_MODULE_FORCE_UNLOAD=y | 223 | CONFIG_MODULE_FORCE_UNLOAD=y |
| 194 | CONFIG_MODVERSIONS=y | 224 | CONFIG_MODVERSIONS=y |
| @@ -212,18 +242,17 @@ CONFIG_DEFAULT_AS=y | |||
| 212 | # CONFIG_DEFAULT_CFQ is not set | 242 | # CONFIG_DEFAULT_CFQ is not set |
| 213 | # CONFIG_DEFAULT_NOOP is not set | 243 | # CONFIG_DEFAULT_NOOP is not set |
| 214 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 244 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 245 | CONFIG_CLASSIC_RCU=y | ||
| 215 | 246 | ||
| 216 | # | 247 | # |
| 217 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | 248 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) |
| 218 | # | 249 | # |
| 219 | CONFIG_HW_HAS_PCI=y | 250 | CONFIG_HW_HAS_PCI=y |
| 220 | CONFIG_PCI=y | 251 | CONFIG_PCI=y |
| 252 | CONFIG_PCI_DOMAINS=y | ||
| 221 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 253 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 254 | CONFIG_PCI_LEGACY=y | ||
| 222 | CONFIG_MMU=y | 255 | CONFIG_MMU=y |
| 223 | |||
| 224 | # | ||
| 225 | # PCCARD (PCMCIA/CardBus) support | ||
| 226 | # | ||
| 227 | # CONFIG_PCCARD is not set | 256 | # CONFIG_PCCARD is not set |
| 228 | # CONFIG_HOTPLUG_PCI is not set | 257 | # CONFIG_HOTPLUG_PCI is not set |
| 229 | 258 | ||
| @@ -237,6 +266,7 @@ CONFIG_TRAD_SIGNALS=y | |||
| 237 | # | 266 | # |
| 238 | # Power management options | 267 | # Power management options |
| 239 | # | 268 | # |
| 269 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 240 | # CONFIG_PM is not set | 270 | # CONFIG_PM is not set |
| 241 | 271 | ||
| 242 | # | 272 | # |
| @@ -278,6 +308,7 @@ CONFIG_INET_TUNNEL=m | |||
| 278 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | 308 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set |
| 279 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | 309 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set |
| 280 | # CONFIG_INET_XFRM_MODE_BEET is not set | 310 | # CONFIG_INET_XFRM_MODE_BEET is not set |
| 311 | # CONFIG_INET_LRO is not set | ||
| 281 | CONFIG_INET_DIAG=y | 312 | CONFIG_INET_DIAG=y |
| 282 | CONFIG_INET_TCP_DIAG=y | 313 | CONFIG_INET_TCP_DIAG=y |
| 283 | # CONFIG_TCP_CONG_ADVANCED is not set | 314 | # CONFIG_TCP_CONG_ADVANCED is not set |
| @@ -285,15 +316,10 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 285 | CONFIG_DEFAULT_TCP_CONG="cubic" | 316 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 286 | # CONFIG_TCP_MD5SIG is not set | 317 | # CONFIG_TCP_MD5SIG is not set |
| 287 | # CONFIG_IPV6 is not set | 318 | # CONFIG_IPV6 is not set |
| 288 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 289 | # CONFIG_INET6_TUNNEL is not set | ||
| 290 | CONFIG_NETWORK_SECMARK=y | 319 | CONFIG_NETWORK_SECMARK=y |
| 291 | # CONFIG_NETFILTER is not set | 320 | # CONFIG_NETFILTER is not set |
| 292 | # CONFIG_IP_DCCP is not set | 321 | # CONFIG_IP_DCCP is not set |
| 293 | # CONFIG_IP_SCTP is not set | 322 | # CONFIG_IP_SCTP is not set |
| 294 | # CONFIG_SCTP_HMAC_NONE is not set | ||
| 295 | # CONFIG_SCTP_HMAC_SHA1 is not set | ||
| 296 | # CONFIG_SCTP_HMAC_MD5 is not set | ||
| 297 | # CONFIG_TIPC is not set | 323 | # CONFIG_TIPC is not set |
| 298 | # CONFIG_ATM is not set | 324 | # CONFIG_ATM is not set |
| 299 | # CONFIG_BRIDGE is not set | 325 | # CONFIG_BRIDGE is not set |
| @@ -306,10 +332,6 @@ CONFIG_NETWORK_SECMARK=y | |||
| 306 | # CONFIG_LAPB is not set | 332 | # CONFIG_LAPB is not set |
| 307 | # CONFIG_ECONET is not set | 333 | # CONFIG_ECONET is not set |
| 308 | # CONFIG_WAN_ROUTER is not set | 334 | # CONFIG_WAN_ROUTER is not set |
| 309 | |||
| 310 | # | ||
| 311 | # QoS and/or fair queueing | ||
| 312 | # | ||
| 313 | # CONFIG_NET_SCHED is not set | 335 | # CONFIG_NET_SCHED is not set |
| 314 | 336 | ||
| 315 | # | 337 | # |
| @@ -317,6 +339,7 @@ CONFIG_NETWORK_SECMARK=y | |||
| 317 | # | 339 | # |
| 318 | # CONFIG_NET_PKTGEN is not set | 340 | # CONFIG_NET_PKTGEN is not set |
| 319 | # CONFIG_HAMRADIO is not set | 341 | # CONFIG_HAMRADIO is not set |
| 342 | # CONFIG_CAN is not set | ||
| 320 | # CONFIG_IRDA is not set | 343 | # CONFIG_IRDA is not set |
| 321 | # CONFIG_BT is not set | 344 | # CONFIG_BT is not set |
| 322 | # CONFIG_AF_RXRPC is not set | 345 | # CONFIG_AF_RXRPC is not set |
| @@ -339,6 +362,7 @@ CONFIG_FIB_RULES=y | |||
| 339 | # | 362 | # |
| 340 | # Generic Driver Options | 363 | # Generic Driver Options |
| 341 | # | 364 | # |
| 365 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
| 342 | CONFIG_STANDALONE=y | 366 | CONFIG_STANDALONE=y |
| 343 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 367 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 344 | CONFIG_FW_LOADER=m | 368 | CONFIG_FW_LOADER=m |
| @@ -360,10 +384,11 @@ CONFIG_BLK_DEV_NBD=m | |||
| 360 | CONFIG_BLK_DEV_RAM=y | 384 | CONFIG_BLK_DEV_RAM=y |
| 361 | CONFIG_BLK_DEV_RAM_COUNT=16 | 385 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 362 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 386 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
| 363 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 387 | CONFIG_BLK_DEV_XIP=y |
| 364 | # CONFIG_CDROM_PKTCDVD is not set | 388 | # CONFIG_CDROM_PKTCDVD is not set |
| 365 | # CONFIG_ATA_OVER_ETH is not set | 389 | # CONFIG_ATA_OVER_ETH is not set |
| 366 | # CONFIG_MISC_DEVICES is not set | 390 | # CONFIG_MISC_DEVICES is not set |
| 391 | CONFIG_HAVE_IDE=y | ||
| 367 | # CONFIG_IDE is not set | 392 | # CONFIG_IDE is not set |
| 368 | 393 | ||
| 369 | # | 394 | # |
| @@ -375,10 +400,6 @@ CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | |||
| 375 | # CONFIG_SCSI_NETLINK is not set | 400 | # CONFIG_SCSI_NETLINK is not set |
| 376 | # CONFIG_ATA is not set | 401 | # CONFIG_ATA is not set |
| 377 | # CONFIG_MD is not set | 402 | # CONFIG_MD is not set |
| 378 | |||
| 379 | # | ||
| 380 | # Fusion MPT device support | ||
| 381 | # | ||
| 382 | # CONFIG_FUSION is not set | 403 | # CONFIG_FUSION is not set |
| 383 | 404 | ||
| 384 | # | 405 | # |
| @@ -394,6 +415,7 @@ CONFIG_NETDEVICES=y | |||
| 394 | # CONFIG_MACVLAN is not set | 415 | # CONFIG_MACVLAN is not set |
| 395 | # CONFIG_EQUALIZER is not set | 416 | # CONFIG_EQUALIZER is not set |
| 396 | # CONFIG_TUN is not set | 417 | # CONFIG_TUN is not set |
| 418 | # CONFIG_VETH is not set | ||
| 397 | # CONFIG_ARCNET is not set | 419 | # CONFIG_ARCNET is not set |
| 398 | CONFIG_PHYLIB=m | 420 | CONFIG_PHYLIB=m |
| 399 | 421 | ||
| @@ -409,7 +431,8 @@ CONFIG_VITESSE_PHY=m | |||
| 409 | CONFIG_SMSC_PHY=m | 431 | CONFIG_SMSC_PHY=m |
| 410 | # CONFIG_BROADCOM_PHY is not set | 432 | # CONFIG_BROADCOM_PHY is not set |
| 411 | # CONFIG_ICPLUS_PHY is not set | 433 | # CONFIG_ICPLUS_PHY is not set |
| 412 | # CONFIG_FIXED_PHY is not set | 434 | # CONFIG_REALTEK_PHY is not set |
| 435 | # CONFIG_MDIO_BITBANG is not set | ||
| 413 | CONFIG_NET_ETHERNET=y | 436 | CONFIG_NET_ETHERNET=y |
| 414 | CONFIG_MII=y | 437 | CONFIG_MII=y |
| 415 | # CONFIG_AX88796 is not set | 438 | # CONFIG_AX88796 is not set |
| @@ -420,6 +443,10 @@ CONFIG_MII=y | |||
| 420 | # CONFIG_DM9000 is not set | 443 | # CONFIG_DM9000 is not set |
| 421 | # CONFIG_NET_TULIP is not set | 444 | # CONFIG_NET_TULIP is not set |
| 422 | # CONFIG_HP100 is not set | 445 | # CONFIG_HP100 is not set |
| 446 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
| 447 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
| 448 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
| 449 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
| 423 | CONFIG_NET_PCI=y | 450 | CONFIG_NET_PCI=y |
| 424 | # CONFIG_PCNET32 is not set | 451 | # CONFIG_PCNET32 is not set |
| 425 | # CONFIG_AMD8111_ETH is not set | 452 | # CONFIG_AMD8111_ETH is not set |
| @@ -427,7 +454,6 @@ CONFIG_NET_PCI=y | |||
| 427 | # CONFIG_B44 is not set | 454 | # CONFIG_B44 is not set |
| 428 | # CONFIG_FORCEDETH is not set | 455 | # CONFIG_FORCEDETH is not set |
| 429 | # CONFIG_TC35815 is not set | 456 | # CONFIG_TC35815 is not set |
| 430 | # CONFIG_DGRS is not set | ||
| 431 | # CONFIG_EEPRO100 is not set | 457 | # CONFIG_EEPRO100 is not set |
| 432 | # CONFIG_E100 is not set | 458 | # CONFIG_E100 is not set |
| 433 | # CONFIG_FEALNX is not set | 459 | # CONFIG_FEALNX is not set |
| @@ -439,6 +465,7 @@ CONFIG_8139TOO_PIO=y | |||
| 439 | # CONFIG_8139TOO_TUNE_TWISTER is not set | 465 | # CONFIG_8139TOO_TUNE_TWISTER is not set |
| 440 | # CONFIG_8139TOO_8129 is not set | 466 | # CONFIG_8139TOO_8129 is not set |
| 441 | # CONFIG_8139_OLD_RX_RESET is not set | 467 | # CONFIG_8139_OLD_RX_RESET is not set |
| 468 | # CONFIG_R6040 is not set | ||
| 442 | # CONFIG_SIS900 is not set | 469 | # CONFIG_SIS900 is not set |
| 443 | # CONFIG_EPIC100 is not set | 470 | # CONFIG_EPIC100 is not set |
| 444 | # CONFIG_SUNDANCE is not set | 471 | # CONFIG_SUNDANCE is not set |
| @@ -451,6 +478,10 @@ CONFIG_NETDEV_1000=y | |||
| 451 | # CONFIG_ACENIC is not set | 478 | # CONFIG_ACENIC is not set |
| 452 | # CONFIG_DL2K is not set | 479 | # CONFIG_DL2K is not set |
| 453 | # CONFIG_E1000 is not set | 480 | # CONFIG_E1000 is not set |
| 481 | # CONFIG_E1000E is not set | ||
| 482 | # CONFIG_E1000E_ENABLED is not set | ||
| 483 | # CONFIG_IP1000 is not set | ||
| 484 | # CONFIG_IGB is not set | ||
| 454 | # CONFIG_NS83820 is not set | 485 | # CONFIG_NS83820 is not set |
| 455 | # CONFIG_HAMACHI is not set | 486 | # CONFIG_HAMACHI is not set |
| 456 | # CONFIG_YELLOWFIN is not set | 487 | # CONFIG_YELLOWFIN is not set |
| @@ -472,6 +503,7 @@ CONFIG_VIA_VELOCITY=y | |||
| 472 | # | 503 | # |
| 473 | # CONFIG_WLAN_PRE80211 is not set | 504 | # CONFIG_WLAN_PRE80211 is not set |
| 474 | # CONFIG_WLAN_80211 is not set | 505 | # CONFIG_WLAN_80211 is not set |
| 506 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 475 | 507 | ||
| 476 | # | 508 | # |
| 477 | # USB Network Adapters | 509 | # USB Network Adapters |
| @@ -480,14 +512,12 @@ CONFIG_VIA_VELOCITY=y | |||
| 480 | # CONFIG_USB_KAWETH is not set | 512 | # CONFIG_USB_KAWETH is not set |
| 481 | # CONFIG_USB_PEGASUS is not set | 513 | # CONFIG_USB_PEGASUS is not set |
| 482 | # CONFIG_USB_RTL8150 is not set | 514 | # CONFIG_USB_RTL8150 is not set |
| 483 | # CONFIG_USB_USBNET_MII is not set | ||
| 484 | # CONFIG_USB_USBNET is not set | 515 | # CONFIG_USB_USBNET is not set |
| 485 | # CONFIG_WAN is not set | 516 | # CONFIG_WAN is not set |
| 486 | # CONFIG_FDDI is not set | 517 | # CONFIG_FDDI is not set |
| 487 | # CONFIG_HIPPI is not set | 518 | # CONFIG_HIPPI is not set |
| 488 | # CONFIG_PPP is not set | 519 | # CONFIG_PPP is not set |
| 489 | # CONFIG_SLIP is not set | 520 | # CONFIG_SLIP is not set |
| 490 | # CONFIG_SHAPER is not set | ||
| 491 | # CONFIG_NETCONSOLE is not set | 521 | # CONFIG_NETCONSOLE is not set |
| 492 | # CONFIG_NETPOLL is not set | 522 | # CONFIG_NETPOLL is not set |
| 493 | # CONFIG_NET_POLL_CONTROLLER is not set | 523 | # CONFIG_NET_POLL_CONTROLLER is not set |
| @@ -506,7 +536,6 @@ CONFIG_INPUT=y | |||
| 506 | # | 536 | # |
| 507 | # CONFIG_INPUT_MOUSEDEV is not set | 537 | # CONFIG_INPUT_MOUSEDEV is not set |
| 508 | # CONFIG_INPUT_JOYDEV is not set | 538 | # CONFIG_INPUT_JOYDEV is not set |
| 509 | # CONFIG_INPUT_TSDEV is not set | ||
| 510 | # CONFIG_INPUT_EVDEV is not set | 539 | # CONFIG_INPUT_EVDEV is not set |
| 511 | # CONFIG_INPUT_EVBUG is not set | 540 | # CONFIG_INPUT_EVBUG is not set |
| 512 | 541 | ||
| @@ -533,7 +562,9 @@ CONFIG_VT=y | |||
| 533 | CONFIG_VT_CONSOLE=y | 562 | CONFIG_VT_CONSOLE=y |
| 534 | CONFIG_HW_CONSOLE=y | 563 | CONFIG_HW_CONSOLE=y |
| 535 | CONFIG_VT_HW_CONSOLE_BINDING=y | 564 | CONFIG_VT_HW_CONSOLE_BINDING=y |
| 565 | # CONFIG_DEVKMEM is not set | ||
| 536 | # CONFIG_SERIAL_NONSTANDARD is not set | 566 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 567 | # CONFIG_NOZOMI is not set | ||
| 537 | 568 | ||
| 538 | # | 569 | # |
| 539 | # Serial drivers | 570 | # Serial drivers |
| @@ -552,52 +583,62 @@ CONFIG_UNIX98_PTYS=y | |||
| 552 | CONFIG_LEGACY_PTYS=y | 583 | CONFIG_LEGACY_PTYS=y |
| 553 | CONFIG_LEGACY_PTY_COUNT=256 | 584 | CONFIG_LEGACY_PTY_COUNT=256 |
| 554 | # CONFIG_IPMI_HANDLER is not set | 585 | # CONFIG_IPMI_HANDLER is not set |
| 555 | # CONFIG_WATCHDOG is not set | ||
| 556 | # CONFIG_HW_RANDOM is not set | 586 | # CONFIG_HW_RANDOM is not set |
| 557 | # CONFIG_RTC is not set | ||
| 558 | # CONFIG_R3964 is not set | 587 | # CONFIG_R3964 is not set |
| 559 | # CONFIG_APPLICOM is not set | 588 | # CONFIG_APPLICOM is not set |
| 560 | CONFIG_GPIO_TB0219=y | 589 | CONFIG_GPIO_TB0219=y |
| 561 | # CONFIG_DRM is not set | ||
| 562 | CONFIG_GPIO_VR41XX=y | 590 | CONFIG_GPIO_VR41XX=y |
| 563 | # CONFIG_RAW_DRIVER is not set | 591 | # CONFIG_RAW_DRIVER is not set |
| 564 | # CONFIG_TCG_TPM is not set | 592 | # CONFIG_TCG_TPM is not set |
| 565 | CONFIG_DEVPORT=y | 593 | CONFIG_DEVPORT=y |
| 566 | # CONFIG_I2C is not set | 594 | # CONFIG_I2C is not set |
| 567 | |||
| 568 | # | ||
| 569 | # SPI support | ||
| 570 | # | ||
| 571 | # CONFIG_SPI is not set | 595 | # CONFIG_SPI is not set |
| 572 | # CONFIG_SPI_MASTER is not set | ||
| 573 | # CONFIG_W1 is not set | 596 | # CONFIG_W1 is not set |
| 574 | # CONFIG_POWER_SUPPLY is not set | 597 | # CONFIG_POWER_SUPPLY is not set |
| 575 | # CONFIG_HWMON is not set | 598 | # CONFIG_HWMON is not set |
| 599 | # CONFIG_THERMAL is not set | ||
| 600 | # CONFIG_WATCHDOG is not set | ||
| 601 | |||
| 602 | # | ||
| 603 | # Sonics Silicon Backplane | ||
| 604 | # | ||
| 605 | CONFIG_SSB_POSSIBLE=y | ||
| 606 | # CONFIG_SSB is not set | ||
| 576 | 607 | ||
| 577 | # | 608 | # |
| 578 | # Multifunction device drivers | 609 | # Multifunction device drivers |
| 579 | # | 610 | # |
| 580 | # CONFIG_MFD_SM501 is not set | 611 | # CONFIG_MFD_SM501 is not set |
| 612 | # CONFIG_HTC_PASIC3 is not set | ||
| 581 | 613 | ||
| 582 | # | 614 | # |
| 583 | # Multimedia devices | 615 | # Multimedia devices |
| 584 | # | 616 | # |
| 617 | |||
| 618 | # | ||
| 619 | # Multimedia core support | ||
| 620 | # | ||
| 585 | # CONFIG_VIDEO_DEV is not set | 621 | # CONFIG_VIDEO_DEV is not set |
| 586 | # CONFIG_DVB_CORE is not set | 622 | # CONFIG_DVB_CORE is not set |
| 623 | |||
| 624 | # | ||
| 625 | # Multimedia drivers | ||
| 626 | # | ||
| 587 | # CONFIG_DAB is not set | 627 | # CONFIG_DAB is not set |
| 588 | 628 | ||
| 589 | # | 629 | # |
| 590 | # Graphics support | 630 | # Graphics support |
| 591 | # | 631 | # |
| 632 | # CONFIG_DRM is not set | ||
| 633 | # CONFIG_VGASTATE is not set | ||
| 634 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
| 635 | # CONFIG_FB is not set | ||
| 592 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 636 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 593 | 637 | ||
| 594 | # | 638 | # |
| 595 | # Display device support | 639 | # Display device support |
| 596 | # | 640 | # |
| 597 | # CONFIG_DISPLAY_SUPPORT is not set | 641 | # CONFIG_DISPLAY_SUPPORT is not set |
| 598 | # CONFIG_VGASTATE is not set | ||
| 599 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
| 600 | # CONFIG_FB is not set | ||
| 601 | 642 | ||
| 602 | # | 643 | # |
| 603 | # Console display driver support | 644 | # Console display driver support |
| @@ -616,6 +657,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
| 616 | CONFIG_USB_ARCH_HAS_EHCI=y | 657 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 617 | CONFIG_USB=m | 658 | CONFIG_USB=m |
| 618 | # CONFIG_USB_DEBUG is not set | 659 | # CONFIG_USB_DEBUG is not set |
| 660 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
| 619 | 661 | ||
| 620 | # | 662 | # |
| 621 | # Miscellaneous USB options | 663 | # Miscellaneous USB options |
| @@ -624,15 +666,18 @@ CONFIG_USB_DEVICEFS=y | |||
| 624 | CONFIG_USB_DEVICE_CLASS=y | 666 | CONFIG_USB_DEVICE_CLASS=y |
| 625 | # CONFIG_USB_DYNAMIC_MINORS is not set | 667 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 626 | # CONFIG_USB_OTG is not set | 668 | # CONFIG_USB_OTG is not set |
| 669 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 670 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 627 | 671 | ||
| 628 | # | 672 | # |
| 629 | # USB Host Controller Drivers | 673 | # USB Host Controller Drivers |
| 630 | # | 674 | # |
| 675 | # CONFIG_USB_C67X00_HCD is not set | ||
| 631 | CONFIG_USB_EHCI_HCD=m | 676 | CONFIG_USB_EHCI_HCD=m |
| 632 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
| 633 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 677 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 634 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 678 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 635 | # CONFIG_USB_ISP116X_HCD is not set | 679 | # CONFIG_USB_ISP116X_HCD is not set |
| 680 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 636 | CONFIG_USB_OHCI_HCD=m | 681 | CONFIG_USB_OHCI_HCD=m |
| 637 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 682 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
| 638 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | 683 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set |
| @@ -665,10 +710,6 @@ CONFIG_USB_MON=y | |||
| 665 | # | 710 | # |
| 666 | # USB port drivers | 711 | # USB port drivers |
| 667 | # | 712 | # |
| 668 | |||
| 669 | # | ||
| 670 | # USB Serial Converter support | ||
| 671 | # | ||
| 672 | # CONFIG_USB_SERIAL is not set | 713 | # CONFIG_USB_SERIAL is not set |
| 673 | 714 | ||
| 674 | # | 715 | # |
| @@ -694,17 +735,11 @@ CONFIG_USB_MON=y | |||
| 694 | # CONFIG_USB_TRANCEVIBRATOR is not set | 735 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 695 | # CONFIG_USB_IOWARRIOR is not set | 736 | # CONFIG_USB_IOWARRIOR is not set |
| 696 | # CONFIG_USB_TEST is not set | 737 | # CONFIG_USB_TEST is not set |
| 697 | |||
| 698 | # | ||
| 699 | # USB DSL modem support | ||
| 700 | # | ||
| 701 | |||
| 702 | # | ||
| 703 | # USB Gadget Support | ||
| 704 | # | ||
| 705 | # CONFIG_USB_GADGET is not set | 738 | # CONFIG_USB_GADGET is not set |
| 706 | # CONFIG_MMC is not set | 739 | # CONFIG_MMC is not set |
| 740 | # CONFIG_MEMSTICK is not set | ||
| 707 | # CONFIG_NEW_LEDS is not set | 741 | # CONFIG_NEW_LEDS is not set |
| 742 | # CONFIG_ACCESSIBILITY is not set | ||
| 708 | # CONFIG_INFINIBAND is not set | 743 | # CONFIG_INFINIBAND is not set |
| 709 | CONFIG_RTC_LIB=y | 744 | CONFIG_RTC_LIB=y |
| 710 | CONFIG_RTC_CLASS=y | 745 | CONFIG_RTC_CLASS=y |
| @@ -729,9 +764,10 @@ CONFIG_RTC_INTF_DEV=y | |||
| 729 | # Platform RTC drivers | 764 | # Platform RTC drivers |
| 730 | # | 765 | # |
| 731 | # CONFIG_RTC_DRV_CMOS is not set | 766 | # CONFIG_RTC_DRV_CMOS is not set |
| 767 | # CONFIG_RTC_DRV_DS1511 is not set | ||
| 732 | # CONFIG_RTC_DRV_DS1553 is not set | 768 | # CONFIG_RTC_DRV_DS1553 is not set |
| 733 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 734 | # CONFIG_RTC_DRV_DS1742 is not set | 769 | # CONFIG_RTC_DRV_DS1742 is not set |
| 770 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 735 | # CONFIG_RTC_DRV_M48T86 is not set | 771 | # CONFIG_RTC_DRV_M48T86 is not set |
| 736 | # CONFIG_RTC_DRV_M48T59 is not set | 772 | # CONFIG_RTC_DRV_M48T59 is not set |
| 737 | # CONFIG_RTC_DRV_V3020 is not set | 773 | # CONFIG_RTC_DRV_V3020 is not set |
| @@ -740,23 +776,6 @@ CONFIG_RTC_INTF_DEV=y | |||
| 740 | # on-CPU RTC drivers | 776 | # on-CPU RTC drivers |
| 741 | # | 777 | # |
| 742 | CONFIG_RTC_DRV_VR41XX=y | 778 | CONFIG_RTC_DRV_VR41XX=y |
| 743 | |||
| 744 | # | ||
| 745 | # DMA Engine support | ||
| 746 | # | ||
| 747 | # CONFIG_DMA_ENGINE is not set | ||
| 748 | |||
| 749 | # | ||
| 750 | # DMA Clients | ||
| 751 | # | ||
| 752 | |||
| 753 | # | ||
| 754 | # DMA Devices | ||
| 755 | # | ||
| 756 | |||
| 757 | # | ||
| 758 | # Userspace I/O | ||
| 759 | # | ||
| 760 | # CONFIG_UIO is not set | 779 | # CONFIG_UIO is not set |
| 761 | 780 | ||
| 762 | # | 781 | # |
| @@ -771,20 +790,16 @@ CONFIG_EXT3_FS_XATTR=y | |||
| 771 | # CONFIG_EXT3_FS_SECURITY is not set | 790 | # CONFIG_EXT3_FS_SECURITY is not set |
| 772 | # CONFIG_EXT4DEV_FS is not set | 791 | # CONFIG_EXT4DEV_FS is not set |
| 773 | CONFIG_JBD=y | 792 | CONFIG_JBD=y |
| 774 | # CONFIG_JBD_DEBUG is not set | ||
| 775 | CONFIG_FS_MBCACHE=y | 793 | CONFIG_FS_MBCACHE=y |
| 776 | # CONFIG_REISERFS_FS is not set | 794 | # CONFIG_REISERFS_FS is not set |
| 777 | # CONFIG_JFS_FS is not set | 795 | # CONFIG_JFS_FS is not set |
| 778 | CONFIG_FS_POSIX_ACL=y | 796 | CONFIG_FS_POSIX_ACL=y |
| 779 | # CONFIG_XFS_FS is not set | 797 | # CONFIG_XFS_FS is not set |
| 780 | # CONFIG_GFS2_FS is not set | ||
| 781 | # CONFIG_OCFS2_FS is not set | 798 | # CONFIG_OCFS2_FS is not set |
| 782 | # CONFIG_MINIX_FS is not set | 799 | CONFIG_DNOTIFY=y |
| 783 | CONFIG_ROMFS_FS=m | ||
| 784 | CONFIG_INOTIFY=y | 800 | CONFIG_INOTIFY=y |
| 785 | CONFIG_INOTIFY_USER=y | 801 | CONFIG_INOTIFY_USER=y |
| 786 | # CONFIG_QUOTA is not set | 802 | # CONFIG_QUOTA is not set |
| 787 | CONFIG_DNOTIFY=y | ||
| 788 | # CONFIG_AUTOFS_FS is not set | 803 | # CONFIG_AUTOFS_FS is not set |
| 789 | CONFIG_AUTOFS4_FS=y | 804 | CONFIG_AUTOFS4_FS=y |
| 790 | # CONFIG_FUSE_FS is not set | 805 | # CONFIG_FUSE_FS is not set |
| @@ -813,7 +828,6 @@ CONFIG_SYSFS=y | |||
| 813 | CONFIG_TMPFS=y | 828 | CONFIG_TMPFS=y |
| 814 | CONFIG_TMPFS_POSIX_ACL=y | 829 | CONFIG_TMPFS_POSIX_ACL=y |
| 815 | # CONFIG_HUGETLB_PAGE is not set | 830 | # CONFIG_HUGETLB_PAGE is not set |
| 816 | CONFIG_RAMFS=y | ||
| 817 | # CONFIG_CONFIGFS_FS is not set | 831 | # CONFIG_CONFIGFS_FS is not set |
| 818 | 832 | ||
| 819 | # | 833 | # |
| @@ -828,24 +842,21 @@ CONFIG_RAMFS=y | |||
| 828 | # CONFIG_EFS_FS is not set | 842 | # CONFIG_EFS_FS is not set |
| 829 | CONFIG_CRAMFS=m | 843 | CONFIG_CRAMFS=m |
| 830 | # CONFIG_VXFS_FS is not set | 844 | # CONFIG_VXFS_FS is not set |
| 845 | # CONFIG_MINIX_FS is not set | ||
| 831 | # CONFIG_HPFS_FS is not set | 846 | # CONFIG_HPFS_FS is not set |
| 832 | # CONFIG_QNX4FS_FS is not set | 847 | # CONFIG_QNX4FS_FS is not set |
| 848 | CONFIG_ROMFS_FS=m | ||
| 833 | # CONFIG_SYSV_FS is not set | 849 | # CONFIG_SYSV_FS is not set |
| 834 | # CONFIG_UFS_FS is not set | 850 | # CONFIG_UFS_FS is not set |
| 835 | 851 | CONFIG_NETWORK_FILESYSTEMS=y | |
| 836 | # | ||
| 837 | # Network File Systems | ||
| 838 | # | ||
| 839 | CONFIG_NFS_FS=y | 852 | CONFIG_NFS_FS=y |
| 840 | CONFIG_NFS_V3=y | 853 | CONFIG_NFS_V3=y |
| 841 | # CONFIG_NFS_V3_ACL is not set | 854 | # CONFIG_NFS_V3_ACL is not set |
| 842 | # CONFIG_NFS_V4 is not set | 855 | # CONFIG_NFS_V4 is not set |
| 843 | # CONFIG_NFS_DIRECTIO is not set | ||
| 844 | CONFIG_NFSD=y | 856 | CONFIG_NFSD=y |
| 845 | CONFIG_NFSD_V3=y | 857 | CONFIG_NFSD_V3=y |
| 846 | # CONFIG_NFSD_V3_ACL is not set | 858 | # CONFIG_NFSD_V3_ACL is not set |
| 847 | # CONFIG_NFSD_V4 is not set | 859 | # CONFIG_NFSD_V4 is not set |
| 848 | CONFIG_NFSD_TCP=y | ||
| 849 | CONFIG_ROOT_NFS=y | 860 | CONFIG_ROOT_NFS=y |
| 850 | CONFIG_LOCKD=y | 861 | CONFIG_LOCKD=y |
| 851 | CONFIG_LOCKD_V4=y | 862 | CONFIG_LOCKD_V4=y |
| @@ -866,47 +877,38 @@ CONFIG_SUNRPC=y | |||
| 866 | # | 877 | # |
| 867 | # CONFIG_PARTITION_ADVANCED is not set | 878 | # CONFIG_PARTITION_ADVANCED is not set |
| 868 | CONFIG_MSDOS_PARTITION=y | 879 | CONFIG_MSDOS_PARTITION=y |
| 869 | |||
| 870 | # | ||
| 871 | # Native Language Support | ||
| 872 | # | ||
| 873 | # CONFIG_NLS is not set | 880 | # CONFIG_NLS is not set |
| 874 | |||
| 875 | # | ||
| 876 | # Distributed Lock Manager | ||
| 877 | # | ||
| 878 | # CONFIG_DLM is not set | 881 | # CONFIG_DLM is not set |
| 879 | 882 | ||
| 880 | # | 883 | # |
| 881 | # Profiling support | ||
| 882 | # | ||
| 883 | # CONFIG_PROFILING is not set | ||
| 884 | |||
| 885 | # | ||
| 886 | # Kernel hacking | 884 | # Kernel hacking |
| 887 | # | 885 | # |
| 888 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 886 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
| 889 | # CONFIG_PRINTK_TIME is not set | 887 | # CONFIG_PRINTK_TIME is not set |
| 888 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 890 | CONFIG_ENABLE_MUST_CHECK=y | 889 | CONFIG_ENABLE_MUST_CHECK=y |
| 890 | CONFIG_FRAME_WARN=1024 | ||
| 891 | # CONFIG_MAGIC_SYSRQ is not set | 891 | # CONFIG_MAGIC_SYSRQ is not set |
| 892 | # CONFIG_UNUSED_SYMBOLS is not set | 892 | # CONFIG_UNUSED_SYMBOLS is not set |
| 893 | # CONFIG_DEBUG_FS is not set | 893 | # CONFIG_DEBUG_FS is not set |
| 894 | # CONFIG_HEADERS_CHECK is not set | 894 | # CONFIG_HEADERS_CHECK is not set |
| 895 | # CONFIG_DEBUG_KERNEL is not set | 895 | # CONFIG_DEBUG_KERNEL is not set |
| 896 | CONFIG_CROSSCOMPILE=y | 896 | # CONFIG_SAMPLES is not set |
| 897 | CONFIG_CMDLINE="mem=64M console=ttyVR0,115200 ip=any root=/dev/nfs" | 897 | CONFIG_CMDLINE="cca=3 mem=64M console=ttyVR0,115200 ip=any root=/dev/nfs" |
| 898 | 898 | ||
| 899 | # | 899 | # |
| 900 | # Security options | 900 | # Security options |
| 901 | # | 901 | # |
| 902 | # CONFIG_KEYS is not set | 902 | # CONFIG_KEYS is not set |
| 903 | # CONFIG_SECURITY is not set | 903 | # CONFIG_SECURITY is not set |
| 904 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
| 904 | # CONFIG_CRYPTO is not set | 905 | # CONFIG_CRYPTO is not set |
| 905 | 906 | ||
| 906 | # | 907 | # |
| 907 | # Library routines | 908 | # Library routines |
| 908 | # | 909 | # |
| 909 | CONFIG_BITREVERSE=y | 910 | CONFIG_BITREVERSE=y |
| 911 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 910 | CONFIG_CRC_CCITT=y | 912 | CONFIG_CRC_CCITT=y |
| 911 | # CONFIG_CRC16 is not set | 913 | # CONFIG_CRC16 is not set |
| 912 | # CONFIG_CRC_ITU_T is not set | 914 | # CONFIG_CRC_ITU_T is not set |
diff --git a/arch/mips/configs/tb0226_defconfig b/arch/mips/configs/tb0226_defconfig index a95385b24546..2ba240e897c6 100644 --- a/arch/mips/configs/tb0226_defconfig +++ b/arch/mips/configs/tb0226_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.23-rc2 | 3 | # Linux kernel version: 2.6.26-rc1 |
| 4 | # Thu Aug 9 11:16:55 2007 | 4 | # Mon May 12 11:53:54 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_MIPS=y | 6 | CONFIG_MIPS=y |
| 7 | 7 | ||
| @@ -10,9 +10,11 @@ CONFIG_MIPS=y | |||
| 10 | # | 10 | # |
| 11 | # CONFIG_MACH_ALCHEMY is not set | 11 | # CONFIG_MACH_ALCHEMY is not set |
| 12 | # CONFIG_BASLER_EXCITE is not set | 12 | # CONFIG_BASLER_EXCITE is not set |
| 13 | # CONFIG_BCM47XX is not set | ||
| 13 | # CONFIG_MIPS_COBALT is not set | 14 | # CONFIG_MIPS_COBALT is not set |
| 14 | # CONFIG_MACH_DECSTATION is not set | 15 | # CONFIG_MACH_DECSTATION is not set |
| 15 | # CONFIG_MACH_JAZZ is not set | 16 | # CONFIG_MACH_JAZZ is not set |
| 17 | # CONFIG_LASAT is not set | ||
| 16 | # CONFIG_LEMOTE_FULONG is not set | 18 | # CONFIG_LEMOTE_FULONG is not set |
| 17 | # CONFIG_MIPS_ATLAS is not set | 19 | # CONFIG_MIPS_ATLAS is not set |
| 18 | # CONFIG_MIPS_MALTA is not set | 20 | # CONFIG_MIPS_MALTA is not set |
| @@ -26,6 +28,7 @@ CONFIG_MACH_VR41XX=y | |||
| 26 | # CONFIG_PMC_YOSEMITE is not set | 28 | # CONFIG_PMC_YOSEMITE is not set |
| 27 | # CONFIG_SGI_IP22 is not set | 29 | # CONFIG_SGI_IP22 is not set |
| 28 | # CONFIG_SGI_IP27 is not set | 30 | # CONFIG_SGI_IP27 is not set |
| 31 | # CONFIG_SGI_IP28 is not set | ||
| 29 | # CONFIG_SGI_IP32 is not set | 32 | # CONFIG_SGI_IP32 is not set |
| 30 | # CONFIG_SIBYTE_CRHINE is not set | 33 | # CONFIG_SIBYTE_CRHINE is not set |
| 31 | # CONFIG_SIBYTE_CARMEL is not set | 34 | # CONFIG_SIBYTE_CARMEL is not set |
| @@ -53,12 +56,17 @@ CONFIG_PCI_VR41XX=y | |||
| 53 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 56 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
| 54 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 57 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 55 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 58 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 59 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
| 56 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 60 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 57 | CONFIG_GENERIC_HWEIGHT=y | 61 | CONFIG_GENERIC_HWEIGHT=y |
| 58 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 62 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 63 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 59 | CONFIG_GENERIC_TIME=y | 64 | CONFIG_GENERIC_TIME=y |
| 65 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
| 60 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 66 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
| 61 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | 67 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y |
| 68 | CONFIG_CEVT_R4K=y | ||
| 69 | CONFIG_CSRC_R4K=y | ||
| 62 | CONFIG_DMA_NONCOHERENT=y | 70 | CONFIG_DMA_NONCOHERENT=y |
| 63 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | 71 | CONFIG_DMA_NEED_PCI_MAP_STATE=y |
| 64 | # CONFIG_HOTPLUG_CPU is not set | 72 | # CONFIG_HOTPLUG_CPU is not set |
| @@ -113,6 +121,7 @@ CONFIG_CPU_HAS_SYNC=y | |||
| 113 | CONFIG_GENERIC_HARDIRQS=y | 121 | CONFIG_GENERIC_HARDIRQS=y |
| 114 | CONFIG_GENERIC_IRQ_PROBE=y | 122 | CONFIG_GENERIC_IRQ_PROBE=y |
| 115 | CONFIG_ARCH_FLATMEM_ENABLE=y | 123 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 124 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
| 116 | CONFIG_SELECT_MEMORY_MODEL=y | 125 | CONFIG_SELECT_MEMORY_MODEL=y |
| 117 | CONFIG_FLATMEM_MANUAL=y | 126 | CONFIG_FLATMEM_MANUAL=y |
| 118 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 127 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
| @@ -120,10 +129,16 @@ CONFIG_FLATMEM_MANUAL=y | |||
| 120 | CONFIG_FLATMEM=y | 129 | CONFIG_FLATMEM=y |
| 121 | CONFIG_FLAT_NODE_MEM_MAP=y | 130 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 122 | # CONFIG_SPARSEMEM_STATIC is not set | 131 | # CONFIG_SPARSEMEM_STATIC is not set |
| 132 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
| 133 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 123 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 134 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 124 | # CONFIG_RESOURCES_64BIT is not set | 135 | # CONFIG_RESOURCES_64BIT is not set |
| 125 | CONFIG_ZONE_DMA_FLAG=0 | 136 | CONFIG_ZONE_DMA_FLAG=0 |
| 126 | CONFIG_VIRT_TO_BUS=y | 137 | CONFIG_VIRT_TO_BUS=y |
| 138 | # CONFIG_TICK_ONESHOT is not set | ||
| 139 | # CONFIG_NO_HZ is not set | ||
| 140 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 141 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 127 | # CONFIG_HZ_48 is not set | 142 | # CONFIG_HZ_48 is not set |
| 128 | # CONFIG_HZ_100 is not set | 143 | # CONFIG_HZ_100 is not set |
| 129 | # CONFIG_HZ_128 is not set | 144 | # CONFIG_HZ_128 is not set |
| @@ -156,23 +171,29 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 156 | # CONFIG_POSIX_MQUEUE is not set | 171 | # CONFIG_POSIX_MQUEUE is not set |
| 157 | # CONFIG_BSD_PROCESS_ACCT is not set | 172 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 158 | # CONFIG_TASKSTATS is not set | 173 | # CONFIG_TASKSTATS is not set |
| 159 | # CONFIG_USER_NS is not set | ||
| 160 | # CONFIG_AUDIT is not set | 174 | # CONFIG_AUDIT is not set |
| 161 | # CONFIG_IKCONFIG is not set | 175 | # CONFIG_IKCONFIG is not set |
| 162 | CONFIG_LOG_BUF_SHIFT=14 | 176 | CONFIG_LOG_BUF_SHIFT=14 |
| 177 | # CONFIG_CGROUPS is not set | ||
| 178 | # CONFIG_GROUP_SCHED is not set | ||
| 163 | CONFIG_SYSFS_DEPRECATED=y | 179 | CONFIG_SYSFS_DEPRECATED=y |
| 180 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
| 164 | # CONFIG_RELAY is not set | 181 | # CONFIG_RELAY is not set |
| 182 | # CONFIG_NAMESPACES is not set | ||
| 165 | # CONFIG_BLK_DEV_INITRD is not set | 183 | # CONFIG_BLK_DEV_INITRD is not set |
| 166 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 184 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 167 | CONFIG_SYSCTL=y | 185 | CONFIG_SYSCTL=y |
| 168 | CONFIG_EMBEDDED=y | 186 | CONFIG_EMBEDDED=y |
| 169 | CONFIG_SYSCTL_SYSCALL=y | 187 | CONFIG_SYSCTL_SYSCALL=y |
| 188 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 170 | CONFIG_KALLSYMS=y | 189 | CONFIG_KALLSYMS=y |
| 171 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 190 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 172 | CONFIG_HOTPLUG=y | 191 | CONFIG_HOTPLUG=y |
| 173 | CONFIG_PRINTK=y | 192 | CONFIG_PRINTK=y |
| 174 | CONFIG_BUG=y | 193 | CONFIG_BUG=y |
| 175 | CONFIG_ELF_CORE=y | 194 | CONFIG_ELF_CORE=y |
| 195 | # CONFIG_PCSPKR_PLATFORM is not set | ||
| 196 | CONFIG_COMPAT_BRK=y | ||
| 176 | CONFIG_BASE_FULL=y | 197 | CONFIG_BASE_FULL=y |
| 177 | CONFIG_FUTEX=y | 198 | CONFIG_FUTEX=y |
| 178 | CONFIG_ANON_INODES=y | 199 | CONFIG_ANON_INODES=y |
| @@ -185,10 +206,19 @@ CONFIG_VM_EVENT_COUNTERS=y | |||
| 185 | CONFIG_SLAB=y | 206 | CONFIG_SLAB=y |
| 186 | # CONFIG_SLUB is not set | 207 | # CONFIG_SLUB is not set |
| 187 | # CONFIG_SLOB is not set | 208 | # CONFIG_SLOB is not set |
| 209 | # CONFIG_PROFILING is not set | ||
| 210 | # CONFIG_MARKERS is not set | ||
| 211 | CONFIG_HAVE_OPROFILE=y | ||
| 212 | # CONFIG_HAVE_KPROBES is not set | ||
| 213 | # CONFIG_HAVE_KRETPROBES is not set | ||
| 214 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 215 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 216 | CONFIG_SLABINFO=y | ||
| 188 | CONFIG_RT_MUTEXES=y | 217 | CONFIG_RT_MUTEXES=y |
| 189 | # CONFIG_TINY_SHMEM is not set | 218 | # CONFIG_TINY_SHMEM is not set |
| 190 | CONFIG_BASE_SMALL=0 | 219 | CONFIG_BASE_SMALL=0 |
| 191 | CONFIG_MODULES=y | 220 | CONFIG_MODULES=y |
| 221 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 192 | CONFIG_MODULE_UNLOAD=y | 222 | CONFIG_MODULE_UNLOAD=y |
| 193 | CONFIG_MODULE_FORCE_UNLOAD=y | 223 | CONFIG_MODULE_FORCE_UNLOAD=y |
| 194 | CONFIG_MODVERSIONS=y | 224 | CONFIG_MODVERSIONS=y |
| @@ -212,18 +242,17 @@ CONFIG_DEFAULT_AS=y | |||
| 212 | # CONFIG_DEFAULT_CFQ is not set | 242 | # CONFIG_DEFAULT_CFQ is not set |
| 213 | # CONFIG_DEFAULT_NOOP is not set | 243 | # CONFIG_DEFAULT_NOOP is not set |
| 214 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 244 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 245 | CONFIG_CLASSIC_RCU=y | ||
| 215 | 246 | ||
| 216 | # | 247 | # |
| 217 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | 248 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) |
| 218 | # | 249 | # |
| 219 | CONFIG_HW_HAS_PCI=y | 250 | CONFIG_HW_HAS_PCI=y |
| 220 | CONFIG_PCI=y | 251 | CONFIG_PCI=y |
| 252 | CONFIG_PCI_DOMAINS=y | ||
| 221 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 253 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 254 | CONFIG_PCI_LEGACY=y | ||
| 222 | CONFIG_MMU=y | 255 | CONFIG_MMU=y |
| 223 | |||
| 224 | # | ||
| 225 | # PCCARD (PCMCIA/CardBus) support | ||
| 226 | # | ||
| 227 | # CONFIG_PCCARD is not set | 256 | # CONFIG_PCCARD is not set |
| 228 | # CONFIG_HOTPLUG_PCI is not set | 257 | # CONFIG_HOTPLUG_PCI is not set |
| 229 | 258 | ||
| @@ -237,6 +266,7 @@ CONFIG_TRAD_SIGNALS=y | |||
| 237 | # | 266 | # |
| 238 | # Power management options | 267 | # Power management options |
| 239 | # | 268 | # |
| 269 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 240 | # CONFIG_PM is not set | 270 | # CONFIG_PM is not set |
| 241 | 271 | ||
| 242 | # | 272 | # |
| @@ -277,6 +307,7 @@ CONFIG_SYN_COOKIES=y | |||
| 277 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | 307 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set |
| 278 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | 308 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set |
| 279 | # CONFIG_INET_XFRM_MODE_BEET is not set | 309 | # CONFIG_INET_XFRM_MODE_BEET is not set |
| 310 | # CONFIG_INET_LRO is not set | ||
| 280 | CONFIG_INET_DIAG=y | 311 | CONFIG_INET_DIAG=y |
| 281 | CONFIG_INET_TCP_DIAG=y | 312 | CONFIG_INET_TCP_DIAG=y |
| 282 | # CONFIG_TCP_CONG_ADVANCED is not set | 313 | # CONFIG_TCP_CONG_ADVANCED is not set |
| @@ -284,15 +315,10 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 284 | CONFIG_DEFAULT_TCP_CONG="cubic" | 315 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 285 | # CONFIG_TCP_MD5SIG is not set | 316 | # CONFIG_TCP_MD5SIG is not set |
| 286 | # CONFIG_IPV6 is not set | 317 | # CONFIG_IPV6 is not set |
| 287 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 288 | # CONFIG_INET6_TUNNEL is not set | ||
| 289 | CONFIG_NETWORK_SECMARK=y | 318 | CONFIG_NETWORK_SECMARK=y |
| 290 | # CONFIG_NETFILTER is not set | 319 | # CONFIG_NETFILTER is not set |
| 291 | # CONFIG_IP_DCCP is not set | 320 | # CONFIG_IP_DCCP is not set |
| 292 | # CONFIG_IP_SCTP is not set | 321 | # CONFIG_IP_SCTP is not set |
| 293 | # CONFIG_SCTP_HMAC_NONE is not set | ||
| 294 | # CONFIG_SCTP_HMAC_SHA1 is not set | ||
| 295 | # CONFIG_SCTP_HMAC_MD5 is not set | ||
| 296 | # CONFIG_TIPC is not set | 322 | # CONFIG_TIPC is not set |
| 297 | # CONFIG_ATM is not set | 323 | # CONFIG_ATM is not set |
| 298 | # CONFIG_BRIDGE is not set | 324 | # CONFIG_BRIDGE is not set |
| @@ -305,10 +331,6 @@ CONFIG_NETWORK_SECMARK=y | |||
| 305 | # CONFIG_LAPB is not set | 331 | # CONFIG_LAPB is not set |
| 306 | # CONFIG_ECONET is not set | 332 | # CONFIG_ECONET is not set |
| 307 | # CONFIG_WAN_ROUTER is not set | 333 | # CONFIG_WAN_ROUTER is not set |
| 308 | |||
| 309 | # | ||
| 310 | # QoS and/or fair queueing | ||
| 311 | # | ||
| 312 | # CONFIG_NET_SCHED is not set | 334 | # CONFIG_NET_SCHED is not set |
| 313 | 335 | ||
| 314 | # | 336 | # |
| @@ -316,6 +338,7 @@ CONFIG_NETWORK_SECMARK=y | |||
| 316 | # | 338 | # |
| 317 | # CONFIG_NET_PKTGEN is not set | 339 | # CONFIG_NET_PKTGEN is not set |
| 318 | # CONFIG_HAMRADIO is not set | 340 | # CONFIG_HAMRADIO is not set |
| 341 | # CONFIG_CAN is not set | ||
| 319 | # CONFIG_IRDA is not set | 342 | # CONFIG_IRDA is not set |
| 320 | # CONFIG_BT is not set | 343 | # CONFIG_BT is not set |
| 321 | # CONFIG_AF_RXRPC is not set | 344 | # CONFIG_AF_RXRPC is not set |
| @@ -338,6 +361,7 @@ CONFIG_FIB_RULES=y | |||
| 338 | # | 361 | # |
| 339 | # Generic Driver Options | 362 | # Generic Driver Options |
| 340 | # | 363 | # |
| 364 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
| 341 | CONFIG_STANDALONE=y | 365 | CONFIG_STANDALONE=y |
| 342 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 366 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 343 | CONFIG_FW_LOADER=y | 367 | CONFIG_FW_LOADER=y |
| @@ -359,10 +383,11 @@ CONFIG_BLK_DEV_NBD=m | |||
| 359 | CONFIG_BLK_DEV_RAM=y | 383 | CONFIG_BLK_DEV_RAM=y |
| 360 | CONFIG_BLK_DEV_RAM_COUNT=16 | 384 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 361 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 385 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
| 362 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 386 | CONFIG_BLK_DEV_XIP=y |
| 363 | # CONFIG_CDROM_PKTCDVD is not set | 387 | # CONFIG_CDROM_PKTCDVD is not set |
| 364 | # CONFIG_ATA_OVER_ETH is not set | 388 | # CONFIG_ATA_OVER_ETH is not set |
| 365 | # CONFIG_MISC_DEVICES is not set | 389 | # CONFIG_MISC_DEVICES is not set |
| 390 | CONFIG_HAVE_IDE=y | ||
| 366 | # CONFIG_IDE is not set | 391 | # CONFIG_IDE is not set |
| 367 | 392 | ||
| 368 | # | 393 | # |
| @@ -402,18 +427,13 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 402 | # CONFIG_SCSI_ISCSI_ATTRS is not set | 427 | # CONFIG_SCSI_ISCSI_ATTRS is not set |
| 403 | CONFIG_SCSI_SAS_ATTRS=m | 428 | CONFIG_SCSI_SAS_ATTRS=m |
| 404 | CONFIG_SCSI_SAS_LIBSAS=m | 429 | CONFIG_SCSI_SAS_LIBSAS=m |
| 430 | CONFIG_SCSI_SAS_HOST_SMP=y | ||
| 405 | # CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set | 431 | # CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set |
| 432 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
| 406 | # CONFIG_SCSI_LOWLEVEL is not set | 433 | # CONFIG_SCSI_LOWLEVEL is not set |
| 407 | # CONFIG_ATA is not set | 434 | # CONFIG_ATA is not set |
| 408 | # CONFIG_MD is not set | 435 | # CONFIG_MD is not set |
| 409 | |||
| 410 | # | ||
| 411 | # Fusion MPT device support | ||
| 412 | # | ||
| 413 | # CONFIG_FUSION is not set | 436 | # CONFIG_FUSION is not set |
| 414 | # CONFIG_FUSION_SPI is not set | ||
| 415 | # CONFIG_FUSION_FC is not set | ||
| 416 | # CONFIG_FUSION_SAS is not set | ||
| 417 | 437 | ||
| 418 | # | 438 | # |
| 419 | # IEEE 1394 (FireWire) support | 439 | # IEEE 1394 (FireWire) support |
| @@ -428,6 +448,7 @@ CONFIG_NETDEVICES=y | |||
| 428 | # CONFIG_MACVLAN is not set | 448 | # CONFIG_MACVLAN is not set |
| 429 | # CONFIG_EQUALIZER is not set | 449 | # CONFIG_EQUALIZER is not set |
| 430 | # CONFIG_TUN is not set | 450 | # CONFIG_TUN is not set |
| 451 | # CONFIG_VETH is not set | ||
| 431 | # CONFIG_ARCNET is not set | 452 | # CONFIG_ARCNET is not set |
| 432 | # CONFIG_PHYLIB is not set | 453 | # CONFIG_PHYLIB is not set |
| 433 | CONFIG_NET_ETHERNET=y | 454 | CONFIG_NET_ETHERNET=y |
| @@ -440,6 +461,10 @@ CONFIG_MII=y | |||
| 440 | # CONFIG_DM9000 is not set | 461 | # CONFIG_DM9000 is not set |
| 441 | # CONFIG_NET_TULIP is not set | 462 | # CONFIG_NET_TULIP is not set |
| 442 | # CONFIG_HP100 is not set | 463 | # CONFIG_HP100 is not set |
| 464 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
| 465 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
| 466 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
| 467 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
| 443 | CONFIG_NET_PCI=y | 468 | CONFIG_NET_PCI=y |
| 444 | # CONFIG_PCNET32 is not set | 469 | # CONFIG_PCNET32 is not set |
| 445 | # CONFIG_AMD8111_ETH is not set | 470 | # CONFIG_AMD8111_ETH is not set |
| @@ -447,7 +472,6 @@ CONFIG_NET_PCI=y | |||
| 447 | # CONFIG_B44 is not set | 472 | # CONFIG_B44 is not set |
| 448 | # CONFIG_FORCEDETH is not set | 473 | # CONFIG_FORCEDETH is not set |
| 449 | # CONFIG_TC35815 is not set | 474 | # CONFIG_TC35815 is not set |
| 450 | # CONFIG_DGRS is not set | ||
| 451 | # CONFIG_EEPRO100 is not set | 475 | # CONFIG_EEPRO100 is not set |
| 452 | CONFIG_E100=y | 476 | CONFIG_E100=y |
| 453 | # CONFIG_FEALNX is not set | 477 | # CONFIG_FEALNX is not set |
| @@ -455,6 +479,7 @@ CONFIG_E100=y | |||
| 455 | # CONFIG_NE2K_PCI is not set | 479 | # CONFIG_NE2K_PCI is not set |
| 456 | # CONFIG_8139CP is not set | 480 | # CONFIG_8139CP is not set |
| 457 | # CONFIG_8139TOO is not set | 481 | # CONFIG_8139TOO is not set |
| 482 | # CONFIG_R6040 is not set | ||
| 458 | # CONFIG_SIS900 is not set | 483 | # CONFIG_SIS900 is not set |
| 459 | # CONFIG_EPIC100 is not set | 484 | # CONFIG_EPIC100 is not set |
| 460 | # CONFIG_SUNDANCE is not set | 485 | # CONFIG_SUNDANCE is not set |
| @@ -470,6 +495,7 @@ CONFIG_E100=y | |||
| 470 | # | 495 | # |
| 471 | # CONFIG_WLAN_PRE80211 is not set | 496 | # CONFIG_WLAN_PRE80211 is not set |
| 472 | # CONFIG_WLAN_80211 is not set | 497 | # CONFIG_WLAN_80211 is not set |
| 498 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 473 | 499 | ||
| 474 | # | 500 | # |
| 475 | # USB Network Adapters | 501 | # USB Network Adapters |
| @@ -478,7 +504,6 @@ CONFIG_USB_CATC=m | |||
| 478 | CONFIG_USB_KAWETH=m | 504 | CONFIG_USB_KAWETH=m |
| 479 | CONFIG_USB_PEGASUS=m | 505 | CONFIG_USB_PEGASUS=m |
| 480 | CONFIG_USB_RTL8150=m | 506 | CONFIG_USB_RTL8150=m |
| 481 | # CONFIG_USB_USBNET_MII is not set | ||
| 482 | # CONFIG_USB_USBNET is not set | 507 | # CONFIG_USB_USBNET is not set |
| 483 | # CONFIG_WAN is not set | 508 | # CONFIG_WAN is not set |
| 484 | # CONFIG_FDDI is not set | 509 | # CONFIG_FDDI is not set |
| @@ -486,7 +511,6 @@ CONFIG_USB_RTL8150=m | |||
| 486 | # CONFIG_PPP is not set | 511 | # CONFIG_PPP is not set |
| 487 | # CONFIG_SLIP is not set | 512 | # CONFIG_SLIP is not set |
| 488 | # CONFIG_NET_FC is not set | 513 | # CONFIG_NET_FC is not set |
| 489 | # CONFIG_SHAPER is not set | ||
| 490 | # CONFIG_NETCONSOLE is not set | 514 | # CONFIG_NETCONSOLE is not set |
| 491 | # CONFIG_NETPOLL is not set | 515 | # CONFIG_NETPOLL is not set |
| 492 | # CONFIG_NET_POLL_CONTROLLER is not set | 516 | # CONFIG_NET_POLL_CONTROLLER is not set |
| @@ -505,7 +529,6 @@ CONFIG_INPUT=y | |||
| 505 | # | 529 | # |
| 506 | # CONFIG_INPUT_MOUSEDEV is not set | 530 | # CONFIG_INPUT_MOUSEDEV is not set |
| 507 | # CONFIG_INPUT_JOYDEV is not set | 531 | # CONFIG_INPUT_JOYDEV is not set |
| 508 | # CONFIG_INPUT_TSDEV is not set | ||
| 509 | # CONFIG_INPUT_EVDEV is not set | 532 | # CONFIG_INPUT_EVDEV is not set |
| 510 | # CONFIG_INPUT_EVBUG is not set | 533 | # CONFIG_INPUT_EVBUG is not set |
| 511 | 534 | ||
| @@ -532,7 +555,9 @@ CONFIG_VT=y | |||
| 532 | CONFIG_VT_CONSOLE=y | 555 | CONFIG_VT_CONSOLE=y |
| 533 | CONFIG_HW_CONSOLE=y | 556 | CONFIG_HW_CONSOLE=y |
| 534 | CONFIG_VT_HW_CONSOLE_BINDING=y | 557 | CONFIG_VT_HW_CONSOLE_BINDING=y |
| 558 | # CONFIG_DEVKMEM is not set | ||
| 535 | # CONFIG_SERIAL_NONSTANDARD is not set | 559 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 560 | # CONFIG_NOZOMI is not set | ||
| 536 | 561 | ||
| 537 | # | 562 | # |
| 538 | # Serial drivers | 563 | # Serial drivers |
| @@ -551,52 +576,62 @@ CONFIG_UNIX98_PTYS=y | |||
| 551 | CONFIG_LEGACY_PTYS=y | 576 | CONFIG_LEGACY_PTYS=y |
| 552 | CONFIG_LEGACY_PTY_COUNT=256 | 577 | CONFIG_LEGACY_PTY_COUNT=256 |
| 553 | # CONFIG_IPMI_HANDLER is not set | 578 | # CONFIG_IPMI_HANDLER is not set |
| 554 | # CONFIG_WATCHDOG is not set | ||
| 555 | # CONFIG_HW_RANDOM is not set | 579 | # CONFIG_HW_RANDOM is not set |
| 556 | # CONFIG_RTC is not set | ||
| 557 | # CONFIG_R3964 is not set | 580 | # CONFIG_R3964 is not set |
| 558 | # CONFIG_APPLICOM is not set | 581 | # CONFIG_APPLICOM is not set |
| 559 | # CONFIG_GPIO_TB0219 is not set | 582 | # CONFIG_GPIO_TB0219 is not set |
| 560 | # CONFIG_DRM is not set | ||
| 561 | CONFIG_GPIO_VR41XX=y | 583 | CONFIG_GPIO_VR41XX=y |
| 562 | # CONFIG_RAW_DRIVER is not set | 584 | # CONFIG_RAW_DRIVER is not set |
| 563 | # CONFIG_TCG_TPM is not set | 585 | # CONFIG_TCG_TPM is not set |
| 564 | CONFIG_DEVPORT=y | 586 | CONFIG_DEVPORT=y |
| 565 | # CONFIG_I2C is not set | 587 | # CONFIG_I2C is not set |
| 566 | |||
| 567 | # | ||
| 568 | # SPI support | ||
| 569 | # | ||
| 570 | # CONFIG_SPI is not set | 588 | # CONFIG_SPI is not set |
| 571 | # CONFIG_SPI_MASTER is not set | ||
| 572 | # CONFIG_W1 is not set | 589 | # CONFIG_W1 is not set |
| 573 | # CONFIG_POWER_SUPPLY is not set | 590 | # CONFIG_POWER_SUPPLY is not set |
| 574 | # CONFIG_HWMON is not set | 591 | # CONFIG_HWMON is not set |
| 592 | # CONFIG_THERMAL is not set | ||
| 593 | # CONFIG_WATCHDOG is not set | ||
| 594 | |||
| 595 | # | ||
| 596 | # Sonics Silicon Backplane | ||
| 597 | # | ||
| 598 | CONFIG_SSB_POSSIBLE=y | ||
| 599 | # CONFIG_SSB is not set | ||
| 575 | 600 | ||
| 576 | # | 601 | # |
| 577 | # Multifunction device drivers | 602 | # Multifunction device drivers |
| 578 | # | 603 | # |
| 579 | # CONFIG_MFD_SM501 is not set | 604 | # CONFIG_MFD_SM501 is not set |
| 605 | # CONFIG_HTC_PASIC3 is not set | ||
| 580 | 606 | ||
| 581 | # | 607 | # |
| 582 | # Multimedia devices | 608 | # Multimedia devices |
| 583 | # | 609 | # |
| 610 | |||
| 611 | # | ||
| 612 | # Multimedia core support | ||
| 613 | # | ||
| 584 | # CONFIG_VIDEO_DEV is not set | 614 | # CONFIG_VIDEO_DEV is not set |
| 585 | # CONFIG_DVB_CORE is not set | 615 | # CONFIG_DVB_CORE is not set |
| 616 | |||
| 617 | # | ||
| 618 | # Multimedia drivers | ||
| 619 | # | ||
| 586 | # CONFIG_DAB is not set | 620 | # CONFIG_DAB is not set |
| 587 | 621 | ||
| 588 | # | 622 | # |
| 589 | # Graphics support | 623 | # Graphics support |
| 590 | # | 624 | # |
| 625 | # CONFIG_DRM is not set | ||
| 626 | # CONFIG_VGASTATE is not set | ||
| 627 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
| 628 | # CONFIG_FB is not set | ||
| 591 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 629 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 592 | 630 | ||
| 593 | # | 631 | # |
| 594 | # Display device support | 632 | # Display device support |
| 595 | # | 633 | # |
| 596 | # CONFIG_DISPLAY_SUPPORT is not set | 634 | # CONFIG_DISPLAY_SUPPORT is not set |
| 597 | # CONFIG_VGASTATE is not set | ||
| 598 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
| 599 | # CONFIG_FB is not set | ||
| 600 | 635 | ||
| 601 | # | 636 | # |
| 602 | # Console display driver support | 637 | # Console display driver support |
| @@ -615,6 +650,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
| 615 | CONFIG_USB_ARCH_HAS_EHCI=y | 650 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 616 | CONFIG_USB=y | 651 | CONFIG_USB=y |
| 617 | # CONFIG_USB_DEBUG is not set | 652 | # CONFIG_USB_DEBUG is not set |
| 653 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
| 618 | 654 | ||
| 619 | # | 655 | # |
| 620 | # Miscellaneous USB options | 656 | # Miscellaneous USB options |
| @@ -623,15 +659,18 @@ CONFIG_USB_DEVICEFS=y | |||
| 623 | CONFIG_USB_DEVICE_CLASS=y | 659 | CONFIG_USB_DEVICE_CLASS=y |
| 624 | # CONFIG_USB_DYNAMIC_MINORS is not set | 660 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 625 | # CONFIG_USB_OTG is not set | 661 | # CONFIG_USB_OTG is not set |
| 662 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 663 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 626 | 664 | ||
| 627 | # | 665 | # |
| 628 | # USB Host Controller Drivers | 666 | # USB Host Controller Drivers |
| 629 | # | 667 | # |
| 668 | # CONFIG_USB_C67X00_HCD is not set | ||
| 630 | CONFIG_USB_EHCI_HCD=y | 669 | CONFIG_USB_EHCI_HCD=y |
| 631 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
| 632 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 670 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 633 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 671 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 634 | # CONFIG_USB_ISP116X_HCD is not set | 672 | # CONFIG_USB_ISP116X_HCD is not set |
| 673 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 635 | CONFIG_USB_OHCI_HCD=y | 674 | CONFIG_USB_OHCI_HCD=y |
| 636 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 675 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
| 637 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | 676 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set |
| @@ -657,13 +696,16 @@ CONFIG_USB_STORAGE=y | |||
| 657 | # CONFIG_USB_STORAGE_DEBUG is not set | 696 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 658 | # CONFIG_USB_STORAGE_DATAFAB is not set | 697 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 659 | # CONFIG_USB_STORAGE_FREECOM is not set | 698 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 699 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
| 660 | # CONFIG_USB_STORAGE_DPCM is not set | 700 | # CONFIG_USB_STORAGE_DPCM is not set |
| 661 | # CONFIG_USB_STORAGE_USBAT is not set | 701 | # CONFIG_USB_STORAGE_USBAT is not set |
| 662 | # CONFIG_USB_STORAGE_SDDR09 is not set | 702 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 663 | # CONFIG_USB_STORAGE_SDDR55 is not set | 703 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 664 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 704 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 665 | # CONFIG_USB_STORAGE_ALAUDA is not set | 705 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 706 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
| 666 | # CONFIG_USB_STORAGE_KARMA is not set | 707 | # CONFIG_USB_STORAGE_KARMA is not set |
| 708 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 667 | # CONFIG_USB_LIBUSUAL is not set | 709 | # CONFIG_USB_LIBUSUAL is not set |
| 668 | 710 | ||
| 669 | # | 711 | # |
| @@ -676,10 +718,6 @@ CONFIG_USB_STORAGE=y | |||
| 676 | # | 718 | # |
| 677 | # USB port drivers | 719 | # USB port drivers |
| 678 | # | 720 | # |
| 679 | |||
| 680 | # | ||
| 681 | # USB Serial Converter support | ||
| 682 | # | ||
| 683 | # CONFIG_USB_SERIAL is not set | 721 | # CONFIG_USB_SERIAL is not set |
| 684 | 722 | ||
| 685 | # | 723 | # |
| @@ -705,17 +743,11 @@ CONFIG_USB_STORAGE=y | |||
| 705 | # CONFIG_USB_TRANCEVIBRATOR is not set | 743 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 706 | # CONFIG_USB_IOWARRIOR is not set | 744 | # CONFIG_USB_IOWARRIOR is not set |
| 707 | # CONFIG_USB_TEST is not set | 745 | # CONFIG_USB_TEST is not set |
| 708 | |||
| 709 | # | ||
| 710 | # USB DSL modem support | ||
| 711 | # | ||
| 712 | |||
| 713 | # | ||
| 714 | # USB Gadget Support | ||
| 715 | # | ||
| 716 | # CONFIG_USB_GADGET is not set | 746 | # CONFIG_USB_GADGET is not set |
| 717 | # CONFIG_MMC is not set | 747 | # CONFIG_MMC is not set |
| 748 | # CONFIG_MEMSTICK is not set | ||
| 718 | # CONFIG_NEW_LEDS is not set | 749 | # CONFIG_NEW_LEDS is not set |
| 750 | # CONFIG_ACCESSIBILITY is not set | ||
| 719 | # CONFIG_INFINIBAND is not set | 751 | # CONFIG_INFINIBAND is not set |
| 720 | CONFIG_RTC_LIB=y | 752 | CONFIG_RTC_LIB=y |
| 721 | CONFIG_RTC_CLASS=y | 753 | CONFIG_RTC_CLASS=y |
| @@ -740,9 +772,10 @@ CONFIG_RTC_INTF_DEV=y | |||
| 740 | # Platform RTC drivers | 772 | # Platform RTC drivers |
| 741 | # | 773 | # |
| 742 | # CONFIG_RTC_DRV_CMOS is not set | 774 | # CONFIG_RTC_DRV_CMOS is not set |
| 775 | # CONFIG_RTC_DRV_DS1511 is not set | ||
| 743 | # CONFIG_RTC_DRV_DS1553 is not set | 776 | # CONFIG_RTC_DRV_DS1553 is not set |
| 744 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 745 | # CONFIG_RTC_DRV_DS1742 is not set | 777 | # CONFIG_RTC_DRV_DS1742 is not set |
| 778 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 746 | # CONFIG_RTC_DRV_M48T86 is not set | 779 | # CONFIG_RTC_DRV_M48T86 is not set |
| 747 | # CONFIG_RTC_DRV_M48T59 is not set | 780 | # CONFIG_RTC_DRV_M48T59 is not set |
| 748 | # CONFIG_RTC_DRV_V3020 is not set | 781 | # CONFIG_RTC_DRV_V3020 is not set |
| @@ -751,23 +784,6 @@ CONFIG_RTC_INTF_DEV=y | |||
| 751 | # on-CPU RTC drivers | 784 | # on-CPU RTC drivers |
| 752 | # | 785 | # |
| 753 | CONFIG_RTC_DRV_VR41XX=y | 786 | CONFIG_RTC_DRV_VR41XX=y |
| 754 | |||
| 755 | # | ||
| 756 | # DMA Engine support | ||
| 757 | # | ||
| 758 | # CONFIG_DMA_ENGINE is not set | ||
| 759 | |||
| 760 | # | ||
| 761 | # DMA Clients | ||
| 762 | # | ||
| 763 | |||
| 764 | # | ||
| 765 | # DMA Devices | ||
| 766 | # | ||
| 767 | |||
| 768 | # | ||
| 769 | # Userspace I/O | ||
| 770 | # | ||
| 771 | # CONFIG_UIO is not set | 787 | # CONFIG_UIO is not set |
| 772 | 788 | ||
| 773 | # | 789 | # |
| @@ -782,14 +798,11 @@ CONFIG_EXT2_FS=y | |||
| 782 | # CONFIG_JFS_FS is not set | 798 | # CONFIG_JFS_FS is not set |
| 783 | CONFIG_FS_POSIX_ACL=y | 799 | CONFIG_FS_POSIX_ACL=y |
| 784 | # CONFIG_XFS_FS is not set | 800 | # CONFIG_XFS_FS is not set |
| 785 | # CONFIG_GFS2_FS is not set | ||
| 786 | # CONFIG_OCFS2_FS is not set | 801 | # CONFIG_OCFS2_FS is not set |
| 787 | # CONFIG_MINIX_FS is not set | 802 | CONFIG_DNOTIFY=y |
| 788 | CONFIG_ROMFS_FS=m | ||
| 789 | CONFIG_INOTIFY=y | 803 | CONFIG_INOTIFY=y |
| 790 | CONFIG_INOTIFY_USER=y | 804 | CONFIG_INOTIFY_USER=y |
| 791 | # CONFIG_QUOTA is not set | 805 | # CONFIG_QUOTA is not set |
| 792 | CONFIG_DNOTIFY=y | ||
| 793 | # CONFIG_AUTOFS_FS is not set | 806 | # CONFIG_AUTOFS_FS is not set |
| 794 | CONFIG_AUTOFS4_FS=y | 807 | CONFIG_AUTOFS4_FS=y |
| 795 | # CONFIG_FUSE_FS is not set | 808 | # CONFIG_FUSE_FS is not set |
| @@ -818,7 +831,6 @@ CONFIG_SYSFS=y | |||
| 818 | CONFIG_TMPFS=y | 831 | CONFIG_TMPFS=y |
| 819 | CONFIG_TMPFS_POSIX_ACL=y | 832 | CONFIG_TMPFS_POSIX_ACL=y |
| 820 | # CONFIG_HUGETLB_PAGE is not set | 833 | # CONFIG_HUGETLB_PAGE is not set |
| 821 | CONFIG_RAMFS=y | ||
| 822 | # CONFIG_CONFIGFS_FS is not set | 834 | # CONFIG_CONFIGFS_FS is not set |
| 823 | 835 | ||
| 824 | # | 836 | # |
| @@ -833,24 +845,21 @@ CONFIG_RAMFS=y | |||
| 833 | # CONFIG_EFS_FS is not set | 845 | # CONFIG_EFS_FS is not set |
| 834 | CONFIG_CRAMFS=m | 846 | CONFIG_CRAMFS=m |
| 835 | # CONFIG_VXFS_FS is not set | 847 | # CONFIG_VXFS_FS is not set |
| 848 | # CONFIG_MINIX_FS is not set | ||
| 836 | # CONFIG_HPFS_FS is not set | 849 | # CONFIG_HPFS_FS is not set |
| 837 | # CONFIG_QNX4FS_FS is not set | 850 | # CONFIG_QNX4FS_FS is not set |
| 851 | CONFIG_ROMFS_FS=m | ||
| 838 | # CONFIG_SYSV_FS is not set | 852 | # CONFIG_SYSV_FS is not set |
| 839 | # CONFIG_UFS_FS is not set | 853 | # CONFIG_UFS_FS is not set |
| 840 | 854 | CONFIG_NETWORK_FILESYSTEMS=y | |
| 841 | # | ||
| 842 | # Network File Systems | ||
| 843 | # | ||
| 844 | CONFIG_NFS_FS=y | 855 | CONFIG_NFS_FS=y |
| 845 | CONFIG_NFS_V3=y | 856 | CONFIG_NFS_V3=y |
| 846 | # CONFIG_NFS_V3_ACL is not set | 857 | # CONFIG_NFS_V3_ACL is not set |
| 847 | # CONFIG_NFS_V4 is not set | 858 | # CONFIG_NFS_V4 is not set |
| 848 | # CONFIG_NFS_DIRECTIO is not set | ||
| 849 | CONFIG_NFSD=m | 859 | CONFIG_NFSD=m |
| 850 | CONFIG_NFSD_V3=y | 860 | CONFIG_NFSD_V3=y |
| 851 | # CONFIG_NFSD_V3_ACL is not set | 861 | # CONFIG_NFSD_V3_ACL is not set |
| 852 | # CONFIG_NFSD_V4 is not set | 862 | # CONFIG_NFSD_V4 is not set |
| 853 | # CONFIG_NFSD_TCP is not set | ||
| 854 | CONFIG_ROOT_NFS=y | 863 | CONFIG_ROOT_NFS=y |
| 855 | CONFIG_LOCKD=y | 864 | CONFIG_LOCKD=y |
| 856 | CONFIG_LOCKD_V4=y | 865 | CONFIG_LOCKD_V4=y |
| @@ -871,47 +880,38 @@ CONFIG_SUNRPC=y | |||
| 871 | # | 880 | # |
| 872 | # CONFIG_PARTITION_ADVANCED is not set | 881 | # CONFIG_PARTITION_ADVANCED is not set |
| 873 | CONFIG_MSDOS_PARTITION=y | 882 | CONFIG_MSDOS_PARTITION=y |
| 874 | |||
| 875 | # | ||
| 876 | # Native Language Support | ||
| 877 | # | ||
| 878 | # CONFIG_NLS is not set | 883 | # CONFIG_NLS is not set |
| 879 | |||
| 880 | # | ||
| 881 | # Distributed Lock Manager | ||
| 882 | # | ||
| 883 | # CONFIG_DLM is not set | 884 | # CONFIG_DLM is not set |
| 884 | 885 | ||
| 885 | # | 886 | # |
| 886 | # Profiling support | ||
| 887 | # | ||
| 888 | # CONFIG_PROFILING is not set | ||
| 889 | |||
| 890 | # | ||
| 891 | # Kernel hacking | 887 | # Kernel hacking |
| 892 | # | 888 | # |
| 893 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 889 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
| 894 | # CONFIG_PRINTK_TIME is not set | 890 | # CONFIG_PRINTK_TIME is not set |
| 891 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 895 | CONFIG_ENABLE_MUST_CHECK=y | 892 | CONFIG_ENABLE_MUST_CHECK=y |
| 893 | CONFIG_FRAME_WARN=1024 | ||
| 896 | # CONFIG_MAGIC_SYSRQ is not set | 894 | # CONFIG_MAGIC_SYSRQ is not set |
| 897 | # CONFIG_UNUSED_SYMBOLS is not set | 895 | # CONFIG_UNUSED_SYMBOLS is not set |
| 898 | # CONFIG_DEBUG_FS is not set | 896 | # CONFIG_DEBUG_FS is not set |
| 899 | # CONFIG_HEADERS_CHECK is not set | 897 | # CONFIG_HEADERS_CHECK is not set |
| 900 | # CONFIG_DEBUG_KERNEL is not set | 898 | # CONFIG_DEBUG_KERNEL is not set |
| 901 | CONFIG_CROSSCOMPILE=y | 899 | # CONFIG_SAMPLES is not set |
| 902 | CONFIG_CMDLINE="mem=32M console=ttyVR0,115200" | 900 | CONFIG_CMDLINE="cca=3 mem=32M console=ttyVR0,115200" |
| 903 | 901 | ||
| 904 | # | 902 | # |
| 905 | # Security options | 903 | # Security options |
| 906 | # | 904 | # |
| 907 | # CONFIG_KEYS is not set | 905 | # CONFIG_KEYS is not set |
| 908 | # CONFIG_SECURITY is not set | 906 | # CONFIG_SECURITY is not set |
| 907 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
| 909 | # CONFIG_CRYPTO is not set | 908 | # CONFIG_CRYPTO is not set |
| 910 | 909 | ||
| 911 | # | 910 | # |
| 912 | # Library routines | 911 | # Library routines |
| 913 | # | 912 | # |
| 914 | CONFIG_BITREVERSE=m | 913 | CONFIG_BITREVERSE=m |
| 914 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 915 | # CONFIG_CRC_CCITT is not set | 915 | # CONFIG_CRC_CCITT is not set |
| 916 | # CONFIG_CRC16 is not set | 916 | # CONFIG_CRC16 is not set |
| 917 | # CONFIG_CRC_ITU_T is not set | 917 | # CONFIG_CRC_ITU_T is not set |
diff --git a/arch/mips/configs/tb0287_defconfig b/arch/mips/configs/tb0287_defconfig index 40d4a40a970e..a5d0f3c55ed1 100644 --- a/arch/mips/configs/tb0287_defconfig +++ b/arch/mips/configs/tb0287_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.23-rc2 | 3 | # Linux kernel version: 2.6.26-rc1 |
| 4 | # Thu Aug 9 14:03:54 2007 | 4 | # Mon May 12 11:55:55 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_MIPS=y | 6 | CONFIG_MIPS=y |
| 7 | 7 | ||
| @@ -10,9 +10,11 @@ CONFIG_MIPS=y | |||
| 10 | # | 10 | # |
| 11 | # CONFIG_MACH_ALCHEMY is not set | 11 | # CONFIG_MACH_ALCHEMY is not set |
| 12 | # CONFIG_BASLER_EXCITE is not set | 12 | # CONFIG_BASLER_EXCITE is not set |
| 13 | # CONFIG_BCM47XX is not set | ||
| 13 | # CONFIG_MIPS_COBALT is not set | 14 | # CONFIG_MIPS_COBALT is not set |
| 14 | # CONFIG_MACH_DECSTATION is not set | 15 | # CONFIG_MACH_DECSTATION is not set |
| 15 | # CONFIG_MACH_JAZZ is not set | 16 | # CONFIG_MACH_JAZZ is not set |
| 17 | # CONFIG_LASAT is not set | ||
| 16 | # CONFIG_LEMOTE_FULONG is not set | 18 | # CONFIG_LEMOTE_FULONG is not set |
| 17 | # CONFIG_MIPS_ATLAS is not set | 19 | # CONFIG_MIPS_ATLAS is not set |
| 18 | # CONFIG_MIPS_MALTA is not set | 20 | # CONFIG_MIPS_MALTA is not set |
| @@ -26,6 +28,7 @@ CONFIG_MACH_VR41XX=y | |||
| 26 | # CONFIG_PMC_YOSEMITE is not set | 28 | # CONFIG_PMC_YOSEMITE is not set |
| 27 | # CONFIG_SGI_IP22 is not set | 29 | # CONFIG_SGI_IP22 is not set |
| 28 | # CONFIG_SGI_IP27 is not set | 30 | # CONFIG_SGI_IP27 is not set |
| 31 | # CONFIG_SGI_IP28 is not set | ||
| 29 | # CONFIG_SGI_IP32 is not set | 32 | # CONFIG_SGI_IP32 is not set |
| 30 | # CONFIG_SIBYTE_CRHINE is not set | 33 | # CONFIG_SIBYTE_CRHINE is not set |
| 31 | # CONFIG_SIBYTE_CARMEL is not set | 34 | # CONFIG_SIBYTE_CARMEL is not set |
| @@ -53,12 +56,17 @@ CONFIG_PCI_VR41XX=y | |||
| 53 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 56 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
| 54 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | 57 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set |
| 55 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 58 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
| 59 | CONFIG_ARCH_SUPPORTS_OPROFILE=y | ||
| 56 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 60 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
| 57 | CONFIG_GENERIC_HWEIGHT=y | 61 | CONFIG_GENERIC_HWEIGHT=y |
| 58 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 62 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
| 63 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 59 | CONFIG_GENERIC_TIME=y | 64 | CONFIG_GENERIC_TIME=y |
| 65 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
| 60 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 66 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
| 61 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | 67 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y |
| 68 | CONFIG_CEVT_R4K=y | ||
| 69 | CONFIG_CSRC_R4K=y | ||
| 62 | CONFIG_DMA_NONCOHERENT=y | 70 | CONFIG_DMA_NONCOHERENT=y |
| 63 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | 71 | CONFIG_DMA_NEED_PCI_MAP_STATE=y |
| 64 | # CONFIG_HOTPLUG_CPU is not set | 72 | # CONFIG_HOTPLUG_CPU is not set |
| @@ -113,6 +121,7 @@ CONFIG_CPU_HAS_SYNC=y | |||
| 113 | CONFIG_GENERIC_HARDIRQS=y | 121 | CONFIG_GENERIC_HARDIRQS=y |
| 114 | CONFIG_GENERIC_IRQ_PROBE=y | 122 | CONFIG_GENERIC_IRQ_PROBE=y |
| 115 | CONFIG_ARCH_FLATMEM_ENABLE=y | 123 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 124 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
| 116 | CONFIG_SELECT_MEMORY_MODEL=y | 125 | CONFIG_SELECT_MEMORY_MODEL=y |
| 117 | CONFIG_FLATMEM_MANUAL=y | 126 | CONFIG_FLATMEM_MANUAL=y |
| 118 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 127 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
| @@ -120,10 +129,16 @@ CONFIG_FLATMEM_MANUAL=y | |||
| 120 | CONFIG_FLATMEM=y | 129 | CONFIG_FLATMEM=y |
| 121 | CONFIG_FLAT_NODE_MEM_MAP=y | 130 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 122 | # CONFIG_SPARSEMEM_STATIC is not set | 131 | # CONFIG_SPARSEMEM_STATIC is not set |
| 132 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
| 133 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 123 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 134 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 124 | # CONFIG_RESOURCES_64BIT is not set | 135 | # CONFIG_RESOURCES_64BIT is not set |
| 125 | CONFIG_ZONE_DMA_FLAG=0 | 136 | CONFIG_ZONE_DMA_FLAG=0 |
| 126 | CONFIG_VIRT_TO_BUS=y | 137 | CONFIG_VIRT_TO_BUS=y |
| 138 | # CONFIG_TICK_ONESHOT is not set | ||
| 139 | # CONFIG_NO_HZ is not set | ||
| 140 | # CONFIG_HIGH_RES_TIMERS is not set | ||
| 141 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 127 | # CONFIG_HZ_48 is not set | 142 | # CONFIG_HZ_48 is not set |
| 128 | # CONFIG_HZ_100 is not set | 143 | # CONFIG_HZ_100 is not set |
| 129 | # CONFIG_HZ_128 is not set | 144 | # CONFIG_HZ_128 is not set |
| @@ -156,12 +171,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 156 | # CONFIG_POSIX_MQUEUE is not set | 171 | # CONFIG_POSIX_MQUEUE is not set |
| 157 | # CONFIG_BSD_PROCESS_ACCT is not set | 172 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 158 | # CONFIG_TASKSTATS is not set | 173 | # CONFIG_TASKSTATS is not set |
| 159 | # CONFIG_USER_NS is not set | ||
| 160 | # CONFIG_AUDIT is not set | 174 | # CONFIG_AUDIT is not set |
| 161 | # CONFIG_IKCONFIG is not set | 175 | # CONFIG_IKCONFIG is not set |
| 162 | CONFIG_LOG_BUF_SHIFT=14 | 176 | CONFIG_LOG_BUF_SHIFT=14 |
| 177 | # CONFIG_CGROUPS is not set | ||
| 178 | # CONFIG_GROUP_SCHED is not set | ||
| 163 | CONFIG_SYSFS_DEPRECATED=y | 179 | CONFIG_SYSFS_DEPRECATED=y |
| 180 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
| 164 | # CONFIG_RELAY is not set | 181 | # CONFIG_RELAY is not set |
| 182 | # CONFIG_NAMESPACES is not set | ||
| 165 | # CONFIG_BLK_DEV_INITRD is not set | 183 | # CONFIG_BLK_DEV_INITRD is not set |
| 166 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 184 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 167 | CONFIG_SYSCTL=y | 185 | CONFIG_SYSCTL=y |
| @@ -173,6 +191,8 @@ CONFIG_HOTPLUG=y | |||
| 173 | CONFIG_PRINTK=y | 191 | CONFIG_PRINTK=y |
| 174 | CONFIG_BUG=y | 192 | CONFIG_BUG=y |
| 175 | CONFIG_ELF_CORE=y | 193 | CONFIG_ELF_CORE=y |
| 194 | # CONFIG_PCSPKR_PLATFORM is not set | ||
| 195 | CONFIG_COMPAT_BRK=y | ||
| 176 | CONFIG_BASE_FULL=y | 196 | CONFIG_BASE_FULL=y |
| 177 | CONFIG_FUTEX=y | 197 | CONFIG_FUTEX=y |
| 178 | CONFIG_ANON_INODES=y | 198 | CONFIG_ANON_INODES=y |
| @@ -185,10 +205,19 @@ CONFIG_VM_EVENT_COUNTERS=y | |||
| 185 | CONFIG_SLAB=y | 205 | CONFIG_SLAB=y |
| 186 | # CONFIG_SLUB is not set | 206 | # CONFIG_SLUB is not set |
| 187 | # CONFIG_SLOB is not set | 207 | # CONFIG_SLOB is not set |
| 208 | # CONFIG_PROFILING is not set | ||
| 209 | # CONFIG_MARKERS is not set | ||
| 210 | CONFIG_HAVE_OPROFILE=y | ||
| 211 | # CONFIG_HAVE_KPROBES is not set | ||
| 212 | # CONFIG_HAVE_KRETPROBES is not set | ||
| 213 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 214 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 215 | CONFIG_SLABINFO=y | ||
| 188 | CONFIG_RT_MUTEXES=y | 216 | CONFIG_RT_MUTEXES=y |
| 189 | # CONFIG_TINY_SHMEM is not set | 217 | # CONFIG_TINY_SHMEM is not set |
| 190 | CONFIG_BASE_SMALL=0 | 218 | CONFIG_BASE_SMALL=0 |
| 191 | CONFIG_MODULES=y | 219 | CONFIG_MODULES=y |
| 220 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 192 | CONFIG_MODULE_UNLOAD=y | 221 | CONFIG_MODULE_UNLOAD=y |
| 193 | CONFIG_MODULE_FORCE_UNLOAD=y | 222 | CONFIG_MODULE_FORCE_UNLOAD=y |
| 194 | CONFIG_MODVERSIONS=y | 223 | CONFIG_MODVERSIONS=y |
| @@ -212,18 +241,17 @@ CONFIG_DEFAULT_AS=y | |||
| 212 | # CONFIG_DEFAULT_CFQ is not set | 241 | # CONFIG_DEFAULT_CFQ is not set |
| 213 | # CONFIG_DEFAULT_NOOP is not set | 242 | # CONFIG_DEFAULT_NOOP is not set |
| 214 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 243 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 244 | CONFIG_CLASSIC_RCU=y | ||
| 215 | 245 | ||
| 216 | # | 246 | # |
| 217 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | 247 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) |
| 218 | # | 248 | # |
| 219 | CONFIG_HW_HAS_PCI=y | 249 | CONFIG_HW_HAS_PCI=y |
| 220 | CONFIG_PCI=y | 250 | CONFIG_PCI=y |
| 251 | CONFIG_PCI_DOMAINS=y | ||
| 221 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 252 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 253 | CONFIG_PCI_LEGACY=y | ||
| 222 | CONFIG_MMU=y | 254 | CONFIG_MMU=y |
| 223 | |||
| 224 | # | ||
| 225 | # PCCARD (PCMCIA/CardBus) support | ||
| 226 | # | ||
| 227 | # CONFIG_PCCARD is not set | 255 | # CONFIG_PCCARD is not set |
| 228 | # CONFIG_HOTPLUG_PCI is not set | 256 | # CONFIG_HOTPLUG_PCI is not set |
| 229 | 257 | ||
| @@ -237,6 +265,7 @@ CONFIG_TRAD_SIGNALS=y | |||
| 237 | # | 265 | # |
| 238 | # Power management options | 266 | # Power management options |
| 239 | # | 267 | # |
| 268 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | ||
| 240 | # CONFIG_PM is not set | 269 | # CONFIG_PM is not set |
| 241 | 270 | ||
| 242 | # | 271 | # |
| @@ -278,6 +307,7 @@ CONFIG_INET_TUNNEL=m | |||
| 278 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | 307 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set |
| 279 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | 308 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set |
| 280 | # CONFIG_INET_XFRM_MODE_BEET is not set | 309 | # CONFIG_INET_XFRM_MODE_BEET is not set |
| 310 | # CONFIG_INET_LRO is not set | ||
| 281 | CONFIG_INET_DIAG=y | 311 | CONFIG_INET_DIAG=y |
| 282 | CONFIG_INET_TCP_DIAG=y | 312 | CONFIG_INET_TCP_DIAG=y |
| 283 | CONFIG_TCP_CONG_ADVANCED=y | 313 | CONFIG_TCP_CONG_ADVANCED=y |
| @@ -302,8 +332,6 @@ CONFIG_DEFAULT_BIC=y | |||
| 302 | CONFIG_DEFAULT_TCP_CONG="bic" | 332 | CONFIG_DEFAULT_TCP_CONG="bic" |
| 303 | # CONFIG_TCP_MD5SIG is not set | 333 | # CONFIG_TCP_MD5SIG is not set |
| 304 | # CONFIG_IPV6 is not set | 334 | # CONFIG_IPV6 is not set |
| 305 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 306 | # CONFIG_INET6_TUNNEL is not set | ||
| 307 | CONFIG_NETWORK_SECMARK=y | 335 | CONFIG_NETWORK_SECMARK=y |
| 308 | # CONFIG_NETFILTER is not set | 336 | # CONFIG_NETFILTER is not set |
| 309 | # CONFIG_IP_DCCP is not set | 337 | # CONFIG_IP_DCCP is not set |
| @@ -320,10 +348,6 @@ CONFIG_NETWORK_SECMARK=y | |||
| 320 | # CONFIG_LAPB is not set | 348 | # CONFIG_LAPB is not set |
| 321 | # CONFIG_ECONET is not set | 349 | # CONFIG_ECONET is not set |
| 322 | # CONFIG_WAN_ROUTER is not set | 350 | # CONFIG_WAN_ROUTER is not set |
| 323 | |||
| 324 | # | ||
| 325 | # QoS and/or fair queueing | ||
| 326 | # | ||
| 327 | # CONFIG_NET_SCHED is not set | 351 | # CONFIG_NET_SCHED is not set |
| 328 | 352 | ||
| 329 | # | 353 | # |
| @@ -331,6 +355,7 @@ CONFIG_NETWORK_SECMARK=y | |||
| 331 | # | 355 | # |
| 332 | # CONFIG_NET_PKTGEN is not set | 356 | # CONFIG_NET_PKTGEN is not set |
| 333 | # CONFIG_HAMRADIO is not set | 357 | # CONFIG_HAMRADIO is not set |
| 358 | # CONFIG_CAN is not set | ||
| 334 | # CONFIG_IRDA is not set | 359 | # CONFIG_IRDA is not set |
| 335 | # CONFIG_BT is not set | 360 | # CONFIG_BT is not set |
| 336 | # CONFIG_AF_RXRPC is not set | 361 | # CONFIG_AF_RXRPC is not set |
| @@ -353,6 +378,7 @@ CONFIG_FIB_RULES=y | |||
| 353 | # | 378 | # |
| 354 | # Generic Driver Options | 379 | # Generic Driver Options |
| 355 | # | 380 | # |
| 381 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
| 356 | CONFIG_STANDALONE=y | 382 | CONFIG_STANDALONE=y |
| 357 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 383 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
| 358 | CONFIG_FW_LOADER=m | 384 | CONFIG_FW_LOADER=m |
| @@ -374,10 +400,11 @@ CONFIG_BLK_DEV_NBD=m | |||
| 374 | CONFIG_BLK_DEV_RAM=y | 400 | CONFIG_BLK_DEV_RAM=y |
| 375 | CONFIG_BLK_DEV_RAM_COUNT=16 | 401 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 376 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 402 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
| 377 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 403 | CONFIG_BLK_DEV_XIP=y |
| 378 | # CONFIG_CDROM_PKTCDVD is not set | 404 | # CONFIG_CDROM_PKTCDVD is not set |
| 379 | # CONFIG_ATA_OVER_ETH is not set | 405 | # CONFIG_ATA_OVER_ETH is not set |
| 380 | # CONFIG_MISC_DEVICES is not set | 406 | # CONFIG_MISC_DEVICES is not set |
| 407 | CONFIG_HAVE_IDE=y | ||
| 381 | # CONFIG_IDE is not set | 408 | # CONFIG_IDE is not set |
| 382 | 409 | ||
| 383 | # | 410 | # |
| @@ -416,10 +443,14 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 416 | # CONFIG_SCSI_FC_ATTRS is not set | 443 | # CONFIG_SCSI_FC_ATTRS is not set |
| 417 | # CONFIG_SCSI_ISCSI_ATTRS is not set | 444 | # CONFIG_SCSI_ISCSI_ATTRS is not set |
| 418 | # CONFIG_SCSI_SAS_LIBSAS is not set | 445 | # CONFIG_SCSI_SAS_LIBSAS is not set |
| 446 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
| 419 | # CONFIG_SCSI_LOWLEVEL is not set | 447 | # CONFIG_SCSI_LOWLEVEL is not set |
| 420 | CONFIG_ATA=y | 448 | CONFIG_ATA=y |
| 421 | # CONFIG_ATA_NONSTANDARD is not set | 449 | # CONFIG_ATA_NONSTANDARD is not set |
| 450 | CONFIG_SATA_PMP=y | ||
| 422 | # CONFIG_SATA_AHCI is not set | 451 | # CONFIG_SATA_AHCI is not set |
| 452 | # CONFIG_SATA_SIL24 is not set | ||
| 453 | CONFIG_ATA_SFF=y | ||
| 423 | # CONFIG_SATA_SVW is not set | 454 | # CONFIG_SATA_SVW is not set |
| 424 | # CONFIG_ATA_PIIX is not set | 455 | # CONFIG_ATA_PIIX is not set |
| 425 | # CONFIG_SATA_MV is not set | 456 | # CONFIG_SATA_MV is not set |
| @@ -429,7 +460,6 @@ CONFIG_ATA=y | |||
| 429 | # CONFIG_SATA_PROMISE is not set | 460 | # CONFIG_SATA_PROMISE is not set |
| 430 | # CONFIG_SATA_SX4 is not set | 461 | # CONFIG_SATA_SX4 is not set |
| 431 | # CONFIG_SATA_SIL is not set | 462 | # CONFIG_SATA_SIL is not set |
| 432 | # CONFIG_SATA_SIL24 is not set | ||
| 433 | # CONFIG_SATA_SIS is not set | 463 | # CONFIG_SATA_SIS is not set |
| 434 | # CONFIG_SATA_ULI is not set | 464 | # CONFIG_SATA_ULI is not set |
| 435 | # CONFIG_SATA_VIA is not set | 465 | # CONFIG_SATA_VIA is not set |
| @@ -458,7 +488,9 @@ CONFIG_ATA=y | |||
| 458 | # CONFIG_PATA_MPIIX is not set | 488 | # CONFIG_PATA_MPIIX is not set |
| 459 | # CONFIG_PATA_OLDPIIX is not set | 489 | # CONFIG_PATA_OLDPIIX is not set |
| 460 | # CONFIG_PATA_NETCELL is not set | 490 | # CONFIG_PATA_NETCELL is not set |
| 491 | # CONFIG_PATA_NINJA32 is not set | ||
| 461 | # CONFIG_PATA_NS87410 is not set | 492 | # CONFIG_PATA_NS87410 is not set |
| 493 | # CONFIG_PATA_NS87415 is not set | ||
| 462 | # CONFIG_PATA_OPTI is not set | 494 | # CONFIG_PATA_OPTI is not set |
| 463 | # CONFIG_PATA_OPTIDMA is not set | 495 | # CONFIG_PATA_OPTIDMA is not set |
| 464 | # CONFIG_PATA_PDC_OLD is not set | 496 | # CONFIG_PATA_PDC_OLD is not set |
| @@ -472,15 +504,9 @@ CONFIG_PATA_SIL680=y | |||
| 472 | # CONFIG_PATA_VIA is not set | 504 | # CONFIG_PATA_VIA is not set |
| 473 | # CONFIG_PATA_WINBOND is not set | 505 | # CONFIG_PATA_WINBOND is not set |
| 474 | # CONFIG_PATA_PLATFORM is not set | 506 | # CONFIG_PATA_PLATFORM is not set |
| 507 | # CONFIG_PATA_SCH is not set | ||
| 475 | # CONFIG_MD is not set | 508 | # CONFIG_MD is not set |
| 476 | |||
| 477 | # | ||
| 478 | # Fusion MPT device support | ||
| 479 | # | ||
| 480 | # CONFIG_FUSION is not set | 509 | # CONFIG_FUSION is not set |
| 481 | # CONFIG_FUSION_SPI is not set | ||
| 482 | # CONFIG_FUSION_FC is not set | ||
| 483 | # CONFIG_FUSION_SAS is not set | ||
| 484 | 510 | ||
| 485 | # | 511 | # |
| 486 | # IEEE 1394 (FireWire) support | 512 | # IEEE 1394 (FireWire) support |
| @@ -520,6 +546,7 @@ CONFIG_NETDEVICES=y | |||
| 520 | # CONFIG_MACVLAN is not set | 546 | # CONFIG_MACVLAN is not set |
| 521 | # CONFIG_EQUALIZER is not set | 547 | # CONFIG_EQUALIZER is not set |
| 522 | # CONFIG_TUN is not set | 548 | # CONFIG_TUN is not set |
| 549 | # CONFIG_VETH is not set | ||
| 523 | # CONFIG_ARCNET is not set | 550 | # CONFIG_ARCNET is not set |
| 524 | # CONFIG_PHYLIB is not set | 551 | # CONFIG_PHYLIB is not set |
| 525 | CONFIG_NET_ETHERNET=y | 552 | CONFIG_NET_ETHERNET=y |
| @@ -532,6 +559,10 @@ CONFIG_MII=y | |||
| 532 | # CONFIG_DM9000 is not set | 559 | # CONFIG_DM9000 is not set |
| 533 | # CONFIG_NET_TULIP is not set | 560 | # CONFIG_NET_TULIP is not set |
| 534 | # CONFIG_HP100 is not set | 561 | # CONFIG_HP100 is not set |
| 562 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
| 563 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
| 564 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
| 565 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
| 535 | CONFIG_NET_PCI=y | 566 | CONFIG_NET_PCI=y |
| 536 | # CONFIG_PCNET32 is not set | 567 | # CONFIG_PCNET32 is not set |
| 537 | # CONFIG_AMD8111_ETH is not set | 568 | # CONFIG_AMD8111_ETH is not set |
| @@ -539,7 +570,6 @@ CONFIG_NET_PCI=y | |||
| 539 | # CONFIG_B44 is not set | 570 | # CONFIG_B44 is not set |
| 540 | # CONFIG_FORCEDETH is not set | 571 | # CONFIG_FORCEDETH is not set |
| 541 | # CONFIG_TC35815 is not set | 572 | # CONFIG_TC35815 is not set |
| 542 | # CONFIG_DGRS is not set | ||
| 543 | # CONFIG_EEPRO100 is not set | 573 | # CONFIG_EEPRO100 is not set |
| 544 | # CONFIG_E100 is not set | 574 | # CONFIG_E100 is not set |
| 545 | # CONFIG_FEALNX is not set | 575 | # CONFIG_FEALNX is not set |
| @@ -551,6 +581,7 @@ CONFIG_8139TOO_PIO=y | |||
| 551 | # CONFIG_8139TOO_TUNE_TWISTER is not set | 581 | # CONFIG_8139TOO_TUNE_TWISTER is not set |
| 552 | # CONFIG_8139TOO_8129 is not set | 582 | # CONFIG_8139TOO_8129 is not set |
| 553 | # CONFIG_8139_OLD_RX_RESET is not set | 583 | # CONFIG_8139_OLD_RX_RESET is not set |
| 584 | # CONFIG_R6040 is not set | ||
| 554 | # CONFIG_SIS900 is not set | 585 | # CONFIG_SIS900 is not set |
| 555 | # CONFIG_EPIC100 is not set | 586 | # CONFIG_EPIC100 is not set |
| 556 | # CONFIG_SUNDANCE is not set | 587 | # CONFIG_SUNDANCE is not set |
| @@ -563,6 +594,10 @@ CONFIG_NETDEV_1000=y | |||
| 563 | # CONFIG_ACENIC is not set | 594 | # CONFIG_ACENIC is not set |
| 564 | # CONFIG_DL2K is not set | 595 | # CONFIG_DL2K is not set |
| 565 | # CONFIG_E1000 is not set | 596 | # CONFIG_E1000 is not set |
| 597 | # CONFIG_E1000E is not set | ||
| 598 | # CONFIG_E1000E_ENABLED is not set | ||
| 599 | # CONFIG_IP1000 is not set | ||
| 600 | # CONFIG_IGB is not set | ||
| 566 | # CONFIG_NS83820 is not set | 601 | # CONFIG_NS83820 is not set |
| 567 | # CONFIG_HAMACHI is not set | 602 | # CONFIG_HAMACHI is not set |
| 568 | # CONFIG_YELLOWFIN is not set | 603 | # CONFIG_YELLOWFIN is not set |
| @@ -584,6 +619,7 @@ CONFIG_VIA_VELOCITY=y | |||
| 584 | # | 619 | # |
| 585 | # CONFIG_WLAN_PRE80211 is not set | 620 | # CONFIG_WLAN_PRE80211 is not set |
| 586 | # CONFIG_WLAN_80211 is not set | 621 | # CONFIG_WLAN_80211 is not set |
| 622 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 587 | 623 | ||
| 588 | # | 624 | # |
| 589 | # USB Network Adapters | 625 | # USB Network Adapters |
| @@ -592,7 +628,6 @@ CONFIG_VIA_VELOCITY=y | |||
| 592 | # CONFIG_USB_KAWETH is not set | 628 | # CONFIG_USB_KAWETH is not set |
| 593 | # CONFIG_USB_PEGASUS is not set | 629 | # CONFIG_USB_PEGASUS is not set |
| 594 | # CONFIG_USB_RTL8150 is not set | 630 | # CONFIG_USB_RTL8150 is not set |
| 595 | # CONFIG_USB_USBNET_MII is not set | ||
| 596 | # CONFIG_USB_USBNET is not set | 631 | # CONFIG_USB_USBNET is not set |
| 597 | # CONFIG_WAN is not set | 632 | # CONFIG_WAN is not set |
| 598 | # CONFIG_FDDI is not set | 633 | # CONFIG_FDDI is not set |
| @@ -600,7 +635,6 @@ CONFIG_VIA_VELOCITY=y | |||
| 600 | # CONFIG_PPP is not set | 635 | # CONFIG_PPP is not set |
| 601 | # CONFIG_SLIP is not set | 636 | # CONFIG_SLIP is not set |
| 602 | # CONFIG_NET_FC is not set | 637 | # CONFIG_NET_FC is not set |
| 603 | # CONFIG_SHAPER is not set | ||
| 604 | # CONFIG_NETCONSOLE is not set | 638 | # CONFIG_NETCONSOLE is not set |
| 605 | # CONFIG_NETPOLL is not set | 639 | # CONFIG_NETPOLL is not set |
| 606 | # CONFIG_NET_POLL_CONTROLLER is not set | 640 | # CONFIG_NET_POLL_CONTROLLER is not set |
| @@ -622,7 +656,6 @@ CONFIG_INPUT_MOUSEDEV_PSAUX=y | |||
| 622 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | 656 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 |
| 623 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | 657 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 |
| 624 | # CONFIG_INPUT_JOYDEV is not set | 658 | # CONFIG_INPUT_JOYDEV is not set |
| 625 | # CONFIG_INPUT_TSDEV is not set | ||
| 626 | # CONFIG_INPUT_EVDEV is not set | 659 | # CONFIG_INPUT_EVDEV is not set |
| 627 | # CONFIG_INPUT_EVBUG is not set | 660 | # CONFIG_INPUT_EVBUG is not set |
| 628 | 661 | ||
| @@ -649,7 +682,9 @@ CONFIG_VT=y | |||
| 649 | CONFIG_VT_CONSOLE=y | 682 | CONFIG_VT_CONSOLE=y |
| 650 | CONFIG_HW_CONSOLE=y | 683 | CONFIG_HW_CONSOLE=y |
| 651 | CONFIG_VT_HW_CONSOLE_BINDING=y | 684 | CONFIG_VT_HW_CONSOLE_BINDING=y |
| 685 | # CONFIG_DEVKMEM is not set | ||
| 652 | # CONFIG_SERIAL_NONSTANDARD is not set | 686 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 687 | # CONFIG_NOZOMI is not set | ||
| 653 | 688 | ||
| 654 | # | 689 | # |
| 655 | # Serial drivers | 690 | # Serial drivers |
| @@ -668,49 +703,53 @@ CONFIG_UNIX98_PTYS=y | |||
| 668 | CONFIG_LEGACY_PTYS=y | 703 | CONFIG_LEGACY_PTYS=y |
| 669 | CONFIG_LEGACY_PTY_COUNT=256 | 704 | CONFIG_LEGACY_PTY_COUNT=256 |
| 670 | # CONFIG_IPMI_HANDLER is not set | 705 | # CONFIG_IPMI_HANDLER is not set |
| 671 | # CONFIG_WATCHDOG is not set | ||
| 672 | # CONFIG_HW_RANDOM is not set | 706 | # CONFIG_HW_RANDOM is not set |
| 673 | # CONFIG_RTC is not set | ||
| 674 | # CONFIG_R3964 is not set | 707 | # CONFIG_R3964 is not set |
| 675 | # CONFIG_APPLICOM is not set | 708 | # CONFIG_APPLICOM is not set |
| 676 | # CONFIG_GPIO_TB0219 is not set | 709 | # CONFIG_GPIO_TB0219 is not set |
| 677 | # CONFIG_DRM is not set | ||
| 678 | CONFIG_GPIO_VR41XX=y | 710 | CONFIG_GPIO_VR41XX=y |
| 679 | # CONFIG_RAW_DRIVER is not set | 711 | # CONFIG_RAW_DRIVER is not set |
| 680 | # CONFIG_TCG_TPM is not set | 712 | # CONFIG_TCG_TPM is not set |
| 681 | CONFIG_DEVPORT=y | 713 | CONFIG_DEVPORT=y |
| 682 | # CONFIG_I2C is not set | 714 | # CONFIG_I2C is not set |
| 683 | |||
| 684 | # | ||
| 685 | # SPI support | ||
| 686 | # | ||
| 687 | # CONFIG_SPI is not set | 715 | # CONFIG_SPI is not set |
| 688 | # CONFIG_SPI_MASTER is not set | ||
| 689 | # CONFIG_W1 is not set | 716 | # CONFIG_W1 is not set |
| 690 | # CONFIG_POWER_SUPPLY is not set | 717 | # CONFIG_POWER_SUPPLY is not set |
| 691 | # CONFIG_HWMON is not set | 718 | # CONFIG_HWMON is not set |
| 719 | # CONFIG_THERMAL is not set | ||
| 720 | # CONFIG_WATCHDOG is not set | ||
| 721 | |||
| 722 | # | ||
| 723 | # Sonics Silicon Backplane | ||
| 724 | # | ||
| 725 | CONFIG_SSB_POSSIBLE=y | ||
| 726 | # CONFIG_SSB is not set | ||
| 692 | 727 | ||
| 693 | # | 728 | # |
| 694 | # Multifunction device drivers | 729 | # Multifunction device drivers |
| 695 | # | 730 | # |
| 696 | CONFIG_MFD_SM501=y | 731 | CONFIG_MFD_SM501=y |
| 732 | # CONFIG_HTC_PASIC3 is not set | ||
| 697 | 733 | ||
| 698 | # | 734 | # |
| 699 | # Multimedia devices | 735 | # Multimedia devices |
| 700 | # | 736 | # |
| 737 | |||
| 738 | # | ||
| 739 | # Multimedia core support | ||
| 740 | # | ||
| 701 | # CONFIG_VIDEO_DEV is not set | 741 | # CONFIG_VIDEO_DEV is not set |
| 702 | # CONFIG_DVB_CORE is not set | 742 | # CONFIG_DVB_CORE is not set |
| 703 | # CONFIG_DAB is not set | ||
| 704 | 743 | ||
| 705 | # | 744 | # |
| 706 | # Graphics support | 745 | # Multimedia drivers |
| 707 | # | 746 | # |
| 708 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 747 | # CONFIG_DAB is not set |
| 709 | 748 | ||
| 710 | # | 749 | # |
| 711 | # Display device support | 750 | # Graphics support |
| 712 | # | 751 | # |
| 713 | # CONFIG_DISPLAY_SUPPORT is not set | 752 | # CONFIG_DRM is not set |
| 714 | # CONFIG_VGASTATE is not set | 753 | # CONFIG_VGASTATE is not set |
| 715 | CONFIG_VIDEO_OUTPUT_CONTROL=m | 754 | CONFIG_VIDEO_OUTPUT_CONTROL=m |
| 716 | CONFIG_FB=y | 755 | CONFIG_FB=y |
| @@ -719,9 +758,11 @@ CONFIG_FB=y | |||
| 719 | CONFIG_FB_CFB_FILLRECT=y | 758 | CONFIG_FB_CFB_FILLRECT=y |
| 720 | CONFIG_FB_CFB_COPYAREA=y | 759 | CONFIG_FB_CFB_COPYAREA=y |
| 721 | CONFIG_FB_CFB_IMAGEBLIT=y | 760 | CONFIG_FB_CFB_IMAGEBLIT=y |
| 761 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | ||
| 722 | # CONFIG_FB_SYS_FILLRECT is not set | 762 | # CONFIG_FB_SYS_FILLRECT is not set |
| 723 | # CONFIG_FB_SYS_COPYAREA is not set | 763 | # CONFIG_FB_SYS_COPYAREA is not set |
| 724 | # CONFIG_FB_SYS_IMAGEBLIT is not set | 764 | # CONFIG_FB_SYS_IMAGEBLIT is not set |
| 765 | # CONFIG_FB_FOREIGN_ENDIAN is not set | ||
| 725 | # CONFIG_FB_SYS_FOPS is not set | 766 | # CONFIG_FB_SYS_FOPS is not set |
| 726 | CONFIG_FB_DEFERRED_IO=y | 767 | CONFIG_FB_DEFERRED_IO=y |
| 727 | # CONFIG_FB_SVGALIB is not set | 768 | # CONFIG_FB_SVGALIB is not set |
| @@ -757,7 +798,14 @@ CONFIG_FB_DEFERRED_IO=y | |||
| 757 | # CONFIG_FB_ARK is not set | 798 | # CONFIG_FB_ARK is not set |
| 758 | # CONFIG_FB_PM3 is not set | 799 | # CONFIG_FB_PM3 is not set |
| 759 | CONFIG_FB_SM501=y | 800 | CONFIG_FB_SM501=y |
| 801 | # CONFIG_FB_COBALT is not set | ||
| 760 | # CONFIG_FB_VIRTUAL is not set | 802 | # CONFIG_FB_VIRTUAL is not set |
| 803 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 804 | |||
| 805 | # | ||
| 806 | # Display device support | ||
| 807 | # | ||
| 808 | # CONFIG_DISPLAY_SUPPORT is not set | ||
| 761 | 809 | ||
| 762 | # | 810 | # |
| 763 | # Console display driver support | 811 | # Console display driver support |
| @@ -787,6 +835,7 @@ CONFIG_FONT_8x16=y | |||
| 787 | CONFIG_HID_SUPPORT=y | 835 | CONFIG_HID_SUPPORT=y |
| 788 | CONFIG_HID=y | 836 | CONFIG_HID=y |
| 789 | # CONFIG_HID_DEBUG is not set | 837 | # CONFIG_HID_DEBUG is not set |
| 838 | # CONFIG_HIDRAW is not set | ||
| 790 | 839 | ||
| 791 | # | 840 | # |
| 792 | # USB Input Devices | 841 | # USB Input Devices |
| @@ -807,6 +856,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
| 807 | CONFIG_USB_ARCH_HAS_EHCI=y | 856 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 808 | CONFIG_USB=m | 857 | CONFIG_USB=m |
| 809 | # CONFIG_USB_DEBUG is not set | 858 | # CONFIG_USB_DEBUG is not set |
| 859 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
| 810 | 860 | ||
| 811 | # | 861 | # |
| 812 | # Miscellaneous USB options | 862 | # Miscellaneous USB options |
| @@ -815,15 +865,18 @@ CONFIG_USB=m | |||
| 815 | CONFIG_USB_DEVICE_CLASS=y | 865 | CONFIG_USB_DEVICE_CLASS=y |
| 816 | # CONFIG_USB_DYNAMIC_MINORS is not set | 866 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 817 | # CONFIG_USB_OTG is not set | 867 | # CONFIG_USB_OTG is not set |
| 868 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 869 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 818 | 870 | ||
| 819 | # | 871 | # |
| 820 | # USB Host Controller Drivers | 872 | # USB Host Controller Drivers |
| 821 | # | 873 | # |
| 874 | # CONFIG_USB_C67X00_HCD is not set | ||
| 822 | CONFIG_USB_EHCI_HCD=m | 875 | CONFIG_USB_EHCI_HCD=m |
| 823 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
| 824 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 876 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 825 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 877 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 826 | # CONFIG_USB_ISP116X_HCD is not set | 878 | # CONFIG_USB_ISP116X_HCD is not set |
| 879 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 827 | CONFIG_USB_OHCI_HCD=m | 880 | CONFIG_USB_OHCI_HCD=m |
| 828 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 881 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
| 829 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | 882 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set |
| @@ -849,13 +902,16 @@ CONFIG_USB_STORAGE=m | |||
| 849 | # CONFIG_USB_STORAGE_DEBUG is not set | 902 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 850 | # CONFIG_USB_STORAGE_DATAFAB is not set | 903 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 851 | # CONFIG_USB_STORAGE_FREECOM is not set | 904 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 905 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
| 852 | # CONFIG_USB_STORAGE_DPCM is not set | 906 | # CONFIG_USB_STORAGE_DPCM is not set |
| 853 | # CONFIG_USB_STORAGE_USBAT is not set | 907 | # CONFIG_USB_STORAGE_USBAT is not set |
| 854 | # CONFIG_USB_STORAGE_SDDR09 is not set | 908 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 855 | # CONFIG_USB_STORAGE_SDDR55 is not set | 909 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 856 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 910 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 857 | # CONFIG_USB_STORAGE_ALAUDA is not set | 911 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 912 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
| 858 | # CONFIG_USB_STORAGE_KARMA is not set | 913 | # CONFIG_USB_STORAGE_KARMA is not set |
| 914 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 859 | # CONFIG_USB_LIBUSUAL is not set | 915 | # CONFIG_USB_LIBUSUAL is not set |
| 860 | 916 | ||
| 861 | # | 917 | # |
| @@ -868,10 +924,6 @@ CONFIG_USB_MON=y | |||
| 868 | # | 924 | # |
| 869 | # USB port drivers | 925 | # USB port drivers |
| 870 | # | 926 | # |
| 871 | |||
| 872 | # | ||
| 873 | # USB Serial Converter support | ||
| 874 | # | ||
| 875 | # CONFIG_USB_SERIAL is not set | 927 | # CONFIG_USB_SERIAL is not set |
| 876 | 928 | ||
| 877 | # | 929 | # |
| @@ -896,36 +948,14 @@ CONFIG_USB_MON=y | |||
| 896 | # CONFIG_USB_LD is not set | 948 | # CONFIG_USB_LD is not set |
| 897 | # CONFIG_USB_TRANCEVIBRATOR is not set | 949 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 898 | # CONFIG_USB_IOWARRIOR is not set | 950 | # CONFIG_USB_IOWARRIOR is not set |
| 899 | |||
| 900 | # | ||
| 901 | # USB DSL modem support | ||
| 902 | # | ||
| 903 | |||
| 904 | # | ||
| 905 | # USB Gadget Support | ||
| 906 | # | ||
| 907 | # CONFIG_USB_GADGET is not set | 951 | # CONFIG_USB_GADGET is not set |
| 908 | # CONFIG_MMC is not set | 952 | # CONFIG_MMC is not set |
| 953 | # CONFIG_MEMSTICK is not set | ||
| 909 | # CONFIG_NEW_LEDS is not set | 954 | # CONFIG_NEW_LEDS is not set |
| 955 | # CONFIG_ACCESSIBILITY is not set | ||
| 910 | # CONFIG_INFINIBAND is not set | 956 | # CONFIG_INFINIBAND is not set |
| 957 | CONFIG_RTC_LIB=y | ||
| 911 | # CONFIG_RTC_CLASS is not set | 958 | # CONFIG_RTC_CLASS is not set |
| 912 | |||
| 913 | # | ||
| 914 | # DMA Engine support | ||
| 915 | # | ||
| 916 | # CONFIG_DMA_ENGINE is not set | ||
| 917 | |||
| 918 | # | ||
| 919 | # DMA Clients | ||
| 920 | # | ||
| 921 | |||
| 922 | # | ||
| 923 | # DMA Devices | ||
| 924 | # | ||
| 925 | |||
| 926 | # | ||
| 927 | # Userspace I/O | ||
| 928 | # | ||
| 929 | # CONFIG_UIO is not set | 959 | # CONFIG_UIO is not set |
| 930 | 960 | ||
| 931 | # | 961 | # |
| @@ -940,25 +970,21 @@ CONFIG_EXT3_FS_XATTR=y | |||
| 940 | # CONFIG_EXT3_FS_SECURITY is not set | 970 | # CONFIG_EXT3_FS_SECURITY is not set |
| 941 | # CONFIG_EXT4DEV_FS is not set | 971 | # CONFIG_EXT4DEV_FS is not set |
| 942 | CONFIG_JBD=y | 972 | CONFIG_JBD=y |
| 943 | # CONFIG_JBD_DEBUG is not set | ||
| 944 | CONFIG_FS_MBCACHE=y | 973 | CONFIG_FS_MBCACHE=y |
| 945 | # CONFIG_REISERFS_FS is not set | 974 | # CONFIG_REISERFS_FS is not set |
| 946 | # CONFIG_JFS_FS is not set | 975 | # CONFIG_JFS_FS is not set |
| 947 | CONFIG_FS_POSIX_ACL=y | 976 | CONFIG_FS_POSIX_ACL=y |
| 948 | CONFIG_XFS_FS=y | 977 | CONFIG_XFS_FS=y |
| 949 | CONFIG_XFS_QUOTA=y | 978 | CONFIG_XFS_QUOTA=y |
| 950 | # CONFIG_XFS_SECURITY is not set | ||
| 951 | CONFIG_XFS_POSIX_ACL=y | 979 | CONFIG_XFS_POSIX_ACL=y |
| 952 | # CONFIG_XFS_RT is not set | 980 | # CONFIG_XFS_RT is not set |
| 953 | # CONFIG_GFS2_FS is not set | 981 | # CONFIG_XFS_DEBUG is not set |
| 954 | # CONFIG_OCFS2_FS is not set | 982 | # CONFIG_OCFS2_FS is not set |
| 955 | # CONFIG_MINIX_FS is not set | 983 | CONFIG_DNOTIFY=y |
| 956 | CONFIG_ROMFS_FS=m | ||
| 957 | CONFIG_INOTIFY=y | 984 | CONFIG_INOTIFY=y |
| 958 | CONFIG_INOTIFY_USER=y | 985 | CONFIG_INOTIFY_USER=y |
| 959 | # CONFIG_QUOTA is not set | 986 | # CONFIG_QUOTA is not set |
| 960 | CONFIG_QUOTACTL=y | 987 | CONFIG_QUOTACTL=y |
| 961 | CONFIG_DNOTIFY=y | ||
| 962 | # CONFIG_AUTOFS_FS is not set | 988 | # CONFIG_AUTOFS_FS is not set |
| 963 | CONFIG_AUTOFS4_FS=y | 989 | CONFIG_AUTOFS4_FS=y |
| 964 | # CONFIG_FUSE_FS is not set | 990 | # CONFIG_FUSE_FS is not set |
| @@ -987,7 +1013,6 @@ CONFIG_SYSFS=y | |||
| 987 | CONFIG_TMPFS=y | 1013 | CONFIG_TMPFS=y |
| 988 | CONFIG_TMPFS_POSIX_ACL=y | 1014 | CONFIG_TMPFS_POSIX_ACL=y |
| 989 | # CONFIG_HUGETLB_PAGE is not set | 1015 | # CONFIG_HUGETLB_PAGE is not set |
| 990 | CONFIG_RAMFS=y | ||
| 991 | # CONFIG_CONFIGFS_FS is not set | 1016 | # CONFIG_CONFIGFS_FS is not set |
| 992 | 1017 | ||
| 993 | # | 1018 | # |
| @@ -1002,24 +1027,21 @@ CONFIG_RAMFS=y | |||
| 1002 | # CONFIG_EFS_FS is not set | 1027 | # CONFIG_EFS_FS is not set |
| 1003 | CONFIG_CRAMFS=m | 1028 | CONFIG_CRAMFS=m |
| 1004 | # CONFIG_VXFS_FS is not set | 1029 | # CONFIG_VXFS_FS is not set |
| 1030 | # CONFIG_MINIX_FS is not set | ||
| 1005 | # CONFIG_HPFS_FS is not set | 1031 | # CONFIG_HPFS_FS is not set |
| 1006 | # CONFIG_QNX4FS_FS is not set | 1032 | # CONFIG_QNX4FS_FS is not set |
| 1033 | CONFIG_ROMFS_FS=m | ||
| 1007 | # CONFIG_SYSV_FS is not set | 1034 | # CONFIG_SYSV_FS is not set |
| 1008 | # CONFIG_UFS_FS is not set | 1035 | # CONFIG_UFS_FS is not set |
| 1009 | 1036 | CONFIG_NETWORK_FILESYSTEMS=y | |
| 1010 | # | ||
| 1011 | # Network File Systems | ||
| 1012 | # | ||
| 1013 | CONFIG_NFS_FS=y | 1037 | CONFIG_NFS_FS=y |
| 1014 | CONFIG_NFS_V3=y | 1038 | CONFIG_NFS_V3=y |
| 1015 | # CONFIG_NFS_V3_ACL is not set | 1039 | # CONFIG_NFS_V3_ACL is not set |
| 1016 | # CONFIG_NFS_V4 is not set | 1040 | # CONFIG_NFS_V4 is not set |
| 1017 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1018 | CONFIG_NFSD=m | 1041 | CONFIG_NFSD=m |
| 1019 | CONFIG_NFSD_V3=y | 1042 | CONFIG_NFSD_V3=y |
| 1020 | # CONFIG_NFSD_V3_ACL is not set | 1043 | # CONFIG_NFSD_V3_ACL is not set |
| 1021 | # CONFIG_NFSD_V4 is not set | 1044 | # CONFIG_NFSD_V4 is not set |
| 1022 | CONFIG_NFSD_TCP=y | ||
| 1023 | CONFIG_ROOT_NFS=y | 1045 | CONFIG_ROOT_NFS=y |
| 1024 | CONFIG_LOCKD=y | 1046 | CONFIG_LOCKD=y |
| 1025 | CONFIG_LOCKD_V4=y | 1047 | CONFIG_LOCKD_V4=y |
| @@ -1040,47 +1062,38 @@ CONFIG_SUNRPC=y | |||
| 1040 | # | 1062 | # |
| 1041 | # CONFIG_PARTITION_ADVANCED is not set | 1063 | # CONFIG_PARTITION_ADVANCED is not set |
| 1042 | CONFIG_MSDOS_PARTITION=y | 1064 | CONFIG_MSDOS_PARTITION=y |
| 1043 | |||
| 1044 | # | ||
| 1045 | # Native Language Support | ||
| 1046 | # | ||
| 1047 | # CONFIG_NLS is not set | 1065 | # CONFIG_NLS is not set |
| 1048 | |||
| 1049 | # | ||
| 1050 | # Distributed Lock Manager | ||
| 1051 | # | ||
| 1052 | # CONFIG_DLM is not set | 1066 | # CONFIG_DLM is not set |
| 1053 | 1067 | ||
| 1054 | # | 1068 | # |
| 1055 | # Profiling support | ||
| 1056 | # | ||
| 1057 | # CONFIG_PROFILING is not set | ||
| 1058 | |||
| 1059 | # | ||
| 1060 | # Kernel hacking | 1069 | # Kernel hacking |
| 1061 | # | 1070 | # |
| 1062 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 1071 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
| 1063 | # CONFIG_PRINTK_TIME is not set | 1072 | # CONFIG_PRINTK_TIME is not set |
| 1073 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 1064 | CONFIG_ENABLE_MUST_CHECK=y | 1074 | CONFIG_ENABLE_MUST_CHECK=y |
| 1075 | CONFIG_FRAME_WARN=1024 | ||
| 1065 | # CONFIG_MAGIC_SYSRQ is not set | 1076 | # CONFIG_MAGIC_SYSRQ is not set |
| 1066 | # CONFIG_UNUSED_SYMBOLS is not set | 1077 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1067 | # CONFIG_DEBUG_FS is not set | 1078 | # CONFIG_DEBUG_FS is not set |
| 1068 | # CONFIG_HEADERS_CHECK is not set | 1079 | # CONFIG_HEADERS_CHECK is not set |
| 1069 | # CONFIG_DEBUG_KERNEL is not set | 1080 | # CONFIG_DEBUG_KERNEL is not set |
| 1070 | CONFIG_CROSSCOMPILE=y | 1081 | # CONFIG_SAMPLES is not set |
| 1071 | CONFIG_CMDLINE="mem=64M console=ttyVR0,115200 ip=any root=/dev/nfs" | 1082 | CONFIG_CMDLINE="cca=3 mem=64M console=ttyVR0,115200 ip=any root=/dev/nfs" |
| 1072 | 1083 | ||
| 1073 | # | 1084 | # |
| 1074 | # Security options | 1085 | # Security options |
| 1075 | # | 1086 | # |
| 1076 | # CONFIG_KEYS is not set | 1087 | # CONFIG_KEYS is not set |
| 1077 | # CONFIG_SECURITY is not set | 1088 | # CONFIG_SECURITY is not set |
| 1089 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
| 1078 | # CONFIG_CRYPTO is not set | 1090 | # CONFIG_CRYPTO is not set |
| 1079 | 1091 | ||
| 1080 | # | 1092 | # |
| 1081 | # Library routines | 1093 | # Library routines |
| 1082 | # | 1094 | # |
| 1083 | CONFIG_BITREVERSE=y | 1095 | CONFIG_BITREVERSE=y |
| 1096 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1084 | CONFIG_CRC_CCITT=y | 1097 | CONFIG_CRC_CCITT=y |
| 1085 | # CONFIG_CRC16 is not set | 1098 | # CONFIG_CRC16 is not set |
| 1086 | # CONFIG_CRC_ITU_T is not set | 1099 | # CONFIG_CRC_ITU_T is not set |
diff --git a/arch/mips/fw/arc/identify.c b/arch/mips/fw/arc/identify.c index 28dfd2e2989a..23066985a734 100644 --- a/arch/mips/fw/arc/identify.c +++ b/arch/mips/fw/arc/identify.c | |||
| @@ -67,6 +67,11 @@ static struct smatch mach_table[] = { | |||
| 67 | .liname = "SNI RM200_PCI", | 67 | .liname = "SNI RM200_PCI", |
| 68 | .type = MACH_SNI_RM200_PCI, | 68 | .type = MACH_SNI_RM200_PCI, |
| 69 | .flags = PROM_FLAG_DONT_FREE_TEMP, | 69 | .flags = PROM_FLAG_DONT_FREE_TEMP, |
| 70 | }, { | ||
| 71 | .arcname = "RM200PCI-R5K", | ||
| 72 | .liname = "SNI RM200_PCI-R5K", | ||
| 73 | .type = MACH_SNI_RM200_PCI, | ||
| 74 | .flags = PROM_FLAG_DONT_FREE_TEMP, | ||
| 70 | } | 75 | } |
| 71 | }; | 76 | }; |
| 72 | 77 | ||
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index 63370cdd3c90..cdf87a9dd4ba 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c | |||
| @@ -216,6 +216,7 @@ int smp_call_function(void (*func) (void *info), void *info, int retry, | |||
| 216 | { | 216 | { |
| 217 | return smp_call_function_mask(cpu_online_map, func, info, retry, wait); | 217 | return smp_call_function_mask(cpu_online_map, func, info, retry, wait); |
| 218 | } | 218 | } |
| 219 | EXPORT_SYMBOL(smp_call_function); | ||
| 219 | 220 | ||
| 220 | void smp_call_function_interrupt(void) | 221 | void smp_call_function_interrupt(void) |
| 221 | { | 222 | { |
| @@ -271,6 +272,7 @@ int smp_call_function_single(int cpu, void (*func) (void *info), void *info, | |||
| 271 | put_cpu(); | 272 | put_cpu(); |
| 272 | return 0; | 273 | return 0; |
| 273 | } | 274 | } |
| 275 | EXPORT_SYMBOL(smp_call_function_single); | ||
| 274 | 276 | ||
| 275 | static void stop_this_cpu(void *dummy) | 277 | static void stop_this_cpu(void *dummy) |
| 276 | { | 278 | { |
diff --git a/arch/mips/lasat/interrupt.c b/arch/mips/lasat/interrupt.c index cfeab669782f..a56c15026965 100644 --- a/arch/mips/lasat/interrupt.c +++ b/arch/mips/lasat/interrupt.c | |||
| @@ -34,11 +34,13 @@ static volatile int lasat_int_mask_shift; | |||
| 34 | 34 | ||
| 35 | void disable_lasat_irq(unsigned int irq_nr) | 35 | void disable_lasat_irq(unsigned int irq_nr) |
| 36 | { | 36 | { |
| 37 | irq_nr -= LASAT_IRQ_BASE; | ||
| 37 | *lasat_int_mask &= ~(1 << irq_nr) << lasat_int_mask_shift; | 38 | *lasat_int_mask &= ~(1 << irq_nr) << lasat_int_mask_shift; |
| 38 | } | 39 | } |
| 39 | 40 | ||
| 40 | void enable_lasat_irq(unsigned int irq_nr) | 41 | void enable_lasat_irq(unsigned int irq_nr) |
| 41 | { | 42 | { |
| 43 | irq_nr -= LASAT_IRQ_BASE; | ||
| 42 | *lasat_int_mask |= (1 << irq_nr) << lasat_int_mask_shift; | 44 | *lasat_int_mask |= (1 << irq_nr) << lasat_int_mask_shift; |
| 43 | } | 45 | } |
| 44 | 46 | ||
diff --git a/arch/mips/lasat/lasat_board.c b/arch/mips/lasat/lasat_board.c index ec2f658c3709..31e328b3814d 100644 --- a/arch/mips/lasat/lasat_board.c +++ b/arch/mips/lasat/lasat_board.c | |||
| @@ -23,18 +23,19 @@ | |||
| 23 | #include <linux/kernel.h> | 23 | #include <linux/kernel.h> |
| 24 | #include <linux/string.h> | 24 | #include <linux/string.h> |
| 25 | #include <linux/ctype.h> | 25 | #include <linux/ctype.h> |
| 26 | #include <linux/mutex.h> | ||
| 26 | #include <asm/bootinfo.h> | 27 | #include <asm/bootinfo.h> |
| 27 | #include <asm/addrspace.h> | 28 | #include <asm/addrspace.h> |
| 28 | #include "at93c.h" | 29 | #include "at93c.h" |
| 29 | /* New model description table */ | 30 | /* New model description table */ |
| 30 | #include "lasat_models.h" | 31 | #include "lasat_models.h" |
| 31 | 32 | ||
| 33 | static DEFINE_MUTEX(lasat_eeprom_mutex); | ||
| 34 | |||
| 32 | #define EEPROM_CRC(data, len) (~crc32(~0, data, len)) | 35 | #define EEPROM_CRC(data, len) (~crc32(~0, data, len)) |
| 33 | 36 | ||
| 34 | struct lasat_info lasat_board_info; | 37 | struct lasat_info lasat_board_info; |
| 35 | 38 | ||
| 36 | void update_bcastaddr(void); | ||
| 37 | |||
| 38 | int EEPROMRead(unsigned int pos, unsigned char *data, int len) | 39 | int EEPROMRead(unsigned int pos, unsigned char *data, int len) |
| 39 | { | 40 | { |
| 40 | int i; | 41 | int i; |
| @@ -258,10 +259,6 @@ int lasat_init_board_info(void) | |||
| 258 | sprintf(lasat_board_info.li_typestr, "%d", 10 * c); | 259 | sprintf(lasat_board_info.li_typestr, "%d", 10 * c); |
| 259 | } | 260 | } |
| 260 | 261 | ||
| 261 | #if defined(CONFIG_INET) && defined(CONFIG_SYSCTL) | ||
| 262 | update_bcastaddr(); | ||
| 263 | #endif | ||
| 264 | |||
| 265 | return 0; | 262 | return 0; |
| 266 | } | 263 | } |
| 267 | 264 | ||
| @@ -269,6 +266,8 @@ void lasat_write_eeprom_info(void) | |||
| 269 | { | 266 | { |
| 270 | unsigned long crc; | 267 | unsigned long crc; |
| 271 | 268 | ||
| 269 | mutex_lock(&lasat_eeprom_mutex); | ||
| 270 | |||
| 272 | /* Generate the CRC */ | 271 | /* Generate the CRC */ |
| 273 | crc = EEPROM_CRC((unsigned char *)(&lasat_board_info.li_eeprom_info), | 272 | crc = EEPROM_CRC((unsigned char *)(&lasat_board_info.li_eeprom_info), |
| 274 | sizeof(struct lasat_eeprom_struct) - 4); | 273 | sizeof(struct lasat_eeprom_struct) - 4); |
| @@ -277,4 +276,6 @@ void lasat_write_eeprom_info(void) | |||
| 277 | /* Write the EEPROM info */ | 276 | /* Write the EEPROM info */ |
| 278 | EEPROMWrite(0, (unsigned char *)&lasat_board_info.li_eeprom_info, | 277 | EEPROMWrite(0, (unsigned char *)&lasat_board_info.li_eeprom_info, |
| 279 | sizeof(struct lasat_eeprom_struct)); | 278 | sizeof(struct lasat_eeprom_struct)); |
| 279 | |||
| 280 | mutex_unlock(&lasat_eeprom_mutex); | ||
| 280 | } | 281 | } |
diff --git a/arch/mips/lasat/sysctl.c b/arch/mips/lasat/sysctl.c index 389336c4ecc5..866881ec0cf8 100644 --- a/arch/mips/lasat/sysctl.c +++ b/arch/mips/lasat/sysctl.c | |||
| @@ -29,15 +29,13 @@ | |||
| 29 | #include <linux/string.h> | 29 | #include <linux/string.h> |
| 30 | #include <linux/net.h> | 30 | #include <linux/net.h> |
| 31 | #include <linux/inet.h> | 31 | #include <linux/inet.h> |
| 32 | #include <linux/mutex.h> | ||
| 33 | #include <linux/uaccess.h> | 32 | #include <linux/uaccess.h> |
| 34 | 33 | ||
| 35 | #include <asm/time.h> | 34 | #include <asm/time.h> |
| 36 | 35 | ||
| 37 | #include "sysctl.h" | 36 | #ifdef CONFIG_DS1603 |
| 38 | #include "ds1603.h" | 37 | #include "ds1603.h" |
| 39 | 38 | #endif | |
| 40 | static DEFINE_MUTEX(lasat_info_mutex); | ||
| 41 | 39 | ||
| 42 | /* Strategy function to write EEPROM after changing string entry */ | 40 | /* Strategy function to write EEPROM after changing string entry */ |
| 43 | int sysctl_lasatstring(ctl_table *table, int *name, int nlen, | 41 | int sysctl_lasatstring(ctl_table *table, int *name, int nlen, |
| @@ -46,18 +44,15 @@ int sysctl_lasatstring(ctl_table *table, int *name, int nlen, | |||
| 46 | { | 44 | { |
| 47 | int r; | 45 | int r; |
| 48 | 46 | ||
| 49 | mutex_lock(&lasat_info_mutex); | ||
| 50 | r = sysctl_string(table, name, | 47 | r = sysctl_string(table, name, |
| 51 | nlen, oldval, oldlenp, newval, newlen); | 48 | nlen, oldval, oldlenp, newval, newlen); |
| 52 | if (r < 0) { | 49 | if (r < 0) |
| 53 | mutex_unlock(&lasat_info_mutex); | ||
| 54 | return r; | 50 | return r; |
| 55 | } | 51 | |
| 56 | if (newval && newlen) | 52 | if (newval && newlen) |
| 57 | lasat_write_eeprom_info(); | 53 | lasat_write_eeprom_info(); |
| 58 | mutex_unlock(&lasat_info_mutex); | ||
| 59 | 54 | ||
| 60 | return 1; | 55 | return 0; |
| 61 | } | 56 | } |
| 62 | 57 | ||
| 63 | 58 | ||
| @@ -67,14 +62,11 @@ int proc_dolasatstring(ctl_table *table, int write, struct file *filp, | |||
| 67 | { | 62 | { |
| 68 | int r; | 63 | int r; |
| 69 | 64 | ||
| 70 | mutex_lock(&lasat_info_mutex); | ||
| 71 | r = proc_dostring(table, write, filp, buffer, lenp, ppos); | 65 | r = proc_dostring(table, write, filp, buffer, lenp, ppos); |
| 72 | if ((!write) || r) { | 66 | if ((!write) || r) |
| 73 | mutex_unlock(&lasat_info_mutex); | ||
| 74 | return r; | 67 | return r; |
| 75 | } | 68 | |
| 76 | lasat_write_eeprom_info(); | 69 | lasat_write_eeprom_info(); |
| 77 | mutex_unlock(&lasat_info_mutex); | ||
| 78 | 70 | ||
| 79 | return 0; | 71 | return 0; |
| 80 | } | 72 | } |
| @@ -85,28 +77,24 @@ int proc_dolasatint(ctl_table *table, int write, struct file *filp, | |||
| 85 | { | 77 | { |
| 86 | int r; | 78 | int r; |
| 87 | 79 | ||
| 88 | mutex_lock(&lasat_info_mutex); | ||
| 89 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); | 80 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); |
| 90 | if ((!write) || r) { | 81 | if ((!write) || r) |
| 91 | mutex_unlock(&lasat_info_mutex); | ||
| 92 | return r; | 82 | return r; |
| 93 | } | 83 | |
| 94 | lasat_write_eeprom_info(); | 84 | lasat_write_eeprom_info(); |
| 95 | mutex_unlock(&lasat_info_mutex); | ||
| 96 | 85 | ||
| 97 | return 0; | 86 | return 0; |
| 98 | } | 87 | } |
| 99 | 88 | ||
| 89 | #ifdef CONFIG_DS1603 | ||
| 100 | static int rtctmp; | 90 | static int rtctmp; |
| 101 | 91 | ||
| 102 | #ifdef CONFIG_DS1603 | ||
| 103 | /* proc function to read/write RealTime Clock */ | 92 | /* proc function to read/write RealTime Clock */ |
| 104 | int proc_dolasatrtc(ctl_table *table, int write, struct file *filp, | 93 | int proc_dolasatrtc(ctl_table *table, int write, struct file *filp, |
| 105 | void *buffer, size_t *lenp, loff_t *ppos) | 94 | void *buffer, size_t *lenp, loff_t *ppos) |
| 106 | { | 95 | { |
| 107 | int r; | 96 | int r; |
| 108 | 97 | ||
| 109 | mutex_lock(&lasat_info_mutex); | ||
| 110 | if (!write) { | 98 | if (!write) { |
| 111 | rtctmp = read_persistent_clock(); | 99 | rtctmp = read_persistent_clock(); |
| 112 | /* check for time < 0 and set to 0 */ | 100 | /* check for time < 0 and set to 0 */ |
| @@ -114,12 +102,11 @@ int proc_dolasatrtc(ctl_table *table, int write, struct file *filp, | |||
| 114 | rtctmp = 0; | 102 | rtctmp = 0; |
| 115 | } | 103 | } |
| 116 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); | 104 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); |
| 117 | if ((!write) || r) { | 105 | if (r) |
| 118 | mutex_unlock(&lasat_info_mutex); | ||
| 119 | return r; | 106 | return r; |
| 120 | } | 107 | |
| 121 | rtc_mips_set_mmss(rtctmp); | 108 | if (write) |
| 122 | mutex_unlock(&lasat_info_mutex); | 109 | rtc_mips_set_mmss(rtctmp); |
| 123 | 110 | ||
| 124 | return 0; | 111 | return 0; |
| 125 | } | 112 | } |
| @@ -132,17 +119,14 @@ int sysctl_lasat_intvec(ctl_table *table, int *name, int nlen, | |||
| 132 | { | 119 | { |
| 133 | int r; | 120 | int r; |
| 134 | 121 | ||
| 135 | mutex_lock(&lasat_info_mutex); | ||
| 136 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); | 122 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); |
| 137 | if (r < 0) { | 123 | if (r < 0) |
| 138 | mutex_unlock(&lasat_info_mutex); | ||
| 139 | return r; | 124 | return r; |
| 140 | } | 125 | |
| 141 | if (newval && newlen) | 126 | if (newval && newlen) |
| 142 | lasat_write_eeprom_info(); | 127 | lasat_write_eeprom_info(); |
| 143 | mutex_unlock(&lasat_info_mutex); | ||
| 144 | 128 | ||
| 145 | return 1; | 129 | return 0; |
| 146 | } | 130 | } |
| 147 | 131 | ||
| 148 | #ifdef CONFIG_DS1603 | 132 | #ifdef CONFIG_DS1603 |
| @@ -153,50 +137,27 @@ int sysctl_lasat_rtc(ctl_table *table, int *name, int nlen, | |||
| 153 | { | 137 | { |
| 154 | int r; | 138 | int r; |
| 155 | 139 | ||
| 156 | mutex_lock(&lasat_info_mutex); | ||
| 157 | rtctmp = read_persistent_clock(); | 140 | rtctmp = read_persistent_clock(); |
| 158 | if (rtctmp < 0) | 141 | if (rtctmp < 0) |
| 159 | rtctmp = 0; | 142 | rtctmp = 0; |
| 160 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); | 143 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); |
| 161 | if (r < 0) { | 144 | if (r < 0) |
| 162 | mutex_unlock(&lasat_info_mutex); | ||
| 163 | return r; | 145 | return r; |
| 164 | } | ||
| 165 | if (newval && newlen) | 146 | if (newval && newlen) |
| 166 | rtc_mips_set_mmss(rtctmp); | 147 | rtc_mips_set_mmss(rtctmp); |
| 167 | mutex_unlock(&lasat_info_mutex); | ||
| 168 | 148 | ||
| 169 | return 1; | 149 | return r; |
| 170 | } | 150 | } |
| 171 | #endif | 151 | #endif |
| 172 | 152 | ||
| 173 | #ifdef CONFIG_INET | 153 | #ifdef CONFIG_INET |
| 174 | static char lasat_bcastaddr[16]; | ||
| 175 | |||
| 176 | void update_bcastaddr(void) | ||
| 177 | { | ||
| 178 | unsigned int ip; | ||
| 179 | |||
| 180 | ip = (lasat_board_info.li_eeprom_info.ipaddr & | ||
| 181 | lasat_board_info.li_eeprom_info.netmask) | | ||
| 182 | ~lasat_board_info.li_eeprom_info.netmask; | ||
| 183 | |||
| 184 | sprintf(lasat_bcastaddr, "%d.%d.%d.%d", | ||
| 185 | (ip) & 0xff, | ||
| 186 | (ip >> 8) & 0xff, | ||
| 187 | (ip >> 16) & 0xff, | ||
| 188 | (ip >> 24) & 0xff); | ||
| 189 | } | ||
| 190 | |||
| 191 | static char proc_lasat_ipbuf[32]; | ||
| 192 | |||
| 193 | /* Parsing of IP address */ | ||
| 194 | int proc_lasat_ip(ctl_table *table, int write, struct file *filp, | 154 | int proc_lasat_ip(ctl_table *table, int write, struct file *filp, |
| 195 | void *buffer, size_t *lenp, loff_t *ppos) | 155 | void *buffer, size_t *lenp, loff_t *ppos) |
| 196 | { | 156 | { |
| 197 | unsigned int ip; | 157 | unsigned int ip; |
| 198 | char *p, c; | 158 | char *p, c; |
| 199 | int len; | 159 | int len; |
| 160 | char ipbuf[32]; | ||
| 200 | 161 | ||
| 201 | if (!table->data || !table->maxlen || !*lenp || | 162 | if (!table->data || !table->maxlen || !*lenp || |
| 202 | (*ppos && !write)) { | 163 | (*ppos && !write)) { |
| @@ -204,117 +165,88 @@ int proc_lasat_ip(ctl_table *table, int write, struct file *filp, | |||
| 204 | return 0; | 165 | return 0; |
| 205 | } | 166 | } |
| 206 | 167 | ||
| 207 | mutex_lock(&lasat_info_mutex); | ||
| 208 | if (write) { | 168 | if (write) { |
| 209 | len = 0; | 169 | len = 0; |
| 210 | p = buffer; | 170 | p = buffer; |
| 211 | while (len < *lenp) { | 171 | while (len < *lenp) { |
| 212 | if (get_user(c, p++)) { | 172 | if (get_user(c, p++)) |
| 213 | mutex_unlock(&lasat_info_mutex); | ||
| 214 | return -EFAULT; | 173 | return -EFAULT; |
| 215 | } | ||
| 216 | if (c == 0 || c == '\n') | 174 | if (c == 0 || c == '\n') |
| 217 | break; | 175 | break; |
| 218 | len++; | 176 | len++; |
| 219 | } | 177 | } |
| 220 | if (len >= sizeof(proc_lasat_ipbuf)-1) | 178 | if (len >= sizeof(ipbuf)-1) |
| 221 | len = sizeof(proc_lasat_ipbuf) - 1; | 179 | len = sizeof(ipbuf) - 1; |
| 222 | if (copy_from_user(proc_lasat_ipbuf, buffer, len)) { | 180 | if (copy_from_user(ipbuf, buffer, len)) |
| 223 | mutex_unlock(&lasat_info_mutex); | ||
| 224 | return -EFAULT; | 181 | return -EFAULT; |
| 225 | } | 182 | ipbuf[len] = 0; |
| 226 | proc_lasat_ipbuf[len] = 0; | ||
| 227 | *ppos += *lenp; | 183 | *ppos += *lenp; |
| 228 | /* Now see if we can convert it to a valid IP */ | 184 | /* Now see if we can convert it to a valid IP */ |
| 229 | ip = in_aton(proc_lasat_ipbuf); | 185 | ip = in_aton(ipbuf); |
| 230 | *(unsigned int *)(table->data) = ip; | 186 | *(unsigned int *)(table->data) = ip; |
| 231 | lasat_write_eeprom_info(); | 187 | lasat_write_eeprom_info(); |
| 232 | } else { | 188 | } else { |
| 233 | ip = *(unsigned int *)(table->data); | 189 | ip = *(unsigned int *)(table->data); |
| 234 | sprintf(proc_lasat_ipbuf, "%d.%d.%d.%d", | 190 | sprintf(ipbuf, "%d.%d.%d.%d", |
| 235 | (ip) & 0xff, | 191 | (ip) & 0xff, |
| 236 | (ip >> 8) & 0xff, | 192 | (ip >> 8) & 0xff, |
| 237 | (ip >> 16) & 0xff, | 193 | (ip >> 16) & 0xff, |
| 238 | (ip >> 24) & 0xff); | 194 | (ip >> 24) & 0xff); |
| 239 | len = strlen(proc_lasat_ipbuf); | 195 | len = strlen(ipbuf); |
| 240 | if (len > *lenp) | 196 | if (len > *lenp) |
| 241 | len = *lenp; | 197 | len = *lenp; |
| 242 | if (len) | 198 | if (len) |
| 243 | if (copy_to_user(buffer, proc_lasat_ipbuf, len)) { | 199 | if (copy_to_user(buffer, ipbuf, len)) |
| 244 | mutex_unlock(&lasat_info_mutex); | ||
| 245 | return -EFAULT; | 200 | return -EFAULT; |
| 246 | } | ||
| 247 | if (len < *lenp) { | 201 | if (len < *lenp) { |
| 248 | if (put_user('\n', ((char *) buffer) + len)) { | 202 | if (put_user('\n', ((char *) buffer) + len)) |
| 249 | mutex_unlock(&lasat_info_mutex); | ||
| 250 | return -EFAULT; | 203 | return -EFAULT; |
| 251 | } | ||
| 252 | len++; | 204 | len++; |
| 253 | } | 205 | } |
| 254 | *lenp = len; | 206 | *lenp = len; |
| 255 | *ppos += len; | 207 | *ppos += len; |
| 256 | } | 208 | } |
| 257 | update_bcastaddr(); | ||
| 258 | mutex_unlock(&lasat_info_mutex); | ||
| 259 | 209 | ||
| 260 | return 0; | 210 | return 0; |
| 261 | } | 211 | } |
| 262 | #endif /* defined(CONFIG_INET) */ | 212 | #endif |
| 263 | 213 | ||
| 264 | static int sysctl_lasat_eeprom_value(ctl_table *table, int *name, int nlen, | 214 | static int sysctl_lasat_prid(ctl_table *table, int *name, int nlen, |
| 265 | void *oldval, size_t *oldlenp, | 215 | void *oldval, size_t *oldlenp, |
| 266 | void *newval, size_t newlen) | 216 | void *newval, size_t newlen) |
| 267 | { | 217 | { |
| 268 | int r; | 218 | int r; |
| 269 | 219 | ||
| 270 | mutex_lock(&lasat_info_mutex); | ||
| 271 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); | 220 | r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen); |
| 272 | if (r < 0) { | 221 | if (r < 0) |
| 273 | mutex_unlock(&lasat_info_mutex); | ||
| 274 | return r; | 222 | return r; |
| 275 | } | ||
| 276 | |||
| 277 | if (newval && newlen) { | 223 | if (newval && newlen) { |
| 278 | if (name && *name == LASAT_PRID) | 224 | lasat_board_info.li_eeprom_info.prid = *(int *)newval; |
| 279 | lasat_board_info.li_eeprom_info.prid = *(int *)newval; | ||
| 280 | |||
| 281 | lasat_write_eeprom_info(); | 225 | lasat_write_eeprom_info(); |
| 282 | lasat_init_board_info(); | 226 | lasat_init_board_info(); |
| 283 | } | 227 | } |
| 284 | mutex_unlock(&lasat_info_mutex); | ||
| 285 | |||
| 286 | return 0; | 228 | return 0; |
| 287 | } | 229 | } |
| 288 | 230 | ||
| 289 | int proc_lasat_eeprom_value(ctl_table *table, int write, struct file *filp, | 231 | int proc_lasat_prid(ctl_table *table, int write, struct file *filp, |
| 290 | void *buffer, size_t *lenp, loff_t *ppos) | 232 | void *buffer, size_t *lenp, loff_t *ppos) |
| 291 | { | 233 | { |
| 292 | int r; | 234 | int r; |
| 293 | 235 | ||
| 294 | mutex_lock(&lasat_info_mutex); | ||
| 295 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); | 236 | r = proc_dointvec(table, write, filp, buffer, lenp, ppos); |
| 296 | if ((!write) || r) { | 237 | if (r < 0) |
| 297 | mutex_unlock(&lasat_info_mutex); | ||
| 298 | return r; | 238 | return r; |
| 239 | if (write) { | ||
| 240 | lasat_board_info.li_eeprom_info.prid = | ||
| 241 | lasat_board_info.li_prid; | ||
| 242 | lasat_write_eeprom_info(); | ||
| 243 | lasat_init_board_info(); | ||
| 299 | } | 244 | } |
| 300 | if (filp && filp->f_path.dentry) { | ||
| 301 | if (!strcmp(filp->f_path.dentry->d_name.name, "prid")) | ||
| 302 | lasat_board_info.li_eeprom_info.prid = | ||
| 303 | lasat_board_info.li_prid; | ||
| 304 | if (!strcmp(filp->f_path.dentry->d_name.name, "debugaccess")) | ||
| 305 | lasat_board_info.li_eeprom_info.debugaccess = | ||
| 306 | lasat_board_info.li_debugaccess; | ||
| 307 | } | ||
| 308 | lasat_write_eeprom_info(); | ||
| 309 | mutex_unlock(&lasat_info_mutex); | ||
| 310 | |||
| 311 | return 0; | 245 | return 0; |
| 312 | } | 246 | } |
| 313 | 247 | ||
| 314 | extern int lasat_boot_to_service; | 248 | extern int lasat_boot_to_service; |
| 315 | 249 | ||
| 316 | #ifdef CONFIG_SYSCTL | ||
| 317 | |||
| 318 | static ctl_table lasat_table[] = { | 250 | static ctl_table lasat_table[] = { |
| 319 | { | 251 | { |
| 320 | .ctl_name = CTL_UNNUMBERED, | 252 | .ctl_name = CTL_UNNUMBERED, |
| @@ -349,8 +281,8 @@ static ctl_table lasat_table[] = { | |||
| 349 | .data = &lasat_board_info.li_prid, | 281 | .data = &lasat_board_info.li_prid, |
| 350 | .maxlen = sizeof(int), | 282 | .maxlen = sizeof(int), |
| 351 | .mode = 0644, | 283 | .mode = 0644, |
| 352 | .proc_handler = &proc_lasat_eeprom_value, | 284 | .proc_handler = &proc_lasat_prid, |
| 353 | .strategy = &sysctl_lasat_eeprom_value | 285 | .strategy = &sysctl_lasat_prid |
| 354 | }, | 286 | }, |
| 355 | #ifdef CONFIG_INET | 287 | #ifdef CONFIG_INET |
| 356 | { | 288 | { |
| @@ -363,7 +295,7 @@ static ctl_table lasat_table[] = { | |||
| 363 | .strategy = &sysctl_lasat_intvec | 295 | .strategy = &sysctl_lasat_intvec |
| 364 | }, | 296 | }, |
| 365 | { | 297 | { |
| 366 | .ctl_name = LASAT_NETMASK, | 298 | .ctl_name = CTL_UNNUMBERED, |
| 367 | .procname = "netmask", | 299 | .procname = "netmask", |
| 368 | .data = &lasat_board_info.li_eeprom_info.netmask, | 300 | .data = &lasat_board_info.li_eeprom_info.netmask, |
| 369 | .maxlen = sizeof(int), | 301 | .maxlen = sizeof(int), |
| @@ -371,15 +303,6 @@ static ctl_table lasat_table[] = { | |||
| 371 | .proc_handler = &proc_lasat_ip, | 303 | .proc_handler = &proc_lasat_ip, |
| 372 | .strategy = &sysctl_lasat_intvec | 304 | .strategy = &sysctl_lasat_intvec |
| 373 | }, | 305 | }, |
| 374 | { | ||
| 375 | .ctl_name = CTL_UNNUMBERED, | ||
| 376 | .procname = "bcastaddr", | ||
| 377 | .data = &lasat_bcastaddr, | ||
| 378 | .maxlen = sizeof(lasat_bcastaddr), | ||
| 379 | .mode = 0600, | ||
| 380 | .proc_handler = &proc_dostring, | ||
| 381 | .strategy = &sysctl_string | ||
| 382 | }, | ||
| 383 | #endif | 306 | #endif |
| 384 | { | 307 | { |
| 385 | .ctl_name = CTL_UNNUMBERED, | 308 | .ctl_name = CTL_UNNUMBERED, |
| @@ -417,7 +340,7 @@ static ctl_table lasat_table[] = { | |||
| 417 | .data = &lasat_board_info.li_namestr, | 340 | .data = &lasat_board_info.li_namestr, |
| 418 | .maxlen = sizeof(lasat_board_info.li_namestr), | 341 | .maxlen = sizeof(lasat_board_info.li_namestr), |
| 419 | .mode = 0444, | 342 | .mode = 0444, |
| 420 | .proc_handler = &proc_dostring, | 343 | .proc_handler = &proc_dostring, |
| 421 | .strategy = &sysctl_string | 344 | .strategy = &sysctl_string |
| 422 | }, | 345 | }, |
| 423 | { | 346 | { |
| @@ -448,9 +371,12 @@ static int __init lasat_register_sysctl(void) | |||
| 448 | 371 | ||
| 449 | lasat_table_header = | 372 | lasat_table_header = |
| 450 | register_sysctl_table(lasat_root_table); | 373 | register_sysctl_table(lasat_root_table); |
| 374 | if (!lasat_table_header) { | ||
| 375 | printk(KERN_ERR "Unable to register LASAT sysctl\n"); | ||
| 376 | return -ENOMEM; | ||
| 377 | } | ||
| 451 | 378 | ||
| 452 | return 0; | 379 | return 0; |
| 453 | } | 380 | } |
| 454 | 381 | ||
| 455 | __initcall(lasat_register_sysctl); | 382 | __initcall(lasat_register_sysctl); |
| 456 | #endif /* CONFIG_SYSCTL */ | ||
diff --git a/arch/mips/lasat/sysctl.h b/arch/mips/lasat/sysctl.h deleted file mode 100644 index 341b97933423..000000000000 --- a/arch/mips/lasat/sysctl.h +++ /dev/null | |||
| @@ -1,24 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * LASAT sysctl values | ||
| 3 | */ | ||
| 4 | |||
| 5 | #ifndef _LASAT_SYSCTL_H | ||
| 6 | #define _LASAT_SYSCTL_H | ||
| 7 | |||
| 8 | /* /proc/sys/lasat */ | ||
| 9 | enum { | ||
| 10 | LASAT_CPU_HZ = 1, | ||
| 11 | LASAT_BUS_HZ, | ||
| 12 | LASAT_MODEL, | ||
| 13 | LASAT_PRID, | ||
| 14 | LASAT_IPADDR, | ||
| 15 | LASAT_NETMASK, | ||
| 16 | LASAT_BCAST, | ||
| 17 | LASAT_PASSWORD, | ||
| 18 | LASAT_SBOOT, | ||
| 19 | LASAT_RTC, | ||
| 20 | LASAT_NAMESTR, | ||
| 21 | LASAT_TYPESTR, | ||
| 22 | }; | ||
| 23 | |||
| 24 | #endif /* _LASAT_SYSCTL_H */ | ||
diff --git a/arch/mips/mips-boards/generic/amon.c b/arch/mips/mips-boards/generic/amon.c index b7633fda4180..96236bf33838 100644 --- a/arch/mips/mips-boards/generic/amon.c +++ b/arch/mips/mips-boards/generic/amon.c | |||
| @@ -28,7 +28,7 @@ | |||
| 28 | 28 | ||
| 29 | int amon_cpu_avail(int cpu) | 29 | int amon_cpu_avail(int cpu) |
| 30 | { | 30 | { |
| 31 | struct cpulaunch *launch = (struct cpulaunch *)KSEG0ADDR(CPULAUNCH); | 31 | struct cpulaunch *launch = (struct cpulaunch *)CKSEG0ADDR(CPULAUNCH); |
| 32 | 32 | ||
| 33 | if (cpu < 0 || cpu >= NCPULAUNCH) { | 33 | if (cpu < 0 || cpu >= NCPULAUNCH) { |
| 34 | pr_debug("avail: cpu%d is out of range\n", cpu); | 34 | pr_debug("avail: cpu%d is out of range\n", cpu); |
| @@ -53,7 +53,7 @@ void amon_cpu_start(int cpu, | |||
| 53 | unsigned long gp, unsigned long a0) | 53 | unsigned long gp, unsigned long a0) |
| 54 | { | 54 | { |
| 55 | volatile struct cpulaunch *launch = | 55 | volatile struct cpulaunch *launch = |
| 56 | (struct cpulaunch *)KSEG0ADDR(CPULAUNCH); | 56 | (struct cpulaunch *)CKSEG0ADDR(CPULAUNCH); |
| 57 | 57 | ||
| 58 | if (!amon_cpu_avail(cpu)) | 58 | if (!amon_cpu_avail(cpu)) |
| 59 | return; | 59 | return; |
diff --git a/arch/mips/mips-boards/malta/Makefile b/arch/mips/mips-boards/malta/Makefile index 8dc6e2ac4c03..db4ad654a6d3 100644 --- a/arch/mips/mips-boards/malta/Makefile +++ b/arch/mips/mips-boards/malta/Makefile | |||
| @@ -19,9 +19,8 @@ | |||
| 19 | # under Linux. | 19 | # under Linux. |
| 20 | # | 20 | # |
| 21 | 21 | ||
| 22 | obj-y := malta_int.o malta_platform.o malta_setup.o | 22 | obj-y := malta_int.o malta_mtd.o malta_platform.o malta_setup.o |
| 23 | 23 | ||
| 24 | obj-$(CONFIG_MTD) += malta_mtd.o | ||
| 25 | # FIXME FIXME FIXME | 24 | # FIXME FIXME FIXME |
| 26 | obj-$(CONFIG_MIPS_MT_SMTC) += malta_smtc.o | 25 | obj-$(CONFIG_MIPS_MT_SMTC) += malta_smtc.o |
| 27 | 26 | ||
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index 643c8bcffff3..27096751ddce 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c | |||
| @@ -446,6 +446,7 @@ static inline void local_r4k_flush_cache_page(void *args) | |||
| 446 | struct page *page = pfn_to_page(fcp_args->pfn); | 446 | struct page *page = pfn_to_page(fcp_args->pfn); |
| 447 | int exec = vma->vm_flags & VM_EXEC; | 447 | int exec = vma->vm_flags & VM_EXEC; |
| 448 | struct mm_struct *mm = vma->vm_mm; | 448 | struct mm_struct *mm = vma->vm_mm; |
| 449 | int map_coherent = 0; | ||
| 449 | pgd_t *pgdp; | 450 | pgd_t *pgdp; |
| 450 | pud_t *pudp; | 451 | pud_t *pudp; |
| 451 | pmd_t *pmdp; | 452 | pmd_t *pmdp; |
| @@ -479,7 +480,9 @@ static inline void local_r4k_flush_cache_page(void *args) | |||
| 479 | * Use kmap_coherent or kmap_atomic to do flushes for | 480 | * Use kmap_coherent or kmap_atomic to do flushes for |
| 480 | * another ASID than the current one. | 481 | * another ASID than the current one. |
| 481 | */ | 482 | */ |
| 482 | if (cpu_has_dc_aliases) | 483 | map_coherent = (cpu_has_dc_aliases && |
| 484 | page_mapped(page) && !Page_dcache_dirty(page)); | ||
| 485 | if (map_coherent) | ||
| 483 | vaddr = kmap_coherent(page, addr); | 486 | vaddr = kmap_coherent(page, addr); |
| 484 | else | 487 | else |
| 485 | vaddr = kmap_atomic(page, KM_USER0); | 488 | vaddr = kmap_atomic(page, KM_USER0); |
| @@ -502,7 +505,7 @@ static inline void local_r4k_flush_cache_page(void *args) | |||
| 502 | } | 505 | } |
| 503 | 506 | ||
| 504 | if (vaddr) { | 507 | if (vaddr) { |
| 505 | if (cpu_has_dc_aliases) | 508 | if (map_coherent) |
| 506 | kunmap_coherent(); | 509 | kunmap_coherent(); |
| 507 | else | 510 | else |
| 508 | kunmap_atomic(vaddr, KM_USER0); | 511 | kunmap_atomic(vaddr, KM_USER0); |
| @@ -1226,6 +1229,28 @@ void au1x00_fixup_config_od(void) | |||
| 1226 | } | 1229 | } |
| 1227 | } | 1230 | } |
| 1228 | 1231 | ||
| 1232 | /* CP0 hazard avoidance. */ | ||
| 1233 | #define NXP_BARRIER() \ | ||
| 1234 | __asm__ __volatile__( \ | ||
| 1235 | ".set noreorder\n\t" \ | ||
| 1236 | "nop; nop; nop; nop; nop; nop;\n\t" \ | ||
| 1237 | ".set reorder\n\t") | ||
| 1238 | |||
| 1239 | static void nxp_pr4450_fixup_config(void) | ||
| 1240 | { | ||
| 1241 | unsigned long config0; | ||
| 1242 | |||
| 1243 | config0 = read_c0_config(); | ||
| 1244 | |||
| 1245 | /* clear all three cache coherency fields */ | ||
| 1246 | config0 &= ~(0x7 | (7 << 25) | (7 << 28)); | ||
| 1247 | config0 |= (((_page_cachable_default >> _CACHE_SHIFT) << 0) | | ||
| 1248 | ((_page_cachable_default >> _CACHE_SHIFT) << 25) | | ||
| 1249 | ((_page_cachable_default >> _CACHE_SHIFT) << 28)); | ||
| 1250 | write_c0_config(config0); | ||
| 1251 | NXP_BARRIER(); | ||
| 1252 | } | ||
| 1253 | |||
| 1229 | static int __cpuinitdata cca = -1; | 1254 | static int __cpuinitdata cca = -1; |
| 1230 | 1255 | ||
| 1231 | static int __init cca_setup(char *str) | 1256 | static int __init cca_setup(char *str) |
| @@ -1271,6 +1296,10 @@ static void __cpuinit coherency_setup(void) | |||
| 1271 | case CPU_AU1500: /* rev. AB */ | 1296 | case CPU_AU1500: /* rev. AB */ |
| 1272 | au1x00_fixup_config_od(); | 1297 | au1x00_fixup_config_od(); |
| 1273 | break; | 1298 | break; |
| 1299 | |||
| 1300 | case PRID_IMP_PR4450: | ||
| 1301 | nxp_pr4450_fixup_config(); | ||
| 1302 | break; | ||
| 1274 | } | 1303 | } |
| 1275 | } | 1304 | } |
| 1276 | 1305 | ||
diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c index ecd562d2c348..137c14bafd6b 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c | |||
| @@ -71,6 +71,7 @@ DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); | |||
| 71 | * don't have to care about aliases on other CPUs. | 71 | * don't have to care about aliases on other CPUs. |
| 72 | */ | 72 | */ |
| 73 | unsigned long empty_zero_page, zero_page_mask; | 73 | unsigned long empty_zero_page, zero_page_mask; |
| 74 | EXPORT_SYMBOL_GPL(empty_zero_page); | ||
| 74 | 75 | ||
| 75 | /* | 76 | /* |
| 76 | * Not static inline because used by IP27 special magic initialization code | 77 | * Not static inline because used by IP27 special magic initialization code |
diff --git a/arch/mips/mm/page.c b/arch/mips/mm/page.c index cab81f42eee5..1edf0cbbeede 100644 --- a/arch/mips/mm/page.c +++ b/arch/mips/mm/page.c | |||
| @@ -460,7 +460,7 @@ void __cpuinit build_copy_page(void) | |||
| 460 | build_copy_load_pref(&buf, -off); | 460 | build_copy_load_pref(&buf, -off); |
| 461 | off -= cache_line_size; | 461 | off -= cache_line_size; |
| 462 | } | 462 | } |
| 463 | off = cache_line_size ? min(8, pref_bias_copy_load / cache_line_size) * | 463 | off = cache_line_size ? min(8, pref_bias_copy_store / cache_line_size) * |
| 464 | cache_line_size : 0; | 464 | cache_line_size : 0; |
| 465 | while (off) { | 465 | while (off) { |
| 466 | build_copy_store_pref(&buf, -off); | 466 | build_copy_store_pref(&buf, -off); |
diff --git a/arch/mips/nxp/pnx8550/jbs/board_setup.c b/arch/mips/nxp/pnx8550/jbs/board_setup.c index f92826e0096d..57dd903ca408 100644 --- a/arch/mips/nxp/pnx8550/jbs/board_setup.c +++ b/arch/mips/nxp/pnx8550/jbs/board_setup.c | |||
| @@ -47,16 +47,7 @@ | |||
| 47 | 47 | ||
| 48 | void __init board_setup(void) | 48 | void __init board_setup(void) |
| 49 | { | 49 | { |
| 50 | unsigned long config0, configpr; | 50 | unsigned long configpr; |
| 51 | |||
| 52 | config0 = read_c0_config(); | ||
| 53 | |||
| 54 | /* clear all three cache coherency fields */ | ||
| 55 | config0 &= ~(0x7 | (7<<25) | (7<<28)); | ||
| 56 | config0 |= (CONF_CM_DEFAULT | (CONF_CM_DEFAULT<<25) | | ||
| 57 | (CONF_CM_DEFAULT<<28)); | ||
| 58 | write_c0_config(config0); | ||
| 59 | BARRIER; | ||
| 60 | 51 | ||
| 61 | configpr = read_c0_config7(); | 52 | configpr = read_c0_config7(); |
| 62 | configpr |= (1<<19); /* enable tlb */ | 53 | configpr |= (1<<19); /* enable tlb */ |
diff --git a/arch/mips/nxp/pnx8550/stb810/board_setup.c b/arch/mips/nxp/pnx8550/stb810/board_setup.c index 1282c27cfcb7..af2a55e0b4e9 100644 --- a/arch/mips/nxp/pnx8550/stb810/board_setup.c +++ b/arch/mips/nxp/pnx8550/stb810/board_setup.c | |||
| @@ -33,15 +33,7 @@ | |||
| 33 | 33 | ||
| 34 | void __init board_setup(void) | 34 | void __init board_setup(void) |
| 35 | { | 35 | { |
| 36 | unsigned long config0, configpr; | 36 | unsigned long configpr; |
| 37 | |||
| 38 | config0 = read_c0_config(); | ||
| 39 | |||
| 40 | /* clear all three cache coherency fields */ | ||
| 41 | config0 &= ~(0x7 | (7<<25) | (7<<28)); | ||
| 42 | config0 |= (CONF_CM_DEFAULT | (CONF_CM_DEFAULT<<25) | | ||
| 43 | (CONF_CM_DEFAULT<<28)); | ||
| 44 | write_c0_config(config0); | ||
| 45 | 37 | ||
| 46 | configpr = read_c0_config7(); | 38 | configpr = read_c0_config7(); |
| 47 | configpr |= (1<<19); /* enable tlb */ | 39 | configpr |= (1<<19); /* enable tlb */ |
diff --git a/arch/mips/pci/pci-sb1250.c b/arch/mips/pci/pci-sb1250.c index 42e4d2c800fa..2a09ad91ec8c 100644 --- a/arch/mips/pci/pci-sb1250.c +++ b/arch/mips/pci/pci-sb1250.c | |||
| @@ -207,6 +207,7 @@ struct pci_controller sb1250_controller = { | |||
| 207 | 207 | ||
| 208 | static int __init sb1250_pcibios_init(void) | 208 | static int __init sb1250_pcibios_init(void) |
| 209 | { | 209 | { |
| 210 | void __iomem *io_map_base; | ||
| 210 | uint32_t cmdreg; | 211 | uint32_t cmdreg; |
| 211 | uint64_t reg; | 212 | uint64_t reg; |
| 212 | extern int pci_probe_only; | 213 | extern int pci_probe_only; |
| @@ -253,12 +254,13 @@ static int __init sb1250_pcibios_init(void) | |||
| 253 | * works correctly with most of Linux's drivers. | 254 | * works correctly with most of Linux's drivers. |
| 254 | * XXX ehs: Should this happen in PCI Device mode? | 255 | * XXX ehs: Should this happen in PCI Device mode? |
| 255 | */ | 256 | */ |
| 256 | |||
| 257 | set_io_port_base((unsigned long) | ||
| 258 | ioremap(A_PHYS_LDTPCI_IO_MATCH_BYTES, 65536)); | ||
| 259 | isa_slot_offset = (unsigned long) | 257 | isa_slot_offset = (unsigned long) |
| 260 | ioremap(A_PHYS_LDTPCI_IO_MATCH_BYTES_32, 1024 * 1024); | 258 | ioremap(A_PHYS_LDTPCI_IO_MATCH_BYTES_32, 1024 * 1024); |
| 261 | 259 | ||
| 260 | io_map_base = ioremap(A_PHYS_LDTPCI_IO_MATCH_BYTES, 1024 * 1024); | ||
| 261 | sb1250_controller.io_map_base = io_map_base; | ||
| 262 | set_io_port_base((unsigned long)io_map_base); | ||
| 263 | |||
| 262 | #ifdef CONFIG_SIBYTE_HAS_LDT | 264 | #ifdef CONFIG_SIBYTE_HAS_LDT |
| 263 | /* | 265 | /* |
| 264 | * Also check the LDT bridge's enable, just in case we didn't | 266 | * Also check the LDT bridge's enable, just in case we didn't |
diff --git a/arch/mips/pci/pci-vr41xx.c b/arch/mips/pci/pci-vr41xx.c index 33c4f683d067..d1e049b55f34 100644 --- a/arch/mips/pci/pci-vr41xx.c +++ b/arch/mips/pci/pci-vr41xx.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2001-2003 MontaVista Software Inc. | 4 | * Copyright (C) 2001-2003 MontaVista Software Inc. |
| 5 | * Author: Yoichi Yuasa <yyuasa@mvista.com or source@mvista.com> | 5 | * Author: Yoichi Yuasa <yyuasa@mvista.com or source@mvista.com> |
| 6 | * Copyright (C) 2004-2005 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 6 | * Copyright (C) 2004-2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> |
| 7 | * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org) | 7 | * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org) |
| 8 | * | 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify | 9 | * This program is free software; you can redistribute it and/or modify |
| @@ -300,6 +300,18 @@ static int __init vr41xx_pciu_init(void) | |||
| 300 | ioport_resource.end = IO_PORT_RESOURCE_END; | 300 | ioport_resource.end = IO_PORT_RESOURCE_END; |
| 301 | } | 301 | } |
| 302 | 302 | ||
| 303 | if (setup->master_io) { | ||
| 304 | void __iomem *io_map_base; | ||
| 305 | struct resource *res = vr41xx_pci_controller.io_resource; | ||
| 306 | master = setup->master_io; | ||
| 307 | io_map_base = ioremap(master->bus_base_address, | ||
| 308 | res->end - res->start + 1); | ||
| 309 | if (!io_map_base) | ||
| 310 | return -EBUSY; | ||
| 311 | |||
| 312 | vr41xx_pci_controller.io_map_base = (unsigned long)io_map_base; | ||
| 313 | } | ||
| 314 | |||
| 303 | register_pci_controller(&vr41xx_pci_controller); | 315 | register_pci_controller(&vr41xx_pci_controller); |
| 304 | 316 | ||
| 305 | return 0; | 317 | return 0; |
diff --git a/arch/mips/sibyte/swarm/Makefile b/arch/mips/sibyte/swarm/Makefile index 2d626039195c..1775755a2619 100644 --- a/arch/mips/sibyte/swarm/Makefile +++ b/arch/mips/sibyte/swarm/Makefile | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | lib-y = setup.o rtc_xicor1241.o rtc_m41t81.o | 1 | obj-y := setup.o rtc_xicor1241.o rtc_m41t81.o |
| 2 | 2 | ||
| 3 | lib-$(CONFIG_KGDB) += dbg_io.o | 3 | obj-$(CONFIG_KGDB) += dbg_io.o |
diff --git a/arch/mn10300/kernel/process.c b/arch/mn10300/kernel/process.c index 3b0d579fc15d..9c623c88387b 100644 --- a/arch/mn10300/kernel/process.c +++ b/arch/mn10300/kernel/process.c | |||
| @@ -20,7 +20,6 @@ | |||
| 20 | #include <linux/ptrace.h> | 20 | #include <linux/ptrace.h> |
| 21 | #include <linux/slab.h> | 21 | #include <linux/slab.h> |
| 22 | #include <linux/user.h> | 22 | #include <linux/user.h> |
| 23 | #include <linux/a.out.h> | ||
| 24 | #include <linux/interrupt.h> | 23 | #include <linux/interrupt.h> |
| 25 | #include <linux/delay.h> | 24 | #include <linux/delay.h> |
| 26 | #include <linux/reboot.h> | 25 | #include <linux/reboot.h> |
diff --git a/arch/mn10300/kernel/setup.c b/arch/mn10300/kernel/setup.c index 6b7ce2636851..017121ce896f 100644 --- a/arch/mn10300/kernel/setup.c +++ b/arch/mn10300/kernel/setup.c | |||
| @@ -17,7 +17,6 @@ | |||
| 17 | #include <linux/ptrace.h> | 17 | #include <linux/ptrace.h> |
| 18 | #include <linux/slab.h> | 18 | #include <linux/slab.h> |
| 19 | #include <linux/user.h> | 19 | #include <linux/user.h> |
| 20 | #include <linux/a.out.h> | ||
| 21 | #include <linux/tty.h> | 20 | #include <linux/tty.h> |
| 22 | #include <linux/ioport.h> | 21 | #include <linux/ioport.h> |
| 23 | #include <linux/delay.h> | 22 | #include <linux/delay.h> |
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index 9dcdc036cdf7..b7d4c4ce2fe6 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile | |||
| @@ -96,6 +96,8 @@ endif | |||
| 96 | else | 96 | else |
| 97 | KBUILD_CFLAGS += $(call cc-option,-mtune=power4) | 97 | KBUILD_CFLAGS += $(call cc-option,-mtune=power4) |
| 98 | endif | 98 | endif |
| 99 | else | ||
| 100 | LDFLAGS_MODULE += arch/powerpc/lib/crtsavres.o | ||
| 99 | endif | 101 | endif |
| 100 | 102 | ||
| 101 | ifeq ($(CONFIG_TUNE_CELL),y) | 103 | ifeq ($(CONFIG_TUNE_CELL),y) |
| @@ -154,7 +156,7 @@ all: zImage | |||
| 154 | 156 | ||
| 155 | CPPFLAGS_vmlinux.lds := -Upowerpc | 157 | CPPFLAGS_vmlinux.lds := -Upowerpc |
| 156 | 158 | ||
| 157 | BOOT_TARGETS = zImage zImage.initrd uImage zImage% dtbImage% treeImage.% cuImage.% | 159 | BOOT_TARGETS = zImage zImage.initrd uImage zImage% dtbImage% treeImage.% cuImage.% simpleImage.% |
| 158 | 160 | ||
| 159 | PHONY += $(BOOT_TARGETS) | 161 | PHONY += $(BOOT_TARGETS) |
| 160 | 162 | ||
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index d53b84e761a9..1cee2f9fdf06 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
| @@ -51,7 +51,7 @@ $(addprefix $(obj)/,$(zlib) gunzip_util.o main.o): \ | |||
| 51 | $(addprefix $(obj)/,$(zliblinuxheader)) $(addprefix $(obj)/,$(zlibheader)) | 51 | $(addprefix $(obj)/,$(zliblinuxheader)) $(addprefix $(obj)/,$(zlibheader)) |
| 52 | 52 | ||
| 53 | src-libfdt := fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c | 53 | src-libfdt := fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c |
| 54 | src-wlib := string.S crt0.S stdio.c main.c \ | 54 | src-wlib := string.S crt0.S crtsavres.S stdio.c main.c \ |
| 55 | $(addprefix libfdt/,$(src-libfdt)) libfdt-wrapper.c \ | 55 | $(addprefix libfdt/,$(src-libfdt)) libfdt-wrapper.c \ |
| 56 | ns16550.c serial.c simple_alloc.c div64.S util.S \ | 56 | ns16550.c serial.c simple_alloc.c div64.S util.S \ |
| 57 | gunzip_util.c elf_util.c $(zlib) devtree.c oflib.c ofconsole.c \ | 57 | gunzip_util.c elf_util.c $(zlib) devtree.c oflib.c ofconsole.c \ |
diff --git a/arch/powerpc/boot/crtsavres.S b/arch/powerpc/boot/crtsavres.S new file mode 100644 index 000000000000..f3d9b35c07d4 --- /dev/null +++ b/arch/powerpc/boot/crtsavres.S | |||
| @@ -0,0 +1,233 @@ | |||
| 1 | /* | ||
| 2 | * Special support for eabi and SVR4 | ||
| 3 | * | ||
| 4 | * Copyright (C) 1995, 1996, 1998, 2000, 2001 Free Software Foundation, Inc. | ||
| 5 | * Copyright 2008 Freescale Semiconductor, Inc. | ||
| 6 | * Written By Michael Meissner | ||
| 7 | * | ||
| 8 | * Based on gcc/config/rs6000/crtsavres.asm from gcc | ||
| 9 | * | ||
| 10 | * This file is free software; you can redistribute it and/or modify it | ||
| 11 | * under the terms of the GNU General Public License as published by the | ||
| 12 | * Free Software Foundation; either version 2, or (at your option) any | ||
| 13 | * later version. | ||
| 14 | * | ||
| 15 | * In addition to the permissions in the GNU General Public License, the | ||
| 16 | * Free Software Foundation gives you unlimited permission to link the | ||
| 17 | * compiled version of this file with other programs, and to distribute | ||
| 18 | * those programs without any restriction coming from the use of this | ||
| 19 | * file. (The General Public License restrictions do apply in other | ||
| 20 | * respects; for example, they cover modification of the file, and | ||
| 21 | * distribution when not linked into another program.) | ||
| 22 | * | ||
| 23 | * This file is distributed in the hope that it will be useful, but | ||
| 24 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 25 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 26 | * General Public License for more details. | ||
| 27 | * | ||
| 28 | * You should have received a copy of the GNU General Public License | ||
| 29 | * along with this program; see the file COPYING. If not, write to | ||
| 30 | * the Free Software Foundation, 51 Franklin Street, Fifth Floor, | ||
| 31 | * Boston, MA 02110-1301, USA. | ||
| 32 | * | ||
| 33 | * As a special exception, if you link this library with files | ||
| 34 | * compiled with GCC to produce an executable, this does not cause | ||
| 35 | * the resulting executable to be covered by the GNU General Public License. | ||
| 36 | * This exception does not however invalidate any other reasons why | ||
| 37 | * the executable file might be covered by the GNU General Public License. | ||
| 38 | */ | ||
| 39 | |||
| 40 | .file "crtsavres.S" | ||
| 41 | .section ".text" | ||
| 42 | |||
| 43 | /* On PowerPC64 Linux, these functions are provided by the linker. */ | ||
| 44 | #ifndef __powerpc64__ | ||
| 45 | |||
| 46 | #define _GLOBAL(name) \ | ||
| 47 | .type name,@function; \ | ||
| 48 | .globl name; \ | ||
| 49 | name: | ||
| 50 | |||
| 51 | /* Routines for saving integer registers, called by the compiler. */ | ||
| 52 | /* Called with r11 pointing to the stack header word of the caller of the */ | ||
| 53 | /* function, just beyond the end of the integer save area. */ | ||
| 54 | |||
| 55 | _GLOBAL(_savegpr_14) | ||
| 56 | _GLOBAL(_save32gpr_14) | ||
| 57 | stw 14,-72(11) /* save gp registers */ | ||
| 58 | _GLOBAL(_savegpr_15) | ||
| 59 | _GLOBAL(_save32gpr_15) | ||
| 60 | stw 15,-68(11) | ||
| 61 | _GLOBAL(_savegpr_16) | ||
| 62 | _GLOBAL(_save32gpr_16) | ||
| 63 | stw 16,-64(11) | ||
| 64 | _GLOBAL(_savegpr_17) | ||
| 65 | _GLOBAL(_save32gpr_17) | ||
| 66 | stw 17,-60(11) | ||
| 67 | _GLOBAL(_savegpr_18) | ||
| 68 | _GLOBAL(_save32gpr_18) | ||
| 69 | stw 18,-56(11) | ||
| 70 | _GLOBAL(_savegpr_19) | ||
| 71 | _GLOBAL(_save32gpr_19) | ||
| 72 | stw 19,-52(11) | ||
| 73 | _GLOBAL(_savegpr_20) | ||
| 74 | _GLOBAL(_save32gpr_20) | ||
| 75 | stw 20,-48(11) | ||
| 76 | _GLOBAL(_savegpr_21) | ||
| 77 | _GLOBAL(_save32gpr_21) | ||
| 78 | stw 21,-44(11) | ||
| 79 | _GLOBAL(_savegpr_22) | ||
| 80 | _GLOBAL(_save32gpr_22) | ||
| 81 | stw 22,-40(11) | ||
| 82 | _GLOBAL(_savegpr_23) | ||
| 83 | _GLOBAL(_save32gpr_23) | ||
| 84 | stw 23,-36(11) | ||
| 85 | _GLOBAL(_savegpr_24) | ||
| 86 | _GLOBAL(_save32gpr_24) | ||
| 87 | stw 24,-32(11) | ||
| 88 | _GLOBAL(_savegpr_25) | ||
| 89 | _GLOBAL(_save32gpr_25) | ||
| 90 | stw 25,-28(11) | ||
| 91 | _GLOBAL(_savegpr_26) | ||
| 92 | _GLOBAL(_save32gpr_26) | ||
| 93 | stw 26,-24(11) | ||
| 94 | _GLOBAL(_savegpr_27) | ||
| 95 | _GLOBAL(_save32gpr_27) | ||
| 96 | stw 27,-20(11) | ||
| 97 | _GLOBAL(_savegpr_28) | ||
| 98 | _GLOBAL(_save32gpr_28) | ||
| 99 | stw 28,-16(11) | ||
| 100 | _GLOBAL(_savegpr_29) | ||
| 101 | _GLOBAL(_save32gpr_29) | ||
| 102 | stw 29,-12(11) | ||
| 103 | _GLOBAL(_savegpr_30) | ||
| 104 | _GLOBAL(_save32gpr_30) | ||
| 105 | stw 30,-8(11) | ||
| 106 | _GLOBAL(_savegpr_31) | ||
| 107 | _GLOBAL(_save32gpr_31) | ||
| 108 | stw 31,-4(11) | ||
| 109 | blr | ||
| 110 | |||
| 111 | /* Routines for restoring integer registers, called by the compiler. */ | ||
| 112 | /* Called with r11 pointing to the stack header word of the caller of the */ | ||
| 113 | /* function, just beyond the end of the integer restore area. */ | ||
| 114 | |||
| 115 | _GLOBAL(_restgpr_14) | ||
| 116 | _GLOBAL(_rest32gpr_14) | ||
| 117 | lwz 14,-72(11) /* restore gp registers */ | ||
| 118 | _GLOBAL(_restgpr_15) | ||
| 119 | _GLOBAL(_rest32gpr_15) | ||
| 120 | lwz 15,-68(11) | ||
| 121 | _GLOBAL(_restgpr_16) | ||
| 122 | _GLOBAL(_rest32gpr_16) | ||
| 123 | lwz 16,-64(11) | ||
| 124 | _GLOBAL(_restgpr_17) | ||
| 125 | _GLOBAL(_rest32gpr_17) | ||
| 126 | lwz 17,-60(11) | ||
| 127 | _GLOBAL(_restgpr_18) | ||
| 128 | _GLOBAL(_rest32gpr_18) | ||
| 129 | lwz 18,-56(11) | ||
| 130 | _GLOBAL(_restgpr_19) | ||
| 131 | _GLOBAL(_rest32gpr_19) | ||
| 132 | lwz 19,-52(11) | ||
| 133 | _GLOBAL(_restgpr_20) | ||
| 134 | _GLOBAL(_rest32gpr_20) | ||
| 135 | lwz 20,-48(11) | ||
| 136 | _GLOBAL(_restgpr_21) | ||
| 137 | _GLOBAL(_rest32gpr_21) | ||
| 138 | lwz 21,-44(11) | ||
| 139 | _GLOBAL(_restgpr_22) | ||
| 140 | _GLOBAL(_rest32gpr_22) | ||
| 141 | lwz 22,-40(11) | ||
| 142 | _GLOBAL(_restgpr_23) | ||
| 143 | _GLOBAL(_rest32gpr_23) | ||
| 144 | lwz 23,-36(11) | ||
| 145 | _GLOBAL(_restgpr_24) | ||
| 146 | _GLOBAL(_rest32gpr_24) | ||
| 147 | lwz 24,-32(11) | ||
| 148 | _GLOBAL(_restgpr_25) | ||
| 149 | _GLOBAL(_rest32gpr_25) | ||
| 150 | lwz 25,-28(11) | ||
| 151 | _GLOBAL(_restgpr_26) | ||
| 152 | _GLOBAL(_rest32gpr_26) | ||
| 153 | lwz 26,-24(11) | ||
| 154 | _GLOBAL(_restgpr_27) | ||
| 155 | _GLOBAL(_rest32gpr_27) | ||
| 156 | lwz 27,-20(11) | ||
| 157 | _GLOBAL(_restgpr_28) | ||
| 158 | _GLOBAL(_rest32gpr_28) | ||
| 159 | lwz 28,-16(11) | ||
| 160 | _GLOBAL(_restgpr_29) | ||
| 161 | _GLOBAL(_rest32gpr_29) | ||
| 162 | lwz 29,-12(11) | ||
| 163 | _GLOBAL(_restgpr_30) | ||
| 164 | _GLOBAL(_rest32gpr_30) | ||
| 165 | lwz 30,-8(11) | ||
| 166 | _GLOBAL(_restgpr_31) | ||
| 167 | _GLOBAL(_rest32gpr_31) | ||
| 168 | lwz 31,-4(11) | ||
| 169 | blr | ||
| 170 | |||
| 171 | /* Routines for restoring integer registers, called by the compiler. */ | ||
| 172 | /* Called with r11 pointing to the stack header word of the caller of the */ | ||
| 173 | /* function, just beyond the end of the integer restore area. */ | ||
| 174 | |||
| 175 | _GLOBAL(_restgpr_14_x) | ||
| 176 | _GLOBAL(_rest32gpr_14_x) | ||
| 177 | lwz 14,-72(11) /* restore gp registers */ | ||
| 178 | _GLOBAL(_restgpr_15_x) | ||
| 179 | _GLOBAL(_rest32gpr_15_x) | ||
| 180 | lwz 15,-68(11) | ||
| 181 | _GLOBAL(_restgpr_16_x) | ||
| 182 | _GLOBAL(_rest32gpr_16_x) | ||
| 183 | lwz 16,-64(11) | ||
| 184 | _GLOBAL(_restgpr_17_x) | ||
| 185 | _GLOBAL(_rest32gpr_17_x) | ||
| 186 | lwz 17,-60(11) | ||
| 187 | _GLOBAL(_restgpr_18_x) | ||
| 188 | _GLOBAL(_rest32gpr_18_x) | ||
| 189 | lwz 18,-56(11) | ||
| 190 | _GLOBAL(_restgpr_19_x) | ||
| 191 | _GLOBAL(_rest32gpr_19_x) | ||
| 192 | lwz 19,-52(11) | ||
| 193 | _GLOBAL(_restgpr_20_x) | ||
| 194 | _GLOBAL(_rest32gpr_20_x) | ||
| 195 | lwz 20,-48(11) | ||
| 196 | _GLOBAL(_restgpr_21_x) | ||
| 197 | _GLOBAL(_rest32gpr_21_x) | ||
| 198 | lwz 21,-44(11) | ||
| 199 | _GLOBAL(_restgpr_22_x) | ||
| 200 | _GLOBAL(_rest32gpr_22_x) | ||
| 201 | lwz 22,-40(11) | ||
| 202 | _GLOBAL(_restgpr_23_x) | ||
| 203 | _GLOBAL(_rest32gpr_23_x) | ||
| 204 | lwz 23,-36(11) | ||
| 205 | _GLOBAL(_restgpr_24_x) | ||
| 206 | _GLOBAL(_rest32gpr_24_x) | ||
| 207 | lwz 24,-32(11) | ||
| 208 | _GLOBAL(_restgpr_25_x) | ||
| 209 | _GLOBAL(_rest32gpr_25_x) | ||
| 210 | lwz 25,-28(11) | ||
| 211 | _GLOBAL(_restgpr_26_x) | ||
| 212 | _GLOBAL(_rest32gpr_26_x) | ||
| 213 | lwz 26,-24(11) | ||
| 214 | _GLOBAL(_restgpr_27_x) | ||
| 215 | _GLOBAL(_rest32gpr_27_x) | ||
| 216 | lwz 27,-20(11) | ||
| 217 | _GLOBAL(_restgpr_28_x) | ||
| 218 | _GLOBAL(_rest32gpr_28_x) | ||
| 219 | lwz 28,-16(11) | ||
| 220 | _GLOBAL(_restgpr_29_x) | ||
| 221 | _GLOBAL(_rest32gpr_29_x) | ||
| 222 | lwz 29,-12(11) | ||
| 223 | _GLOBAL(_restgpr_30_x) | ||
| 224 | _GLOBAL(_rest32gpr_30_x) | ||
| 225 | lwz 30,-8(11) | ||
| 226 | _GLOBAL(_restgpr_31_x) | ||
| 227 | _GLOBAL(_rest32gpr_31_x) | ||
| 228 | lwz 0,4(11) | ||
| 229 | lwz 31,-4(11) | ||
| 230 | mtlr 0 | ||
| 231 | mr 1,11 | ||
| 232 | blr | ||
| 233 | #endif | ||
diff --git a/arch/powerpc/boot/dts/mpc8377_rdb.dts b/arch/powerpc/boot/dts/mpc8377_rdb.dts index 5bc09ad016f5..f3083c779b66 100644 --- a/arch/powerpc/boot/dts/mpc8377_rdb.dts +++ b/arch/powerpc/boot/dts/mpc8377_rdb.dts | |||
| @@ -164,12 +164,6 @@ | |||
| 164 | reg = <0x2>; | 164 | reg = <0x2>; |
| 165 | device_type = "ethernet-phy"; | 165 | device_type = "ethernet-phy"; |
| 166 | }; | 166 | }; |
| 167 | phy3: ethernet-phy@3 { | ||
| 168 | interrupt-parent = <&ipic>; | ||
| 169 | interrupts = <18 0x8>; | ||
| 170 | reg = <0x3>; | ||
| 171 | device_type = "ethernet-phy"; | ||
| 172 | }; | ||
| 173 | }; | 167 | }; |
| 174 | 168 | ||
| 175 | enet0: ethernet@24000 { | 169 | enet0: ethernet@24000 { |
| @@ -195,7 +189,7 @@ | |||
| 195 | interrupts = <35 0x8 36 0x8 37 0x8>; | 189 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 196 | phy-connection-type = "mii"; | 190 | phy-connection-type = "mii"; |
| 197 | interrupt-parent = <&ipic>; | 191 | interrupt-parent = <&ipic>; |
| 198 | phy-handle = <&phy3>; | 192 | fixed-link = <1 1 1000 0 0>; |
| 199 | }; | 193 | }; |
| 200 | 194 | ||
| 201 | serial0: serial@4500 { | 195 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8378_rdb.dts b/arch/powerpc/boot/dts/mpc8378_rdb.dts index 711f9a30f9ab..0e872a60e091 100644 --- a/arch/powerpc/boot/dts/mpc8378_rdb.dts +++ b/arch/powerpc/boot/dts/mpc8378_rdb.dts | |||
| @@ -164,12 +164,6 @@ | |||
| 164 | reg = <0x2>; | 164 | reg = <0x2>; |
| 165 | device_type = "ethernet-phy"; | 165 | device_type = "ethernet-phy"; |
| 166 | }; | 166 | }; |
| 167 | phy3: ethernet-phy@3 { | ||
| 168 | interrupt-parent = <&ipic>; | ||
| 169 | interrupts = <18 0x8>; | ||
| 170 | reg = <0x3>; | ||
| 171 | device_type = "ethernet-phy"; | ||
| 172 | }; | ||
| 173 | }; | 167 | }; |
| 174 | 168 | ||
| 175 | enet0: ethernet@24000 { | 169 | enet0: ethernet@24000 { |
| @@ -195,7 +189,7 @@ | |||
| 195 | interrupts = <35 0x8 36 0x8 37 0x8>; | 189 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 196 | phy-connection-type = "mii"; | 190 | phy-connection-type = "mii"; |
| 197 | interrupt-parent = <&ipic>; | 191 | interrupt-parent = <&ipic>; |
| 198 | phy-handle = <&phy3>; | 192 | fixed-link = <1 1 1000 0 0>; |
| 199 | }; | 193 | }; |
| 200 | 194 | ||
| 201 | serial0: serial@4500 { | 195 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8379_rdb.dts b/arch/powerpc/boot/dts/mpc8379_rdb.dts index c11ceb7d3299..1eb8defaff6f 100644 --- a/arch/powerpc/boot/dts/mpc8379_rdb.dts +++ b/arch/powerpc/boot/dts/mpc8379_rdb.dts | |||
| @@ -164,12 +164,6 @@ | |||
| 164 | reg = <0x2>; | 164 | reg = <0x2>; |
| 165 | device_type = "ethernet-phy"; | 165 | device_type = "ethernet-phy"; |
| 166 | }; | 166 | }; |
| 167 | phy3: ethernet-phy@3 { | ||
| 168 | interrupt-parent = <&ipic>; | ||
| 169 | interrupts = <18 0x8>; | ||
| 170 | reg = <0x3>; | ||
| 171 | device_type = "ethernet-phy"; | ||
| 172 | }; | ||
| 173 | }; | 167 | }; |
| 174 | 168 | ||
| 175 | enet0: ethernet@24000 { | 169 | enet0: ethernet@24000 { |
| @@ -195,7 +189,7 @@ | |||
| 195 | interrupts = <35 0x8 36 0x8 37 0x8>; | 189 | interrupts = <35 0x8 36 0x8 37 0x8>; |
| 196 | phy-connection-type = "mii"; | 190 | phy-connection-type = "mii"; |
| 197 | interrupt-parent = <&ipic>; | 191 | interrupt-parent = <&ipic>; |
| 198 | phy-handle = <&phy3>; | 192 | fixed-link = <1 1 1000 0 0>; |
| 199 | }; | 193 | }; |
| 200 | 194 | ||
| 201 | serial0: serial@4500 { | 195 | serial0: serial@4500 { |
diff --git a/arch/powerpc/boot/dts/mpc8548cds.dts b/arch/powerpc/boot/dts/mpc8548cds.dts index fa298a8c81cc..4811b8107415 100644 --- a/arch/powerpc/boot/dts/mpc8548cds.dts +++ b/arch/powerpc/boot/dts/mpc8548cds.dts | |||
| @@ -409,7 +409,7 @@ | |||
| 409 | interrupts = <26 2>; | 409 | interrupts = <26 2>; |
| 410 | bus-range = <0 255>; | 410 | bus-range = <0 255>; |
| 411 | ranges = <0x2000000 0x0 0xa0000000 0xa0000000 0x0 0x20000000 | 411 | ranges = <0x2000000 0x0 0xa0000000 0xa0000000 0x0 0x20000000 |
| 412 | 0x1000000 0x0 0x0 0xe3000000 0x0 0x8000000>; | 412 | 0x1000000 0x0 0x0 0xe3000000 0x0 0x100000>; |
| 413 | clock-frequency = <33333333>; | 413 | clock-frequency = <33333333>; |
| 414 | #interrupt-cells = <1>; | 414 | #interrupt-cells = <1>; |
| 415 | #size-cells = <2>; | 415 | #size-cells = <2>; |
| @@ -428,7 +428,7 @@ | |||
| 428 | 428 | ||
| 429 | 0x1000000 0x0 0x0 | 429 | 0x1000000 0x0 0x0 |
| 430 | 0x1000000 0x0 0x0 | 430 | 0x1000000 0x0 0x0 |
| 431 | 0x0 0x8000000>; | 431 | 0x0 0x100000>; |
| 432 | }; | 432 | }; |
| 433 | }; | 433 | }; |
| 434 | }; | 434 | }; |
diff --git a/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig b/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig index 7d18440e398f..5428f9f5ed85 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Fri Apr 11 11:10:09 2008 | 4 | # Mon Jun 9 08:52:21 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | # CONFIG_KALLSYMS is not set | 92 | # CONFIG_KALLSYMS is not set |
| 90 | CONFIG_HOTPLUG=y | 93 | CONFIG_HOTPLUG=y |
| 91 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
| @@ -110,12 +113,14 @@ CONFIG_SLUB=y | |||
| 110 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
| 111 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
| 112 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 113 | CONFIG_PROC_PAGE_MONITOR=y | 117 | CONFIG_PROC_PAGE_MONITOR=y |
| 114 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
| 115 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
| 116 | # CONFIG_TINY_SHMEM is not set | 120 | # CONFIG_TINY_SHMEM is not set |
| 117 | CONFIG_BASE_SMALL=0 | 121 | CONFIG_BASE_SMALL=0 |
| 118 | CONFIG_MODULES=y | 122 | CONFIG_MODULES=y |
| 123 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 119 | CONFIG_MODULE_UNLOAD=y | 124 | CONFIG_MODULE_UNLOAD=y |
| 120 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 121 | # CONFIG_MODVERSIONS is not set | 126 | # CONFIG_MODVERSIONS is not set |
| @@ -196,7 +201,6 @@ CONFIG_PREEMPT_NONE=y | |||
| 196 | # CONFIG_PREEMPT is not set | 201 | # CONFIG_PREEMPT is not set |
| 197 | CONFIG_BINFMT_ELF=y | 202 | CONFIG_BINFMT_ELF=y |
| 198 | # CONFIG_BINFMT_MISC is not set | 203 | # CONFIG_BINFMT_MISC is not set |
| 199 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 200 | # CONFIG_IOMMU_HELPER is not set | 204 | # CONFIG_IOMMU_HELPER is not set |
| 201 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 205 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 202 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 206 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| @@ -211,11 +215,13 @@ CONFIG_FLATMEM=y | |||
| 211 | CONFIG_FLAT_NODE_MEM_MAP=y | 215 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 212 | # CONFIG_SPARSEMEM_STATIC is not set | 216 | # CONFIG_SPARSEMEM_STATIC is not set |
| 213 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 214 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 215 | # CONFIG_RESOURCES_64BIT is not set | 220 | # CONFIG_RESOURCES_64BIT is not set |
| 216 | CONFIG_ZONE_DMA_FLAG=1 | 221 | CONFIG_ZONE_DMA_FLAG=1 |
| 217 | CONFIG_BOUNCE=y | 222 | CONFIG_BOUNCE=y |
| 218 | CONFIG_VIRT_TO_BUS=y | 223 | CONFIG_VIRT_TO_BUS=y |
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 219 | CONFIG_PROC_DEVICETREE=y | 225 | CONFIG_PROC_DEVICETREE=y |
| 220 | # CONFIG_CMDLINE_BOOL is not set | 226 | # CONFIG_CMDLINE_BOOL is not set |
| 221 | # CONFIG_PM is not set | 227 | # CONFIG_PM is not set |
| @@ -239,6 +245,7 @@ CONFIG_PCI_LEGACY=y | |||
| 239 | # CONFIG_PCI_DEBUG is not set | 245 | # CONFIG_PCI_DEBUG is not set |
| 240 | # CONFIG_PCCARD is not set | 246 | # CONFIG_PCCARD is not set |
| 241 | # CONFIG_HOTPLUG_PCI is not set | 247 | # CONFIG_HOTPLUG_PCI is not set |
| 248 | # CONFIG_HAS_RAPIDIO is not set | ||
| 242 | 249 | ||
| 243 | # | 250 | # |
| 244 | # Advanced setup | 251 | # Advanced setup |
| @@ -248,11 +255,11 @@ CONFIG_PCI_LEGACY=y | |||
| 248 | # | 255 | # |
| 249 | # Default settings for advanced configuration options are used | 256 | # Default settings for advanced configuration options are used |
| 250 | # | 257 | # |
| 251 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 252 | CONFIG_LOWMEM_SIZE=0x30000000 | 258 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 259 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 253 | CONFIG_KERNEL_START=0xc0000000 | 260 | CONFIG_KERNEL_START=0xc0000000 |
| 261 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 254 | CONFIG_TASK_SIZE=0xc0000000 | 262 | CONFIG_TASK_SIZE=0xc0000000 |
| 255 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 256 | 263 | ||
| 257 | # | 264 | # |
| 258 | # Networking | 265 | # Networking |
| @@ -300,8 +307,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 300 | CONFIG_DEFAULT_TCP_CONG="cubic" | 307 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 301 | # CONFIG_TCP_MD5SIG is not set | 308 | # CONFIG_TCP_MD5SIG is not set |
| 302 | # CONFIG_IPV6 is not set | 309 | # 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 | 310 | # CONFIG_NETWORK_SECMARK is not set |
| 306 | # CONFIG_NETFILTER is not set | 311 | # CONFIG_NETFILTER is not set |
| 307 | # CONFIG_IP_DCCP is not set | 312 | # CONFIG_IP_DCCP is not set |
| @@ -362,6 +367,7 @@ CONFIG_MTD_PARTITIONS=y | |||
| 362 | # CONFIG_MTD_REDBOOT_PARTS is not set | 367 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 363 | # CONFIG_MTD_CMDLINE_PARTS is not set | 368 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 364 | CONFIG_MTD_OF_PARTS=y | 369 | CONFIG_MTD_OF_PARTS=y |
| 370 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 365 | 371 | ||
| 366 | # | 372 | # |
| 367 | # User Modules And Translation Layers | 373 | # User Modules And Translation Layers |
| @@ -445,6 +451,7 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
| 445 | # | 451 | # |
| 446 | # CONFIG_MTD_UBI is not set | 452 | # CONFIG_MTD_UBI is not set |
| 447 | CONFIG_OF_DEVICE=y | 453 | CONFIG_OF_DEVICE=y |
| 454 | CONFIG_OF_I2C=y | ||
| 448 | # CONFIG_PARPORT is not set | 455 | # CONFIG_PARPORT is not set |
| 449 | CONFIG_BLK_DEV=y | 456 | CONFIG_BLK_DEV=y |
| 450 | # CONFIG_BLK_DEV_FD is not set | 457 | # CONFIG_BLK_DEV_FD is not set |
| @@ -641,7 +648,6 @@ CONFIG_NETDEV_1000=y | |||
| 641 | # CONFIG_SIS190 is not set | 648 | # CONFIG_SIS190 is not set |
| 642 | # CONFIG_SKGE is not set | 649 | # CONFIG_SKGE is not set |
| 643 | # CONFIG_SKY2 is not set | 650 | # CONFIG_SKY2 is not set |
| 644 | # CONFIG_SK98LIN is not set | ||
| 645 | # CONFIG_VIA_VELOCITY is not set | 651 | # CONFIG_VIA_VELOCITY is not set |
| 646 | # CONFIG_TIGON3 is not set | 652 | # CONFIG_TIGON3 is not set |
| 647 | # CONFIG_BNX2 is not set | 653 | # CONFIG_BNX2 is not set |
| @@ -661,6 +667,7 @@ CONFIG_NETDEV_10000=y | |||
| 661 | # CONFIG_MLX4_CORE is not set | 667 | # CONFIG_MLX4_CORE is not set |
| 662 | # CONFIG_TEHUTI is not set | 668 | # CONFIG_TEHUTI is not set |
| 663 | # CONFIG_BNX2X is not set | 669 | # CONFIG_BNX2X is not set |
| 670 | # CONFIG_SFC is not set | ||
| 664 | # CONFIG_TR is not set | 671 | # CONFIG_TR is not set |
| 665 | 672 | ||
| 666 | # | 673 | # |
| @@ -668,6 +675,7 @@ CONFIG_NETDEV_10000=y | |||
| 668 | # | 675 | # |
| 669 | # CONFIG_WLAN_PRE80211 is not set | 676 | # CONFIG_WLAN_PRE80211 is not set |
| 670 | # CONFIG_WLAN_80211 is not set | 677 | # CONFIG_WLAN_80211 is not set |
| 678 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 671 | 679 | ||
| 672 | # | 680 | # |
| 673 | # USB Network Adapters | 681 | # USB Network Adapters |
| @@ -724,6 +732,7 @@ CONFIG_INPUT=y | |||
| 724 | # Character devices | 732 | # Character devices |
| 725 | # | 733 | # |
| 726 | # CONFIG_VT is not set | 734 | # CONFIG_VT is not set |
| 735 | CONFIG_DEVKMEM=y | ||
| 727 | # CONFIG_SERIAL_NONSTANDARD is not set | 736 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 728 | # CONFIG_NOZOMI is not set | 737 | # CONFIG_NOZOMI is not set |
| 729 | 738 | ||
| @@ -751,7 +760,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 751 | # CONFIG_IPMI_HANDLER is not set | 760 | # CONFIG_IPMI_HANDLER is not set |
| 752 | CONFIG_HW_RANDOM=y | 761 | CONFIG_HW_RANDOM=y |
| 753 | # CONFIG_NVRAM is not set | 762 | # CONFIG_NVRAM is not set |
| 754 | # CONFIG_GEN_RTC is not set | ||
| 755 | # CONFIG_R3964 is not set | 763 | # CONFIG_R3964 is not set |
| 756 | # CONFIG_APPLICOM is not set | 764 | # CONFIG_APPLICOM is not set |
| 757 | # CONFIG_RAW_DRIVER is not set | 765 | # CONFIG_RAW_DRIVER is not set |
| @@ -762,13 +770,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 762 | CONFIG_I2C_CHARDEV=y | 770 | CONFIG_I2C_CHARDEV=y |
| 763 | 771 | ||
| 764 | # | 772 | # |
| 765 | # I2C Algorithms | ||
| 766 | # | ||
| 767 | # CONFIG_I2C_ALGOBIT is not set | ||
| 768 | # CONFIG_I2C_ALGOPCF is not set | ||
| 769 | # CONFIG_I2C_ALGOPCA is not set | ||
| 770 | |||
| 771 | # | ||
| 772 | # I2C Hardware Bus support | 773 | # I2C Hardware Bus support |
| 773 | # | 774 | # |
| 774 | # CONFIG_I2C_ALI1535 is not set | 775 | # CONFIG_I2C_ALI1535 is not set |
| @@ -795,6 +796,7 @@ CONFIG_I2C_MPC=y | |||
| 795 | # CONFIG_I2C_VIA is not set | 796 | # CONFIG_I2C_VIA is not set |
| 796 | # CONFIG_I2C_VIAPRO is not set | 797 | # CONFIG_I2C_VIAPRO is not set |
| 797 | # CONFIG_I2C_VOODOO3 is not set | 798 | # CONFIG_I2C_VOODOO3 is not set |
| 799 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 798 | 800 | ||
| 799 | # | 801 | # |
| 800 | # Miscellaneous I2C Chip support | 802 | # Miscellaneous I2C Chip support |
| @@ -804,17 +806,12 @@ CONFIG_I2C_MPC=y | |||
| 804 | # CONFIG_SENSORS_PCF8574 is not set | 806 | # CONFIG_SENSORS_PCF8574 is not set |
| 805 | # CONFIG_PCF8575 is not set | 807 | # CONFIG_PCF8575 is not set |
| 806 | # CONFIG_SENSORS_PCF8591 is not set | 808 | # CONFIG_SENSORS_PCF8591 is not set |
| 807 | # CONFIG_TPS65010 is not set | ||
| 808 | # CONFIG_SENSORS_MAX6875 is not set | 809 | # CONFIG_SENSORS_MAX6875 is not set |
| 809 | # CONFIG_SENSORS_TSL2550 is not set | 810 | # CONFIG_SENSORS_TSL2550 is not set |
| 810 | # CONFIG_I2C_DEBUG_CORE is not set | 811 | # CONFIG_I2C_DEBUG_CORE is not set |
| 811 | # CONFIG_I2C_DEBUG_ALGO is not set | 812 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 812 | # CONFIG_I2C_DEBUG_BUS is not set | 813 | # CONFIG_I2C_DEBUG_BUS is not set |
| 813 | # CONFIG_I2C_DEBUG_CHIP is not set | 814 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 814 | |||
| 815 | # | ||
| 816 | # SPI support | ||
| 817 | # | ||
| 818 | CONFIG_SPI=y | 815 | CONFIG_SPI=y |
| 819 | # CONFIG_SPI_DEBUG is not set | 816 | # CONFIG_SPI_DEBUG is not set |
| 820 | CONFIG_SPI_MASTER=y | 817 | CONFIG_SPI_MASTER=y |
| @@ -919,12 +916,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 919 | # Multifunction device drivers | 916 | # Multifunction device drivers |
| 920 | # | 917 | # |
| 921 | # CONFIG_MFD_SM501 is not set | 918 | # CONFIG_MFD_SM501 is not set |
| 919 | # CONFIG_HTC_PASIC3 is not set | ||
| 922 | 920 | ||
| 923 | # | 921 | # |
| 924 | # Multimedia devices | 922 | # Multimedia devices |
| 925 | # | 923 | # |
| 924 | |||
| 925 | # | ||
| 926 | # Multimedia core support | ||
| 927 | # | ||
| 926 | # CONFIG_VIDEO_DEV is not set | 928 | # CONFIG_VIDEO_DEV is not set |
| 927 | # CONFIG_DVB_CORE is not set | 929 | # CONFIG_DVB_CORE is not set |
| 930 | # CONFIG_VIDEO_MEDIA is not set | ||
| 931 | |||
| 932 | # | ||
| 933 | # Multimedia drivers | ||
| 934 | # | ||
| 928 | CONFIG_DAB=y | 935 | CONFIG_DAB=y |
| 929 | # CONFIG_USB_DABUSB is not set | 936 | # CONFIG_USB_DABUSB is not set |
| 930 | 937 | ||
| @@ -977,16 +984,20 @@ CONFIG_USB_DEVICEFS=y | |||
| 977 | CONFIG_USB_DEVICE_CLASS=y | 984 | CONFIG_USB_DEVICE_CLASS=y |
| 978 | # CONFIG_USB_DYNAMIC_MINORS is not set | 985 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 979 | # CONFIG_USB_OTG is not set | 986 | # CONFIG_USB_OTG is not set |
| 987 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 988 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 980 | 989 | ||
| 981 | # | 990 | # |
| 982 | # USB Host Controller Drivers | 991 | # USB Host Controller Drivers |
| 983 | # | 992 | # |
| 993 | # CONFIG_USB_C67X00_HCD is not set | ||
| 984 | CONFIG_USB_EHCI_HCD=y | 994 | CONFIG_USB_EHCI_HCD=y |
| 985 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 995 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 986 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 996 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 987 | CONFIG_USB_EHCI_FSL=y | 997 | CONFIG_USB_EHCI_FSL=y |
| 988 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 998 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 989 | # CONFIG_USB_ISP116X_HCD is not set | 999 | # CONFIG_USB_ISP116X_HCD is not set |
| 1000 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 990 | CONFIG_USB_OHCI_HCD=y | 1001 | CONFIG_USB_OHCI_HCD=y |
| 991 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1002 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
| 992 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | 1003 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y |
| @@ -1004,6 +1015,7 @@ CONFIG_USB_UHCI_HCD=y | |||
| 1004 | # | 1015 | # |
| 1005 | # CONFIG_USB_ACM is not set | 1016 | # CONFIG_USB_ACM is not set |
| 1006 | # CONFIG_USB_PRINTER is not set | 1017 | # CONFIG_USB_PRINTER is not set |
| 1018 | # CONFIG_USB_WDM is not set | ||
| 1007 | 1019 | ||
| 1008 | # | 1020 | # |
| 1009 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1021 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1023,7 +1035,9 @@ CONFIG_USB_STORAGE=y | |||
| 1023 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1035 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 1024 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 1036 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 1025 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1037 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1038 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
| 1026 | # CONFIG_USB_STORAGE_KARMA is not set | 1039 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1040 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 1027 | # CONFIG_USB_LIBUSUAL is not set | 1041 | # CONFIG_USB_LIBUSUAL is not set |
| 1028 | 1042 | ||
| 1029 | # | 1043 | # |
| @@ -1061,6 +1075,7 @@ CONFIG_USB_MON=y | |||
| 1061 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1075 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1062 | # CONFIG_USB_IOWARRIOR is not set | 1076 | # CONFIG_USB_IOWARRIOR is not set |
| 1063 | # CONFIG_USB_TEST is not set | 1077 | # CONFIG_USB_TEST is not set |
| 1078 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1064 | CONFIG_USB_GADGET=y | 1079 | CONFIG_USB_GADGET=y |
| 1065 | # CONFIG_USB_GADGET_DEBUG is not set | 1080 | # CONFIG_USB_GADGET_DEBUG is not set |
| 1066 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | 1081 | # CONFIG_USB_GADGET_DEBUG_FILES is not set |
| @@ -1072,6 +1087,7 @@ CONFIG_USB_GADGET_NET2280=y | |||
| 1072 | CONFIG_USB_NET2280=y | 1087 | CONFIG_USB_NET2280=y |
| 1073 | # CONFIG_USB_GADGET_PXA2XX is not set | 1088 | # CONFIG_USB_GADGET_PXA2XX is not set |
| 1074 | # CONFIG_USB_GADGET_M66592 is not set | 1089 | # CONFIG_USB_GADGET_M66592 is not set |
| 1090 | # CONFIG_USB_GADGET_PXA27X is not set | ||
| 1075 | # CONFIG_USB_GADGET_GOKU is not set | 1091 | # CONFIG_USB_GADGET_GOKU is not set |
| 1076 | # CONFIG_USB_GADGET_LH7A40X is not set | 1092 | # CONFIG_USB_GADGET_LH7A40X is not set |
| 1077 | # CONFIG_USB_GADGET_OMAP is not set | 1093 | # CONFIG_USB_GADGET_OMAP is not set |
| @@ -1090,6 +1106,7 @@ CONFIG_USB_ETH_RNDIS=y | |||
| 1090 | # CONFIG_MMC is not set | 1106 | # CONFIG_MMC is not set |
| 1091 | # CONFIG_MEMSTICK is not set | 1107 | # CONFIG_MEMSTICK is not set |
| 1092 | # CONFIG_NEW_LEDS is not set | 1108 | # CONFIG_NEW_LEDS is not set |
| 1109 | # CONFIG_ACCESSIBILITY is not set | ||
| 1093 | # CONFIG_INFINIBAND is not set | 1110 | # CONFIG_INFINIBAND is not set |
| 1094 | # CONFIG_EDAC is not set | 1111 | # CONFIG_EDAC is not set |
| 1095 | CONFIG_RTC_LIB=y | 1112 | CONFIG_RTC_LIB=y |
| @@ -1144,11 +1161,8 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1144 | # | 1161 | # |
| 1145 | # on-CPU RTC drivers | 1162 | # on-CPU RTC drivers |
| 1146 | # | 1163 | # |
| 1164 | # CONFIG_RTC_DRV_PPC is not set | ||
| 1147 | # CONFIG_DMADEVICES is not set | 1165 | # CONFIG_DMADEVICES is not set |
| 1148 | |||
| 1149 | # | ||
| 1150 | # Userspace I/O | ||
| 1151 | # | ||
| 1152 | # CONFIG_UIO is not set | 1166 | # CONFIG_UIO is not set |
| 1153 | 1167 | ||
| 1154 | # | 1168 | # |
| @@ -1168,7 +1182,6 @@ CONFIG_FS_MBCACHE=y | |||
| 1168 | # CONFIG_JFS_FS is not set | 1182 | # CONFIG_JFS_FS is not set |
| 1169 | # CONFIG_FS_POSIX_ACL is not set | 1183 | # CONFIG_FS_POSIX_ACL is not set |
| 1170 | # CONFIG_XFS_FS is not set | 1184 | # CONFIG_XFS_FS is not set |
| 1171 | # CONFIG_GFS2_FS is not set | ||
| 1172 | # CONFIG_OCFS2_FS is not set | 1185 | # CONFIG_OCFS2_FS is not set |
| 1173 | CONFIG_DNOTIFY=y | 1186 | CONFIG_DNOTIFY=y |
| 1174 | CONFIG_INOTIFY=y | 1187 | CONFIG_INOTIFY=y |
| @@ -1237,7 +1250,6 @@ CONFIG_NFS_FS=y | |||
| 1237 | CONFIG_NFS_V3=y | 1250 | CONFIG_NFS_V3=y |
| 1238 | # CONFIG_NFS_V3_ACL is not set | 1251 | # CONFIG_NFS_V3_ACL is not set |
| 1239 | CONFIG_NFS_V4=y | 1252 | CONFIG_NFS_V4=y |
| 1240 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1241 | # CONFIG_NFSD is not set | 1253 | # CONFIG_NFSD is not set |
| 1242 | CONFIG_ROOT_NFS=y | 1254 | CONFIG_ROOT_NFS=y |
| 1243 | CONFIG_LOCKD=y | 1255 | CONFIG_LOCKD=y |
| @@ -1282,6 +1294,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1282 | # Library routines | 1294 | # Library routines |
| 1283 | # | 1295 | # |
| 1284 | CONFIG_BITREVERSE=y | 1296 | CONFIG_BITREVERSE=y |
| 1297 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1285 | # CONFIG_CRC_CCITT is not set | 1298 | # CONFIG_CRC_CCITT is not set |
| 1286 | # CONFIG_CRC16 is not set | 1299 | # CONFIG_CRC16 is not set |
| 1287 | # CONFIG_CRC_ITU_T is not set | 1300 | # CONFIG_CRC_ITU_T is not set |
| @@ -1302,6 +1315,7 @@ CONFIG_HAVE_LMB=y | |||
| 1302 | # CONFIG_PRINTK_TIME is not set | 1315 | # CONFIG_PRINTK_TIME is not set |
| 1303 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1316 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1304 | CONFIG_ENABLE_MUST_CHECK=y | 1317 | CONFIG_ENABLE_MUST_CHECK=y |
| 1318 | CONFIG_FRAME_WARN=1024 | ||
| 1305 | # CONFIG_MAGIC_SYSRQ is not set | 1319 | # CONFIG_MAGIC_SYSRQ is not set |
| 1306 | # CONFIG_UNUSED_SYMBOLS is not set | 1320 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1307 | # CONFIG_DEBUG_FS is not set | 1321 | # CONFIG_DEBUG_FS is not set |
| @@ -1312,6 +1326,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1312 | CONFIG_SCHED_DEBUG=y | 1326 | CONFIG_SCHED_DEBUG=y |
| 1313 | # CONFIG_SCHEDSTATS is not set | 1327 | # CONFIG_SCHEDSTATS is not set |
| 1314 | # CONFIG_TIMER_STATS is not set | 1328 | # CONFIG_TIMER_STATS is not set |
| 1329 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1315 | # CONFIG_SLUB_DEBUG_ON is not set | 1330 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1316 | # CONFIG_SLUB_STATS is not set | 1331 | # CONFIG_SLUB_STATS is not set |
| 1317 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1332 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -1324,6 +1339,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1324 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1339 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1325 | # CONFIG_DEBUG_INFO is not set | 1340 | # CONFIG_DEBUG_INFO is not set |
| 1326 | # CONFIG_DEBUG_VM is not set | 1341 | # CONFIG_DEBUG_VM is not set |
| 1342 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1327 | # CONFIG_DEBUG_LIST is not set | 1343 | # CONFIG_DEBUG_LIST is not set |
| 1328 | # CONFIG_DEBUG_SG is not set | 1344 | # CONFIG_DEBUG_SG is not set |
| 1329 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1345 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1335,6 +1351,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1335 | # CONFIG_DEBUG_STACK_USAGE is not set | 1351 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1336 | # CONFIG_DEBUG_PAGEALLOC is not set | 1352 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1337 | # CONFIG_DEBUGGER is not set | 1353 | # CONFIG_DEBUGGER is not set |
| 1354 | # CONFIG_IRQSTACKS is not set | ||
| 1338 | # CONFIG_BDI_SWITCH is not set | 1355 | # CONFIG_BDI_SWITCH is not set |
| 1339 | # CONFIG_PPC_EARLY_DEBUG is not set | 1356 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1340 | 1357 | ||
| @@ -1345,51 +1362,81 @@ CONFIG_SCHED_DEBUG=y | |||
| 1345 | # CONFIG_SECURITY is not set | 1362 | # CONFIG_SECURITY is not set |
| 1346 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1363 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1347 | CONFIG_CRYPTO=y | 1364 | CONFIG_CRYPTO=y |
| 1365 | |||
| 1366 | # | ||
| 1367 | # Crypto core or helper | ||
| 1368 | # | ||
| 1348 | CONFIG_CRYPTO_ALGAPI=y | 1369 | CONFIG_CRYPTO_ALGAPI=y |
| 1349 | CONFIG_CRYPTO_BLKCIPHER=y | 1370 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1350 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1351 | CONFIG_CRYPTO_MANAGER=y | 1371 | CONFIG_CRYPTO_MANAGER=y |
| 1372 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1373 | # CONFIG_CRYPTO_NULL is not set | ||
| 1374 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1375 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1376 | # CONFIG_CRYPTO_TEST is not set | ||
| 1377 | |||
| 1378 | # | ||
| 1379 | # Authenticated Encryption with Associated Data | ||
| 1380 | # | ||
| 1381 | # CONFIG_CRYPTO_CCM is not set | ||
| 1382 | # CONFIG_CRYPTO_GCM is not set | ||
| 1383 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1384 | |||
| 1385 | # | ||
| 1386 | # Block modes | ||
| 1387 | # | ||
| 1388 | CONFIG_CRYPTO_CBC=y | ||
| 1389 | # CONFIG_CRYPTO_CTR is not set | ||
| 1390 | # CONFIG_CRYPTO_CTS is not set | ||
| 1391 | # CONFIG_CRYPTO_ECB is not set | ||
| 1392 | # CONFIG_CRYPTO_LRW is not set | ||
| 1393 | CONFIG_CRYPTO_PCBC=m | ||
| 1394 | # CONFIG_CRYPTO_XTS is not set | ||
| 1395 | |||
| 1396 | # | ||
| 1397 | # Hash modes | ||
| 1398 | # | ||
| 1352 | # CONFIG_CRYPTO_HMAC is not set | 1399 | # CONFIG_CRYPTO_HMAC is not set |
| 1353 | # CONFIG_CRYPTO_XCBC is not set | 1400 | # CONFIG_CRYPTO_XCBC is not set |
| 1354 | # CONFIG_CRYPTO_NULL is not set | 1401 | |
| 1402 | # | ||
| 1403 | # Digest | ||
| 1404 | # | ||
| 1405 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1355 | # CONFIG_CRYPTO_MD4 is not set | 1406 | # CONFIG_CRYPTO_MD4 is not set |
| 1356 | CONFIG_CRYPTO_MD5=y | 1407 | CONFIG_CRYPTO_MD5=y |
| 1408 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1357 | # CONFIG_CRYPTO_SHA1 is not set | 1409 | # CONFIG_CRYPTO_SHA1 is not set |
| 1358 | # CONFIG_CRYPTO_SHA256 is not set | 1410 | # CONFIG_CRYPTO_SHA256 is not set |
| 1359 | # CONFIG_CRYPTO_SHA512 is not set | 1411 | # CONFIG_CRYPTO_SHA512 is not set |
| 1360 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1361 | # CONFIG_CRYPTO_TGR192 is not set | 1412 | # CONFIG_CRYPTO_TGR192 is not set |
| 1362 | # CONFIG_CRYPTO_GF128MUL is not set | 1413 | # CONFIG_CRYPTO_WP512 is not set |
| 1363 | # CONFIG_CRYPTO_ECB is not set | 1414 | |
| 1364 | CONFIG_CRYPTO_CBC=y | 1415 | # |
| 1365 | CONFIG_CRYPTO_PCBC=m | 1416 | # Ciphers |
| 1366 | # CONFIG_CRYPTO_LRW is not set | 1417 | # |
| 1367 | # CONFIG_CRYPTO_XTS is not set | ||
| 1368 | # CONFIG_CRYPTO_CTR is not set | ||
| 1369 | # CONFIG_CRYPTO_GCM is not set | ||
| 1370 | # CONFIG_CRYPTO_CCM is not set | ||
| 1371 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1372 | CONFIG_CRYPTO_DES=y | ||
| 1373 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1374 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1375 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1376 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1377 | # CONFIG_CRYPTO_AES is not set | 1418 | # CONFIG_CRYPTO_AES is not set |
| 1419 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1420 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1421 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1422 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1378 | # CONFIG_CRYPTO_CAST5 is not set | 1423 | # CONFIG_CRYPTO_CAST5 is not set |
| 1379 | # CONFIG_CRYPTO_CAST6 is not set | 1424 | # CONFIG_CRYPTO_CAST6 is not set |
| 1380 | # CONFIG_CRYPTO_TEA is not set | 1425 | CONFIG_CRYPTO_DES=y |
| 1381 | # CONFIG_CRYPTO_ARC4 is not set | 1426 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1382 | # CONFIG_CRYPTO_KHAZAD is not set | 1427 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1383 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1384 | # CONFIG_CRYPTO_SEED is not set | ||
| 1385 | # CONFIG_CRYPTO_SALSA20 is not set | 1428 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1429 | # CONFIG_CRYPTO_SEED is not set | ||
| 1430 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1431 | # CONFIG_CRYPTO_TEA is not set | ||
| 1432 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1433 | |||
| 1434 | # | ||
| 1435 | # Compression | ||
| 1436 | # | ||
| 1386 | # CONFIG_CRYPTO_DEFLATE is not set | 1437 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1387 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1388 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1389 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1390 | # CONFIG_CRYPTO_TEST is not set | ||
| 1391 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1392 | # CONFIG_CRYPTO_LZO is not set | 1438 | # CONFIG_CRYPTO_LZO is not set |
| 1393 | CONFIG_CRYPTO_HW=y | 1439 | CONFIG_CRYPTO_HW=y |
| 1394 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1440 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1395 | # CONFIG_PPC_CLOCK is not set | 1441 | # CONFIG_PPC_CLOCK is not set |
| 1442 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig b/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig index 1f57456dd81e..9bc3a03ae264 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:15 2008 | 4 | # Mon Jun 9 08:52:21 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | # CONFIG_KALLSYMS is not set | 92 | # CONFIG_KALLSYMS is not set |
| 90 | CONFIG_HOTPLUG=y | 93 | CONFIG_HOTPLUG=y |
| 91 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
| @@ -110,12 +113,14 @@ CONFIG_SLUB=y | |||
| 110 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
| 111 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
| 112 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 113 | CONFIG_PROC_PAGE_MONITOR=y | 117 | CONFIG_PROC_PAGE_MONITOR=y |
| 114 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
| 115 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
| 116 | # CONFIG_TINY_SHMEM is not set | 120 | # CONFIG_TINY_SHMEM is not set |
| 117 | CONFIG_BASE_SMALL=0 | 121 | CONFIG_BASE_SMALL=0 |
| 118 | CONFIG_MODULES=y | 122 | CONFIG_MODULES=y |
| 123 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 119 | CONFIG_MODULE_UNLOAD=y | 124 | CONFIG_MODULE_UNLOAD=y |
| 120 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 121 | # CONFIG_MODVERSIONS is not set | 126 | # CONFIG_MODVERSIONS is not set |
| @@ -210,11 +215,13 @@ CONFIG_FLATMEM=y | |||
| 210 | CONFIG_FLAT_NODE_MEM_MAP=y | 215 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 211 | # CONFIG_SPARSEMEM_STATIC is not set | 216 | # CONFIG_SPARSEMEM_STATIC is not set |
| 212 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 213 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 214 | # CONFIG_RESOURCES_64BIT is not set | 220 | # CONFIG_RESOURCES_64BIT is not set |
| 215 | CONFIG_ZONE_DMA_FLAG=1 | 221 | CONFIG_ZONE_DMA_FLAG=1 |
| 216 | CONFIG_BOUNCE=y | 222 | CONFIG_BOUNCE=y |
| 217 | CONFIG_VIRT_TO_BUS=y | 223 | CONFIG_VIRT_TO_BUS=y |
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 218 | CONFIG_PROC_DEVICETREE=y | 225 | CONFIG_PROC_DEVICETREE=y |
| 219 | # CONFIG_CMDLINE_BOOL is not set | 226 | # CONFIG_CMDLINE_BOOL is not set |
| 220 | # CONFIG_PM is not set | 227 | # CONFIG_PM is not set |
| @@ -238,6 +245,7 @@ CONFIG_PCI_LEGACY=y | |||
| 238 | # CONFIG_PCI_DEBUG is not set | 245 | # CONFIG_PCI_DEBUG is not set |
| 239 | # CONFIG_PCCARD is not set | 246 | # CONFIG_PCCARD is not set |
| 240 | # CONFIG_HOTPLUG_PCI is not set | 247 | # CONFIG_HOTPLUG_PCI is not set |
| 248 | # CONFIG_HAS_RAPIDIO is not set | ||
| 241 | 249 | ||
| 242 | # | 250 | # |
| 243 | # Advanced setup | 251 | # Advanced setup |
| @@ -247,11 +255,11 @@ CONFIG_PCI_LEGACY=y | |||
| 247 | # | 255 | # |
| 248 | # Default settings for advanced configuration options are used | 256 | # Default settings for advanced configuration options are used |
| 249 | # | 257 | # |
| 250 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 251 | CONFIG_LOWMEM_SIZE=0x30000000 | 258 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 259 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 252 | CONFIG_KERNEL_START=0xc0000000 | 260 | CONFIG_KERNEL_START=0xc0000000 |
| 261 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 253 | CONFIG_TASK_SIZE=0xc0000000 | 262 | CONFIG_TASK_SIZE=0xc0000000 |
| 254 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 255 | 263 | ||
| 256 | # | 264 | # |
| 257 | # Networking | 265 | # Networking |
| @@ -299,8 +307,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 299 | CONFIG_DEFAULT_TCP_CONG="cubic" | 307 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 300 | # CONFIG_TCP_MD5SIG is not set | 308 | # CONFIG_TCP_MD5SIG is not set |
| 301 | # CONFIG_IPV6 is not set | 309 | # CONFIG_IPV6 is not set |
| 302 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 303 | # CONFIG_INET6_TUNNEL is not set | ||
| 304 | # CONFIG_NETWORK_SECMARK is not set | 310 | # CONFIG_NETWORK_SECMARK is not set |
| 305 | # CONFIG_NETFILTER is not set | 311 | # CONFIG_NETFILTER is not set |
| 306 | # CONFIG_IP_DCCP is not set | 312 | # CONFIG_IP_DCCP is not set |
| @@ -361,6 +367,7 @@ CONFIG_MTD_PARTITIONS=y | |||
| 361 | # CONFIG_MTD_REDBOOT_PARTS is not set | 367 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 362 | # CONFIG_MTD_CMDLINE_PARTS is not set | 368 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 363 | # CONFIG_MTD_OF_PARTS is not set | 369 | # CONFIG_MTD_OF_PARTS is not set |
| 370 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 364 | 371 | ||
| 365 | # | 372 | # |
| 366 | # User Modules And Translation Layers | 373 | # User Modules And Translation Layers |
| @@ -444,6 +451,7 @@ CONFIG_MTD_NAND_IDS=y | |||
| 444 | # | 451 | # |
| 445 | # CONFIG_MTD_UBI is not set | 452 | # CONFIG_MTD_UBI is not set |
| 446 | CONFIG_OF_DEVICE=y | 453 | CONFIG_OF_DEVICE=y |
| 454 | CONFIG_OF_I2C=y | ||
| 447 | # CONFIG_PARPORT is not set | 455 | # CONFIG_PARPORT is not set |
| 448 | CONFIG_BLK_DEV=y | 456 | CONFIG_BLK_DEV=y |
| 449 | # CONFIG_BLK_DEV_FD is not set | 457 | # CONFIG_BLK_DEV_FD is not set |
| @@ -549,7 +557,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 549 | # CONFIG_SCSI_SRP is not set | 557 | # CONFIG_SCSI_SRP is not set |
| 550 | CONFIG_ATA=y | 558 | CONFIG_ATA=y |
| 551 | # CONFIG_ATA_NONSTANDARD is not set | 559 | # CONFIG_ATA_NONSTANDARD is not set |
| 560 | CONFIG_SATA_PMP=y | ||
| 552 | # CONFIG_SATA_AHCI is not set | 561 | # CONFIG_SATA_AHCI is not set |
| 562 | # CONFIG_SATA_SIL24 is not set | ||
| 563 | CONFIG_SATA_FSL=y | ||
| 564 | CONFIG_ATA_SFF=y | ||
| 553 | # CONFIG_SATA_SVW is not set | 565 | # CONFIG_SATA_SVW is not set |
| 554 | # CONFIG_ATA_PIIX is not set | 566 | # CONFIG_ATA_PIIX is not set |
| 555 | # CONFIG_SATA_MV is not set | 567 | # CONFIG_SATA_MV is not set |
| @@ -559,13 +571,11 @@ CONFIG_ATA=y | |||
| 559 | # CONFIG_SATA_PROMISE is not set | 571 | # CONFIG_SATA_PROMISE is not set |
| 560 | # CONFIG_SATA_SX4 is not set | 572 | # CONFIG_SATA_SX4 is not set |
| 561 | # CONFIG_SATA_SIL is not set | 573 | # CONFIG_SATA_SIL is not set |
| 562 | # CONFIG_SATA_SIL24 is not set | ||
| 563 | # CONFIG_SATA_SIS is not set | 574 | # CONFIG_SATA_SIS is not set |
| 564 | # CONFIG_SATA_ULI is not set | 575 | # CONFIG_SATA_ULI is not set |
| 565 | # CONFIG_SATA_VIA is not set | 576 | # CONFIG_SATA_VIA is not set |
| 566 | # CONFIG_SATA_VITESSE is not set | 577 | # CONFIG_SATA_VITESSE is not set |
| 567 | # CONFIG_SATA_INIC162X is not set | 578 | # CONFIG_SATA_INIC162X is not set |
| 568 | CONFIG_SATA_FSL=y | ||
| 569 | # CONFIG_PATA_ALI is not set | 579 | # CONFIG_PATA_ALI is not set |
| 570 | # CONFIG_PATA_AMD is not set | 580 | # CONFIG_PATA_AMD is not set |
| 571 | # CONFIG_PATA_ARTOP is not set | 581 | # CONFIG_PATA_ARTOP is not set |
| @@ -605,6 +615,7 @@ CONFIG_SATA_FSL=y | |||
| 605 | # CONFIG_PATA_VIA is not set | 615 | # CONFIG_PATA_VIA is not set |
| 606 | # CONFIG_PATA_WINBOND is not set | 616 | # CONFIG_PATA_WINBOND is not set |
| 607 | # CONFIG_PATA_PLATFORM is not set | 617 | # CONFIG_PATA_PLATFORM is not set |
| 618 | # CONFIG_PATA_SCH is not set | ||
| 608 | CONFIG_MD=y | 619 | CONFIG_MD=y |
| 609 | CONFIG_BLK_DEV_MD=y | 620 | CONFIG_BLK_DEV_MD=y |
| 610 | CONFIG_MD_LINEAR=y | 621 | CONFIG_MD_LINEAR=y |
| @@ -698,7 +709,6 @@ CONFIG_NETDEV_1000=y | |||
| 698 | # CONFIG_SIS190 is not set | 709 | # CONFIG_SIS190 is not set |
| 699 | # CONFIG_SKGE is not set | 710 | # CONFIG_SKGE is not set |
| 700 | # CONFIG_SKY2 is not set | 711 | # CONFIG_SKY2 is not set |
| 701 | # CONFIG_SK98LIN is not set | ||
| 702 | # CONFIG_VIA_VELOCITY is not set | 712 | # CONFIG_VIA_VELOCITY is not set |
| 703 | # CONFIG_TIGON3 is not set | 713 | # CONFIG_TIGON3 is not set |
| 704 | # CONFIG_BNX2 is not set | 714 | # CONFIG_BNX2 is not set |
| @@ -718,6 +728,7 @@ CONFIG_NETDEV_10000=y | |||
| 718 | # CONFIG_MLX4_CORE is not set | 728 | # CONFIG_MLX4_CORE is not set |
| 719 | # CONFIG_TEHUTI is not set | 729 | # CONFIG_TEHUTI is not set |
| 720 | # CONFIG_BNX2X is not set | 730 | # CONFIG_BNX2X is not set |
| 731 | # CONFIG_SFC is not set | ||
| 721 | # CONFIG_TR is not set | 732 | # CONFIG_TR is not set |
| 722 | 733 | ||
| 723 | # | 734 | # |
| @@ -725,6 +736,7 @@ CONFIG_NETDEV_10000=y | |||
| 725 | # | 736 | # |
| 726 | # CONFIG_WLAN_PRE80211 is not set | 737 | # CONFIG_WLAN_PRE80211 is not set |
| 727 | # CONFIG_WLAN_80211 is not set | 738 | # CONFIG_WLAN_80211 is not set |
| 739 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 728 | 740 | ||
| 729 | # | 741 | # |
| 730 | # USB Network Adapters | 742 | # USB Network Adapters |
| @@ -781,6 +793,7 @@ CONFIG_INPUT=y | |||
| 781 | # Character devices | 793 | # Character devices |
| 782 | # | 794 | # |
| 783 | # CONFIG_VT is not set | 795 | # CONFIG_VT is not set |
| 796 | CONFIG_DEVKMEM=y | ||
| 784 | # CONFIG_SERIAL_NONSTANDARD is not set | 797 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 785 | # CONFIG_NOZOMI is not set | 798 | # CONFIG_NOZOMI is not set |
| 786 | 799 | ||
| @@ -808,7 +821,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 808 | # CONFIG_IPMI_HANDLER is not set | 821 | # CONFIG_IPMI_HANDLER is not set |
| 809 | CONFIG_HW_RANDOM=y | 822 | CONFIG_HW_RANDOM=y |
| 810 | # CONFIG_NVRAM is not set | 823 | # CONFIG_NVRAM is not set |
| 811 | # CONFIG_GEN_RTC is not set | ||
| 812 | # CONFIG_R3964 is not set | 824 | # CONFIG_R3964 is not set |
| 813 | # CONFIG_APPLICOM is not set | 825 | # CONFIG_APPLICOM is not set |
| 814 | # CONFIG_RAW_DRIVER is not set | 826 | # CONFIG_RAW_DRIVER is not set |
| @@ -819,13 +831,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 819 | CONFIG_I2C_CHARDEV=y | 831 | CONFIG_I2C_CHARDEV=y |
| 820 | 832 | ||
| 821 | # | 833 | # |
| 822 | # I2C Algorithms | ||
| 823 | # | ||
| 824 | # CONFIG_I2C_ALGOBIT is not set | ||
| 825 | # CONFIG_I2C_ALGOPCF is not set | ||
| 826 | # CONFIG_I2C_ALGOPCA is not set | ||
| 827 | |||
| 828 | # | ||
| 829 | # I2C Hardware Bus support | 834 | # I2C Hardware Bus support |
| 830 | # | 835 | # |
| 831 | # CONFIG_I2C_ALI1535 is not set | 836 | # CONFIG_I2C_ALI1535 is not set |
| @@ -852,6 +857,7 @@ CONFIG_I2C_MPC=y | |||
| 852 | # CONFIG_I2C_VIA is not set | 857 | # CONFIG_I2C_VIA is not set |
| 853 | # CONFIG_I2C_VIAPRO is not set | 858 | # CONFIG_I2C_VIAPRO is not set |
| 854 | # CONFIG_I2C_VOODOO3 is not set | 859 | # CONFIG_I2C_VOODOO3 is not set |
| 860 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 855 | 861 | ||
| 856 | # | 862 | # |
| 857 | # Miscellaneous I2C Chip support | 863 | # Miscellaneous I2C Chip support |
| @@ -861,17 +867,12 @@ CONFIG_I2C_MPC=y | |||
| 861 | # CONFIG_SENSORS_PCF8574 is not set | 867 | # CONFIG_SENSORS_PCF8574 is not set |
| 862 | # CONFIG_PCF8575 is not set | 868 | # CONFIG_PCF8575 is not set |
| 863 | # CONFIG_SENSORS_PCF8591 is not set | 869 | # CONFIG_SENSORS_PCF8591 is not set |
| 864 | # CONFIG_TPS65010 is not set | ||
| 865 | # CONFIG_SENSORS_MAX6875 is not set | 870 | # CONFIG_SENSORS_MAX6875 is not set |
| 866 | # CONFIG_SENSORS_TSL2550 is not set | 871 | # CONFIG_SENSORS_TSL2550 is not set |
| 867 | # CONFIG_I2C_DEBUG_CORE is not set | 872 | # CONFIG_I2C_DEBUG_CORE is not set |
| 868 | # CONFIG_I2C_DEBUG_ALGO is not set | 873 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 869 | # CONFIG_I2C_DEBUG_BUS is not set | 874 | # CONFIG_I2C_DEBUG_BUS is not set |
| 870 | # CONFIG_I2C_DEBUG_CHIP is not set | 875 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 871 | |||
| 872 | # | ||
| 873 | # SPI support | ||
| 874 | # | ||
| 875 | CONFIG_SPI=y | 876 | CONFIG_SPI=y |
| 876 | # CONFIG_SPI_DEBUG is not set | 877 | # CONFIG_SPI_DEBUG is not set |
| 877 | CONFIG_SPI_MASTER=y | 878 | CONFIG_SPI_MASTER=y |
| @@ -976,12 +977,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 976 | # Multifunction device drivers | 977 | # Multifunction device drivers |
| 977 | # | 978 | # |
| 978 | # CONFIG_MFD_SM501 is not set | 979 | # CONFIG_MFD_SM501 is not set |
| 980 | # CONFIG_HTC_PASIC3 is not set | ||
| 979 | 981 | ||
| 980 | # | 982 | # |
| 981 | # Multimedia devices | 983 | # Multimedia devices |
| 982 | # | 984 | # |
| 985 | |||
| 986 | # | ||
| 987 | # Multimedia core support | ||
| 988 | # | ||
| 983 | # CONFIG_VIDEO_DEV is not set | 989 | # CONFIG_VIDEO_DEV is not set |
| 984 | # CONFIG_DVB_CORE is not set | 990 | # CONFIG_DVB_CORE is not set |
| 991 | # CONFIG_VIDEO_MEDIA is not set | ||
| 992 | |||
| 993 | # | ||
| 994 | # Multimedia drivers | ||
| 995 | # | ||
| 985 | CONFIG_DAB=y | 996 | CONFIG_DAB=y |
| 986 | # CONFIG_USB_DABUSB is not set | 997 | # CONFIG_USB_DABUSB is not set |
| 987 | 998 | ||
| @@ -1034,16 +1045,20 @@ CONFIG_USB_DEVICEFS=y | |||
| 1034 | CONFIG_USB_DEVICE_CLASS=y | 1045 | CONFIG_USB_DEVICE_CLASS=y |
| 1035 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1046 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1036 | # CONFIG_USB_OTG is not set | 1047 | # CONFIG_USB_OTG is not set |
| 1048 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 1049 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 1037 | 1050 | ||
| 1038 | # | 1051 | # |
| 1039 | # USB Host Controller Drivers | 1052 | # USB Host Controller Drivers |
| 1040 | # | 1053 | # |
| 1054 | # CONFIG_USB_C67X00_HCD is not set | ||
| 1041 | CONFIG_USB_EHCI_HCD=y | 1055 | CONFIG_USB_EHCI_HCD=y |
| 1042 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 1056 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 1043 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1057 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1044 | CONFIG_USB_EHCI_FSL=y | 1058 | CONFIG_USB_EHCI_FSL=y |
| 1045 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1059 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 1046 | # CONFIG_USB_ISP116X_HCD is not set | 1060 | # CONFIG_USB_ISP116X_HCD is not set |
| 1061 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 1047 | CONFIG_USB_OHCI_HCD=y | 1062 | CONFIG_USB_OHCI_HCD=y |
| 1048 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1063 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
| 1049 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | 1064 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y |
| @@ -1061,6 +1076,7 @@ CONFIG_USB_UHCI_HCD=y | |||
| 1061 | # | 1076 | # |
| 1062 | # CONFIG_USB_ACM is not set | 1077 | # CONFIG_USB_ACM is not set |
| 1063 | # CONFIG_USB_PRINTER is not set | 1078 | # CONFIG_USB_PRINTER is not set |
| 1079 | # CONFIG_USB_WDM is not set | ||
| 1064 | 1080 | ||
| 1065 | # | 1081 | # |
| 1066 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1082 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1080,7 +1096,9 @@ CONFIG_USB_STORAGE=y | |||
| 1080 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1096 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 1081 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 1097 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 1082 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1098 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1099 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
| 1083 | # CONFIG_USB_STORAGE_KARMA is not set | 1100 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1101 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 1084 | # CONFIG_USB_LIBUSUAL is not set | 1102 | # CONFIG_USB_LIBUSUAL is not set |
| 1085 | 1103 | ||
| 1086 | # | 1104 | # |
| @@ -1118,6 +1136,7 @@ CONFIG_USB_MON=y | |||
| 1118 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1136 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1119 | # CONFIG_USB_IOWARRIOR is not set | 1137 | # CONFIG_USB_IOWARRIOR is not set |
| 1120 | # CONFIG_USB_TEST is not set | 1138 | # CONFIG_USB_TEST is not set |
| 1139 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1121 | CONFIG_USB_GADGET=y | 1140 | CONFIG_USB_GADGET=y |
| 1122 | # CONFIG_USB_GADGET_DEBUG is not set | 1141 | # CONFIG_USB_GADGET_DEBUG is not set |
| 1123 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | 1142 | # CONFIG_USB_GADGET_DEBUG_FILES is not set |
| @@ -1129,6 +1148,7 @@ CONFIG_USB_GADGET_NET2280=y | |||
| 1129 | CONFIG_USB_NET2280=y | 1148 | CONFIG_USB_NET2280=y |
| 1130 | # CONFIG_USB_GADGET_PXA2XX is not set | 1149 | # CONFIG_USB_GADGET_PXA2XX is not set |
| 1131 | # CONFIG_USB_GADGET_M66592 is not set | 1150 | # CONFIG_USB_GADGET_M66592 is not set |
| 1151 | # CONFIG_USB_GADGET_PXA27X is not set | ||
| 1132 | # CONFIG_USB_GADGET_GOKU is not set | 1152 | # CONFIG_USB_GADGET_GOKU is not set |
| 1133 | # CONFIG_USB_GADGET_LH7A40X is not set | 1153 | # CONFIG_USB_GADGET_LH7A40X is not set |
| 1134 | # CONFIG_USB_GADGET_OMAP is not set | 1154 | # CONFIG_USB_GADGET_OMAP is not set |
| @@ -1147,6 +1167,7 @@ CONFIG_USB_ETH_RNDIS=y | |||
| 1147 | # CONFIG_MMC is not set | 1167 | # CONFIG_MMC is not set |
| 1148 | # CONFIG_MEMSTICK is not set | 1168 | # CONFIG_MEMSTICK is not set |
| 1149 | # CONFIG_NEW_LEDS is not set | 1169 | # CONFIG_NEW_LEDS is not set |
| 1170 | # CONFIG_ACCESSIBILITY is not set | ||
| 1150 | # CONFIG_INFINIBAND is not set | 1171 | # CONFIG_INFINIBAND is not set |
| 1151 | # CONFIG_EDAC is not set | 1172 | # CONFIG_EDAC is not set |
| 1152 | CONFIG_RTC_LIB=y | 1173 | CONFIG_RTC_LIB=y |
| @@ -1201,11 +1222,8 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1201 | # | 1222 | # |
| 1202 | # on-CPU RTC drivers | 1223 | # on-CPU RTC drivers |
| 1203 | # | 1224 | # |
| 1225 | # CONFIG_RTC_DRV_PPC is not set | ||
| 1204 | # CONFIG_DMADEVICES is not set | 1226 | # CONFIG_DMADEVICES is not set |
| 1205 | |||
| 1206 | # | ||
| 1207 | # Userspace I/O | ||
| 1208 | # | ||
| 1209 | # CONFIG_UIO is not set | 1227 | # CONFIG_UIO is not set |
| 1210 | 1228 | ||
| 1211 | # | 1229 | # |
| @@ -1225,7 +1243,6 @@ CONFIG_FS_MBCACHE=y | |||
| 1225 | # CONFIG_JFS_FS is not set | 1243 | # CONFIG_JFS_FS is not set |
| 1226 | # CONFIG_FS_POSIX_ACL is not set | 1244 | # CONFIG_FS_POSIX_ACL is not set |
| 1227 | # CONFIG_XFS_FS is not set | 1245 | # CONFIG_XFS_FS is not set |
| 1228 | # CONFIG_GFS2_FS is not set | ||
| 1229 | # CONFIG_OCFS2_FS is not set | 1246 | # CONFIG_OCFS2_FS is not set |
| 1230 | CONFIG_DNOTIFY=y | 1247 | CONFIG_DNOTIFY=y |
| 1231 | CONFIG_INOTIFY=y | 1248 | CONFIG_INOTIFY=y |
| @@ -1294,7 +1311,6 @@ CONFIG_NFS_FS=y | |||
| 1294 | CONFIG_NFS_V3=y | 1311 | CONFIG_NFS_V3=y |
| 1295 | # CONFIG_NFS_V3_ACL is not set | 1312 | # CONFIG_NFS_V3_ACL is not set |
| 1296 | CONFIG_NFS_V4=y | 1313 | CONFIG_NFS_V4=y |
| 1297 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1298 | # CONFIG_NFSD is not set | 1314 | # CONFIG_NFSD is not set |
| 1299 | CONFIG_ROOT_NFS=y | 1315 | CONFIG_ROOT_NFS=y |
| 1300 | CONFIG_LOCKD=y | 1316 | CONFIG_LOCKD=y |
| @@ -1339,6 +1355,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1339 | # Library routines | 1355 | # Library routines |
| 1340 | # | 1356 | # |
| 1341 | CONFIG_BITREVERSE=y | 1357 | CONFIG_BITREVERSE=y |
| 1358 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1342 | # CONFIG_CRC_CCITT is not set | 1359 | # CONFIG_CRC_CCITT is not set |
| 1343 | # CONFIG_CRC16 is not set | 1360 | # CONFIG_CRC16 is not set |
| 1344 | # CONFIG_CRC_ITU_T is not set | 1361 | # CONFIG_CRC_ITU_T is not set |
| @@ -1351,6 +1368,7 @@ CONFIG_PLIST=y | |||
| 1351 | CONFIG_HAS_IOMEM=y | 1368 | CONFIG_HAS_IOMEM=y |
| 1352 | CONFIG_HAS_IOPORT=y | 1369 | CONFIG_HAS_IOPORT=y |
| 1353 | CONFIG_HAS_DMA=y | 1370 | CONFIG_HAS_DMA=y |
| 1371 | CONFIG_HAVE_LMB=y | ||
| 1354 | 1372 | ||
| 1355 | # | 1373 | # |
| 1356 | # Kernel hacking | 1374 | # Kernel hacking |
| @@ -1358,6 +1376,7 @@ CONFIG_HAS_DMA=y | |||
| 1358 | # CONFIG_PRINTK_TIME is not set | 1376 | # CONFIG_PRINTK_TIME is not set |
| 1359 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1377 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1360 | CONFIG_ENABLE_MUST_CHECK=y | 1378 | CONFIG_ENABLE_MUST_CHECK=y |
| 1379 | CONFIG_FRAME_WARN=1024 | ||
| 1361 | # CONFIG_MAGIC_SYSRQ is not set | 1380 | # CONFIG_MAGIC_SYSRQ is not set |
| 1362 | # CONFIG_UNUSED_SYMBOLS is not set | 1381 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1363 | # CONFIG_DEBUG_FS is not set | 1382 | # CONFIG_DEBUG_FS is not set |
| @@ -1368,6 +1387,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1368 | CONFIG_SCHED_DEBUG=y | 1387 | CONFIG_SCHED_DEBUG=y |
| 1369 | # CONFIG_SCHEDSTATS is not set | 1388 | # CONFIG_SCHEDSTATS is not set |
| 1370 | # CONFIG_TIMER_STATS is not set | 1389 | # CONFIG_TIMER_STATS is not set |
| 1390 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1371 | # CONFIG_SLUB_DEBUG_ON is not set | 1391 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1372 | # CONFIG_SLUB_STATS is not set | 1392 | # CONFIG_SLUB_STATS is not set |
| 1373 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1393 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -1380,6 +1400,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1380 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1400 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1381 | # CONFIG_DEBUG_INFO is not set | 1401 | # CONFIG_DEBUG_INFO is not set |
| 1382 | # CONFIG_DEBUG_VM is not set | 1402 | # CONFIG_DEBUG_VM is not set |
| 1403 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1383 | # CONFIG_DEBUG_LIST is not set | 1404 | # CONFIG_DEBUG_LIST is not set |
| 1384 | # CONFIG_DEBUG_SG is not set | 1405 | # CONFIG_DEBUG_SG is not set |
| 1385 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1406 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1391,6 +1412,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1391 | # CONFIG_DEBUG_STACK_USAGE is not set | 1412 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1392 | # CONFIG_DEBUG_PAGEALLOC is not set | 1413 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1393 | # CONFIG_DEBUGGER is not set | 1414 | # CONFIG_DEBUGGER is not set |
| 1415 | # CONFIG_IRQSTACKS is not set | ||
| 1394 | # CONFIG_BDI_SWITCH is not set | 1416 | # CONFIG_BDI_SWITCH is not set |
| 1395 | # CONFIG_PPC_EARLY_DEBUG is not set | 1417 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1396 | 1418 | ||
| @@ -1401,51 +1423,81 @@ CONFIG_SCHED_DEBUG=y | |||
| 1401 | # CONFIG_SECURITY is not set | 1423 | # CONFIG_SECURITY is not set |
| 1402 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1424 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1403 | CONFIG_CRYPTO=y | 1425 | CONFIG_CRYPTO=y |
| 1426 | |||
| 1427 | # | ||
| 1428 | # Crypto core or helper | ||
| 1429 | # | ||
| 1404 | CONFIG_CRYPTO_ALGAPI=y | 1430 | CONFIG_CRYPTO_ALGAPI=y |
| 1405 | CONFIG_CRYPTO_BLKCIPHER=y | 1431 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1406 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1407 | CONFIG_CRYPTO_MANAGER=y | 1432 | CONFIG_CRYPTO_MANAGER=y |
| 1433 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1434 | # CONFIG_CRYPTO_NULL is not set | ||
| 1435 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1436 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1437 | # CONFIG_CRYPTO_TEST is not set | ||
| 1438 | |||
| 1439 | # | ||
| 1440 | # Authenticated Encryption with Associated Data | ||
| 1441 | # | ||
| 1442 | # CONFIG_CRYPTO_CCM is not set | ||
| 1443 | # CONFIG_CRYPTO_GCM is not set | ||
| 1444 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1445 | |||
| 1446 | # | ||
| 1447 | # Block modes | ||
| 1448 | # | ||
| 1449 | CONFIG_CRYPTO_CBC=y | ||
| 1450 | # CONFIG_CRYPTO_CTR is not set | ||
| 1451 | # CONFIG_CRYPTO_CTS is not set | ||
| 1452 | # CONFIG_CRYPTO_ECB is not set | ||
| 1453 | # CONFIG_CRYPTO_LRW is not set | ||
| 1454 | CONFIG_CRYPTO_PCBC=m | ||
| 1455 | # CONFIG_CRYPTO_XTS is not set | ||
| 1456 | |||
| 1457 | # | ||
| 1458 | # Hash modes | ||
| 1459 | # | ||
| 1408 | # CONFIG_CRYPTO_HMAC is not set | 1460 | # CONFIG_CRYPTO_HMAC is not set |
| 1409 | # CONFIG_CRYPTO_XCBC is not set | 1461 | # CONFIG_CRYPTO_XCBC is not set |
| 1410 | # CONFIG_CRYPTO_NULL is not set | 1462 | |
| 1463 | # | ||
| 1464 | # Digest | ||
| 1465 | # | ||
| 1466 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1411 | # CONFIG_CRYPTO_MD4 is not set | 1467 | # CONFIG_CRYPTO_MD4 is not set |
| 1412 | CONFIG_CRYPTO_MD5=y | 1468 | CONFIG_CRYPTO_MD5=y |
| 1469 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1413 | # CONFIG_CRYPTO_SHA1 is not set | 1470 | # CONFIG_CRYPTO_SHA1 is not set |
| 1414 | # CONFIG_CRYPTO_SHA256 is not set | 1471 | # CONFIG_CRYPTO_SHA256 is not set |
| 1415 | # CONFIG_CRYPTO_SHA512 is not set | 1472 | # CONFIG_CRYPTO_SHA512 is not set |
| 1416 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1417 | # CONFIG_CRYPTO_TGR192 is not set | 1473 | # CONFIG_CRYPTO_TGR192 is not set |
| 1418 | # CONFIG_CRYPTO_GF128MUL is not set | 1474 | # CONFIG_CRYPTO_WP512 is not set |
| 1419 | # CONFIG_CRYPTO_ECB is not set | 1475 | |
| 1420 | CONFIG_CRYPTO_CBC=y | 1476 | # |
| 1421 | CONFIG_CRYPTO_PCBC=m | 1477 | # Ciphers |
| 1422 | # CONFIG_CRYPTO_LRW is not set | 1478 | # |
| 1423 | # CONFIG_CRYPTO_XTS is not set | ||
| 1424 | # CONFIG_CRYPTO_CTR is not set | ||
| 1425 | # CONFIG_CRYPTO_GCM is not set | ||
| 1426 | # CONFIG_CRYPTO_CCM is not set | ||
| 1427 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1428 | CONFIG_CRYPTO_DES=y | ||
| 1429 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1430 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1431 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1432 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1433 | # CONFIG_CRYPTO_AES is not set | 1479 | # CONFIG_CRYPTO_AES is not set |
| 1480 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1481 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1482 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1483 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1434 | # CONFIG_CRYPTO_CAST5 is not set | 1484 | # CONFIG_CRYPTO_CAST5 is not set |
| 1435 | # CONFIG_CRYPTO_CAST6 is not set | 1485 | # CONFIG_CRYPTO_CAST6 is not set |
| 1436 | # CONFIG_CRYPTO_TEA is not set | 1486 | CONFIG_CRYPTO_DES=y |
| 1437 | # CONFIG_CRYPTO_ARC4 is not set | 1487 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1438 | # CONFIG_CRYPTO_KHAZAD is not set | 1488 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1439 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1440 | # CONFIG_CRYPTO_SEED is not set | ||
| 1441 | # CONFIG_CRYPTO_SALSA20 is not set | 1489 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1490 | # CONFIG_CRYPTO_SEED is not set | ||
| 1491 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1492 | # CONFIG_CRYPTO_TEA is not set | ||
| 1493 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1494 | |||
| 1495 | # | ||
| 1496 | # Compression | ||
| 1497 | # | ||
| 1442 | # CONFIG_CRYPTO_DEFLATE is not set | 1498 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1443 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1444 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1445 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1446 | # CONFIG_CRYPTO_TEST is not set | ||
| 1447 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1448 | # CONFIG_CRYPTO_LZO is not set | 1499 | # CONFIG_CRYPTO_LZO is not set |
| 1449 | CONFIG_CRYPTO_HW=y | 1500 | CONFIG_CRYPTO_HW=y |
| 1450 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1501 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1451 | # CONFIG_PPC_CLOCK is not set | 1502 | # CONFIG_PPC_CLOCK is not set |
| 1503 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/83xx/mpc832x_mds_defconfig b/arch/powerpc/configs/83xx/mpc832x_mds_defconfig index 50cceda8994f..1eca26f3659a 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.25-rc7 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 31 11:36:51 2008 | 4 | # Mon Jun 9 08:52:22 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | # CONFIG_KALLSYMS is not set | 92 | # CONFIG_KALLSYMS is not set |
| 90 | CONFIG_HOTPLUG=y | 93 | CONFIG_HOTPLUG=y |
| 91 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
| @@ -110,12 +113,14 @@ CONFIG_SLUB=y | |||
| 110 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
| 111 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
| 112 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 113 | CONFIG_PROC_PAGE_MONITOR=y | 117 | CONFIG_PROC_PAGE_MONITOR=y |
| 114 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
| 115 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
| 116 | # CONFIG_TINY_SHMEM is not set | 120 | # CONFIG_TINY_SHMEM is not set |
| 117 | CONFIG_BASE_SMALL=0 | 121 | CONFIG_BASE_SMALL=0 |
| 118 | CONFIG_MODULES=y | 122 | CONFIG_MODULES=y |
| 123 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 119 | CONFIG_MODULE_UNLOAD=y | 124 | CONFIG_MODULE_UNLOAD=y |
| 120 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 121 | # CONFIG_MODVERSIONS is not set | 126 | # CONFIG_MODVERSIONS is not set |
| @@ -212,11 +217,13 @@ CONFIG_FLATMEM=y | |||
| 212 | CONFIG_FLAT_NODE_MEM_MAP=y | 217 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 213 | # CONFIG_SPARSEMEM_STATIC is not set | 218 | # CONFIG_SPARSEMEM_STATIC is not set |
| 214 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 220 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 215 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 216 | # CONFIG_RESOURCES_64BIT is not set | 222 | # CONFIG_RESOURCES_64BIT is not set |
| 217 | CONFIG_ZONE_DMA_FLAG=1 | 223 | CONFIG_ZONE_DMA_FLAG=1 |
| 218 | CONFIG_BOUNCE=y | 224 | CONFIG_BOUNCE=y |
| 219 | CONFIG_VIRT_TO_BUS=y | 225 | CONFIG_VIRT_TO_BUS=y |
| 226 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 220 | CONFIG_PROC_DEVICETREE=y | 227 | CONFIG_PROC_DEVICETREE=y |
| 221 | # CONFIG_CMDLINE_BOOL is not set | 228 | # CONFIG_CMDLINE_BOOL is not set |
| 222 | # CONFIG_PM is not set | 229 | # CONFIG_PM is not set |
| @@ -239,6 +246,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 239 | CONFIG_PCI_LEGACY=y | 246 | CONFIG_PCI_LEGACY=y |
| 240 | # CONFIG_PCCARD is not set | 247 | # CONFIG_PCCARD is not set |
| 241 | # CONFIG_HOTPLUG_PCI is not set | 248 | # CONFIG_HOTPLUG_PCI is not set |
| 249 | # CONFIG_HAS_RAPIDIO is not set | ||
| 242 | 250 | ||
| 243 | # | 251 | # |
| 244 | # Advanced setup | 252 | # Advanced setup |
| @@ -248,11 +256,11 @@ CONFIG_PCI_LEGACY=y | |||
| 248 | # | 256 | # |
| 249 | # Default settings for advanced configuration options are used | 257 | # Default settings for advanced configuration options are used |
| 250 | # | 258 | # |
| 251 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 252 | CONFIG_LOWMEM_SIZE=0x30000000 | 259 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 260 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 253 | CONFIG_KERNEL_START=0xc0000000 | 261 | CONFIG_KERNEL_START=0xc0000000 |
| 262 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 254 | CONFIG_TASK_SIZE=0xc0000000 | 263 | CONFIG_TASK_SIZE=0xc0000000 |
| 255 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 256 | 264 | ||
| 257 | # | 265 | # |
| 258 | # Networking | 266 | # Networking |
| @@ -300,8 +308,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 300 | CONFIG_DEFAULT_TCP_CONG="cubic" | 308 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 301 | # CONFIG_TCP_MD5SIG is not set | 309 | # CONFIG_TCP_MD5SIG is not set |
| 302 | # CONFIG_IPV6 is not set | 310 | # 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 | 311 | # CONFIG_NETWORK_SECMARK is not set |
| 306 | # CONFIG_NETFILTER is not set | 312 | # CONFIG_NETFILTER is not set |
| 307 | # CONFIG_IP_DCCP is not set | 313 | # CONFIG_IP_DCCP is not set |
| @@ -355,6 +361,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 355 | # CONFIG_CONNECTOR is not set | 361 | # CONFIG_CONNECTOR is not set |
| 356 | # CONFIG_MTD is not set | 362 | # CONFIG_MTD is not set |
| 357 | CONFIG_OF_DEVICE=y | 363 | CONFIG_OF_DEVICE=y |
| 364 | CONFIG_OF_I2C=y | ||
| 358 | # CONFIG_PARPORT is not set | 365 | # CONFIG_PARPORT is not set |
| 359 | CONFIG_BLK_DEV=y | 366 | CONFIG_BLK_DEV=y |
| 360 | # CONFIG_BLK_DEV_FD is not set | 367 | # CONFIG_BLK_DEV_FD is not set |
| @@ -522,7 +529,6 @@ CONFIG_NETDEV_1000=y | |||
| 522 | # CONFIG_SIS190 is not set | 529 | # CONFIG_SIS190 is not set |
| 523 | # CONFIG_SKGE is not set | 530 | # CONFIG_SKGE is not set |
| 524 | # CONFIG_SKY2 is not set | 531 | # CONFIG_SKY2 is not set |
| 525 | # CONFIG_SK98LIN is not set | ||
| 526 | # CONFIG_VIA_VELOCITY is not set | 532 | # CONFIG_VIA_VELOCITY is not set |
| 527 | # CONFIG_TIGON3 is not set | 533 | # CONFIG_TIGON3 is not set |
| 528 | # CONFIG_BNX2 is not set | 534 | # CONFIG_BNX2 is not set |
| @@ -546,6 +552,7 @@ CONFIG_NETDEV_10000=y | |||
| 546 | # CONFIG_MLX4_CORE is not set | 552 | # CONFIG_MLX4_CORE is not set |
| 547 | # CONFIG_TEHUTI is not set | 553 | # CONFIG_TEHUTI is not set |
| 548 | # CONFIG_BNX2X is not set | 554 | # CONFIG_BNX2X is not set |
| 555 | # CONFIG_SFC is not set | ||
| 549 | # CONFIG_TR is not set | 556 | # CONFIG_TR is not set |
| 550 | 557 | ||
| 551 | # | 558 | # |
| @@ -553,6 +560,7 @@ CONFIG_NETDEV_10000=y | |||
| 553 | # | 560 | # |
| 554 | # CONFIG_WLAN_PRE80211 is not set | 561 | # CONFIG_WLAN_PRE80211 is not set |
| 555 | # CONFIG_WLAN_80211 is not set | 562 | # CONFIG_WLAN_80211 is not set |
| 563 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 556 | # CONFIG_WAN is not set | 564 | # CONFIG_WAN is not set |
| 557 | # CONFIG_FDDI is not set | 565 | # CONFIG_FDDI is not set |
| 558 | # CONFIG_HIPPI is not set | 566 | # CONFIG_HIPPI is not set |
| @@ -600,6 +608,7 @@ CONFIG_INPUT=y | |||
| 600 | # Character devices | 608 | # Character devices |
| 601 | # | 609 | # |
| 602 | # CONFIG_VT is not set | 610 | # CONFIG_VT is not set |
| 611 | CONFIG_DEVKMEM=y | ||
| 603 | # CONFIG_SERIAL_NONSTANDARD is not set | 612 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 604 | # CONFIG_NOZOMI is not set | 613 | # CONFIG_NOZOMI is not set |
| 605 | 614 | ||
| @@ -628,7 +637,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 628 | # CONFIG_IPMI_HANDLER is not set | 637 | # CONFIG_IPMI_HANDLER is not set |
| 629 | CONFIG_HW_RANDOM=y | 638 | CONFIG_HW_RANDOM=y |
| 630 | # CONFIG_NVRAM is not set | 639 | # CONFIG_NVRAM is not set |
| 631 | # CONFIG_GEN_RTC is not set | ||
| 632 | # CONFIG_R3964 is not set | 640 | # CONFIG_R3964 is not set |
| 633 | # CONFIG_APPLICOM is not set | 641 | # CONFIG_APPLICOM is not set |
| 634 | # CONFIG_RAW_DRIVER is not set | 642 | # CONFIG_RAW_DRIVER is not set |
| @@ -639,13 +647,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 639 | CONFIG_I2C_CHARDEV=y | 647 | CONFIG_I2C_CHARDEV=y |
| 640 | 648 | ||
| 641 | # | 649 | # |
| 642 | # I2C Algorithms | ||
| 643 | # | ||
| 644 | # CONFIG_I2C_ALGOBIT is not set | ||
| 645 | # CONFIG_I2C_ALGOPCF is not set | ||
| 646 | # CONFIG_I2C_ALGOPCA is not set | ||
| 647 | |||
| 648 | # | ||
| 649 | # I2C Hardware Bus support | 650 | # I2C Hardware Bus support |
| 650 | # | 651 | # |
| 651 | # CONFIG_I2C_ALI1535 is not set | 652 | # CONFIG_I2C_ALI1535 is not set |
| @@ -671,6 +672,7 @@ CONFIG_I2C_MPC=y | |||
| 671 | # CONFIG_I2C_VIA is not set | 672 | # CONFIG_I2C_VIA is not set |
| 672 | # CONFIG_I2C_VIAPRO is not set | 673 | # CONFIG_I2C_VIAPRO is not set |
| 673 | # CONFIG_I2C_VOODOO3 is not set | 674 | # CONFIG_I2C_VOODOO3 is not set |
| 675 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 674 | 676 | ||
| 675 | # | 677 | # |
| 676 | # Miscellaneous I2C Chip support | 678 | # Miscellaneous I2C Chip support |
| @@ -680,19 +682,13 @@ CONFIG_I2C_MPC=y | |||
| 680 | # CONFIG_SENSORS_PCF8574 is not set | 682 | # CONFIG_SENSORS_PCF8574 is not set |
| 681 | # CONFIG_PCF8575 is not set | 683 | # CONFIG_PCF8575 is not set |
| 682 | # CONFIG_SENSORS_PCF8591 is not set | 684 | # CONFIG_SENSORS_PCF8591 is not set |
| 683 | # CONFIG_TPS65010 is not set | ||
| 684 | # CONFIG_SENSORS_MAX6875 is not set | 685 | # CONFIG_SENSORS_MAX6875 is not set |
| 685 | # CONFIG_SENSORS_TSL2550 is not set | 686 | # CONFIG_SENSORS_TSL2550 is not set |
| 686 | # CONFIG_I2C_DEBUG_CORE is not set | 687 | # CONFIG_I2C_DEBUG_CORE is not set |
| 687 | # CONFIG_I2C_DEBUG_ALGO is not set | 688 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 688 | # CONFIG_I2C_DEBUG_BUS is not set | 689 | # CONFIG_I2C_DEBUG_BUS is not set |
| 689 | # CONFIG_I2C_DEBUG_CHIP is not set | 690 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 690 | |||
| 691 | # | ||
| 692 | # SPI support | ||
| 693 | # | ||
| 694 | # CONFIG_SPI is not set | 691 | # CONFIG_SPI is not set |
| 695 | # CONFIG_SPI_MASTER is not set | ||
| 696 | # CONFIG_W1 is not set | 692 | # CONFIG_W1 is not set |
| 697 | # CONFIG_POWER_SUPPLY is not set | 693 | # CONFIG_POWER_SUPPLY is not set |
| 698 | CONFIG_HWMON=y | 694 | CONFIG_HWMON=y |
| @@ -775,12 +771,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 775 | # Multifunction device drivers | 771 | # Multifunction device drivers |
| 776 | # | 772 | # |
| 777 | # CONFIG_MFD_SM501 is not set | 773 | # CONFIG_MFD_SM501 is not set |
| 774 | # CONFIG_HTC_PASIC3 is not set | ||
| 778 | 775 | ||
| 779 | # | 776 | # |
| 780 | # Multimedia devices | 777 | # Multimedia devices |
| 781 | # | 778 | # |
| 779 | |||
| 780 | # | ||
| 781 | # Multimedia core support | ||
| 782 | # | ||
| 782 | # CONFIG_VIDEO_DEV is not set | 783 | # CONFIG_VIDEO_DEV is not set |
| 783 | # CONFIG_DVB_CORE is not set | 784 | # CONFIG_DVB_CORE is not set |
| 785 | # CONFIG_VIDEO_MEDIA is not set | ||
| 786 | |||
| 787 | # | ||
| 788 | # Multimedia drivers | ||
| 789 | # | ||
| 784 | CONFIG_DAB=y | 790 | CONFIG_DAB=y |
| 785 | 791 | ||
| 786 | # | 792 | # |
| @@ -811,6 +817,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 811 | CONFIG_USB_ARCH_HAS_OHCI=y | 817 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 812 | CONFIG_USB_ARCH_HAS_EHCI=y | 818 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 813 | # CONFIG_USB is not set | 819 | # CONFIG_USB is not set |
| 820 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 821 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 814 | 822 | ||
| 815 | # | 823 | # |
| 816 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 824 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -819,6 +827,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 819 | # CONFIG_MMC is not set | 827 | # CONFIG_MMC is not set |
| 820 | # CONFIG_MEMSTICK is not set | 828 | # CONFIG_MEMSTICK is not set |
| 821 | # CONFIG_NEW_LEDS is not set | 829 | # CONFIG_NEW_LEDS is not set |
| 830 | # CONFIG_ACCESSIBILITY is not set | ||
| 822 | # CONFIG_INFINIBAND is not set | 831 | # CONFIG_INFINIBAND is not set |
| 823 | # CONFIG_EDAC is not set | 832 | # CONFIG_EDAC is not set |
| 824 | CONFIG_RTC_LIB=y | 833 | CONFIG_RTC_LIB=y |
| @@ -870,11 +879,8 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 870 | # | 879 | # |
| 871 | # on-CPU RTC drivers | 880 | # on-CPU RTC drivers |
| 872 | # | 881 | # |
| 882 | # CONFIG_RTC_DRV_PPC is not set | ||
| 873 | # CONFIG_DMADEVICES is not set | 883 | # CONFIG_DMADEVICES is not set |
| 874 | |||
| 875 | # | ||
| 876 | # Userspace I/O | ||
| 877 | # | ||
| 878 | # CONFIG_UIO is not set | 884 | # CONFIG_UIO is not set |
| 879 | 885 | ||
| 880 | # | 886 | # |
| @@ -894,7 +900,6 @@ CONFIG_FS_MBCACHE=y | |||
| 894 | # CONFIG_JFS_FS is not set | 900 | # CONFIG_JFS_FS is not set |
| 895 | # CONFIG_FS_POSIX_ACL is not set | 901 | # CONFIG_FS_POSIX_ACL is not set |
| 896 | # CONFIG_XFS_FS is not set | 902 | # CONFIG_XFS_FS is not set |
| 897 | # CONFIG_GFS2_FS is not set | ||
| 898 | # CONFIG_OCFS2_FS is not set | 903 | # CONFIG_OCFS2_FS is not set |
| 899 | CONFIG_DNOTIFY=y | 904 | CONFIG_DNOTIFY=y |
| 900 | CONFIG_INOTIFY=y | 905 | CONFIG_INOTIFY=y |
| @@ -952,7 +957,6 @@ CONFIG_NFS_FS=y | |||
| 952 | CONFIG_NFS_V3=y | 957 | CONFIG_NFS_V3=y |
| 953 | # CONFIG_NFS_V3_ACL is not set | 958 | # CONFIG_NFS_V3_ACL is not set |
| 954 | CONFIG_NFS_V4=y | 959 | CONFIG_NFS_V4=y |
| 955 | # CONFIG_NFS_DIRECTIO is not set | ||
| 956 | # CONFIG_NFSD is not set | 960 | # CONFIG_NFSD is not set |
| 957 | CONFIG_ROOT_NFS=y | 961 | CONFIG_ROOT_NFS=y |
| 958 | CONFIG_LOCKD=y | 962 | CONFIG_LOCKD=y |
| @@ -995,6 +999,7 @@ CONFIG_UCC=y | |||
| 995 | # Library routines | 999 | # Library routines |
| 996 | # | 1000 | # |
| 997 | CONFIG_BITREVERSE=y | 1001 | CONFIG_BITREVERSE=y |
| 1002 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 998 | # CONFIG_CRC_CCITT is not set | 1003 | # CONFIG_CRC_CCITT is not set |
| 999 | # CONFIG_CRC16 is not set | 1004 | # CONFIG_CRC16 is not set |
| 1000 | # CONFIG_CRC_ITU_T is not set | 1005 | # CONFIG_CRC_ITU_T is not set |
| @@ -1005,6 +1010,7 @@ CONFIG_PLIST=y | |||
| 1005 | CONFIG_HAS_IOMEM=y | 1010 | CONFIG_HAS_IOMEM=y |
| 1006 | CONFIG_HAS_IOPORT=y | 1011 | CONFIG_HAS_IOPORT=y |
| 1007 | CONFIG_HAS_DMA=y | 1012 | CONFIG_HAS_DMA=y |
| 1013 | CONFIG_HAVE_LMB=y | ||
| 1008 | 1014 | ||
| 1009 | # | 1015 | # |
| 1010 | # Kernel hacking | 1016 | # Kernel hacking |
| @@ -1012,6 +1018,7 @@ CONFIG_HAS_DMA=y | |||
| 1012 | # CONFIG_PRINTK_TIME is not set | 1018 | # CONFIG_PRINTK_TIME is not set |
| 1013 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1019 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1014 | CONFIG_ENABLE_MUST_CHECK=y | 1020 | CONFIG_ENABLE_MUST_CHECK=y |
| 1021 | CONFIG_FRAME_WARN=1024 | ||
| 1015 | # CONFIG_MAGIC_SYSRQ is not set | 1022 | # CONFIG_MAGIC_SYSRQ is not set |
| 1016 | # CONFIG_UNUSED_SYMBOLS is not set | 1023 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1017 | # CONFIG_DEBUG_FS is not set | 1024 | # CONFIG_DEBUG_FS is not set |
| @@ -1021,6 +1028,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1021 | # CONFIG_SLUB_STATS is not set | 1028 | # CONFIG_SLUB_STATS is not set |
| 1022 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1029 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1023 | # CONFIG_SAMPLES is not set | 1030 | # CONFIG_SAMPLES is not set |
| 1031 | # CONFIG_IRQSTACKS is not set | ||
| 1024 | # CONFIG_PPC_EARLY_DEBUG is not set | 1032 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1025 | 1033 | ||
| 1026 | # | 1034 | # |
| @@ -1030,52 +1038,82 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1030 | # CONFIG_SECURITY is not set | 1038 | # CONFIG_SECURITY is not set |
| 1031 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1039 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1032 | CONFIG_CRYPTO=y | 1040 | CONFIG_CRYPTO=y |
| 1041 | |||
| 1042 | # | ||
| 1043 | # Crypto core or helper | ||
| 1044 | # | ||
| 1033 | CONFIG_CRYPTO_ALGAPI=y | 1045 | CONFIG_CRYPTO_ALGAPI=y |
| 1034 | CONFIG_CRYPTO_BLKCIPHER=y | 1046 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1035 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1036 | CONFIG_CRYPTO_MANAGER=y | 1047 | CONFIG_CRYPTO_MANAGER=y |
| 1048 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1049 | # CONFIG_CRYPTO_NULL is not set | ||
| 1050 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1051 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1052 | # CONFIG_CRYPTO_TEST is not set | ||
| 1053 | |||
| 1054 | # | ||
| 1055 | # Authenticated Encryption with Associated Data | ||
| 1056 | # | ||
| 1057 | # CONFIG_CRYPTO_CCM is not set | ||
| 1058 | # CONFIG_CRYPTO_GCM is not set | ||
| 1059 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1060 | |||
| 1061 | # | ||
| 1062 | # Block modes | ||
| 1063 | # | ||
| 1064 | CONFIG_CRYPTO_CBC=y | ||
| 1065 | # CONFIG_CRYPTO_CTR is not set | ||
| 1066 | # CONFIG_CRYPTO_CTS is not set | ||
| 1067 | CONFIG_CRYPTO_ECB=m | ||
| 1068 | # CONFIG_CRYPTO_LRW is not set | ||
| 1069 | CONFIG_CRYPTO_PCBC=m | ||
| 1070 | # CONFIG_CRYPTO_XTS is not set | ||
| 1071 | |||
| 1072 | # | ||
| 1073 | # Hash modes | ||
| 1074 | # | ||
| 1037 | # CONFIG_CRYPTO_HMAC is not set | 1075 | # CONFIG_CRYPTO_HMAC is not set |
| 1038 | # CONFIG_CRYPTO_XCBC is not set | 1076 | # CONFIG_CRYPTO_XCBC is not set |
| 1039 | # CONFIG_CRYPTO_NULL is not set | 1077 | |
| 1078 | # | ||
| 1079 | # Digest | ||
| 1080 | # | ||
| 1081 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1040 | # CONFIG_CRYPTO_MD4 is not set | 1082 | # CONFIG_CRYPTO_MD4 is not set |
| 1041 | CONFIG_CRYPTO_MD5=y | 1083 | CONFIG_CRYPTO_MD5=y |
| 1084 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1042 | # CONFIG_CRYPTO_SHA1 is not set | 1085 | # CONFIG_CRYPTO_SHA1 is not set |
| 1043 | # CONFIG_CRYPTO_SHA256 is not set | 1086 | # CONFIG_CRYPTO_SHA256 is not set |
| 1044 | # CONFIG_CRYPTO_SHA512 is not set | 1087 | # CONFIG_CRYPTO_SHA512 is not set |
| 1045 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1046 | # CONFIG_CRYPTO_TGR192 is not set | 1088 | # CONFIG_CRYPTO_TGR192 is not set |
| 1047 | # CONFIG_CRYPTO_GF128MUL is not set | 1089 | # CONFIG_CRYPTO_WP512 is not set |
| 1048 | CONFIG_CRYPTO_ECB=m | 1090 | |
| 1049 | CONFIG_CRYPTO_CBC=y | 1091 | # |
| 1050 | CONFIG_CRYPTO_PCBC=m | 1092 | # Ciphers |
| 1051 | # CONFIG_CRYPTO_LRW is not set | 1093 | # |
| 1052 | # CONFIG_CRYPTO_XTS is not set | ||
| 1053 | # CONFIG_CRYPTO_CTR is not set | ||
| 1054 | # CONFIG_CRYPTO_GCM is not set | ||
| 1055 | # CONFIG_CRYPTO_CCM is not set | ||
| 1056 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1057 | CONFIG_CRYPTO_DES=y | ||
| 1058 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1059 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1060 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1061 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1062 | # CONFIG_CRYPTO_AES is not set | 1094 | # CONFIG_CRYPTO_AES is not set |
| 1095 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1096 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1097 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1098 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1063 | # CONFIG_CRYPTO_CAST5 is not set | 1099 | # CONFIG_CRYPTO_CAST5 is not set |
| 1064 | # CONFIG_CRYPTO_CAST6 is not set | 1100 | # CONFIG_CRYPTO_CAST6 is not set |
| 1065 | # CONFIG_CRYPTO_TEA is not set | 1101 | CONFIG_CRYPTO_DES=y |
| 1066 | # CONFIG_CRYPTO_ARC4 is not set | 1102 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1067 | # CONFIG_CRYPTO_KHAZAD is not set | 1103 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1068 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1069 | # CONFIG_CRYPTO_SEED is not set | ||
| 1070 | # CONFIG_CRYPTO_SALSA20 is not set | 1104 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1105 | # CONFIG_CRYPTO_SEED is not set | ||
| 1106 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1107 | # CONFIG_CRYPTO_TEA is not set | ||
| 1108 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1109 | |||
| 1110 | # | ||
| 1111 | # Compression | ||
| 1112 | # | ||
| 1071 | # CONFIG_CRYPTO_DEFLATE is not set | 1113 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1072 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1073 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1074 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1075 | # CONFIG_CRYPTO_TEST is not set | ||
| 1076 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1077 | # CONFIG_CRYPTO_LZO is not set | 1114 | # CONFIG_CRYPTO_LZO is not set |
| 1078 | CONFIG_CRYPTO_HW=y | 1115 | CONFIG_CRYPTO_HW=y |
| 1079 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1116 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1080 | # CONFIG_PPC_CLOCK is not set | 1117 | # CONFIG_PPC_CLOCK is not set |
| 1081 | CONFIG_PPC_LIB_RHEAP=y | 1118 | CONFIG_PPC_LIB_RHEAP=y |
| 1119 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig b/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig index ac913025713e..de95d327463c 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:16 2008 | 4 | # Mon Jun 9 08:52:24 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | # CONFIG_KALLSYMS is not set | 92 | # CONFIG_KALLSYMS is not set |
| 90 | CONFIG_HOTPLUG=y | 93 | CONFIG_HOTPLUG=y |
| 91 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
| @@ -110,12 +113,14 @@ CONFIG_SLUB=y | |||
| 110 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
| 111 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
| 112 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 113 | CONFIG_PROC_PAGE_MONITOR=y | 117 | CONFIG_PROC_PAGE_MONITOR=y |
| 114 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
| 115 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
| 116 | # CONFIG_TINY_SHMEM is not set | 120 | # CONFIG_TINY_SHMEM is not set |
| 117 | CONFIG_BASE_SMALL=0 | 121 | CONFIG_BASE_SMALL=0 |
| 118 | CONFIG_MODULES=y | 122 | CONFIG_MODULES=y |
| 123 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 119 | CONFIG_MODULE_UNLOAD=y | 124 | CONFIG_MODULE_UNLOAD=y |
| 120 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 121 | # CONFIG_MODVERSIONS is not set | 126 | # CONFIG_MODVERSIONS is not set |
| @@ -212,11 +217,13 @@ CONFIG_FLATMEM=y | |||
| 212 | CONFIG_FLAT_NODE_MEM_MAP=y | 217 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 213 | # CONFIG_SPARSEMEM_STATIC is not set | 218 | # CONFIG_SPARSEMEM_STATIC is not set |
| 214 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 220 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 215 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 216 | # CONFIG_RESOURCES_64BIT is not set | 222 | # CONFIG_RESOURCES_64BIT is not set |
| 217 | CONFIG_ZONE_DMA_FLAG=1 | 223 | CONFIG_ZONE_DMA_FLAG=1 |
| 218 | CONFIG_BOUNCE=y | 224 | CONFIG_BOUNCE=y |
| 219 | CONFIG_VIRT_TO_BUS=y | 225 | CONFIG_VIRT_TO_BUS=y |
| 226 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 220 | CONFIG_PROC_DEVICETREE=y | 227 | CONFIG_PROC_DEVICETREE=y |
| 221 | # CONFIG_CMDLINE_BOOL is not set | 228 | # CONFIG_CMDLINE_BOOL is not set |
| 222 | # CONFIG_PM is not set | 229 | # CONFIG_PM is not set |
| @@ -239,6 +246,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 239 | CONFIG_PCI_LEGACY=y | 246 | CONFIG_PCI_LEGACY=y |
| 240 | # CONFIG_PCCARD is not set | 247 | # CONFIG_PCCARD is not set |
| 241 | # CONFIG_HOTPLUG_PCI is not set | 248 | # CONFIG_HOTPLUG_PCI is not set |
| 249 | # CONFIG_HAS_RAPIDIO is not set | ||
| 242 | 250 | ||
| 243 | # | 251 | # |
| 244 | # Advanced setup | 252 | # Advanced setup |
| @@ -248,11 +256,11 @@ CONFIG_PCI_LEGACY=y | |||
| 248 | # | 256 | # |
| 249 | # Default settings for advanced configuration options are used | 257 | # Default settings for advanced configuration options are used |
| 250 | # | 258 | # |
| 251 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 252 | CONFIG_LOWMEM_SIZE=0x30000000 | 259 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 260 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 253 | CONFIG_KERNEL_START=0xc0000000 | 261 | CONFIG_KERNEL_START=0xc0000000 |
| 262 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 254 | CONFIG_TASK_SIZE=0xc0000000 | 263 | CONFIG_TASK_SIZE=0xc0000000 |
| 255 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 256 | 264 | ||
| 257 | # | 265 | # |
| 258 | # Networking | 266 | # Networking |
| @@ -300,8 +308,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 300 | CONFIG_DEFAULT_TCP_CONG="cubic" | 308 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 301 | # CONFIG_TCP_MD5SIG is not set | 309 | # CONFIG_TCP_MD5SIG is not set |
| 302 | # CONFIG_IPV6 is not set | 310 | # 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 | 311 | # CONFIG_NETWORK_SECMARK is not set |
| 306 | # CONFIG_NETFILTER is not set | 312 | # CONFIG_NETFILTER is not set |
| 307 | # CONFIG_IP_DCCP is not set | 313 | # CONFIG_IP_DCCP is not set |
| @@ -355,6 +361,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 355 | # CONFIG_CONNECTOR is not set | 361 | # CONFIG_CONNECTOR is not set |
| 356 | # CONFIG_MTD is not set | 362 | # CONFIG_MTD is not set |
| 357 | CONFIG_OF_DEVICE=y | 363 | CONFIG_OF_DEVICE=y |
| 364 | CONFIG_OF_I2C=y | ||
| 358 | # CONFIG_PARPORT is not set | 365 | # CONFIG_PARPORT is not set |
| 359 | CONFIG_BLK_DEV=y | 366 | CONFIG_BLK_DEV=y |
| 360 | # CONFIG_BLK_DEV_FD is not set | 367 | # CONFIG_BLK_DEV_FD is not set |
| @@ -526,7 +533,6 @@ CONFIG_E1000=y | |||
| 526 | # CONFIG_SIS190 is not set | 533 | # CONFIG_SIS190 is not set |
| 527 | # CONFIG_SKGE is not set | 534 | # CONFIG_SKGE is not set |
| 528 | # CONFIG_SKY2 is not set | 535 | # CONFIG_SKY2 is not set |
| 529 | # CONFIG_SK98LIN is not set | ||
| 530 | # CONFIG_VIA_VELOCITY is not set | 536 | # CONFIG_VIA_VELOCITY is not set |
| 531 | # CONFIG_TIGON3 is not set | 537 | # CONFIG_TIGON3 is not set |
| 532 | # CONFIG_BNX2 is not set | 538 | # CONFIG_BNX2 is not set |
| @@ -550,6 +556,7 @@ CONFIG_NETDEV_10000=y | |||
| 550 | # CONFIG_MLX4_CORE is not set | 556 | # CONFIG_MLX4_CORE is not set |
| 551 | # CONFIG_TEHUTI is not set | 557 | # CONFIG_TEHUTI is not set |
| 552 | # CONFIG_BNX2X is not set | 558 | # CONFIG_BNX2X is not set |
| 559 | # CONFIG_SFC is not set | ||
| 553 | # CONFIG_TR is not set | 560 | # CONFIG_TR is not set |
| 554 | 561 | ||
| 555 | # | 562 | # |
| @@ -557,6 +564,7 @@ CONFIG_NETDEV_10000=y | |||
| 557 | # | 564 | # |
| 558 | # CONFIG_WLAN_PRE80211 is not set | 565 | # CONFIG_WLAN_PRE80211 is not set |
| 559 | # CONFIG_WLAN_80211 is not set | 566 | # CONFIG_WLAN_80211 is not set |
| 567 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 560 | 568 | ||
| 561 | # | 569 | # |
| 562 | # USB Network Adapters | 570 | # USB Network Adapters |
| @@ -613,6 +621,7 @@ CONFIG_INPUT=y | |||
| 613 | # Character devices | 621 | # Character devices |
| 614 | # | 622 | # |
| 615 | # CONFIG_VT is not set | 623 | # CONFIG_VT is not set |
| 624 | CONFIG_DEVKMEM=y | ||
| 616 | # CONFIG_SERIAL_NONSTANDARD is not set | 625 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 617 | # CONFIG_NOZOMI is not set | 626 | # CONFIG_NOZOMI is not set |
| 618 | 627 | ||
| @@ -653,13 +662,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 653 | CONFIG_I2C_CHARDEV=y | 662 | CONFIG_I2C_CHARDEV=y |
| 654 | 663 | ||
| 655 | # | 664 | # |
| 656 | # I2C Algorithms | ||
| 657 | # | ||
| 658 | # CONFIG_I2C_ALGOBIT is not set | ||
| 659 | # CONFIG_I2C_ALGOPCF is not set | ||
| 660 | # CONFIG_I2C_ALGOPCA is not set | ||
| 661 | |||
| 662 | # | ||
| 663 | # I2C Hardware Bus support | 665 | # I2C Hardware Bus support |
| 664 | # | 666 | # |
| 665 | # CONFIG_I2C_ALI1535 is not set | 667 | # CONFIG_I2C_ALI1535 is not set |
| @@ -686,6 +688,7 @@ CONFIG_I2C_MPC=y | |||
| 686 | # CONFIG_I2C_VIA is not set | 688 | # CONFIG_I2C_VIA is not set |
| 687 | # CONFIG_I2C_VIAPRO is not set | 689 | # CONFIG_I2C_VIAPRO is not set |
| 688 | # CONFIG_I2C_VOODOO3 is not set | 690 | # CONFIG_I2C_VOODOO3 is not set |
| 691 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 689 | 692 | ||
| 690 | # | 693 | # |
| 691 | # Miscellaneous I2C Chip support | 694 | # Miscellaneous I2C Chip support |
| @@ -695,17 +698,12 @@ CONFIG_I2C_MPC=y | |||
| 695 | # CONFIG_SENSORS_PCF8574 is not set | 698 | # CONFIG_SENSORS_PCF8574 is not set |
| 696 | # CONFIG_PCF8575 is not set | 699 | # CONFIG_PCF8575 is not set |
| 697 | # CONFIG_SENSORS_PCF8591 is not set | 700 | # CONFIG_SENSORS_PCF8591 is not set |
| 698 | # CONFIG_TPS65010 is not set | ||
| 699 | # CONFIG_SENSORS_MAX6875 is not set | 701 | # CONFIG_SENSORS_MAX6875 is not set |
| 700 | # CONFIG_SENSORS_TSL2550 is not set | 702 | # CONFIG_SENSORS_TSL2550 is not set |
| 701 | # CONFIG_I2C_DEBUG_CORE is not set | 703 | # CONFIG_I2C_DEBUG_CORE is not set |
| 702 | # CONFIG_I2C_DEBUG_ALGO is not set | 704 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 703 | # CONFIG_I2C_DEBUG_BUS is not set | 705 | # CONFIG_I2C_DEBUG_BUS is not set |
| 704 | # CONFIG_I2C_DEBUG_CHIP is not set | 706 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 705 | |||
| 706 | # | ||
| 707 | # SPI support | ||
| 708 | # | ||
| 709 | CONFIG_SPI=y | 707 | CONFIG_SPI=y |
| 710 | CONFIG_SPI_MASTER=y | 708 | CONFIG_SPI_MASTER=y |
| 711 | 709 | ||
| @@ -809,12 +807,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 809 | # Multifunction device drivers | 807 | # Multifunction device drivers |
| 810 | # | 808 | # |
| 811 | # CONFIG_MFD_SM501 is not set | 809 | # CONFIG_MFD_SM501 is not set |
| 810 | # CONFIG_HTC_PASIC3 is not set | ||
| 812 | 811 | ||
| 813 | # | 812 | # |
| 814 | # Multimedia devices | 813 | # Multimedia devices |
| 815 | # | 814 | # |
| 815 | |||
| 816 | # | ||
| 817 | # Multimedia core support | ||
| 818 | # | ||
| 816 | # CONFIG_VIDEO_DEV is not set | 819 | # CONFIG_VIDEO_DEV is not set |
| 817 | # CONFIG_DVB_CORE is not set | 820 | # CONFIG_DVB_CORE is not set |
| 821 | # CONFIG_VIDEO_MEDIA is not set | ||
| 822 | |||
| 823 | # | ||
| 824 | # Multimedia drivers | ||
| 825 | # | ||
| 818 | CONFIG_DAB=y | 826 | CONFIG_DAB=y |
| 819 | # CONFIG_USB_DABUSB is not set | 827 | # CONFIG_USB_DABUSB is not set |
| 820 | 828 | ||
| @@ -867,16 +875,20 @@ CONFIG_USB_DEVICEFS=y | |||
| 867 | CONFIG_USB_DEVICE_CLASS=y | 875 | CONFIG_USB_DEVICE_CLASS=y |
| 868 | # CONFIG_USB_DYNAMIC_MINORS is not set | 876 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 869 | # CONFIG_USB_OTG is not set | 877 | # CONFIG_USB_OTG is not set |
| 878 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 879 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 870 | 880 | ||
| 871 | # | 881 | # |
| 872 | # USB Host Controller Drivers | 882 | # USB Host Controller Drivers |
| 873 | # | 883 | # |
| 884 | # CONFIG_USB_C67X00_HCD is not set | ||
| 874 | CONFIG_USB_EHCI_HCD=y | 885 | CONFIG_USB_EHCI_HCD=y |
| 875 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 886 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 876 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 887 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 877 | # CONFIG_USB_EHCI_FSL is not set | 888 | # CONFIG_USB_EHCI_FSL is not set |
| 878 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 889 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 879 | # CONFIG_USB_ISP116X_HCD is not set | 890 | # CONFIG_USB_ISP116X_HCD is not set |
| 891 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 880 | CONFIG_USB_OHCI_HCD=y | 892 | CONFIG_USB_OHCI_HCD=y |
| 881 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 893 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
| 882 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | 894 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y |
| @@ -894,6 +906,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 894 | # | 906 | # |
| 895 | # CONFIG_USB_ACM is not set | 907 | # CONFIG_USB_ACM is not set |
| 896 | # CONFIG_USB_PRINTER is not set | 908 | # CONFIG_USB_PRINTER is not set |
| 909 | # CONFIG_USB_WDM is not set | ||
| 897 | 910 | ||
| 898 | # | 911 | # |
| 899 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 912 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -913,7 +926,9 @@ CONFIG_USB_STORAGE=y | |||
| 913 | # CONFIG_USB_STORAGE_SDDR55 is not set | 926 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 914 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 927 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 915 | # CONFIG_USB_STORAGE_ALAUDA is not set | 928 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 929 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
| 916 | # CONFIG_USB_STORAGE_KARMA is not set | 930 | # CONFIG_USB_STORAGE_KARMA is not set |
| 931 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 917 | # CONFIG_USB_LIBUSUAL is not set | 932 | # CONFIG_USB_LIBUSUAL is not set |
| 918 | 933 | ||
| 919 | # | 934 | # |
| @@ -951,6 +966,7 @@ CONFIG_USB_MON=y | |||
| 951 | # CONFIG_USB_TRANCEVIBRATOR is not set | 966 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 952 | # CONFIG_USB_IOWARRIOR is not set | 967 | # CONFIG_USB_IOWARRIOR is not set |
| 953 | # CONFIG_USB_TEST is not set | 968 | # CONFIG_USB_TEST is not set |
| 969 | # CONFIG_USB_ISIGHTFW is not set | ||
| 954 | # CONFIG_USB_GADGET is not set | 970 | # CONFIG_USB_GADGET is not set |
| 955 | CONFIG_MMC=y | 971 | CONFIG_MMC=y |
| 956 | # CONFIG_MMC_DEBUG is not set | 972 | # CONFIG_MMC_DEBUG is not set |
| @@ -962,6 +978,7 @@ CONFIG_MMC=y | |||
| 962 | CONFIG_MMC_BLOCK=y | 978 | CONFIG_MMC_BLOCK=y |
| 963 | CONFIG_MMC_BLOCK_BOUNCE=y | 979 | CONFIG_MMC_BLOCK_BOUNCE=y |
| 964 | # CONFIG_SDIO_UART is not set | 980 | # CONFIG_SDIO_UART is not set |
| 981 | # CONFIG_MMC_TEST is not set | ||
| 965 | 982 | ||
| 966 | # | 983 | # |
| 967 | # MMC/SD Host Controller Drivers | 984 | # MMC/SD Host Controller Drivers |
| @@ -972,14 +989,11 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
| 972 | CONFIG_MMC_SPI=y | 989 | CONFIG_MMC_SPI=y |
| 973 | # CONFIG_MEMSTICK is not set | 990 | # CONFIG_MEMSTICK is not set |
| 974 | # CONFIG_NEW_LEDS is not set | 991 | # CONFIG_NEW_LEDS is not set |
| 992 | # CONFIG_ACCESSIBILITY is not set | ||
| 975 | # CONFIG_INFINIBAND is not set | 993 | # CONFIG_INFINIBAND is not set |
| 976 | # CONFIG_EDAC is not set | 994 | # CONFIG_EDAC is not set |
| 977 | # CONFIG_RTC_CLASS is not set | 995 | # CONFIG_RTC_CLASS is not set |
| 978 | # CONFIG_DMADEVICES is not set | 996 | # CONFIG_DMADEVICES is not set |
| 979 | |||
| 980 | # | ||
| 981 | # Userspace I/O | ||
| 982 | # | ||
| 983 | # CONFIG_UIO is not set | 997 | # CONFIG_UIO is not set |
| 984 | 998 | ||
| 985 | # | 999 | # |
| @@ -999,7 +1013,6 @@ CONFIG_FS_MBCACHE=y | |||
| 999 | # CONFIG_JFS_FS is not set | 1013 | # CONFIG_JFS_FS is not set |
| 1000 | # CONFIG_FS_POSIX_ACL is not set | 1014 | # CONFIG_FS_POSIX_ACL is not set |
| 1001 | # CONFIG_XFS_FS is not set | 1015 | # CONFIG_XFS_FS is not set |
| 1002 | # CONFIG_GFS2_FS is not set | ||
| 1003 | # CONFIG_OCFS2_FS is not set | 1016 | # CONFIG_OCFS2_FS is not set |
| 1004 | CONFIG_DNOTIFY=y | 1017 | CONFIG_DNOTIFY=y |
| 1005 | CONFIG_INOTIFY=y | 1018 | CONFIG_INOTIFY=y |
| @@ -1060,7 +1073,6 @@ CONFIG_NFS_FS=y | |||
| 1060 | CONFIG_NFS_V3=y | 1073 | CONFIG_NFS_V3=y |
| 1061 | # CONFIG_NFS_V3_ACL is not set | 1074 | # CONFIG_NFS_V3_ACL is not set |
| 1062 | CONFIG_NFS_V4=y | 1075 | CONFIG_NFS_V4=y |
| 1063 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1064 | # CONFIG_NFSD is not set | 1076 | # CONFIG_NFSD is not set |
| 1065 | CONFIG_ROOT_NFS=y | 1077 | CONFIG_ROOT_NFS=y |
| 1066 | CONFIG_LOCKD=y | 1078 | CONFIG_LOCKD=y |
| @@ -1147,6 +1159,7 @@ CONFIG_UCC=y | |||
| 1147 | # Library routines | 1159 | # Library routines |
| 1148 | # | 1160 | # |
| 1149 | CONFIG_BITREVERSE=y | 1161 | CONFIG_BITREVERSE=y |
| 1162 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1150 | # CONFIG_CRC_CCITT is not set | 1163 | # CONFIG_CRC_CCITT is not set |
| 1151 | # CONFIG_CRC16 is not set | 1164 | # CONFIG_CRC16 is not set |
| 1152 | CONFIG_CRC_ITU_T=y | 1165 | CONFIG_CRC_ITU_T=y |
| @@ -1157,6 +1170,7 @@ CONFIG_PLIST=y | |||
| 1157 | CONFIG_HAS_IOMEM=y | 1170 | CONFIG_HAS_IOMEM=y |
| 1158 | CONFIG_HAS_IOPORT=y | 1171 | CONFIG_HAS_IOPORT=y |
| 1159 | CONFIG_HAS_DMA=y | 1172 | CONFIG_HAS_DMA=y |
| 1173 | CONFIG_HAVE_LMB=y | ||
| 1160 | 1174 | ||
| 1161 | # | 1175 | # |
| 1162 | # Kernel hacking | 1176 | # Kernel hacking |
| @@ -1164,6 +1178,7 @@ CONFIG_HAS_DMA=y | |||
| 1164 | # CONFIG_PRINTK_TIME is not set | 1178 | # CONFIG_PRINTK_TIME is not set |
| 1165 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1179 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1166 | CONFIG_ENABLE_MUST_CHECK=y | 1180 | CONFIG_ENABLE_MUST_CHECK=y |
| 1181 | CONFIG_FRAME_WARN=1024 | ||
| 1167 | # CONFIG_MAGIC_SYSRQ is not set | 1182 | # CONFIG_MAGIC_SYSRQ is not set |
| 1168 | # CONFIG_UNUSED_SYMBOLS is not set | 1183 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1169 | # CONFIG_DEBUG_FS is not set | 1184 | # CONFIG_DEBUG_FS is not set |
| @@ -1173,6 +1188,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1173 | # CONFIG_SLUB_STATS is not set | 1188 | # CONFIG_SLUB_STATS is not set |
| 1174 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1189 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1175 | # CONFIG_SAMPLES is not set | 1190 | # CONFIG_SAMPLES is not set |
| 1191 | # CONFIG_IRQSTACKS is not set | ||
| 1176 | # CONFIG_PPC_EARLY_DEBUG is not set | 1192 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1177 | 1193 | ||
| 1178 | # | 1194 | # |
| @@ -1182,52 +1198,82 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1182 | # CONFIG_SECURITY is not set | 1198 | # CONFIG_SECURITY is not set |
| 1183 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1199 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1184 | CONFIG_CRYPTO=y | 1200 | CONFIG_CRYPTO=y |
| 1201 | |||
| 1202 | # | ||
| 1203 | # Crypto core or helper | ||
| 1204 | # | ||
| 1185 | CONFIG_CRYPTO_ALGAPI=y | 1205 | CONFIG_CRYPTO_ALGAPI=y |
| 1186 | CONFIG_CRYPTO_BLKCIPHER=y | 1206 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1187 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1188 | CONFIG_CRYPTO_MANAGER=y | 1207 | CONFIG_CRYPTO_MANAGER=y |
| 1208 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1209 | # CONFIG_CRYPTO_NULL is not set | ||
| 1210 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1211 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1212 | # CONFIG_CRYPTO_TEST is not set | ||
| 1213 | |||
| 1214 | # | ||
| 1215 | # Authenticated Encryption with Associated Data | ||
| 1216 | # | ||
| 1217 | # CONFIG_CRYPTO_CCM is not set | ||
| 1218 | # CONFIG_CRYPTO_GCM is not set | ||
| 1219 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1220 | |||
| 1221 | # | ||
| 1222 | # Block modes | ||
| 1223 | # | ||
| 1224 | CONFIG_CRYPTO_CBC=y | ||
| 1225 | # CONFIG_CRYPTO_CTR is not set | ||
| 1226 | # CONFIG_CRYPTO_CTS is not set | ||
| 1227 | CONFIG_CRYPTO_ECB=m | ||
| 1228 | # CONFIG_CRYPTO_LRW is not set | ||
| 1229 | CONFIG_CRYPTO_PCBC=m | ||
| 1230 | # CONFIG_CRYPTO_XTS is not set | ||
| 1231 | |||
| 1232 | # | ||
| 1233 | # Hash modes | ||
| 1234 | # | ||
| 1189 | # CONFIG_CRYPTO_HMAC is not set | 1235 | # CONFIG_CRYPTO_HMAC is not set |
| 1190 | # CONFIG_CRYPTO_XCBC is not set | 1236 | # CONFIG_CRYPTO_XCBC is not set |
| 1191 | # CONFIG_CRYPTO_NULL is not set | 1237 | |
| 1238 | # | ||
| 1239 | # Digest | ||
| 1240 | # | ||
| 1241 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1192 | # CONFIG_CRYPTO_MD4 is not set | 1242 | # CONFIG_CRYPTO_MD4 is not set |
| 1193 | CONFIG_CRYPTO_MD5=y | 1243 | CONFIG_CRYPTO_MD5=y |
| 1244 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1194 | # CONFIG_CRYPTO_SHA1 is not set | 1245 | # CONFIG_CRYPTO_SHA1 is not set |
| 1195 | # CONFIG_CRYPTO_SHA256 is not set | 1246 | # CONFIG_CRYPTO_SHA256 is not set |
| 1196 | # CONFIG_CRYPTO_SHA512 is not set | 1247 | # CONFIG_CRYPTO_SHA512 is not set |
| 1197 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1198 | # CONFIG_CRYPTO_TGR192 is not set | 1248 | # CONFIG_CRYPTO_TGR192 is not set |
| 1199 | # CONFIG_CRYPTO_GF128MUL is not set | 1249 | # CONFIG_CRYPTO_WP512 is not set |
| 1200 | CONFIG_CRYPTO_ECB=m | 1250 | |
| 1201 | CONFIG_CRYPTO_CBC=y | 1251 | # |
| 1202 | CONFIG_CRYPTO_PCBC=m | 1252 | # Ciphers |
| 1203 | # CONFIG_CRYPTO_LRW is not set | 1253 | # |
| 1204 | # CONFIG_CRYPTO_XTS is not set | ||
| 1205 | # CONFIG_CRYPTO_CTR is not set | ||
| 1206 | # CONFIG_CRYPTO_GCM is not set | ||
| 1207 | # CONFIG_CRYPTO_CCM is not set | ||
| 1208 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1209 | CONFIG_CRYPTO_DES=y | ||
| 1210 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1211 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1212 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1213 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1214 | # CONFIG_CRYPTO_AES is not set | 1254 | # CONFIG_CRYPTO_AES is not set |
| 1255 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1256 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1257 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1258 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1215 | # CONFIG_CRYPTO_CAST5 is not set | 1259 | # CONFIG_CRYPTO_CAST5 is not set |
| 1216 | # CONFIG_CRYPTO_CAST6 is not set | 1260 | # CONFIG_CRYPTO_CAST6 is not set |
| 1217 | # CONFIG_CRYPTO_TEA is not set | 1261 | CONFIG_CRYPTO_DES=y |
| 1218 | # CONFIG_CRYPTO_ARC4 is not set | 1262 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1219 | # CONFIG_CRYPTO_KHAZAD is not set | 1263 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1220 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1221 | # CONFIG_CRYPTO_SEED is not set | ||
| 1222 | # CONFIG_CRYPTO_SALSA20 is not set | 1264 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1265 | # CONFIG_CRYPTO_SEED is not set | ||
| 1266 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1267 | # CONFIG_CRYPTO_TEA is not set | ||
| 1268 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1269 | |||
| 1270 | # | ||
| 1271 | # Compression | ||
| 1272 | # | ||
| 1223 | # CONFIG_CRYPTO_DEFLATE is not set | 1273 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1224 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1225 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1226 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1227 | # CONFIG_CRYPTO_TEST is not set | ||
| 1228 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1229 | # CONFIG_CRYPTO_LZO is not set | 1274 | # CONFIG_CRYPTO_LZO is not set |
| 1230 | CONFIG_CRYPTO_HW=y | 1275 | CONFIG_CRYPTO_HW=y |
| 1231 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1276 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1232 | # CONFIG_PPC_CLOCK is not set | 1277 | # CONFIG_PPC_CLOCK is not set |
| 1233 | CONFIG_PPC_LIB_RHEAP=y | 1278 | CONFIG_PPC_LIB_RHEAP=y |
| 1279 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/83xx/mpc834x_itx_defconfig b/arch/powerpc/configs/83xx/mpc834x_itx_defconfig index e1de399a7bdd..b47fc9185708 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:17 2008 | 4 | # Mon Jun 9 08:52:25 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | # CONFIG_KALLSYMS is not set | 92 | # CONFIG_KALLSYMS is not set |
| 90 | CONFIG_HOTPLUG=y | 93 | CONFIG_HOTPLUG=y |
| 91 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
| @@ -110,12 +113,14 @@ CONFIG_SLUB=y | |||
| 110 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
| 111 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
| 112 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 113 | CONFIG_PROC_PAGE_MONITOR=y | 117 | CONFIG_PROC_PAGE_MONITOR=y |
| 114 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
| 115 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
| 116 | # CONFIG_TINY_SHMEM is not set | 120 | # CONFIG_TINY_SHMEM is not set |
| 117 | CONFIG_BASE_SMALL=0 | 121 | CONFIG_BASE_SMALL=0 |
| 118 | CONFIG_MODULES=y | 122 | CONFIG_MODULES=y |
| 123 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 119 | CONFIG_MODULE_UNLOAD=y | 124 | CONFIG_MODULE_UNLOAD=y |
| 120 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 121 | # CONFIG_MODVERSIONS is not set | 126 | # CONFIG_MODVERSIONS is not set |
| @@ -210,11 +215,13 @@ CONFIG_FLATMEM=y | |||
| 210 | CONFIG_FLAT_NODE_MEM_MAP=y | 215 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 211 | # CONFIG_SPARSEMEM_STATIC is not set | 216 | # CONFIG_SPARSEMEM_STATIC is not set |
| 212 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 213 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 214 | # CONFIG_RESOURCES_64BIT is not set | 220 | # CONFIG_RESOURCES_64BIT is not set |
| 215 | CONFIG_ZONE_DMA_FLAG=1 | 221 | CONFIG_ZONE_DMA_FLAG=1 |
| 216 | CONFIG_BOUNCE=y | 222 | CONFIG_BOUNCE=y |
| 217 | CONFIG_VIRT_TO_BUS=y | 223 | CONFIG_VIRT_TO_BUS=y |
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 218 | CONFIG_PROC_DEVICETREE=y | 225 | CONFIG_PROC_DEVICETREE=y |
| 219 | # CONFIG_CMDLINE_BOOL is not set | 226 | # CONFIG_CMDLINE_BOOL is not set |
| 220 | # CONFIG_PM is not set | 227 | # CONFIG_PM is not set |
| @@ -237,6 +244,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 237 | CONFIG_PCI_LEGACY=y | 244 | CONFIG_PCI_LEGACY=y |
| 238 | # CONFIG_PCCARD is not set | 245 | # CONFIG_PCCARD is not set |
| 239 | # CONFIG_HOTPLUG_PCI is not set | 246 | # CONFIG_HOTPLUG_PCI is not set |
| 247 | # CONFIG_HAS_RAPIDIO is not set | ||
| 240 | 248 | ||
| 241 | # | 249 | # |
| 242 | # Advanced setup | 250 | # Advanced setup |
| @@ -246,11 +254,11 @@ CONFIG_PCI_LEGACY=y | |||
| 246 | # | 254 | # |
| 247 | # Default settings for advanced configuration options are used | 255 | # Default settings for advanced configuration options are used |
| 248 | # | 256 | # |
| 249 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 250 | CONFIG_LOWMEM_SIZE=0x30000000 | 257 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 258 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 251 | CONFIG_KERNEL_START=0xc0000000 | 259 | CONFIG_KERNEL_START=0xc0000000 |
| 260 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 252 | CONFIG_TASK_SIZE=0xc0000000 | 261 | CONFIG_TASK_SIZE=0xc0000000 |
| 253 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 254 | 262 | ||
| 255 | # | 263 | # |
| 256 | # Networking | 264 | # Networking |
| @@ -298,8 +306,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 298 | CONFIG_DEFAULT_TCP_CONG="cubic" | 306 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 299 | # CONFIG_TCP_MD5SIG is not set | 307 | # CONFIG_TCP_MD5SIG is not set |
| 300 | # CONFIG_IPV6 is not set | 308 | # CONFIG_IPV6 is not set |
| 301 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 302 | # CONFIG_INET6_TUNNEL is not set | ||
| 303 | # CONFIG_NETWORK_SECMARK is not set | 309 | # CONFIG_NETWORK_SECMARK is not set |
| 304 | # CONFIG_NETFILTER is not set | 310 | # CONFIG_NETFILTER is not set |
| 305 | # CONFIG_IP_DCCP is not set | 311 | # CONFIG_IP_DCCP is not set |
| @@ -432,6 +438,7 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
| 432 | # | 438 | # |
| 433 | # CONFIG_MTD_UBI is not set | 439 | # CONFIG_MTD_UBI is not set |
| 434 | CONFIG_OF_DEVICE=y | 440 | CONFIG_OF_DEVICE=y |
| 441 | CONFIG_OF_I2C=y | ||
| 435 | # CONFIG_PARPORT is not set | 442 | # CONFIG_PARPORT is not set |
| 436 | CONFIG_BLK_DEV=y | 443 | CONFIG_BLK_DEV=y |
| 437 | # CONFIG_BLK_DEV_FD is not set | 444 | # CONFIG_BLK_DEV_FD is not set |
| @@ -541,7 +548,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 541 | # CONFIG_SCSI_SRP is not set | 548 | # CONFIG_SCSI_SRP is not set |
| 542 | CONFIG_ATA=y | 549 | CONFIG_ATA=y |
| 543 | # CONFIG_ATA_NONSTANDARD is not set | 550 | # CONFIG_ATA_NONSTANDARD is not set |
| 551 | CONFIG_SATA_PMP=y | ||
| 544 | # CONFIG_SATA_AHCI is not set | 552 | # CONFIG_SATA_AHCI is not set |
| 553 | # CONFIG_SATA_SIL24 is not set | ||
| 554 | # CONFIG_SATA_FSL is not set | ||
| 555 | CONFIG_ATA_SFF=y | ||
| 545 | # CONFIG_SATA_SVW is not set | 556 | # CONFIG_SATA_SVW is not set |
| 546 | # CONFIG_ATA_PIIX is not set | 557 | # CONFIG_ATA_PIIX is not set |
| 547 | # CONFIG_SATA_MV is not set | 558 | # CONFIG_SATA_MV is not set |
| @@ -551,13 +562,11 @@ CONFIG_ATA=y | |||
| 551 | # CONFIG_SATA_PROMISE is not set | 562 | # CONFIG_SATA_PROMISE is not set |
| 552 | # CONFIG_SATA_SX4 is not set | 563 | # CONFIG_SATA_SX4 is not set |
| 553 | CONFIG_SATA_SIL=y | 564 | CONFIG_SATA_SIL=y |
| 554 | # CONFIG_SATA_SIL24 is not set | ||
| 555 | # CONFIG_SATA_SIS is not set | 565 | # CONFIG_SATA_SIS is not set |
| 556 | # CONFIG_SATA_ULI is not set | 566 | # CONFIG_SATA_ULI is not set |
| 557 | # CONFIG_SATA_VIA is not set | 567 | # CONFIG_SATA_VIA is not set |
| 558 | # CONFIG_SATA_VITESSE is not set | 568 | # CONFIG_SATA_VITESSE is not set |
| 559 | # CONFIG_SATA_INIC162X is not set | 569 | # CONFIG_SATA_INIC162X is not set |
| 560 | # CONFIG_SATA_FSL is not set | ||
| 561 | # CONFIG_PATA_ALI is not set | 570 | # CONFIG_PATA_ALI is not set |
| 562 | # CONFIG_PATA_AMD is not set | 571 | # CONFIG_PATA_AMD is not set |
| 563 | # CONFIG_PATA_ARTOP is not set | 572 | # CONFIG_PATA_ARTOP is not set |
| @@ -598,6 +607,7 @@ CONFIG_SATA_SIL=y | |||
| 598 | # CONFIG_PATA_WINBOND is not set | 607 | # CONFIG_PATA_WINBOND is not set |
| 599 | CONFIG_PATA_PLATFORM=y | 608 | CONFIG_PATA_PLATFORM=y |
| 600 | CONFIG_PATA_OF_PLATFORM=y | 609 | CONFIG_PATA_OF_PLATFORM=y |
| 610 | # CONFIG_PATA_SCH is not set | ||
| 601 | CONFIG_MD=y | 611 | CONFIG_MD=y |
| 602 | CONFIG_BLK_DEV_MD=y | 612 | CONFIG_BLK_DEV_MD=y |
| 603 | CONFIG_MD_LINEAR=y | 613 | CONFIG_MD_LINEAR=y |
| @@ -659,7 +669,6 @@ CONFIG_NETDEV_1000=y | |||
| 659 | # CONFIG_SIS190 is not set | 669 | # CONFIG_SIS190 is not set |
| 660 | # CONFIG_SKGE is not set | 670 | # CONFIG_SKGE is not set |
| 661 | # CONFIG_SKY2 is not set | 671 | # CONFIG_SKY2 is not set |
| 662 | # CONFIG_SK98LIN is not set | ||
| 663 | # CONFIG_VIA_VELOCITY is not set | 672 | # CONFIG_VIA_VELOCITY is not set |
| 664 | # CONFIG_TIGON3 is not set | 673 | # CONFIG_TIGON3 is not set |
| 665 | # CONFIG_BNX2 is not set | 674 | # CONFIG_BNX2 is not set |
| @@ -679,6 +688,7 @@ CONFIG_NETDEV_10000=y | |||
| 679 | # CONFIG_MLX4_CORE is not set | 688 | # CONFIG_MLX4_CORE is not set |
| 680 | # CONFIG_TEHUTI is not set | 689 | # CONFIG_TEHUTI is not set |
| 681 | # CONFIG_BNX2X is not set | 690 | # CONFIG_BNX2X is not set |
| 691 | # CONFIG_SFC is not set | ||
| 682 | # CONFIG_TR is not set | 692 | # CONFIG_TR is not set |
| 683 | 693 | ||
| 684 | # | 694 | # |
| @@ -686,6 +696,7 @@ CONFIG_NETDEV_10000=y | |||
| 686 | # | 696 | # |
| 687 | # CONFIG_WLAN_PRE80211 is not set | 697 | # CONFIG_WLAN_PRE80211 is not set |
| 688 | # CONFIG_WLAN_80211 is not set | 698 | # CONFIG_WLAN_80211 is not set |
| 699 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 689 | 700 | ||
| 690 | # | 701 | # |
| 691 | # USB Network Adapters | 702 | # USB Network Adapters |
| @@ -722,6 +733,7 @@ CONFIG_NETDEV_10000=y | |||
| 722 | # Character devices | 733 | # Character devices |
| 723 | # | 734 | # |
| 724 | # CONFIG_VT is not set | 735 | # CONFIG_VT is not set |
| 736 | CONFIG_DEVKMEM=y | ||
| 725 | # CONFIG_SERIAL_NONSTANDARD is not set | 737 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 726 | # CONFIG_NOZOMI is not set | 738 | # CONFIG_NOZOMI is not set |
| 727 | 739 | ||
| @@ -749,7 +761,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 749 | # CONFIG_IPMI_HANDLER is not set | 761 | # CONFIG_IPMI_HANDLER is not set |
| 750 | CONFIG_HW_RANDOM=y | 762 | CONFIG_HW_RANDOM=y |
| 751 | # CONFIG_NVRAM is not set | 763 | # CONFIG_NVRAM is not set |
| 752 | # CONFIG_GEN_RTC is not set | ||
| 753 | # CONFIG_R3964 is not set | 764 | # CONFIG_R3964 is not set |
| 754 | # CONFIG_APPLICOM is not set | 765 | # CONFIG_APPLICOM is not set |
| 755 | # CONFIG_RAW_DRIVER is not set | 766 | # CONFIG_RAW_DRIVER is not set |
| @@ -760,13 +771,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 760 | CONFIG_I2C_CHARDEV=y | 771 | CONFIG_I2C_CHARDEV=y |
| 761 | 772 | ||
| 762 | # | 773 | # |
| 763 | # I2C Algorithms | ||
| 764 | # | ||
| 765 | # CONFIG_I2C_ALGOBIT is not set | ||
| 766 | # CONFIG_I2C_ALGOPCF is not set | ||
| 767 | # CONFIG_I2C_ALGOPCA is not set | ||
| 768 | |||
| 769 | # | ||
| 770 | # I2C Hardware Bus support | 774 | # I2C Hardware Bus support |
| 771 | # | 775 | # |
| 772 | # CONFIG_I2C_ALI1535 is not set | 776 | # CONFIG_I2C_ALI1535 is not set |
| @@ -793,6 +797,7 @@ CONFIG_I2C_MPC=y | |||
| 793 | # CONFIG_I2C_VIA is not set | 797 | # CONFIG_I2C_VIA is not set |
| 794 | # CONFIG_I2C_VIAPRO is not set | 798 | # CONFIG_I2C_VIAPRO is not set |
| 795 | # CONFIG_I2C_VOODOO3 is not set | 799 | # CONFIG_I2C_VOODOO3 is not set |
| 800 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 796 | 801 | ||
| 797 | # | 802 | # |
| 798 | # Miscellaneous I2C Chip support | 803 | # Miscellaneous I2C Chip support |
| @@ -802,17 +807,12 @@ CONFIG_I2C_MPC=y | |||
| 802 | CONFIG_SENSORS_PCF8574=y | 807 | CONFIG_SENSORS_PCF8574=y |
| 803 | # CONFIG_PCF8575 is not set | 808 | # CONFIG_PCF8575 is not set |
| 804 | # CONFIG_SENSORS_PCF8591 is not set | 809 | # CONFIG_SENSORS_PCF8591 is not set |
| 805 | # CONFIG_TPS65010 is not set | ||
| 806 | # CONFIG_SENSORS_MAX6875 is not set | 810 | # CONFIG_SENSORS_MAX6875 is not set |
| 807 | # CONFIG_SENSORS_TSL2550 is not set | 811 | # CONFIG_SENSORS_TSL2550 is not set |
| 808 | # CONFIG_I2C_DEBUG_CORE is not set | 812 | # CONFIG_I2C_DEBUG_CORE is not set |
| 809 | # CONFIG_I2C_DEBUG_ALGO is not set | 813 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 810 | # CONFIG_I2C_DEBUG_BUS is not set | 814 | # CONFIG_I2C_DEBUG_BUS is not set |
| 811 | # CONFIG_I2C_DEBUG_CHIP is not set | 815 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 812 | |||
| 813 | # | ||
| 814 | # SPI support | ||
| 815 | # | ||
| 816 | CONFIG_SPI=y | 816 | CONFIG_SPI=y |
| 817 | CONFIG_SPI_MASTER=y | 817 | CONFIG_SPI_MASTER=y |
| 818 | 818 | ||
| @@ -862,12 +862,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 862 | # Multifunction device drivers | 862 | # Multifunction device drivers |
| 863 | # | 863 | # |
| 864 | # CONFIG_MFD_SM501 is not set | 864 | # CONFIG_MFD_SM501 is not set |
| 865 | # CONFIG_HTC_PASIC3 is not set | ||
| 865 | 866 | ||
| 866 | # | 867 | # |
| 867 | # Multimedia devices | 868 | # Multimedia devices |
| 868 | # | 869 | # |
| 870 | |||
| 871 | # | ||
| 872 | # Multimedia core support | ||
| 873 | # | ||
| 869 | # CONFIG_VIDEO_DEV is not set | 874 | # CONFIG_VIDEO_DEV is not set |
| 870 | # CONFIG_DVB_CORE is not set | 875 | # CONFIG_DVB_CORE is not set |
| 876 | # CONFIG_VIDEO_MEDIA is not set | ||
| 877 | |||
| 878 | # | ||
| 879 | # Multimedia drivers | ||
| 880 | # | ||
| 871 | CONFIG_DAB=y | 881 | CONFIG_DAB=y |
| 872 | # CONFIG_USB_DABUSB is not set | 882 | # CONFIG_USB_DABUSB is not set |
| 873 | 883 | ||
| @@ -905,16 +915,20 @@ CONFIG_USB_DEVICEFS=y | |||
| 905 | CONFIG_USB_DEVICE_CLASS=y | 915 | CONFIG_USB_DEVICE_CLASS=y |
| 906 | # CONFIG_USB_DYNAMIC_MINORS is not set | 916 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 907 | # CONFIG_USB_OTG is not set | 917 | # CONFIG_USB_OTG is not set |
| 918 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 919 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 908 | 920 | ||
| 909 | # | 921 | # |
| 910 | # USB Host Controller Drivers | 922 | # USB Host Controller Drivers |
| 911 | # | 923 | # |
| 924 | # CONFIG_USB_C67X00_HCD is not set | ||
| 912 | CONFIG_USB_EHCI_HCD=y | 925 | CONFIG_USB_EHCI_HCD=y |
| 913 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 926 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 914 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 927 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 915 | CONFIG_USB_EHCI_FSL=y | 928 | CONFIG_USB_EHCI_FSL=y |
| 916 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 929 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 917 | # CONFIG_USB_ISP116X_HCD is not set | 930 | # CONFIG_USB_ISP116X_HCD is not set |
| 931 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 918 | # CONFIG_USB_OHCI_HCD is not set | 932 | # CONFIG_USB_OHCI_HCD is not set |
| 919 | CONFIG_USB_UHCI_HCD=y | 933 | CONFIG_USB_UHCI_HCD=y |
| 920 | # CONFIG_USB_SL811_HCD is not set | 934 | # CONFIG_USB_SL811_HCD is not set |
| @@ -925,6 +939,7 @@ CONFIG_USB_UHCI_HCD=y | |||
| 925 | # | 939 | # |
| 926 | # CONFIG_USB_ACM is not set | 940 | # CONFIG_USB_ACM is not set |
| 927 | # CONFIG_USB_PRINTER is not set | 941 | # CONFIG_USB_PRINTER is not set |
| 942 | # CONFIG_USB_WDM is not set | ||
| 928 | 943 | ||
| 929 | # | 944 | # |
| 930 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 945 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -945,6 +960,7 @@ CONFIG_USB_STORAGE=y | |||
| 945 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 960 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 946 | # CONFIG_USB_STORAGE_ALAUDA is not set | 961 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 947 | # CONFIG_USB_STORAGE_KARMA is not set | 962 | # CONFIG_USB_STORAGE_KARMA is not set |
| 963 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 948 | # CONFIG_USB_LIBUSUAL is not set | 964 | # CONFIG_USB_LIBUSUAL is not set |
| 949 | 965 | ||
| 950 | # | 966 | # |
| @@ -982,10 +998,12 @@ CONFIG_USB_MON=y | |||
| 982 | # CONFIG_USB_TRANCEVIBRATOR is not set | 998 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 983 | # CONFIG_USB_IOWARRIOR is not set | 999 | # CONFIG_USB_IOWARRIOR is not set |
| 984 | # CONFIG_USB_TEST is not set | 1000 | # CONFIG_USB_TEST is not set |
| 1001 | # CONFIG_USB_ISIGHTFW is not set | ||
| 985 | # CONFIG_USB_GADGET is not set | 1002 | # CONFIG_USB_GADGET is not set |
| 986 | # CONFIG_MMC is not set | 1003 | # CONFIG_MMC is not set |
| 987 | # CONFIG_MEMSTICK is not set | 1004 | # CONFIG_MEMSTICK is not set |
| 988 | # CONFIG_NEW_LEDS is not set | 1005 | # CONFIG_NEW_LEDS is not set |
| 1006 | # CONFIG_ACCESSIBILITY is not set | ||
| 989 | # CONFIG_INFINIBAND is not set | 1007 | # CONFIG_INFINIBAND is not set |
| 990 | # CONFIG_EDAC is not set | 1008 | # CONFIG_EDAC is not set |
| 991 | CONFIG_RTC_LIB=y | 1009 | CONFIG_RTC_LIB=y |
| @@ -1040,11 +1058,8 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1040 | # | 1058 | # |
| 1041 | # on-CPU RTC drivers | 1059 | # on-CPU RTC drivers |
| 1042 | # | 1060 | # |
| 1061 | # CONFIG_RTC_DRV_PPC is not set | ||
| 1043 | # CONFIG_DMADEVICES is not set | 1062 | # CONFIG_DMADEVICES is not set |
| 1044 | |||
| 1045 | # | ||
| 1046 | # Userspace I/O | ||
| 1047 | # | ||
| 1048 | # CONFIG_UIO is not set | 1063 | # CONFIG_UIO is not set |
| 1049 | 1064 | ||
| 1050 | # | 1065 | # |
| @@ -1064,7 +1079,6 @@ CONFIG_FS_MBCACHE=y | |||
| 1064 | # CONFIG_JFS_FS is not set | 1079 | # CONFIG_JFS_FS is not set |
| 1065 | # CONFIG_FS_POSIX_ACL is not set | 1080 | # CONFIG_FS_POSIX_ACL is not set |
| 1066 | # CONFIG_XFS_FS is not set | 1081 | # CONFIG_XFS_FS is not set |
| 1067 | # CONFIG_GFS2_FS is not set | ||
| 1068 | # CONFIG_OCFS2_FS is not set | 1082 | # CONFIG_OCFS2_FS is not set |
| 1069 | CONFIG_DNOTIFY=y | 1083 | CONFIG_DNOTIFY=y |
| 1070 | CONFIG_INOTIFY=y | 1084 | CONFIG_INOTIFY=y |
| @@ -1126,7 +1140,6 @@ CONFIG_NFS_FS=y | |||
| 1126 | CONFIG_NFS_V3=y | 1140 | CONFIG_NFS_V3=y |
| 1127 | # CONFIG_NFS_V3_ACL is not set | 1141 | # CONFIG_NFS_V3_ACL is not set |
| 1128 | CONFIG_NFS_V4=y | 1142 | CONFIG_NFS_V4=y |
| 1129 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1130 | # CONFIG_NFSD is not set | 1143 | # CONFIG_NFSD is not set |
| 1131 | CONFIG_ROOT_NFS=y | 1144 | CONFIG_ROOT_NFS=y |
| 1132 | CONFIG_LOCKD=y | 1145 | CONFIG_LOCKD=y |
| @@ -1210,6 +1223,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1210 | # Library routines | 1223 | # Library routines |
| 1211 | # | 1224 | # |
| 1212 | CONFIG_BITREVERSE=y | 1225 | CONFIG_BITREVERSE=y |
| 1226 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1213 | # CONFIG_CRC_CCITT is not set | 1227 | # CONFIG_CRC_CCITT is not set |
| 1214 | # CONFIG_CRC16 is not set | 1228 | # CONFIG_CRC16 is not set |
| 1215 | # CONFIG_CRC_ITU_T is not set | 1229 | # CONFIG_CRC_ITU_T is not set |
| @@ -1220,6 +1234,7 @@ CONFIG_PLIST=y | |||
| 1220 | CONFIG_HAS_IOMEM=y | 1234 | CONFIG_HAS_IOMEM=y |
| 1221 | CONFIG_HAS_IOPORT=y | 1235 | CONFIG_HAS_IOPORT=y |
| 1222 | CONFIG_HAS_DMA=y | 1236 | CONFIG_HAS_DMA=y |
| 1237 | CONFIG_HAVE_LMB=y | ||
| 1223 | 1238 | ||
| 1224 | # | 1239 | # |
| 1225 | # Kernel hacking | 1240 | # Kernel hacking |
| @@ -1227,6 +1242,7 @@ CONFIG_HAS_DMA=y | |||
| 1227 | # CONFIG_PRINTK_TIME is not set | 1242 | # CONFIG_PRINTK_TIME is not set |
| 1228 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1243 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1229 | CONFIG_ENABLE_MUST_CHECK=y | 1244 | CONFIG_ENABLE_MUST_CHECK=y |
| 1245 | CONFIG_FRAME_WARN=1024 | ||
| 1230 | # CONFIG_MAGIC_SYSRQ is not set | 1246 | # CONFIG_MAGIC_SYSRQ is not set |
| 1231 | # CONFIG_UNUSED_SYMBOLS is not set | 1247 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1232 | # CONFIG_DEBUG_FS is not set | 1248 | # CONFIG_DEBUG_FS is not set |
| @@ -1236,6 +1252,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1236 | # CONFIG_SLUB_STATS is not set | 1252 | # CONFIG_SLUB_STATS is not set |
| 1237 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1253 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1238 | # CONFIG_SAMPLES is not set | 1254 | # CONFIG_SAMPLES is not set |
| 1255 | # CONFIG_IRQSTACKS is not set | ||
| 1239 | # CONFIG_PPC_EARLY_DEBUG is not set | 1256 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1240 | 1257 | ||
| 1241 | # | 1258 | # |
| @@ -1245,51 +1262,81 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1245 | # CONFIG_SECURITY is not set | 1262 | # CONFIG_SECURITY is not set |
| 1246 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1263 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1247 | CONFIG_CRYPTO=y | 1264 | CONFIG_CRYPTO=y |
| 1265 | |||
| 1266 | # | ||
| 1267 | # Crypto core or helper | ||
| 1268 | # | ||
| 1248 | CONFIG_CRYPTO_ALGAPI=y | 1269 | CONFIG_CRYPTO_ALGAPI=y |
| 1249 | CONFIG_CRYPTO_BLKCIPHER=y | 1270 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1250 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1251 | CONFIG_CRYPTO_MANAGER=y | 1271 | CONFIG_CRYPTO_MANAGER=y |
| 1272 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1273 | # CONFIG_CRYPTO_NULL is not set | ||
| 1274 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1275 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1276 | # CONFIG_CRYPTO_TEST is not set | ||
| 1277 | |||
| 1278 | # | ||
| 1279 | # Authenticated Encryption with Associated Data | ||
| 1280 | # | ||
| 1281 | # CONFIG_CRYPTO_CCM is not set | ||
| 1282 | # CONFIG_CRYPTO_GCM is not set | ||
| 1283 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1284 | |||
| 1285 | # | ||
| 1286 | # Block modes | ||
| 1287 | # | ||
| 1288 | CONFIG_CRYPTO_CBC=y | ||
| 1289 | # CONFIG_CRYPTO_CTR is not set | ||
| 1290 | # CONFIG_CRYPTO_CTS is not set | ||
| 1291 | # CONFIG_CRYPTO_ECB is not set | ||
| 1292 | # CONFIG_CRYPTO_LRW is not set | ||
| 1293 | CONFIG_CRYPTO_PCBC=m | ||
| 1294 | # CONFIG_CRYPTO_XTS is not set | ||
| 1295 | |||
| 1296 | # | ||
| 1297 | # Hash modes | ||
| 1298 | # | ||
| 1252 | # CONFIG_CRYPTO_HMAC is not set | 1299 | # CONFIG_CRYPTO_HMAC is not set |
| 1253 | # CONFIG_CRYPTO_XCBC is not set | 1300 | # CONFIG_CRYPTO_XCBC is not set |
| 1254 | # CONFIG_CRYPTO_NULL is not set | 1301 | |
| 1302 | # | ||
| 1303 | # Digest | ||
| 1304 | # | ||
| 1305 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1255 | # CONFIG_CRYPTO_MD4 is not set | 1306 | # CONFIG_CRYPTO_MD4 is not set |
| 1256 | CONFIG_CRYPTO_MD5=y | 1307 | CONFIG_CRYPTO_MD5=y |
| 1308 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1257 | # CONFIG_CRYPTO_SHA1 is not set | 1309 | # CONFIG_CRYPTO_SHA1 is not set |
| 1258 | # CONFIG_CRYPTO_SHA256 is not set | 1310 | # CONFIG_CRYPTO_SHA256 is not set |
| 1259 | # CONFIG_CRYPTO_SHA512 is not set | 1311 | # CONFIG_CRYPTO_SHA512 is not set |
| 1260 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1261 | # CONFIG_CRYPTO_TGR192 is not set | 1312 | # CONFIG_CRYPTO_TGR192 is not set |
| 1262 | # CONFIG_CRYPTO_GF128MUL is not set | 1313 | # CONFIG_CRYPTO_WP512 is not set |
| 1263 | # CONFIG_CRYPTO_ECB is not set | 1314 | |
| 1264 | CONFIG_CRYPTO_CBC=y | 1315 | # |
| 1265 | CONFIG_CRYPTO_PCBC=m | 1316 | # Ciphers |
| 1266 | # CONFIG_CRYPTO_LRW is not set | 1317 | # |
| 1267 | # CONFIG_CRYPTO_XTS is not set | ||
| 1268 | # CONFIG_CRYPTO_CTR is not set | ||
| 1269 | # CONFIG_CRYPTO_GCM is not set | ||
| 1270 | # CONFIG_CRYPTO_CCM is not set | ||
| 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 | 1318 | # CONFIG_CRYPTO_AES is not set |
| 1319 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1320 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1321 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1322 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1278 | # CONFIG_CRYPTO_CAST5 is not set | 1323 | # CONFIG_CRYPTO_CAST5 is not set |
| 1279 | # CONFIG_CRYPTO_CAST6 is not set | 1324 | # CONFIG_CRYPTO_CAST6 is not set |
| 1280 | # CONFIG_CRYPTO_TEA is not set | 1325 | CONFIG_CRYPTO_DES=y |
| 1281 | # CONFIG_CRYPTO_ARC4 is not set | 1326 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1282 | # CONFIG_CRYPTO_KHAZAD is not set | 1327 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1283 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1284 | # CONFIG_CRYPTO_SEED is not set | ||
| 1285 | # CONFIG_CRYPTO_SALSA20 is not set | 1328 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1329 | # CONFIG_CRYPTO_SEED is not set | ||
| 1330 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1331 | # CONFIG_CRYPTO_TEA is not set | ||
| 1332 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1333 | |||
| 1334 | # | ||
| 1335 | # Compression | ||
| 1336 | # | ||
| 1286 | # CONFIG_CRYPTO_DEFLATE is not set | 1337 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1287 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1288 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1289 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1290 | # CONFIG_CRYPTO_TEST is not set | ||
| 1291 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1292 | # CONFIG_CRYPTO_LZO is not set | 1338 | # CONFIG_CRYPTO_LZO is not set |
| 1293 | CONFIG_CRYPTO_HW=y | 1339 | CONFIG_CRYPTO_HW=y |
| 1294 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1340 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1295 | # CONFIG_PPC_CLOCK is not set | 1341 | # CONFIG_PPC_CLOCK is not set |
| 1342 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig b/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig index b4e39cf82a8c..fdac4845bad9 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:18 2008 | 4 | # Mon Jun 9 08:52:26 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | # CONFIG_KALLSYMS is not set | 92 | # CONFIG_KALLSYMS is not set |
| 90 | CONFIG_HOTPLUG=y | 93 | CONFIG_HOTPLUG=y |
| 91 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
| @@ -110,12 +113,14 @@ CONFIG_SLUB=y | |||
| 110 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
| 111 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
| 112 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 113 | CONFIG_PROC_PAGE_MONITOR=y | 117 | CONFIG_PROC_PAGE_MONITOR=y |
| 114 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
| 115 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
| 116 | # CONFIG_TINY_SHMEM is not set | 120 | # CONFIG_TINY_SHMEM is not set |
| 117 | CONFIG_BASE_SMALL=0 | 121 | CONFIG_BASE_SMALL=0 |
| 118 | CONFIG_MODULES=y | 122 | CONFIG_MODULES=y |
| 123 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 119 | CONFIG_MODULE_UNLOAD=y | 124 | CONFIG_MODULE_UNLOAD=y |
| 120 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 121 | # CONFIG_MODVERSIONS is not set | 126 | # CONFIG_MODVERSIONS is not set |
| @@ -210,11 +215,13 @@ CONFIG_FLATMEM=y | |||
| 210 | CONFIG_FLAT_NODE_MEM_MAP=y | 215 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 211 | # CONFIG_SPARSEMEM_STATIC is not set | 216 | # CONFIG_SPARSEMEM_STATIC is not set |
| 212 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 213 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 214 | # CONFIG_RESOURCES_64BIT is not set | 220 | # CONFIG_RESOURCES_64BIT is not set |
| 215 | CONFIG_ZONE_DMA_FLAG=1 | 221 | CONFIG_ZONE_DMA_FLAG=1 |
| 216 | CONFIG_BOUNCE=y | 222 | CONFIG_BOUNCE=y |
| 217 | CONFIG_VIRT_TO_BUS=y | 223 | CONFIG_VIRT_TO_BUS=y |
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 218 | CONFIG_PROC_DEVICETREE=y | 225 | CONFIG_PROC_DEVICETREE=y |
| 219 | # CONFIG_CMDLINE_BOOL is not set | 226 | # CONFIG_CMDLINE_BOOL is not set |
| 220 | # CONFIG_PM is not set | 227 | # CONFIG_PM is not set |
| @@ -237,6 +244,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 237 | CONFIG_PCI_LEGACY=y | 244 | CONFIG_PCI_LEGACY=y |
| 238 | # CONFIG_PCCARD is not set | 245 | # CONFIG_PCCARD is not set |
| 239 | # CONFIG_HOTPLUG_PCI is not set | 246 | # CONFIG_HOTPLUG_PCI is not set |
| 247 | # CONFIG_HAS_RAPIDIO is not set | ||
| 240 | 248 | ||
| 241 | # | 249 | # |
| 242 | # Advanced setup | 250 | # Advanced setup |
| @@ -246,11 +254,11 @@ CONFIG_PCI_LEGACY=y | |||
| 246 | # | 254 | # |
| 247 | # Default settings for advanced configuration options are used | 255 | # Default settings for advanced configuration options are used |
| 248 | # | 256 | # |
| 249 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 250 | CONFIG_LOWMEM_SIZE=0x30000000 | 257 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 258 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 251 | CONFIG_KERNEL_START=0xc0000000 | 259 | CONFIG_KERNEL_START=0xc0000000 |
| 260 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 252 | CONFIG_TASK_SIZE=0xc0000000 | 261 | CONFIG_TASK_SIZE=0xc0000000 |
| 253 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 254 | 262 | ||
| 255 | # | 263 | # |
| 256 | # Networking | 264 | # Networking |
| @@ -298,8 +306,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 298 | CONFIG_DEFAULT_TCP_CONG="cubic" | 306 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 299 | # CONFIG_TCP_MD5SIG is not set | 307 | # CONFIG_TCP_MD5SIG is not set |
| 300 | # CONFIG_IPV6 is not set | 308 | # CONFIG_IPV6 is not set |
| 301 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 302 | # CONFIG_INET6_TUNNEL is not set | ||
| 303 | # CONFIG_NETWORK_SECMARK is not set | 309 | # CONFIG_NETWORK_SECMARK is not set |
| 304 | # CONFIG_NETFILTER is not set | 310 | # CONFIG_NETFILTER is not set |
| 305 | # CONFIG_IP_DCCP is not set | 311 | # CONFIG_IP_DCCP is not set |
| @@ -432,6 +438,7 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
| 432 | # | 438 | # |
| 433 | # CONFIG_MTD_UBI is not set | 439 | # CONFIG_MTD_UBI is not set |
| 434 | CONFIG_OF_DEVICE=y | 440 | CONFIG_OF_DEVICE=y |
| 441 | CONFIG_OF_I2C=y | ||
| 435 | # CONFIG_PARPORT is not set | 442 | # CONFIG_PARPORT is not set |
| 436 | CONFIG_BLK_DEV=y | 443 | CONFIG_BLK_DEV=y |
| 437 | # CONFIG_BLK_DEV_FD is not set | 444 | # CONFIG_BLK_DEV_FD is not set |
| @@ -587,7 +594,6 @@ CONFIG_NETDEV_1000=y | |||
| 587 | # CONFIG_SIS190 is not set | 594 | # CONFIG_SIS190 is not set |
| 588 | # CONFIG_SKGE is not set | 595 | # CONFIG_SKGE is not set |
| 589 | # CONFIG_SKY2 is not set | 596 | # CONFIG_SKY2 is not set |
| 590 | # CONFIG_SK98LIN is not set | ||
| 591 | # CONFIG_VIA_VELOCITY is not set | 597 | # CONFIG_VIA_VELOCITY is not set |
| 592 | # CONFIG_TIGON3 is not set | 598 | # CONFIG_TIGON3 is not set |
| 593 | # CONFIG_BNX2 is not set | 599 | # CONFIG_BNX2 is not set |
| @@ -607,6 +613,7 @@ CONFIG_NETDEV_10000=y | |||
| 607 | # CONFIG_MLX4_CORE is not set | 613 | # CONFIG_MLX4_CORE is not set |
| 608 | # CONFIG_TEHUTI is not set | 614 | # CONFIG_TEHUTI is not set |
| 609 | # CONFIG_BNX2X is not set | 615 | # CONFIG_BNX2X is not set |
| 616 | # CONFIG_SFC is not set | ||
| 610 | # CONFIG_TR is not set | 617 | # CONFIG_TR is not set |
| 611 | 618 | ||
| 612 | # | 619 | # |
| @@ -614,6 +621,7 @@ CONFIG_NETDEV_10000=y | |||
| 614 | # | 621 | # |
| 615 | # CONFIG_WLAN_PRE80211 is not set | 622 | # CONFIG_WLAN_PRE80211 is not set |
| 616 | # CONFIG_WLAN_80211 is not set | 623 | # CONFIG_WLAN_80211 is not set |
| 624 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 617 | 625 | ||
| 618 | # | 626 | # |
| 619 | # USB Network Adapters | 627 | # USB Network Adapters |
| @@ -650,6 +658,7 @@ CONFIG_NETDEV_10000=y | |||
| 650 | # Character devices | 658 | # Character devices |
| 651 | # | 659 | # |
| 652 | # CONFIG_VT is not set | 660 | # CONFIG_VT is not set |
| 661 | CONFIG_DEVKMEM=y | ||
| 653 | # CONFIG_SERIAL_NONSTANDARD is not set | 662 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 654 | # CONFIG_NOZOMI is not set | 663 | # CONFIG_NOZOMI is not set |
| 655 | 664 | ||
| @@ -677,7 +686,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 677 | # CONFIG_IPMI_HANDLER is not set | 686 | # CONFIG_IPMI_HANDLER is not set |
| 678 | CONFIG_HW_RANDOM=y | 687 | CONFIG_HW_RANDOM=y |
| 679 | # CONFIG_NVRAM is not set | 688 | # CONFIG_NVRAM is not set |
| 680 | # CONFIG_GEN_RTC is not set | ||
| 681 | # CONFIG_R3964 is not set | 689 | # CONFIG_R3964 is not set |
| 682 | # CONFIG_APPLICOM is not set | 690 | # CONFIG_APPLICOM is not set |
| 683 | # CONFIG_RAW_DRIVER is not set | 691 | # CONFIG_RAW_DRIVER is not set |
| @@ -688,13 +696,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 688 | CONFIG_I2C_CHARDEV=y | 696 | CONFIG_I2C_CHARDEV=y |
| 689 | 697 | ||
| 690 | # | 698 | # |
| 691 | # I2C Algorithms | ||
| 692 | # | ||
| 693 | # CONFIG_I2C_ALGOBIT is not set | ||
| 694 | # CONFIG_I2C_ALGOPCF is not set | ||
| 695 | # CONFIG_I2C_ALGOPCA is not set | ||
| 696 | |||
| 697 | # | ||
| 698 | # I2C Hardware Bus support | 699 | # I2C Hardware Bus support |
| 699 | # | 700 | # |
| 700 | # CONFIG_I2C_ALI1535 is not set | 701 | # CONFIG_I2C_ALI1535 is not set |
| @@ -721,6 +722,7 @@ CONFIG_I2C_MPC=y | |||
| 721 | # CONFIG_I2C_VIA is not set | 722 | # CONFIG_I2C_VIA is not set |
| 722 | # CONFIG_I2C_VIAPRO is not set | 723 | # CONFIG_I2C_VIAPRO is not set |
| 723 | # CONFIG_I2C_VOODOO3 is not set | 724 | # CONFIG_I2C_VOODOO3 is not set |
| 725 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 724 | 726 | ||
| 725 | # | 727 | # |
| 726 | # Miscellaneous I2C Chip support | 728 | # Miscellaneous I2C Chip support |
| @@ -730,17 +732,12 @@ CONFIG_I2C_MPC=y | |||
| 730 | CONFIG_SENSORS_PCF8574=y | 732 | CONFIG_SENSORS_PCF8574=y |
| 731 | # CONFIG_PCF8575 is not set | 733 | # CONFIG_PCF8575 is not set |
| 732 | # CONFIG_SENSORS_PCF8591 is not set | 734 | # CONFIG_SENSORS_PCF8591 is not set |
| 733 | # CONFIG_TPS65010 is not set | ||
| 734 | # CONFIG_SENSORS_MAX6875 is not set | 735 | # CONFIG_SENSORS_MAX6875 is not set |
| 735 | # CONFIG_SENSORS_TSL2550 is not set | 736 | # CONFIG_SENSORS_TSL2550 is not set |
| 736 | # CONFIG_I2C_DEBUG_CORE is not set | 737 | # CONFIG_I2C_DEBUG_CORE is not set |
| 737 | # CONFIG_I2C_DEBUG_ALGO is not set | 738 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 738 | # CONFIG_I2C_DEBUG_BUS is not set | 739 | # CONFIG_I2C_DEBUG_BUS is not set |
| 739 | # CONFIG_I2C_DEBUG_CHIP is not set | 740 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 740 | |||
| 741 | # | ||
| 742 | # SPI support | ||
| 743 | # | ||
| 744 | CONFIG_SPI=y | 741 | CONFIG_SPI=y |
| 745 | CONFIG_SPI_MASTER=y | 742 | CONFIG_SPI_MASTER=y |
| 746 | 743 | ||
| @@ -790,12 +787,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 790 | # Multifunction device drivers | 787 | # Multifunction device drivers |
| 791 | # | 788 | # |
| 792 | # CONFIG_MFD_SM501 is not set | 789 | # CONFIG_MFD_SM501 is not set |
| 790 | # CONFIG_HTC_PASIC3 is not set | ||
| 793 | 791 | ||
| 794 | # | 792 | # |
| 795 | # Multimedia devices | 793 | # Multimedia devices |
| 796 | # | 794 | # |
| 795 | |||
| 796 | # | ||
| 797 | # Multimedia core support | ||
| 798 | # | ||
| 797 | # CONFIG_VIDEO_DEV is not set | 799 | # CONFIG_VIDEO_DEV is not set |
| 798 | # CONFIG_DVB_CORE is not set | 800 | # CONFIG_DVB_CORE is not set |
| 801 | # CONFIG_VIDEO_MEDIA is not set | ||
| 802 | |||
| 803 | # | ||
| 804 | # Multimedia drivers | ||
| 805 | # | ||
| 799 | CONFIG_DAB=y | 806 | CONFIG_DAB=y |
| 800 | # CONFIG_USB_DABUSB is not set | 807 | # CONFIG_USB_DABUSB is not set |
| 801 | 808 | ||
| @@ -833,16 +840,20 @@ CONFIG_USB=y | |||
| 833 | CONFIG_USB_DEVICE_CLASS=y | 840 | CONFIG_USB_DEVICE_CLASS=y |
| 834 | # CONFIG_USB_DYNAMIC_MINORS is not set | 841 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 835 | # CONFIG_USB_OTG is not set | 842 | # CONFIG_USB_OTG is not set |
| 843 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 844 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 836 | 845 | ||
| 837 | # | 846 | # |
| 838 | # USB Host Controller Drivers | 847 | # USB Host Controller Drivers |
| 839 | # | 848 | # |
| 849 | # CONFIG_USB_C67X00_HCD is not set | ||
| 840 | CONFIG_USB_EHCI_HCD=y | 850 | CONFIG_USB_EHCI_HCD=y |
| 841 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 851 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 842 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 852 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 843 | CONFIG_USB_EHCI_FSL=y | 853 | CONFIG_USB_EHCI_FSL=y |
| 844 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 854 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 845 | # CONFIG_USB_ISP116X_HCD is not set | 855 | # CONFIG_USB_ISP116X_HCD is not set |
| 856 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 846 | # CONFIG_USB_OHCI_HCD is not set | 857 | # CONFIG_USB_OHCI_HCD is not set |
| 847 | CONFIG_USB_UHCI_HCD=y | 858 | CONFIG_USB_UHCI_HCD=y |
| 848 | # CONFIG_USB_SL811_HCD is not set | 859 | # CONFIG_USB_SL811_HCD is not set |
| @@ -853,6 +864,7 @@ CONFIG_USB_UHCI_HCD=y | |||
| 853 | # | 864 | # |
| 854 | # CONFIG_USB_ACM is not set | 865 | # CONFIG_USB_ACM is not set |
| 855 | # CONFIG_USB_PRINTER is not set | 866 | # CONFIG_USB_PRINTER is not set |
| 867 | # CONFIG_USB_WDM is not set | ||
| 856 | 868 | ||
| 857 | # | 869 | # |
| 858 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 870 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -873,6 +885,7 @@ CONFIG_USB_STORAGE=y | |||
| 873 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 885 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 874 | # CONFIG_USB_STORAGE_ALAUDA is not set | 886 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 875 | # CONFIG_USB_STORAGE_KARMA is not set | 887 | # CONFIG_USB_STORAGE_KARMA is not set |
| 888 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 876 | # CONFIG_USB_LIBUSUAL is not set | 889 | # CONFIG_USB_LIBUSUAL is not set |
| 877 | 890 | ||
| 878 | # | 891 | # |
| @@ -909,10 +922,12 @@ CONFIG_USB_MON=y | |||
| 909 | # CONFIG_USB_LD is not set | 922 | # CONFIG_USB_LD is not set |
| 910 | # CONFIG_USB_TRANCEVIBRATOR is not set | 923 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 911 | # CONFIG_USB_IOWARRIOR is not set | 924 | # CONFIG_USB_IOWARRIOR is not set |
| 925 | # CONFIG_USB_ISIGHTFW is not set | ||
| 912 | # CONFIG_USB_GADGET is not set | 926 | # CONFIG_USB_GADGET is not set |
| 913 | # CONFIG_MMC is not set | 927 | # CONFIG_MMC is not set |
| 914 | # CONFIG_MEMSTICK is not set | 928 | # CONFIG_MEMSTICK is not set |
| 915 | # CONFIG_NEW_LEDS is not set | 929 | # CONFIG_NEW_LEDS is not set |
| 930 | # CONFIG_ACCESSIBILITY is not set | ||
| 916 | # CONFIG_INFINIBAND is not set | 931 | # CONFIG_INFINIBAND is not set |
| 917 | # CONFIG_EDAC is not set | 932 | # CONFIG_EDAC is not set |
| 918 | CONFIG_RTC_LIB=y | 933 | CONFIG_RTC_LIB=y |
| @@ -967,11 +982,8 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 967 | # | 982 | # |
| 968 | # on-CPU RTC drivers | 983 | # on-CPU RTC drivers |
| 969 | # | 984 | # |
| 985 | # CONFIG_RTC_DRV_PPC is not set | ||
| 970 | # CONFIG_DMADEVICES is not set | 986 | # CONFIG_DMADEVICES is not set |
| 971 | |||
| 972 | # | ||
| 973 | # Userspace I/O | ||
| 974 | # | ||
| 975 | # CONFIG_UIO is not set | 987 | # CONFIG_UIO is not set |
| 976 | 988 | ||
| 977 | # | 989 | # |
| @@ -991,7 +1003,6 @@ CONFIG_FS_MBCACHE=y | |||
| 991 | # CONFIG_JFS_FS is not set | 1003 | # CONFIG_JFS_FS is not set |
| 992 | # CONFIG_FS_POSIX_ACL is not set | 1004 | # CONFIG_FS_POSIX_ACL is not set |
| 993 | # CONFIG_XFS_FS is not set | 1005 | # CONFIG_XFS_FS is not set |
| 994 | # CONFIG_GFS2_FS is not set | ||
| 995 | # CONFIG_OCFS2_FS is not set | 1006 | # CONFIG_OCFS2_FS is not set |
| 996 | CONFIG_DNOTIFY=y | 1007 | CONFIG_DNOTIFY=y |
| 997 | CONFIG_INOTIFY=y | 1008 | CONFIG_INOTIFY=y |
| @@ -1053,7 +1064,6 @@ CONFIG_NFS_FS=y | |||
| 1053 | CONFIG_NFS_V3=y | 1064 | CONFIG_NFS_V3=y |
| 1054 | # CONFIG_NFS_V3_ACL is not set | 1065 | # CONFIG_NFS_V3_ACL is not set |
| 1055 | CONFIG_NFS_V4=y | 1066 | CONFIG_NFS_V4=y |
| 1056 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1057 | # CONFIG_NFSD is not set | 1067 | # CONFIG_NFSD is not set |
| 1058 | CONFIG_ROOT_NFS=y | 1068 | CONFIG_ROOT_NFS=y |
| 1059 | CONFIG_LOCKD=y | 1069 | CONFIG_LOCKD=y |
| @@ -1137,6 +1147,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1137 | # Library routines | 1147 | # Library routines |
| 1138 | # | 1148 | # |
| 1139 | CONFIG_BITREVERSE=y | 1149 | CONFIG_BITREVERSE=y |
| 1150 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1140 | # CONFIG_CRC_CCITT is not set | 1151 | # CONFIG_CRC_CCITT is not set |
| 1141 | # CONFIG_CRC16 is not set | 1152 | # CONFIG_CRC16 is not set |
| 1142 | # CONFIG_CRC_ITU_T is not set | 1153 | # CONFIG_CRC_ITU_T is not set |
| @@ -1147,6 +1158,7 @@ CONFIG_PLIST=y | |||
| 1147 | CONFIG_HAS_IOMEM=y | 1158 | CONFIG_HAS_IOMEM=y |
| 1148 | CONFIG_HAS_IOPORT=y | 1159 | CONFIG_HAS_IOPORT=y |
| 1149 | CONFIG_HAS_DMA=y | 1160 | CONFIG_HAS_DMA=y |
| 1161 | CONFIG_HAVE_LMB=y | ||
| 1150 | 1162 | ||
| 1151 | # | 1163 | # |
| 1152 | # Kernel hacking | 1164 | # Kernel hacking |
| @@ -1154,6 +1166,7 @@ CONFIG_HAS_DMA=y | |||
| 1154 | # CONFIG_PRINTK_TIME is not set | 1166 | # CONFIG_PRINTK_TIME is not set |
| 1155 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1167 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1156 | CONFIG_ENABLE_MUST_CHECK=y | 1168 | CONFIG_ENABLE_MUST_CHECK=y |
| 1169 | CONFIG_FRAME_WARN=1024 | ||
| 1157 | # CONFIG_MAGIC_SYSRQ is not set | 1170 | # CONFIG_MAGIC_SYSRQ is not set |
| 1158 | # CONFIG_UNUSED_SYMBOLS is not set | 1171 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1159 | # CONFIG_DEBUG_FS is not set | 1172 | # CONFIG_DEBUG_FS is not set |
| @@ -1163,6 +1176,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1163 | # CONFIG_SLUB_STATS is not set | 1176 | # CONFIG_SLUB_STATS is not set |
| 1164 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1177 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1165 | # CONFIG_SAMPLES is not set | 1178 | # CONFIG_SAMPLES is not set |
| 1179 | # CONFIG_IRQSTACKS is not set | ||
| 1166 | # CONFIG_PPC_EARLY_DEBUG is not set | 1180 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1167 | 1181 | ||
| 1168 | # | 1182 | # |
| @@ -1172,51 +1186,81 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1172 | # CONFIG_SECURITY is not set | 1186 | # CONFIG_SECURITY is not set |
| 1173 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1187 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1174 | CONFIG_CRYPTO=y | 1188 | CONFIG_CRYPTO=y |
| 1189 | |||
| 1190 | # | ||
| 1191 | # Crypto core or helper | ||
| 1192 | # | ||
| 1175 | CONFIG_CRYPTO_ALGAPI=y | 1193 | CONFIG_CRYPTO_ALGAPI=y |
| 1176 | CONFIG_CRYPTO_BLKCIPHER=y | 1194 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1177 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1178 | CONFIG_CRYPTO_MANAGER=y | 1195 | CONFIG_CRYPTO_MANAGER=y |
| 1196 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1197 | # CONFIG_CRYPTO_NULL is not set | ||
| 1198 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1199 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1200 | # CONFIG_CRYPTO_TEST is not set | ||
| 1201 | |||
| 1202 | # | ||
| 1203 | # Authenticated Encryption with Associated Data | ||
| 1204 | # | ||
| 1205 | # CONFIG_CRYPTO_CCM is not set | ||
| 1206 | # CONFIG_CRYPTO_GCM is not set | ||
| 1207 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1208 | |||
| 1209 | # | ||
| 1210 | # Block modes | ||
| 1211 | # | ||
| 1212 | CONFIG_CRYPTO_CBC=y | ||
| 1213 | # CONFIG_CRYPTO_CTR is not set | ||
| 1214 | # CONFIG_CRYPTO_CTS is not set | ||
| 1215 | # CONFIG_CRYPTO_ECB is not set | ||
| 1216 | # CONFIG_CRYPTO_LRW is not set | ||
| 1217 | CONFIG_CRYPTO_PCBC=m | ||
| 1218 | # CONFIG_CRYPTO_XTS is not set | ||
| 1219 | |||
| 1220 | # | ||
| 1221 | # Hash modes | ||
| 1222 | # | ||
| 1179 | # CONFIG_CRYPTO_HMAC is not set | 1223 | # CONFIG_CRYPTO_HMAC is not set |
| 1180 | # CONFIG_CRYPTO_XCBC is not set | 1224 | # CONFIG_CRYPTO_XCBC is not set |
| 1181 | # CONFIG_CRYPTO_NULL is not set | 1225 | |
| 1226 | # | ||
| 1227 | # Digest | ||
| 1228 | # | ||
| 1229 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1182 | # CONFIG_CRYPTO_MD4 is not set | 1230 | # CONFIG_CRYPTO_MD4 is not set |
| 1183 | CONFIG_CRYPTO_MD5=y | 1231 | CONFIG_CRYPTO_MD5=y |
| 1232 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1184 | # CONFIG_CRYPTO_SHA1 is not set | 1233 | # CONFIG_CRYPTO_SHA1 is not set |
| 1185 | # CONFIG_CRYPTO_SHA256 is not set | 1234 | # CONFIG_CRYPTO_SHA256 is not set |
| 1186 | # CONFIG_CRYPTO_SHA512 is not set | 1235 | # CONFIG_CRYPTO_SHA512 is not set |
| 1187 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1188 | # CONFIG_CRYPTO_TGR192 is not set | 1236 | # CONFIG_CRYPTO_TGR192 is not set |
| 1189 | # CONFIG_CRYPTO_GF128MUL is not set | 1237 | # CONFIG_CRYPTO_WP512 is not set |
| 1190 | # CONFIG_CRYPTO_ECB is not set | 1238 | |
| 1191 | CONFIG_CRYPTO_CBC=y | 1239 | # |
| 1192 | CONFIG_CRYPTO_PCBC=m | 1240 | # Ciphers |
| 1193 | # CONFIG_CRYPTO_LRW is not set | 1241 | # |
| 1194 | # CONFIG_CRYPTO_XTS is not set | ||
| 1195 | # CONFIG_CRYPTO_CTR is not set | ||
| 1196 | # CONFIG_CRYPTO_GCM is not set | ||
| 1197 | # CONFIG_CRYPTO_CCM is not set | ||
| 1198 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1199 | CONFIG_CRYPTO_DES=y | ||
| 1200 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1201 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1202 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1203 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1204 | # CONFIG_CRYPTO_AES is not set | 1242 | # CONFIG_CRYPTO_AES is not set |
| 1243 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1244 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1245 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1246 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1205 | # CONFIG_CRYPTO_CAST5 is not set | 1247 | # CONFIG_CRYPTO_CAST5 is not set |
| 1206 | # CONFIG_CRYPTO_CAST6 is not set | 1248 | # CONFIG_CRYPTO_CAST6 is not set |
| 1207 | # CONFIG_CRYPTO_TEA is not set | 1249 | CONFIG_CRYPTO_DES=y |
| 1208 | # CONFIG_CRYPTO_ARC4 is not set | 1250 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1209 | # CONFIG_CRYPTO_KHAZAD is not set | 1251 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1210 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1211 | # CONFIG_CRYPTO_SEED is not set | ||
| 1212 | # CONFIG_CRYPTO_SALSA20 is not set | 1252 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1253 | # CONFIG_CRYPTO_SEED is not set | ||
| 1254 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1255 | # CONFIG_CRYPTO_TEA is not set | ||
| 1256 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1257 | |||
| 1258 | # | ||
| 1259 | # Compression | ||
| 1260 | # | ||
| 1213 | # CONFIG_CRYPTO_DEFLATE is not set | 1261 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1214 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1215 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1216 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1217 | # CONFIG_CRYPTO_TEST is not set | ||
| 1218 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1219 | # CONFIG_CRYPTO_LZO is not set | 1262 | # CONFIG_CRYPTO_LZO is not set |
| 1220 | CONFIG_CRYPTO_HW=y | 1263 | CONFIG_CRYPTO_HW=y |
| 1221 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1264 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1222 | # CONFIG_PPC_CLOCK is not set | 1265 | # CONFIG_PPC_CLOCK is not set |
| 1266 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/83xx/mpc834x_mds_defconfig b/arch/powerpc/configs/83xx/mpc834x_mds_defconfig index b4e82c0e2be7..c82e96e984fc 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.25-rc7 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 31 11:36:56 2008 | 4 | # Mon Jun 9 08:52:26 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | # CONFIG_KALLSYMS is not set | 92 | # CONFIG_KALLSYMS is not set |
| 90 | CONFIG_HOTPLUG=y | 93 | CONFIG_HOTPLUG=y |
| 91 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
| @@ -110,12 +113,14 @@ CONFIG_SLUB=y | |||
| 110 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
| 111 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
| 112 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 113 | CONFIG_PROC_PAGE_MONITOR=y | 117 | CONFIG_PROC_PAGE_MONITOR=y |
| 114 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
| 115 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
| 116 | # CONFIG_TINY_SHMEM is not set | 120 | # CONFIG_TINY_SHMEM is not set |
| 117 | CONFIG_BASE_SMALL=0 | 121 | CONFIG_BASE_SMALL=0 |
| 118 | CONFIG_MODULES=y | 122 | CONFIG_MODULES=y |
| 123 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 119 | CONFIG_MODULE_UNLOAD=y | 124 | CONFIG_MODULE_UNLOAD=y |
| 120 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 121 | # CONFIG_MODVERSIONS is not set | 126 | # CONFIG_MODVERSIONS is not set |
| @@ -210,11 +215,13 @@ CONFIG_FLATMEM=y | |||
| 210 | CONFIG_FLAT_NODE_MEM_MAP=y | 215 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 211 | # CONFIG_SPARSEMEM_STATIC is not set | 216 | # CONFIG_SPARSEMEM_STATIC is not set |
| 212 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 213 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 214 | # CONFIG_RESOURCES_64BIT is not set | 220 | # CONFIG_RESOURCES_64BIT is not set |
| 215 | CONFIG_ZONE_DMA_FLAG=1 | 221 | CONFIG_ZONE_DMA_FLAG=1 |
| 216 | CONFIG_BOUNCE=y | 222 | CONFIG_BOUNCE=y |
| 217 | CONFIG_VIRT_TO_BUS=y | 223 | CONFIG_VIRT_TO_BUS=y |
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 218 | CONFIG_PROC_DEVICETREE=y | 225 | CONFIG_PROC_DEVICETREE=y |
| 219 | # CONFIG_CMDLINE_BOOL is not set | 226 | # CONFIG_CMDLINE_BOOL is not set |
| 220 | # CONFIG_PM is not set | 227 | # CONFIG_PM is not set |
| @@ -237,6 +244,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 237 | CONFIG_PCI_LEGACY=y | 244 | CONFIG_PCI_LEGACY=y |
| 238 | # CONFIG_PCCARD is not set | 245 | # CONFIG_PCCARD is not set |
| 239 | # CONFIG_HOTPLUG_PCI is not set | 246 | # CONFIG_HOTPLUG_PCI is not set |
| 247 | # CONFIG_HAS_RAPIDIO is not set | ||
| 240 | 248 | ||
| 241 | # | 249 | # |
| 242 | # Advanced setup | 250 | # Advanced setup |
| @@ -246,11 +254,11 @@ CONFIG_PCI_LEGACY=y | |||
| 246 | # | 254 | # |
| 247 | # Default settings for advanced configuration options are used | 255 | # Default settings for advanced configuration options are used |
| 248 | # | 256 | # |
| 249 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 250 | CONFIG_LOWMEM_SIZE=0x30000000 | 257 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 258 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 251 | CONFIG_KERNEL_START=0xc0000000 | 259 | CONFIG_KERNEL_START=0xc0000000 |
| 260 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 252 | CONFIG_TASK_SIZE=0xc0000000 | 261 | CONFIG_TASK_SIZE=0xc0000000 |
| 253 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 254 | 262 | ||
| 255 | # | 263 | # |
| 256 | # Networking | 264 | # Networking |
| @@ -298,8 +306,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 298 | CONFIG_DEFAULT_TCP_CONG="cubic" | 306 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 299 | # CONFIG_TCP_MD5SIG is not set | 307 | # CONFIG_TCP_MD5SIG is not set |
| 300 | # CONFIG_IPV6 is not set | 308 | # CONFIG_IPV6 is not set |
| 301 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 302 | # CONFIG_INET6_TUNNEL is not set | ||
| 303 | # CONFIG_NETWORK_SECMARK is not set | 309 | # CONFIG_NETWORK_SECMARK is not set |
| 304 | # CONFIG_NETFILTER is not set | 310 | # CONFIG_NETFILTER is not set |
| 305 | # CONFIG_IP_DCCP is not set | 311 | # CONFIG_IP_DCCP is not set |
| @@ -353,6 +359,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 353 | # CONFIG_CONNECTOR is not set | 359 | # CONFIG_CONNECTOR is not set |
| 354 | # CONFIG_MTD is not set | 360 | # CONFIG_MTD is not set |
| 355 | CONFIG_OF_DEVICE=y | 361 | CONFIG_OF_DEVICE=y |
| 362 | CONFIG_OF_I2C=y | ||
| 356 | # CONFIG_PARPORT is not set | 363 | # CONFIG_PARPORT is not set |
| 357 | CONFIG_BLK_DEV=y | 364 | CONFIG_BLK_DEV=y |
| 358 | # CONFIG_BLK_DEV_FD is not set | 365 | # CONFIG_BLK_DEV_FD is not set |
| @@ -471,7 +478,6 @@ CONFIG_NETDEV_1000=y | |||
| 471 | # CONFIG_SIS190 is not set | 478 | # CONFIG_SIS190 is not set |
| 472 | # CONFIG_SKGE is not set | 479 | # CONFIG_SKGE is not set |
| 473 | # CONFIG_SKY2 is not set | 480 | # CONFIG_SKY2 is not set |
| 474 | # CONFIG_SK98LIN is not set | ||
| 475 | # CONFIG_VIA_VELOCITY is not set | 481 | # CONFIG_VIA_VELOCITY is not set |
| 476 | # CONFIG_TIGON3 is not set | 482 | # CONFIG_TIGON3 is not set |
| 477 | # CONFIG_BNX2 is not set | 483 | # CONFIG_BNX2 is not set |
| @@ -491,6 +497,7 @@ CONFIG_NETDEV_10000=y | |||
| 491 | # CONFIG_MLX4_CORE is not set | 497 | # CONFIG_MLX4_CORE is not set |
| 492 | # CONFIG_TEHUTI is not set | 498 | # CONFIG_TEHUTI is not set |
| 493 | # CONFIG_BNX2X is not set | 499 | # CONFIG_BNX2X is not set |
| 500 | # CONFIG_SFC is not set | ||
| 494 | # CONFIG_TR is not set | 501 | # CONFIG_TR is not set |
| 495 | 502 | ||
| 496 | # | 503 | # |
| @@ -498,6 +505,7 @@ CONFIG_NETDEV_10000=y | |||
| 498 | # | 505 | # |
| 499 | # CONFIG_WLAN_PRE80211 is not set | 506 | # CONFIG_WLAN_PRE80211 is not set |
| 500 | # CONFIG_WLAN_80211 is not set | 507 | # CONFIG_WLAN_80211 is not set |
| 508 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 501 | # CONFIG_WAN is not set | 509 | # CONFIG_WAN is not set |
| 502 | # CONFIG_FDDI is not set | 510 | # CONFIG_FDDI is not set |
| 503 | # CONFIG_HIPPI is not set | 511 | # CONFIG_HIPPI is not set |
| @@ -544,6 +552,7 @@ CONFIG_INPUT=y | |||
| 544 | # Character devices | 552 | # Character devices |
| 545 | # | 553 | # |
| 546 | # CONFIG_VT is not set | 554 | # CONFIG_VT is not set |
| 555 | CONFIG_DEVKMEM=y | ||
| 547 | # CONFIG_SERIAL_NONSTANDARD is not set | 556 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 548 | # CONFIG_NOZOMI is not set | 557 | # CONFIG_NOZOMI is not set |
| 549 | 558 | ||
| @@ -571,7 +580,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 571 | # CONFIG_IPMI_HANDLER is not set | 580 | # CONFIG_IPMI_HANDLER is not set |
| 572 | # CONFIG_HW_RANDOM is not set | 581 | # CONFIG_HW_RANDOM is not set |
| 573 | # CONFIG_NVRAM is not set | 582 | # CONFIG_NVRAM is not set |
| 574 | # CONFIG_GEN_RTC is not set | ||
| 575 | # CONFIG_R3964 is not set | 583 | # CONFIG_R3964 is not set |
| 576 | # CONFIG_APPLICOM is not set | 584 | # CONFIG_APPLICOM is not set |
| 577 | # CONFIG_RAW_DRIVER is not set | 585 | # CONFIG_RAW_DRIVER is not set |
| @@ -582,13 +590,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 582 | CONFIG_I2C_CHARDEV=y | 590 | CONFIG_I2C_CHARDEV=y |
| 583 | 591 | ||
| 584 | # | 592 | # |
| 585 | # I2C Algorithms | ||
| 586 | # | ||
| 587 | # CONFIG_I2C_ALGOBIT is not set | ||
| 588 | # CONFIG_I2C_ALGOPCF is not set | ||
| 589 | # CONFIG_I2C_ALGOPCA is not set | ||
| 590 | |||
| 591 | # | ||
| 592 | # I2C Hardware Bus support | 593 | # I2C Hardware Bus support |
| 593 | # | 594 | # |
| 594 | # CONFIG_I2C_ALI1535 is not set | 595 | # CONFIG_I2C_ALI1535 is not set |
| @@ -614,6 +615,7 @@ CONFIG_I2C_MPC=y | |||
| 614 | # CONFIG_I2C_VIA is not set | 615 | # CONFIG_I2C_VIA is not set |
| 615 | # CONFIG_I2C_VIAPRO is not set | 616 | # CONFIG_I2C_VIAPRO is not set |
| 616 | # CONFIG_I2C_VOODOO3 is not set | 617 | # CONFIG_I2C_VOODOO3 is not set |
| 618 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 617 | 619 | ||
| 618 | # | 620 | # |
| 619 | # Miscellaneous I2C Chip support | 621 | # Miscellaneous I2C Chip support |
| @@ -623,19 +625,13 @@ CONFIG_I2C_MPC=y | |||
| 623 | # CONFIG_SENSORS_PCF8574 is not set | 625 | # CONFIG_SENSORS_PCF8574 is not set |
| 624 | # CONFIG_PCF8575 is not set | 626 | # CONFIG_PCF8575 is not set |
| 625 | # CONFIG_SENSORS_PCF8591 is not set | 627 | # CONFIG_SENSORS_PCF8591 is not set |
| 626 | # CONFIG_TPS65010 is not set | ||
| 627 | # CONFIG_SENSORS_MAX6875 is not set | 628 | # CONFIG_SENSORS_MAX6875 is not set |
| 628 | # CONFIG_SENSORS_TSL2550 is not set | 629 | # CONFIG_SENSORS_TSL2550 is not set |
| 629 | # CONFIG_I2C_DEBUG_CORE is not set | 630 | # CONFIG_I2C_DEBUG_CORE is not set |
| 630 | # CONFIG_I2C_DEBUG_ALGO is not set | 631 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 631 | # CONFIG_I2C_DEBUG_BUS is not set | 632 | # CONFIG_I2C_DEBUG_BUS is not set |
| 632 | # CONFIG_I2C_DEBUG_CHIP is not set | 633 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 633 | |||
| 634 | # | ||
| 635 | # SPI support | ||
| 636 | # | ||
| 637 | # CONFIG_SPI is not set | 634 | # CONFIG_SPI is not set |
| 638 | # CONFIG_SPI_MASTER is not set | ||
| 639 | # CONFIG_W1 is not set | 635 | # CONFIG_W1 is not set |
| 640 | # CONFIG_POWER_SUPPLY is not set | 636 | # CONFIG_POWER_SUPPLY is not set |
| 641 | CONFIG_HWMON=y | 637 | CONFIG_HWMON=y |
| @@ -718,12 +714,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 718 | # Multifunction device drivers | 714 | # Multifunction device drivers |
| 719 | # | 715 | # |
| 720 | # CONFIG_MFD_SM501 is not set | 716 | # CONFIG_MFD_SM501 is not set |
| 717 | # CONFIG_HTC_PASIC3 is not set | ||
| 721 | 718 | ||
| 722 | # | 719 | # |
| 723 | # Multimedia devices | 720 | # Multimedia devices |
| 724 | # | 721 | # |
| 722 | |||
| 723 | # | ||
| 724 | # Multimedia core support | ||
| 725 | # | ||
| 725 | # CONFIG_VIDEO_DEV is not set | 726 | # CONFIG_VIDEO_DEV is not set |
| 726 | # CONFIG_DVB_CORE is not set | 727 | # CONFIG_DVB_CORE is not set |
| 728 | # CONFIG_VIDEO_MEDIA is not set | ||
| 729 | |||
| 730 | # | ||
| 731 | # Multimedia drivers | ||
| 732 | # | ||
| 727 | CONFIG_DAB=y | 733 | CONFIG_DAB=y |
| 728 | 734 | ||
| 729 | # | 735 | # |
| @@ -754,6 +760,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 754 | CONFIG_USB_ARCH_HAS_OHCI=y | 760 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 755 | CONFIG_USB_ARCH_HAS_EHCI=y | 761 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 756 | # CONFIG_USB is not set | 762 | # CONFIG_USB is not set |
| 763 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 764 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 757 | 765 | ||
| 758 | # | 766 | # |
| 759 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 767 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -762,6 +770,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 762 | # CONFIG_MMC is not set | 770 | # CONFIG_MMC is not set |
| 763 | # CONFIG_MEMSTICK is not set | 771 | # CONFIG_MEMSTICK is not set |
| 764 | # CONFIG_NEW_LEDS is not set | 772 | # CONFIG_NEW_LEDS is not set |
| 773 | # CONFIG_ACCESSIBILITY is not set | ||
| 765 | # CONFIG_INFINIBAND is not set | 774 | # CONFIG_INFINIBAND is not set |
| 766 | # CONFIG_EDAC is not set | 775 | # CONFIG_EDAC is not set |
| 767 | CONFIG_RTC_LIB=y | 776 | CONFIG_RTC_LIB=y |
| @@ -813,11 +822,8 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 813 | # | 822 | # |
| 814 | # on-CPU RTC drivers | 823 | # on-CPU RTC drivers |
| 815 | # | 824 | # |
| 825 | # CONFIG_RTC_DRV_PPC is not set | ||
| 816 | # CONFIG_DMADEVICES is not set | 826 | # CONFIG_DMADEVICES is not set |
| 817 | |||
| 818 | # | ||
| 819 | # Userspace I/O | ||
| 820 | # | ||
| 821 | # CONFIG_UIO is not set | 827 | # CONFIG_UIO is not set |
| 822 | 828 | ||
| 823 | # | 829 | # |
| @@ -837,7 +843,6 @@ CONFIG_FS_MBCACHE=y | |||
| 837 | # CONFIG_JFS_FS is not set | 843 | # CONFIG_JFS_FS is not set |
| 838 | # CONFIG_FS_POSIX_ACL is not set | 844 | # CONFIG_FS_POSIX_ACL is not set |
| 839 | # CONFIG_XFS_FS is not set | 845 | # CONFIG_XFS_FS is not set |
| 840 | # CONFIG_GFS2_FS is not set | ||
| 841 | # CONFIG_OCFS2_FS is not set | 846 | # CONFIG_OCFS2_FS is not set |
| 842 | CONFIG_DNOTIFY=y | 847 | CONFIG_DNOTIFY=y |
| 843 | CONFIG_INOTIFY=y | 848 | CONFIG_INOTIFY=y |
| @@ -895,7 +900,6 @@ CONFIG_NFS_FS=y | |||
| 895 | CONFIG_NFS_V3=y | 900 | CONFIG_NFS_V3=y |
| 896 | # CONFIG_NFS_V3_ACL is not set | 901 | # CONFIG_NFS_V3_ACL is not set |
| 897 | CONFIG_NFS_V4=y | 902 | CONFIG_NFS_V4=y |
| 898 | # CONFIG_NFS_DIRECTIO is not set | ||
| 899 | # CONFIG_NFSD is not set | 903 | # CONFIG_NFSD is not set |
| 900 | CONFIG_ROOT_NFS=y | 904 | CONFIG_ROOT_NFS=y |
| 901 | CONFIG_LOCKD=y | 905 | CONFIG_LOCKD=y |
| @@ -936,6 +940,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 936 | # Library routines | 940 | # Library routines |
| 937 | # | 941 | # |
| 938 | CONFIG_BITREVERSE=y | 942 | CONFIG_BITREVERSE=y |
| 943 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 939 | # CONFIG_CRC_CCITT is not set | 944 | # CONFIG_CRC_CCITT is not set |
| 940 | # CONFIG_CRC16 is not set | 945 | # CONFIG_CRC16 is not set |
| 941 | # CONFIG_CRC_ITU_T is not set | 946 | # CONFIG_CRC_ITU_T is not set |
| @@ -946,6 +951,7 @@ CONFIG_PLIST=y | |||
| 946 | CONFIG_HAS_IOMEM=y | 951 | CONFIG_HAS_IOMEM=y |
| 947 | CONFIG_HAS_IOPORT=y | 952 | CONFIG_HAS_IOPORT=y |
| 948 | CONFIG_HAS_DMA=y | 953 | CONFIG_HAS_DMA=y |
| 954 | CONFIG_HAVE_LMB=y | ||
| 949 | 955 | ||
| 950 | # | 956 | # |
| 951 | # Kernel hacking | 957 | # Kernel hacking |
| @@ -953,6 +959,7 @@ CONFIG_HAS_DMA=y | |||
| 953 | # CONFIG_PRINTK_TIME is not set | 959 | # CONFIG_PRINTK_TIME is not set |
| 954 | CONFIG_ENABLE_WARN_DEPRECATED=y | 960 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 955 | CONFIG_ENABLE_MUST_CHECK=y | 961 | CONFIG_ENABLE_MUST_CHECK=y |
| 962 | CONFIG_FRAME_WARN=1024 | ||
| 956 | # CONFIG_MAGIC_SYSRQ is not set | 963 | # CONFIG_MAGIC_SYSRQ is not set |
| 957 | # CONFIG_UNUSED_SYMBOLS is not set | 964 | # CONFIG_UNUSED_SYMBOLS is not set |
| 958 | # CONFIG_DEBUG_FS is not set | 965 | # CONFIG_DEBUG_FS is not set |
| @@ -962,6 +969,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 962 | # CONFIG_SLUB_STATS is not set | 969 | # CONFIG_SLUB_STATS is not set |
| 963 | # CONFIG_DEBUG_BUGVERBOSE is not set | 970 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 964 | # CONFIG_SAMPLES is not set | 971 | # CONFIG_SAMPLES is not set |
| 972 | # CONFIG_IRQSTACKS is not set | ||
| 965 | # CONFIG_PPC_EARLY_DEBUG is not set | 973 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 966 | 974 | ||
| 967 | # | 975 | # |
| @@ -971,51 +979,81 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 971 | # CONFIG_SECURITY is not set | 979 | # CONFIG_SECURITY is not set |
| 972 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 980 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 973 | CONFIG_CRYPTO=y | 981 | CONFIG_CRYPTO=y |
| 982 | |||
| 983 | # | ||
| 984 | # Crypto core or helper | ||
| 985 | # | ||
| 974 | CONFIG_CRYPTO_ALGAPI=y | 986 | CONFIG_CRYPTO_ALGAPI=y |
| 975 | CONFIG_CRYPTO_BLKCIPHER=y | 987 | CONFIG_CRYPTO_BLKCIPHER=y |
| 976 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 977 | CONFIG_CRYPTO_MANAGER=y | 988 | CONFIG_CRYPTO_MANAGER=y |
| 989 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 990 | # CONFIG_CRYPTO_NULL is not set | ||
| 991 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 992 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 993 | # CONFIG_CRYPTO_TEST is not set | ||
| 994 | |||
| 995 | # | ||
| 996 | # Authenticated Encryption with Associated Data | ||
| 997 | # | ||
| 998 | # CONFIG_CRYPTO_CCM is not set | ||
| 999 | # CONFIG_CRYPTO_GCM is not set | ||
| 1000 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1001 | |||
| 1002 | # | ||
| 1003 | # Block modes | ||
| 1004 | # | ||
| 1005 | CONFIG_CRYPTO_CBC=y | ||
| 1006 | # CONFIG_CRYPTO_CTR is not set | ||
| 1007 | # CONFIG_CRYPTO_CTS is not set | ||
| 1008 | CONFIG_CRYPTO_ECB=m | ||
| 1009 | # CONFIG_CRYPTO_LRW is not set | ||
| 1010 | CONFIG_CRYPTO_PCBC=m | ||
| 1011 | # CONFIG_CRYPTO_XTS is not set | ||
| 1012 | |||
| 1013 | # | ||
| 1014 | # Hash modes | ||
| 1015 | # | ||
| 978 | # CONFIG_CRYPTO_HMAC is not set | 1016 | # CONFIG_CRYPTO_HMAC is not set |
| 979 | # CONFIG_CRYPTO_XCBC is not set | 1017 | # CONFIG_CRYPTO_XCBC is not set |
| 980 | # CONFIG_CRYPTO_NULL is not set | 1018 | |
| 1019 | # | ||
| 1020 | # Digest | ||
| 1021 | # | ||
| 1022 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 981 | # CONFIG_CRYPTO_MD4 is not set | 1023 | # CONFIG_CRYPTO_MD4 is not set |
| 982 | CONFIG_CRYPTO_MD5=y | 1024 | CONFIG_CRYPTO_MD5=y |
| 1025 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 983 | # CONFIG_CRYPTO_SHA1 is not set | 1026 | # CONFIG_CRYPTO_SHA1 is not set |
| 984 | # CONFIG_CRYPTO_SHA256 is not set | 1027 | # CONFIG_CRYPTO_SHA256 is not set |
| 985 | # CONFIG_CRYPTO_SHA512 is not set | 1028 | # CONFIG_CRYPTO_SHA512 is not set |
| 986 | # CONFIG_CRYPTO_WP512 is not set | ||
| 987 | # CONFIG_CRYPTO_TGR192 is not set | 1029 | # CONFIG_CRYPTO_TGR192 is not set |
| 988 | # CONFIG_CRYPTO_GF128MUL is not set | 1030 | # CONFIG_CRYPTO_WP512 is not set |
| 989 | CONFIG_CRYPTO_ECB=m | 1031 | |
| 990 | CONFIG_CRYPTO_CBC=y | 1032 | # |
| 991 | CONFIG_CRYPTO_PCBC=m | 1033 | # Ciphers |
| 992 | # CONFIG_CRYPTO_LRW is not set | 1034 | # |
| 993 | # CONFIG_CRYPTO_XTS is not set | ||
| 994 | # CONFIG_CRYPTO_CTR is not set | ||
| 995 | # CONFIG_CRYPTO_GCM is not set | ||
| 996 | # CONFIG_CRYPTO_CCM is not set | ||
| 997 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 998 | CONFIG_CRYPTO_DES=y | ||
| 999 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1000 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1001 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1002 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1003 | # CONFIG_CRYPTO_AES is not set | 1035 | # CONFIG_CRYPTO_AES is not set |
| 1036 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1037 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1038 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1039 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1004 | # CONFIG_CRYPTO_CAST5 is not set | 1040 | # CONFIG_CRYPTO_CAST5 is not set |
| 1005 | # CONFIG_CRYPTO_CAST6 is not set | 1041 | # CONFIG_CRYPTO_CAST6 is not set |
| 1006 | # CONFIG_CRYPTO_TEA is not set | 1042 | CONFIG_CRYPTO_DES=y |
| 1007 | # CONFIG_CRYPTO_ARC4 is not set | 1043 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1008 | # CONFIG_CRYPTO_KHAZAD is not set | 1044 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1009 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1010 | # CONFIG_CRYPTO_SEED is not set | ||
| 1011 | # CONFIG_CRYPTO_SALSA20 is not set | 1045 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1046 | # CONFIG_CRYPTO_SEED is not set | ||
| 1047 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1048 | # CONFIG_CRYPTO_TEA is not set | ||
| 1049 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1050 | |||
| 1051 | # | ||
| 1052 | # Compression | ||
| 1053 | # | ||
| 1012 | # CONFIG_CRYPTO_DEFLATE is not set | 1054 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1013 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1014 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1015 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1016 | # CONFIG_CRYPTO_TEST is not set | ||
| 1017 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1018 | # CONFIG_CRYPTO_LZO is not set | 1055 | # CONFIG_CRYPTO_LZO is not set |
| 1019 | CONFIG_CRYPTO_HW=y | 1056 | CONFIG_CRYPTO_HW=y |
| 1020 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1057 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1021 | # CONFIG_PPC_CLOCK is not set | 1058 | # CONFIG_PPC_CLOCK is not set |
| 1059 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/83xx/mpc836x_mds_defconfig b/arch/powerpc/configs/83xx/mpc836x_mds_defconfig index d50a96eddcdc..20fd9f58cf42 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.25-rc7 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 31 11:36:57 2008 | 4 | # Mon Jun 9 08:52:27 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | # CONFIG_KALLSYMS is not set | 92 | # CONFIG_KALLSYMS is not set |
| 90 | CONFIG_HOTPLUG=y | 93 | CONFIG_HOTPLUG=y |
| 91 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
| @@ -110,12 +113,14 @@ CONFIG_SLUB=y | |||
| 110 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
| 111 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
| 112 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
| 116 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 113 | CONFIG_PROC_PAGE_MONITOR=y | 117 | CONFIG_PROC_PAGE_MONITOR=y |
| 114 | CONFIG_SLABINFO=y | 118 | CONFIG_SLABINFO=y |
| 115 | CONFIG_RT_MUTEXES=y | 119 | CONFIG_RT_MUTEXES=y |
| 116 | # CONFIG_TINY_SHMEM is not set | 120 | # CONFIG_TINY_SHMEM is not set |
| 117 | CONFIG_BASE_SMALL=0 | 121 | CONFIG_BASE_SMALL=0 |
| 118 | CONFIG_MODULES=y | 122 | CONFIG_MODULES=y |
| 123 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 119 | CONFIG_MODULE_UNLOAD=y | 124 | CONFIG_MODULE_UNLOAD=y |
| 120 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 125 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 121 | # CONFIG_MODVERSIONS is not set | 126 | # CONFIG_MODVERSIONS is not set |
| @@ -210,11 +215,13 @@ CONFIG_FLATMEM=y | |||
| 210 | CONFIG_FLAT_NODE_MEM_MAP=y | 215 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 211 | # CONFIG_SPARSEMEM_STATIC is not set | 216 | # CONFIG_SPARSEMEM_STATIC is not set |
| 212 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 213 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 214 | # CONFIG_RESOURCES_64BIT is not set | 220 | # CONFIG_RESOURCES_64BIT is not set |
| 215 | CONFIG_ZONE_DMA_FLAG=1 | 221 | CONFIG_ZONE_DMA_FLAG=1 |
| 216 | CONFIG_BOUNCE=y | 222 | CONFIG_BOUNCE=y |
| 217 | CONFIG_VIRT_TO_BUS=y | 223 | CONFIG_VIRT_TO_BUS=y |
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 218 | CONFIG_PROC_DEVICETREE=y | 225 | CONFIG_PROC_DEVICETREE=y |
| 219 | # CONFIG_CMDLINE_BOOL is not set | 226 | # CONFIG_CMDLINE_BOOL is not set |
| 220 | # CONFIG_PM is not set | 227 | # CONFIG_PM is not set |
| @@ -237,6 +244,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 237 | CONFIG_PCI_LEGACY=y | 244 | CONFIG_PCI_LEGACY=y |
| 238 | # CONFIG_PCCARD is not set | 245 | # CONFIG_PCCARD is not set |
| 239 | # CONFIG_HOTPLUG_PCI is not set | 246 | # CONFIG_HOTPLUG_PCI is not set |
| 247 | # CONFIG_HAS_RAPIDIO is not set | ||
| 240 | 248 | ||
| 241 | # | 249 | # |
| 242 | # Advanced setup | 250 | # Advanced setup |
| @@ -246,11 +254,11 @@ CONFIG_PCI_LEGACY=y | |||
| 246 | # | 254 | # |
| 247 | # Default settings for advanced configuration options are used | 255 | # Default settings for advanced configuration options are used |
| 248 | # | 256 | # |
| 249 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 250 | CONFIG_LOWMEM_SIZE=0x30000000 | 257 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 258 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 251 | CONFIG_KERNEL_START=0xc0000000 | 259 | CONFIG_KERNEL_START=0xc0000000 |
| 260 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 252 | CONFIG_TASK_SIZE=0xc0000000 | 261 | CONFIG_TASK_SIZE=0xc0000000 |
| 253 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 254 | 262 | ||
| 255 | # | 263 | # |
| 256 | # Networking | 264 | # Networking |
| @@ -298,8 +306,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 298 | CONFIG_DEFAULT_TCP_CONG="cubic" | 306 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 299 | # CONFIG_TCP_MD5SIG is not set | 307 | # CONFIG_TCP_MD5SIG is not set |
| 300 | # CONFIG_IPV6 is not set | 308 | # CONFIG_IPV6 is not set |
| 301 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 302 | # CONFIG_INET6_TUNNEL is not set | ||
| 303 | # CONFIG_NETWORK_SECMARK is not set | 309 | # CONFIG_NETWORK_SECMARK is not set |
| 304 | # CONFIG_NETFILTER is not set | 310 | # CONFIG_NETFILTER is not set |
| 305 | # CONFIG_IP_DCCP is not set | 311 | # CONFIG_IP_DCCP is not set |
| @@ -353,6 +359,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 353 | # CONFIG_CONNECTOR is not set | 359 | # CONFIG_CONNECTOR is not set |
| 354 | # CONFIG_MTD is not set | 360 | # CONFIG_MTD is not set |
| 355 | CONFIG_OF_DEVICE=y | 361 | CONFIG_OF_DEVICE=y |
| 362 | CONFIG_OF_I2C=y | ||
| 356 | # CONFIG_PARPORT is not set | 363 | # CONFIG_PARPORT is not set |
| 357 | CONFIG_BLK_DEV=y | 364 | CONFIG_BLK_DEV=y |
| 358 | # CONFIG_BLK_DEV_FD is not set | 365 | # CONFIG_BLK_DEV_FD is not set |
| @@ -520,7 +527,6 @@ CONFIG_NETDEV_1000=y | |||
| 520 | # CONFIG_SIS190 is not set | 527 | # CONFIG_SIS190 is not set |
| 521 | # CONFIG_SKGE is not set | 528 | # CONFIG_SKGE is not set |
| 522 | # CONFIG_SKY2 is not set | 529 | # CONFIG_SKY2 is not set |
| 523 | # CONFIG_SK98LIN is not set | ||
| 524 | # CONFIG_VIA_VELOCITY is not set | 530 | # CONFIG_VIA_VELOCITY is not set |
| 525 | # CONFIG_TIGON3 is not set | 531 | # CONFIG_TIGON3 is not set |
| 526 | # CONFIG_BNX2 is not set | 532 | # CONFIG_BNX2 is not set |
| @@ -544,6 +550,7 @@ CONFIG_NETDEV_10000=y | |||
| 544 | # CONFIG_MLX4_CORE is not set | 550 | # CONFIG_MLX4_CORE is not set |
| 545 | # CONFIG_TEHUTI is not set | 551 | # CONFIG_TEHUTI is not set |
| 546 | # CONFIG_BNX2X is not set | 552 | # CONFIG_BNX2X is not set |
| 553 | # CONFIG_SFC is not set | ||
| 547 | # CONFIG_TR is not set | 554 | # CONFIG_TR is not set |
| 548 | 555 | ||
| 549 | # | 556 | # |
| @@ -551,6 +558,7 @@ CONFIG_NETDEV_10000=y | |||
| 551 | # | 558 | # |
| 552 | # CONFIG_WLAN_PRE80211 is not set | 559 | # CONFIG_WLAN_PRE80211 is not set |
| 553 | # CONFIG_WLAN_80211 is not set | 560 | # CONFIG_WLAN_80211 is not set |
| 561 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 554 | # CONFIG_WAN is not set | 562 | # CONFIG_WAN is not set |
| 555 | # CONFIG_FDDI is not set | 563 | # CONFIG_FDDI is not set |
| 556 | # CONFIG_HIPPI is not set | 564 | # CONFIG_HIPPI is not set |
| @@ -598,6 +606,7 @@ CONFIG_INPUT=y | |||
| 598 | # Character devices | 606 | # Character devices |
| 599 | # | 607 | # |
| 600 | # CONFIG_VT is not set | 608 | # CONFIG_VT is not set |
| 609 | CONFIG_DEVKMEM=y | ||
| 601 | # CONFIG_SERIAL_NONSTANDARD is not set | 610 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 602 | # CONFIG_NOZOMI is not set | 611 | # CONFIG_NOZOMI is not set |
| 603 | 612 | ||
| @@ -626,7 +635,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 626 | # CONFIG_IPMI_HANDLER is not set | 635 | # CONFIG_IPMI_HANDLER is not set |
| 627 | CONFIG_HW_RANDOM=y | 636 | CONFIG_HW_RANDOM=y |
| 628 | # CONFIG_NVRAM is not set | 637 | # CONFIG_NVRAM is not set |
| 629 | # CONFIG_GEN_RTC is not set | ||
| 630 | # CONFIG_R3964 is not set | 638 | # CONFIG_R3964 is not set |
| 631 | # CONFIG_APPLICOM is not set | 639 | # CONFIG_APPLICOM is not set |
| 632 | # CONFIG_RAW_DRIVER is not set | 640 | # CONFIG_RAW_DRIVER is not set |
| @@ -637,13 +645,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 637 | CONFIG_I2C_CHARDEV=y | 645 | CONFIG_I2C_CHARDEV=y |
| 638 | 646 | ||
| 639 | # | 647 | # |
| 640 | # I2C Algorithms | ||
| 641 | # | ||
| 642 | # CONFIG_I2C_ALGOBIT is not set | ||
| 643 | # CONFIG_I2C_ALGOPCF is not set | ||
| 644 | # CONFIG_I2C_ALGOPCA is not set | ||
| 645 | |||
| 646 | # | ||
| 647 | # I2C Hardware Bus support | 648 | # I2C Hardware Bus support |
| 648 | # | 649 | # |
| 649 | # CONFIG_I2C_ALI1535 is not set | 650 | # CONFIG_I2C_ALI1535 is not set |
| @@ -669,6 +670,7 @@ CONFIG_I2C_MPC=y | |||
| 669 | # CONFIG_I2C_VIA is not set | 670 | # CONFIG_I2C_VIA is not set |
| 670 | # CONFIG_I2C_VIAPRO is not set | 671 | # CONFIG_I2C_VIAPRO is not set |
| 671 | # CONFIG_I2C_VOODOO3 is not set | 672 | # CONFIG_I2C_VOODOO3 is not set |
| 673 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 672 | 674 | ||
| 673 | # | 675 | # |
| 674 | # Miscellaneous I2C Chip support | 676 | # Miscellaneous I2C Chip support |
| @@ -678,19 +680,13 @@ CONFIG_I2C_MPC=y | |||
| 678 | # CONFIG_SENSORS_PCF8574 is not set | 680 | # CONFIG_SENSORS_PCF8574 is not set |
| 679 | # CONFIG_PCF8575 is not set | 681 | # CONFIG_PCF8575 is not set |
| 680 | # CONFIG_SENSORS_PCF8591 is not set | 682 | # CONFIG_SENSORS_PCF8591 is not set |
| 681 | # CONFIG_TPS65010 is not set | ||
| 682 | # CONFIG_SENSORS_MAX6875 is not set | 683 | # CONFIG_SENSORS_MAX6875 is not set |
| 683 | # CONFIG_SENSORS_TSL2550 is not set | 684 | # CONFIG_SENSORS_TSL2550 is not set |
| 684 | # CONFIG_I2C_DEBUG_CORE is not set | 685 | # CONFIG_I2C_DEBUG_CORE is not set |
| 685 | # CONFIG_I2C_DEBUG_ALGO is not set | 686 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 686 | # CONFIG_I2C_DEBUG_BUS is not set | 687 | # CONFIG_I2C_DEBUG_BUS is not set |
| 687 | # CONFIG_I2C_DEBUG_CHIP is not set | 688 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 688 | |||
| 689 | # | ||
| 690 | # SPI support | ||
| 691 | # | ||
| 692 | # CONFIG_SPI is not set | 689 | # CONFIG_SPI is not set |
| 693 | # CONFIG_SPI_MASTER is not set | ||
| 694 | # CONFIG_W1 is not set | 690 | # CONFIG_W1 is not set |
| 695 | # CONFIG_POWER_SUPPLY is not set | 691 | # CONFIG_POWER_SUPPLY is not set |
| 696 | CONFIG_HWMON=y | 692 | CONFIG_HWMON=y |
| @@ -773,12 +769,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 773 | # Multifunction device drivers | 769 | # Multifunction device drivers |
| 774 | # | 770 | # |
| 775 | # CONFIG_MFD_SM501 is not set | 771 | # CONFIG_MFD_SM501 is not set |
| 772 | # CONFIG_HTC_PASIC3 is not set | ||
| 776 | 773 | ||
| 777 | # | 774 | # |
| 778 | # Multimedia devices | 775 | # Multimedia devices |
| 779 | # | 776 | # |
| 777 | |||
| 778 | # | ||
| 779 | # Multimedia core support | ||
| 780 | # | ||
| 780 | # CONFIG_VIDEO_DEV is not set | 781 | # CONFIG_VIDEO_DEV is not set |
| 781 | # CONFIG_DVB_CORE is not set | 782 | # CONFIG_DVB_CORE is not set |
| 783 | # CONFIG_VIDEO_MEDIA is not set | ||
| 784 | |||
| 785 | # | ||
| 786 | # Multimedia drivers | ||
| 787 | # | ||
| 782 | CONFIG_DAB=y | 788 | CONFIG_DAB=y |
| 783 | 789 | ||
| 784 | # | 790 | # |
| @@ -809,6 +815,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 809 | CONFIG_USB_ARCH_HAS_OHCI=y | 815 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 810 | CONFIG_USB_ARCH_HAS_EHCI=y | 816 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 811 | # CONFIG_USB is not set | 817 | # CONFIG_USB is not set |
| 818 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 819 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 812 | 820 | ||
| 813 | # | 821 | # |
| 814 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 822 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -817,6 +825,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 817 | # CONFIG_MMC is not set | 825 | # CONFIG_MMC is not set |
| 818 | # CONFIG_MEMSTICK is not set | 826 | # CONFIG_MEMSTICK is not set |
| 819 | # CONFIG_NEW_LEDS is not set | 827 | # CONFIG_NEW_LEDS is not set |
| 828 | # CONFIG_ACCESSIBILITY is not set | ||
| 820 | # CONFIG_INFINIBAND is not set | 829 | # CONFIG_INFINIBAND is not set |
| 821 | # CONFIG_EDAC is not set | 830 | # CONFIG_EDAC is not set |
| 822 | CONFIG_RTC_LIB=y | 831 | CONFIG_RTC_LIB=y |
| @@ -868,11 +877,8 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 868 | # | 877 | # |
| 869 | # on-CPU RTC drivers | 878 | # on-CPU RTC drivers |
| 870 | # | 879 | # |
| 880 | # CONFIG_RTC_DRV_PPC is not set | ||
| 871 | # CONFIG_DMADEVICES is not set | 881 | # CONFIG_DMADEVICES is not set |
| 872 | |||
| 873 | # | ||
| 874 | # Userspace I/O | ||
| 875 | # | ||
| 876 | # CONFIG_UIO is not set | 882 | # CONFIG_UIO is not set |
| 877 | 883 | ||
| 878 | # | 884 | # |
| @@ -892,7 +898,6 @@ CONFIG_FS_MBCACHE=y | |||
| 892 | # CONFIG_JFS_FS is not set | 898 | # CONFIG_JFS_FS is not set |
| 893 | # CONFIG_FS_POSIX_ACL is not set | 899 | # CONFIG_FS_POSIX_ACL is not set |
| 894 | # CONFIG_XFS_FS is not set | 900 | # CONFIG_XFS_FS is not set |
| 895 | # CONFIG_GFS2_FS is not set | ||
| 896 | # CONFIG_OCFS2_FS is not set | 901 | # CONFIG_OCFS2_FS is not set |
| 897 | CONFIG_DNOTIFY=y | 902 | CONFIG_DNOTIFY=y |
| 898 | CONFIG_INOTIFY=y | 903 | CONFIG_INOTIFY=y |
| @@ -950,7 +955,6 @@ CONFIG_NFS_FS=y | |||
| 950 | CONFIG_NFS_V3=y | 955 | CONFIG_NFS_V3=y |
| 951 | # CONFIG_NFS_V3_ACL is not set | 956 | # CONFIG_NFS_V3_ACL is not set |
| 952 | CONFIG_NFS_V4=y | 957 | CONFIG_NFS_V4=y |
| 953 | # CONFIG_NFS_DIRECTIO is not set | ||
| 954 | # CONFIG_NFSD is not set | 958 | # CONFIG_NFSD is not set |
| 955 | CONFIG_ROOT_NFS=y | 959 | CONFIG_ROOT_NFS=y |
| 956 | CONFIG_LOCKD=y | 960 | CONFIG_LOCKD=y |
| @@ -993,6 +997,7 @@ CONFIG_UCC=y | |||
| 993 | # Library routines | 997 | # Library routines |
| 994 | # | 998 | # |
| 995 | CONFIG_BITREVERSE=y | 999 | CONFIG_BITREVERSE=y |
| 1000 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 996 | # CONFIG_CRC_CCITT is not set | 1001 | # CONFIG_CRC_CCITT is not set |
| 997 | # CONFIG_CRC16 is not set | 1002 | # CONFIG_CRC16 is not set |
| 998 | # CONFIG_CRC_ITU_T is not set | 1003 | # CONFIG_CRC_ITU_T is not set |
| @@ -1003,6 +1008,7 @@ CONFIG_PLIST=y | |||
| 1003 | CONFIG_HAS_IOMEM=y | 1008 | CONFIG_HAS_IOMEM=y |
| 1004 | CONFIG_HAS_IOPORT=y | 1009 | CONFIG_HAS_IOPORT=y |
| 1005 | CONFIG_HAS_DMA=y | 1010 | CONFIG_HAS_DMA=y |
| 1011 | CONFIG_HAVE_LMB=y | ||
| 1006 | 1012 | ||
| 1007 | # | 1013 | # |
| 1008 | # Kernel hacking | 1014 | # Kernel hacking |
| @@ -1010,6 +1016,7 @@ CONFIG_HAS_DMA=y | |||
| 1010 | # CONFIG_PRINTK_TIME is not set | 1016 | # CONFIG_PRINTK_TIME is not set |
| 1011 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1017 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1012 | CONFIG_ENABLE_MUST_CHECK=y | 1018 | CONFIG_ENABLE_MUST_CHECK=y |
| 1019 | CONFIG_FRAME_WARN=1024 | ||
| 1013 | # CONFIG_MAGIC_SYSRQ is not set | 1020 | # CONFIG_MAGIC_SYSRQ is not set |
| 1014 | # CONFIG_UNUSED_SYMBOLS is not set | 1021 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1015 | # CONFIG_DEBUG_FS is not set | 1022 | # CONFIG_DEBUG_FS is not set |
| @@ -1019,6 +1026,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1019 | # CONFIG_SLUB_STATS is not set | 1026 | # CONFIG_SLUB_STATS is not set |
| 1020 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1027 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1021 | # CONFIG_SAMPLES is not set | 1028 | # CONFIG_SAMPLES is not set |
| 1029 | # CONFIG_IRQSTACKS is not set | ||
| 1022 | # CONFIG_PPC_EARLY_DEBUG is not set | 1030 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1023 | 1031 | ||
| 1024 | # | 1032 | # |
| @@ -1028,52 +1036,82 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1028 | # CONFIG_SECURITY is not set | 1036 | # CONFIG_SECURITY is not set |
| 1029 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1037 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1030 | CONFIG_CRYPTO=y | 1038 | CONFIG_CRYPTO=y |
| 1039 | |||
| 1040 | # | ||
| 1041 | # Crypto core or helper | ||
| 1042 | # | ||
| 1031 | CONFIG_CRYPTO_ALGAPI=y | 1043 | CONFIG_CRYPTO_ALGAPI=y |
| 1032 | CONFIG_CRYPTO_BLKCIPHER=y | 1044 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1033 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1034 | CONFIG_CRYPTO_MANAGER=y | 1045 | CONFIG_CRYPTO_MANAGER=y |
| 1046 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1047 | # CONFIG_CRYPTO_NULL is not set | ||
| 1048 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1049 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1050 | # CONFIG_CRYPTO_TEST is not set | ||
| 1051 | |||
| 1052 | # | ||
| 1053 | # Authenticated Encryption with Associated Data | ||
| 1054 | # | ||
| 1055 | # CONFIG_CRYPTO_CCM is not set | ||
| 1056 | # CONFIG_CRYPTO_GCM is not set | ||
| 1057 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1058 | |||
| 1059 | # | ||
| 1060 | # Block modes | ||
| 1061 | # | ||
| 1062 | CONFIG_CRYPTO_CBC=y | ||
| 1063 | # CONFIG_CRYPTO_CTR is not set | ||
| 1064 | # CONFIG_CRYPTO_CTS is not set | ||
| 1065 | CONFIG_CRYPTO_ECB=m | ||
| 1066 | # CONFIG_CRYPTO_LRW is not set | ||
| 1067 | CONFIG_CRYPTO_PCBC=m | ||
| 1068 | # CONFIG_CRYPTO_XTS is not set | ||
| 1069 | |||
| 1070 | # | ||
| 1071 | # Hash modes | ||
| 1072 | # | ||
| 1035 | # CONFIG_CRYPTO_HMAC is not set | 1073 | # CONFIG_CRYPTO_HMAC is not set |
| 1036 | # CONFIG_CRYPTO_XCBC is not set | 1074 | # CONFIG_CRYPTO_XCBC is not set |
| 1037 | # CONFIG_CRYPTO_NULL is not set | 1075 | |
| 1076 | # | ||
| 1077 | # Digest | ||
| 1078 | # | ||
| 1079 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1038 | # CONFIG_CRYPTO_MD4 is not set | 1080 | # CONFIG_CRYPTO_MD4 is not set |
| 1039 | CONFIG_CRYPTO_MD5=y | 1081 | CONFIG_CRYPTO_MD5=y |
| 1082 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1040 | # CONFIG_CRYPTO_SHA1 is not set | 1083 | # CONFIG_CRYPTO_SHA1 is not set |
| 1041 | # CONFIG_CRYPTO_SHA256 is not set | 1084 | # CONFIG_CRYPTO_SHA256 is not set |
| 1042 | # CONFIG_CRYPTO_SHA512 is not set | 1085 | # CONFIG_CRYPTO_SHA512 is not set |
| 1043 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1044 | # CONFIG_CRYPTO_TGR192 is not set | 1086 | # CONFIG_CRYPTO_TGR192 is not set |
| 1045 | # CONFIG_CRYPTO_GF128MUL is not set | 1087 | # CONFIG_CRYPTO_WP512 is not set |
| 1046 | CONFIG_CRYPTO_ECB=m | 1088 | |
| 1047 | CONFIG_CRYPTO_CBC=y | 1089 | # |
| 1048 | CONFIG_CRYPTO_PCBC=m | 1090 | # Ciphers |
| 1049 | # CONFIG_CRYPTO_LRW is not set | 1091 | # |
| 1050 | # CONFIG_CRYPTO_XTS is not set | ||
| 1051 | # CONFIG_CRYPTO_CTR is not set | ||
| 1052 | # CONFIG_CRYPTO_GCM is not set | ||
| 1053 | # CONFIG_CRYPTO_CCM is not set | ||
| 1054 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1055 | CONFIG_CRYPTO_DES=y | ||
| 1056 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1057 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1058 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1059 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1060 | # CONFIG_CRYPTO_AES is not set | 1092 | # CONFIG_CRYPTO_AES is not set |
| 1093 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1094 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1095 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1096 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1061 | # CONFIG_CRYPTO_CAST5 is not set | 1097 | # CONFIG_CRYPTO_CAST5 is not set |
| 1062 | # CONFIG_CRYPTO_CAST6 is not set | 1098 | # CONFIG_CRYPTO_CAST6 is not set |
| 1063 | # CONFIG_CRYPTO_TEA is not set | 1099 | CONFIG_CRYPTO_DES=y |
| 1064 | # CONFIG_CRYPTO_ARC4 is not set | 1100 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1065 | # CONFIG_CRYPTO_KHAZAD is not set | 1101 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1066 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1067 | # CONFIG_CRYPTO_SEED is not set | ||
| 1068 | # CONFIG_CRYPTO_SALSA20 is not set | 1102 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1103 | # CONFIG_CRYPTO_SEED is not set | ||
| 1104 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1105 | # CONFIG_CRYPTO_TEA is not set | ||
| 1106 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1107 | |||
| 1108 | # | ||
| 1109 | # Compression | ||
| 1110 | # | ||
| 1069 | # CONFIG_CRYPTO_DEFLATE is not set | 1111 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1070 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1071 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1072 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1073 | # CONFIG_CRYPTO_TEST is not set | ||
| 1074 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1075 | # CONFIG_CRYPTO_LZO is not set | 1112 | # CONFIG_CRYPTO_LZO is not set |
| 1076 | CONFIG_CRYPTO_HW=y | 1113 | CONFIG_CRYPTO_HW=y |
| 1077 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1114 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1078 | # CONFIG_PPC_CLOCK is not set | 1115 | # CONFIG_PPC_CLOCK is not set |
| 1079 | CONFIG_PPC_LIB_RHEAP=y | 1116 | CONFIG_PPC_LIB_RHEAP=y |
| 1117 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/83xx/mpc837x_mds_defconfig b/arch/powerpc/configs/83xx/mpc837x_mds_defconfig index f377cde785b0..0f94d9f56beb 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:23 2008 | 4 | # Mon Jun 9 08:52:28 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | CONFIG_KALLSYMS=y | 92 | CONFIG_KALLSYMS=y |
| 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 91 | CONFIG_HOTPLUG=y | 94 | CONFIG_HOTPLUG=y |
| @@ -111,12 +114,14 @@ CONFIG_HAVE_OPROFILE=y | |||
| 111 | # CONFIG_KPROBES is not set | 114 | # CONFIG_KPROBES is not set |
| 112 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 118 | CONFIG_PROC_PAGE_MONITOR=y |
| 115 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
| 116 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
| 117 | # CONFIG_TINY_SHMEM is not set | 121 | # CONFIG_TINY_SHMEM is not set |
| 118 | CONFIG_BASE_SMALL=0 | 122 | CONFIG_BASE_SMALL=0 |
| 119 | CONFIG_MODULES=y | 123 | CONFIG_MODULES=y |
| 124 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 120 | CONFIG_MODULE_UNLOAD=y | 125 | CONFIG_MODULE_UNLOAD=y |
| 121 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 122 | # CONFIG_MODVERSIONS is not set | 127 | # CONFIG_MODVERSIONS is not set |
| @@ -211,11 +216,13 @@ CONFIG_FLATMEM=y | |||
| 211 | CONFIG_FLAT_NODE_MEM_MAP=y | 216 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 212 | # CONFIG_SPARSEMEM_STATIC is not set | 217 | # CONFIG_SPARSEMEM_STATIC is not set |
| 213 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 218 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 219 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 214 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 220 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 215 | # CONFIG_RESOURCES_64BIT is not set | 221 | # CONFIG_RESOURCES_64BIT is not set |
| 216 | CONFIG_ZONE_DMA_FLAG=1 | 222 | CONFIG_ZONE_DMA_FLAG=1 |
| 217 | CONFIG_BOUNCE=y | 223 | CONFIG_BOUNCE=y |
| 218 | CONFIG_VIRT_TO_BUS=y | 224 | CONFIG_VIRT_TO_BUS=y |
| 225 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 219 | CONFIG_PROC_DEVICETREE=y | 226 | CONFIG_PROC_DEVICETREE=y |
| 220 | # CONFIG_CMDLINE_BOOL is not set | 227 | # CONFIG_CMDLINE_BOOL is not set |
| 221 | # CONFIG_PM is not set | 228 | # CONFIG_PM is not set |
| @@ -234,6 +241,7 @@ CONFIG_FSL_SOC=y | |||
| 234 | # CONFIG_PCI_SYSCALL is not set | 241 | # CONFIG_PCI_SYSCALL is not set |
| 235 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 242 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 236 | # CONFIG_PCCARD is not set | 243 | # CONFIG_PCCARD is not set |
| 244 | # CONFIG_HAS_RAPIDIO is not set | ||
| 237 | 245 | ||
| 238 | # | 246 | # |
| 239 | # Advanced setup | 247 | # Advanced setup |
| @@ -243,11 +251,11 @@ CONFIG_FSL_SOC=y | |||
| 243 | # | 251 | # |
| 244 | # Default settings for advanced configuration options are used | 252 | # Default settings for advanced configuration options are used |
| 245 | # | 253 | # |
| 246 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 247 | CONFIG_LOWMEM_SIZE=0x30000000 | 254 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 255 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 248 | CONFIG_KERNEL_START=0xc0000000 | 256 | CONFIG_KERNEL_START=0xc0000000 |
| 257 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 249 | CONFIG_TASK_SIZE=0xc0000000 | 258 | CONFIG_TASK_SIZE=0xc0000000 |
| 250 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 251 | 259 | ||
| 252 | # | 260 | # |
| 253 | # Networking | 261 | # Networking |
| @@ -295,8 +303,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 295 | CONFIG_DEFAULT_TCP_CONG="cubic" | 303 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 296 | # CONFIG_TCP_MD5SIG is not set | 304 | # CONFIG_TCP_MD5SIG is not set |
| 297 | # CONFIG_IPV6 is not set | 305 | # CONFIG_IPV6 is not set |
| 298 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 299 | # CONFIG_INET6_TUNNEL is not set | ||
| 300 | # CONFIG_NETWORK_SECMARK is not set | 306 | # CONFIG_NETWORK_SECMARK is not set |
| 301 | # CONFIG_NETFILTER is not set | 307 | # CONFIG_NETFILTER is not set |
| 302 | # CONFIG_IP_DCCP is not set | 308 | # CONFIG_IP_DCCP is not set |
| @@ -350,6 +356,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 350 | # CONFIG_CONNECTOR is not set | 356 | # CONFIG_CONNECTOR is not set |
| 351 | # CONFIG_MTD is not set | 357 | # CONFIG_MTD is not set |
| 352 | CONFIG_OF_DEVICE=y | 358 | CONFIG_OF_DEVICE=y |
| 359 | CONFIG_OF_I2C=y | ||
| 353 | # CONFIG_PARPORT is not set | 360 | # CONFIG_PARPORT is not set |
| 354 | CONFIG_BLK_DEV=y | 361 | CONFIG_BLK_DEV=y |
| 355 | # CONFIG_BLK_DEV_FD is not set | 362 | # CONFIG_BLK_DEV_FD is not set |
| @@ -411,8 +418,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 411 | # CONFIG_SCSI_DEBUG is not set | 418 | # CONFIG_SCSI_DEBUG is not set |
| 412 | CONFIG_ATA=y | 419 | CONFIG_ATA=y |
| 413 | # CONFIG_ATA_NONSTANDARD is not set | 420 | # CONFIG_ATA_NONSTANDARD is not set |
| 414 | # CONFIG_SATA_MV is not set | 421 | CONFIG_SATA_PMP=y |
| 415 | CONFIG_SATA_FSL=y | 422 | CONFIG_SATA_FSL=y |
| 423 | CONFIG_ATA_SFF=y | ||
| 424 | # CONFIG_SATA_MV is not set | ||
| 416 | # CONFIG_PATA_PLATFORM is not set | 425 | # CONFIG_PATA_PLATFORM is not set |
| 417 | # CONFIG_MD is not set | 426 | # CONFIG_MD is not set |
| 418 | # CONFIG_MACINTOSH_DRIVERS is not set | 427 | # CONFIG_MACINTOSH_DRIVERS is not set |
| @@ -459,6 +468,7 @@ CONFIG_NETDEV_10000=y | |||
| 459 | # | 468 | # |
| 460 | # CONFIG_WLAN_PRE80211 is not set | 469 | # CONFIG_WLAN_PRE80211 is not set |
| 461 | # CONFIG_WLAN_80211 is not set | 470 | # CONFIG_WLAN_80211 is not set |
| 471 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 462 | # CONFIG_WAN is not set | 472 | # CONFIG_WAN is not set |
| 463 | # CONFIG_PPP is not set | 473 | # CONFIG_PPP is not set |
| 464 | # CONFIG_SLIP is not set | 474 | # CONFIG_SLIP is not set |
| @@ -503,6 +513,7 @@ CONFIG_INPUT=y | |||
| 503 | # Character devices | 513 | # Character devices |
| 504 | # | 514 | # |
| 505 | # CONFIG_VT is not set | 515 | # CONFIG_VT is not set |
| 516 | CONFIG_DEVKMEM=y | ||
| 506 | # CONFIG_SERIAL_NONSTANDARD is not set | 517 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 507 | 518 | ||
| 508 | # | 519 | # |
| @@ -537,13 +548,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 537 | CONFIG_I2C_CHARDEV=y | 548 | CONFIG_I2C_CHARDEV=y |
| 538 | 549 | ||
| 539 | # | 550 | # |
| 540 | # I2C Algorithms | ||
| 541 | # | ||
| 542 | # CONFIG_I2C_ALGOBIT is not set | ||
| 543 | # CONFIG_I2C_ALGOPCF is not set | ||
| 544 | # CONFIG_I2C_ALGOPCA is not set | ||
| 545 | |||
| 546 | # | ||
| 547 | # I2C Hardware Bus support | 551 | # I2C Hardware Bus support |
| 548 | # | 552 | # |
| 549 | CONFIG_I2C_MPC=y | 553 | CONFIG_I2C_MPC=y |
| @@ -552,6 +556,7 @@ CONFIG_I2C_MPC=y | |||
| 552 | # CONFIG_I2C_SIMTEC is not set | 556 | # CONFIG_I2C_SIMTEC is not set |
| 553 | # CONFIG_I2C_TAOS_EVM is not set | 557 | # CONFIG_I2C_TAOS_EVM is not set |
| 554 | # CONFIG_I2C_STUB is not set | 558 | # CONFIG_I2C_STUB is not set |
| 559 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 555 | 560 | ||
| 556 | # | 561 | # |
| 557 | # Miscellaneous I2C Chip support | 562 | # Miscellaneous I2C Chip support |
| @@ -561,19 +566,13 @@ CONFIG_I2C_MPC=y | |||
| 561 | # CONFIG_SENSORS_PCF8574 is not set | 566 | # CONFIG_SENSORS_PCF8574 is not set |
| 562 | # CONFIG_PCF8575 is not set | 567 | # CONFIG_PCF8575 is not set |
| 563 | # CONFIG_SENSORS_PCF8591 is not set | 568 | # CONFIG_SENSORS_PCF8591 is not set |
| 564 | # CONFIG_TPS65010 is not set | ||
| 565 | # CONFIG_SENSORS_MAX6875 is not set | 569 | # CONFIG_SENSORS_MAX6875 is not set |
| 566 | # CONFIG_SENSORS_TSL2550 is not set | 570 | # CONFIG_SENSORS_TSL2550 is not set |
| 567 | # CONFIG_I2C_DEBUG_CORE is not set | 571 | # CONFIG_I2C_DEBUG_CORE is not set |
| 568 | # CONFIG_I2C_DEBUG_ALGO is not set | 572 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 569 | # CONFIG_I2C_DEBUG_BUS is not set | 573 | # CONFIG_I2C_DEBUG_BUS is not set |
| 570 | # CONFIG_I2C_DEBUG_CHIP is not set | 574 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 571 | |||
| 572 | # | ||
| 573 | # SPI support | ||
| 574 | # | ||
| 575 | # CONFIG_SPI is not set | 575 | # CONFIG_SPI is not set |
| 576 | # CONFIG_SPI_MASTER is not set | ||
| 577 | # CONFIG_W1 is not set | 576 | # CONFIG_W1 is not set |
| 578 | # CONFIG_POWER_SUPPLY is not set | 577 | # CONFIG_POWER_SUPPLY is not set |
| 579 | CONFIG_HWMON=y | 578 | CONFIG_HWMON=y |
| @@ -646,12 +645,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 646 | # Multifunction device drivers | 645 | # Multifunction device drivers |
| 647 | # | 646 | # |
| 648 | # CONFIG_MFD_SM501 is not set | 647 | # CONFIG_MFD_SM501 is not set |
| 648 | # CONFIG_HTC_PASIC3 is not set | ||
| 649 | 649 | ||
| 650 | # | 650 | # |
| 651 | # Multimedia devices | 651 | # Multimedia devices |
| 652 | # | 652 | # |
| 653 | |||
| 654 | # | ||
| 655 | # Multimedia core support | ||
| 656 | # | ||
| 653 | # CONFIG_VIDEO_DEV is not set | 657 | # CONFIG_VIDEO_DEV is not set |
| 654 | # CONFIG_DVB_CORE is not set | 658 | # CONFIG_DVB_CORE is not set |
| 659 | # CONFIG_VIDEO_MEDIA is not set | ||
| 660 | |||
| 661 | # | ||
| 662 | # Multimedia drivers | ||
| 663 | # | ||
| 655 | CONFIG_DAB=y | 664 | CONFIG_DAB=y |
| 656 | 665 | ||
| 657 | # | 666 | # |
| @@ -680,6 +689,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 680 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 689 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
| 681 | CONFIG_USB_ARCH_HAS_EHCI=y | 690 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 682 | # CONFIG_USB is not set | 691 | # CONFIG_USB is not set |
| 692 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 693 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 683 | 694 | ||
| 684 | # | 695 | # |
| 685 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 696 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -688,13 +699,10 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 688 | # CONFIG_MMC is not set | 699 | # CONFIG_MMC is not set |
| 689 | # CONFIG_MEMSTICK is not set | 700 | # CONFIG_MEMSTICK is not set |
| 690 | # CONFIG_NEW_LEDS is not set | 701 | # CONFIG_NEW_LEDS is not set |
| 702 | # CONFIG_ACCESSIBILITY is not set | ||
| 691 | # CONFIG_EDAC is not set | 703 | # CONFIG_EDAC is not set |
| 692 | # CONFIG_RTC_CLASS is not set | 704 | # CONFIG_RTC_CLASS is not set |
| 693 | # CONFIG_DMADEVICES is not set | 705 | # CONFIG_DMADEVICES is not set |
| 694 | |||
| 695 | # | ||
| 696 | # Userspace I/O | ||
| 697 | # | ||
| 698 | # CONFIG_UIO is not set | 706 | # CONFIG_UIO is not set |
| 699 | 707 | ||
| 700 | # | 708 | # |
| @@ -714,7 +722,6 @@ CONFIG_FS_MBCACHE=y | |||
| 714 | # CONFIG_JFS_FS is not set | 722 | # CONFIG_JFS_FS is not set |
| 715 | # CONFIG_FS_POSIX_ACL is not set | 723 | # CONFIG_FS_POSIX_ACL is not set |
| 716 | # CONFIG_XFS_FS is not set | 724 | # CONFIG_XFS_FS is not set |
| 717 | # CONFIG_GFS2_FS is not set | ||
| 718 | # CONFIG_OCFS2_FS is not set | 725 | # CONFIG_OCFS2_FS is not set |
| 719 | CONFIG_DNOTIFY=y | 726 | CONFIG_DNOTIFY=y |
| 720 | CONFIG_INOTIFY=y | 727 | CONFIG_INOTIFY=y |
| @@ -772,7 +779,6 @@ CONFIG_NFS_FS=y | |||
| 772 | CONFIG_NFS_V3=y | 779 | CONFIG_NFS_V3=y |
| 773 | # CONFIG_NFS_V3_ACL is not set | 780 | # CONFIG_NFS_V3_ACL is not set |
| 774 | CONFIG_NFS_V4=y | 781 | CONFIG_NFS_V4=y |
| 775 | # CONFIG_NFS_DIRECTIO is not set | ||
| 776 | # CONFIG_NFSD is not set | 782 | # CONFIG_NFSD is not set |
| 777 | CONFIG_ROOT_NFS=y | 783 | CONFIG_ROOT_NFS=y |
| 778 | CONFIG_LOCKD=y | 784 | CONFIG_LOCKD=y |
| @@ -817,6 +823,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 817 | # Library routines | 823 | # Library routines |
| 818 | # | 824 | # |
| 819 | CONFIG_BITREVERSE=y | 825 | CONFIG_BITREVERSE=y |
| 826 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 820 | # CONFIG_CRC_CCITT is not set | 827 | # CONFIG_CRC_CCITT is not set |
| 821 | # CONFIG_CRC16 is not set | 828 | # CONFIG_CRC16 is not set |
| 822 | # CONFIG_CRC_ITU_T is not set | 829 | # CONFIG_CRC_ITU_T is not set |
| @@ -827,6 +834,7 @@ CONFIG_PLIST=y | |||
| 827 | CONFIG_HAS_IOMEM=y | 834 | CONFIG_HAS_IOMEM=y |
| 828 | CONFIG_HAS_IOPORT=y | 835 | CONFIG_HAS_IOPORT=y |
| 829 | CONFIG_HAS_DMA=y | 836 | CONFIG_HAS_DMA=y |
| 837 | CONFIG_HAVE_LMB=y | ||
| 830 | 838 | ||
| 831 | # | 839 | # |
| 832 | # Kernel hacking | 840 | # Kernel hacking |
| @@ -834,6 +842,7 @@ CONFIG_HAS_DMA=y | |||
| 834 | # CONFIG_PRINTK_TIME is not set | 842 | # CONFIG_PRINTK_TIME is not set |
| 835 | CONFIG_ENABLE_WARN_DEPRECATED=y | 843 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 836 | CONFIG_ENABLE_MUST_CHECK=y | 844 | CONFIG_ENABLE_MUST_CHECK=y |
| 845 | CONFIG_FRAME_WARN=1024 | ||
| 837 | # CONFIG_MAGIC_SYSRQ is not set | 846 | # CONFIG_MAGIC_SYSRQ is not set |
| 838 | # CONFIG_UNUSED_SYMBOLS is not set | 847 | # CONFIG_UNUSED_SYMBOLS is not set |
| 839 | # CONFIG_DEBUG_FS is not set | 848 | # CONFIG_DEBUG_FS is not set |
| @@ -841,6 +850,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 841 | # CONFIG_DEBUG_KERNEL is not set | 850 | # CONFIG_DEBUG_KERNEL is not set |
| 842 | # CONFIG_DEBUG_BUGVERBOSE is not set | 851 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 843 | # CONFIG_SAMPLES is not set | 852 | # CONFIG_SAMPLES is not set |
| 853 | # CONFIG_IRQSTACKS is not set | ||
| 844 | # CONFIG_PPC_EARLY_DEBUG is not set | 854 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 845 | 855 | ||
| 846 | # | 856 | # |
| @@ -850,50 +860,80 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 850 | # CONFIG_SECURITY is not set | 860 | # CONFIG_SECURITY is not set |
| 851 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 861 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 852 | CONFIG_CRYPTO=y | 862 | CONFIG_CRYPTO=y |
| 863 | |||
| 864 | # | ||
| 865 | # Crypto core or helper | ||
| 866 | # | ||
| 853 | CONFIG_CRYPTO_ALGAPI=y | 867 | CONFIG_CRYPTO_ALGAPI=y |
| 854 | CONFIG_CRYPTO_BLKCIPHER=y | 868 | CONFIG_CRYPTO_BLKCIPHER=y |
| 855 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 856 | CONFIG_CRYPTO_MANAGER=y | 869 | CONFIG_CRYPTO_MANAGER=y |
| 870 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 871 | # CONFIG_CRYPTO_NULL is not set | ||
| 872 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 873 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 874 | # CONFIG_CRYPTO_TEST is not set | ||
| 875 | |||
| 876 | # | ||
| 877 | # Authenticated Encryption with Associated Data | ||
| 878 | # | ||
| 879 | # CONFIG_CRYPTO_CCM is not set | ||
| 880 | # CONFIG_CRYPTO_GCM is not set | ||
| 881 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 882 | |||
| 883 | # | ||
| 884 | # Block modes | ||
| 885 | # | ||
| 886 | CONFIG_CRYPTO_CBC=y | ||
| 887 | # CONFIG_CRYPTO_CTR is not set | ||
| 888 | # CONFIG_CRYPTO_CTS is not set | ||
| 889 | CONFIG_CRYPTO_ECB=m | ||
| 890 | # CONFIG_CRYPTO_LRW is not set | ||
| 891 | CONFIG_CRYPTO_PCBC=m | ||
| 892 | # CONFIG_CRYPTO_XTS is not set | ||
| 893 | |||
| 894 | # | ||
| 895 | # Hash modes | ||
| 896 | # | ||
| 857 | # CONFIG_CRYPTO_HMAC is not set | 897 | # CONFIG_CRYPTO_HMAC is not set |
| 858 | # CONFIG_CRYPTO_XCBC is not set | 898 | # CONFIG_CRYPTO_XCBC is not set |
| 859 | # CONFIG_CRYPTO_NULL is not set | 899 | |
| 900 | # | ||
| 901 | # Digest | ||
| 902 | # | ||
| 903 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 860 | # CONFIG_CRYPTO_MD4 is not set | 904 | # CONFIG_CRYPTO_MD4 is not set |
| 861 | CONFIG_CRYPTO_MD5=y | 905 | CONFIG_CRYPTO_MD5=y |
| 906 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 862 | # CONFIG_CRYPTO_SHA1 is not set | 907 | # CONFIG_CRYPTO_SHA1 is not set |
| 863 | # CONFIG_CRYPTO_SHA256 is not set | 908 | # CONFIG_CRYPTO_SHA256 is not set |
| 864 | # CONFIG_CRYPTO_SHA512 is not set | 909 | # CONFIG_CRYPTO_SHA512 is not set |
| 865 | # CONFIG_CRYPTO_WP512 is not set | ||
| 866 | # CONFIG_CRYPTO_TGR192 is not set | 910 | # CONFIG_CRYPTO_TGR192 is not set |
| 867 | # CONFIG_CRYPTO_GF128MUL is not set | 911 | # CONFIG_CRYPTO_WP512 is not set |
| 868 | CONFIG_CRYPTO_ECB=m | 912 | |
| 869 | CONFIG_CRYPTO_CBC=y | 913 | # |
| 870 | CONFIG_CRYPTO_PCBC=m | 914 | # Ciphers |
| 871 | # CONFIG_CRYPTO_LRW is not set | 915 | # |
| 872 | # CONFIG_CRYPTO_XTS is not set | ||
| 873 | # CONFIG_CRYPTO_CTR is not set | ||
| 874 | # CONFIG_CRYPTO_GCM is not set | ||
| 875 | # CONFIG_CRYPTO_CCM is not set | ||
| 876 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 877 | CONFIG_CRYPTO_DES=y | ||
| 878 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 879 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 880 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 881 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 882 | # CONFIG_CRYPTO_AES is not set | 916 | # CONFIG_CRYPTO_AES is not set |
| 917 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 918 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 919 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 920 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 883 | # CONFIG_CRYPTO_CAST5 is not set | 921 | # CONFIG_CRYPTO_CAST5 is not set |
| 884 | # CONFIG_CRYPTO_CAST6 is not set | 922 | # CONFIG_CRYPTO_CAST6 is not set |
| 885 | # CONFIG_CRYPTO_TEA is not set | 923 | CONFIG_CRYPTO_DES=y |
| 886 | # CONFIG_CRYPTO_ARC4 is not set | 924 | # CONFIG_CRYPTO_FCRYPT is not set |
| 887 | # CONFIG_CRYPTO_KHAZAD is not set | 925 | # CONFIG_CRYPTO_KHAZAD is not set |
| 888 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 889 | # CONFIG_CRYPTO_SEED is not set | ||
| 890 | # CONFIG_CRYPTO_SALSA20 is not set | 926 | # CONFIG_CRYPTO_SALSA20 is not set |
| 927 | # CONFIG_CRYPTO_SEED is not set | ||
| 928 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 929 | # CONFIG_CRYPTO_TEA is not set | ||
| 930 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 931 | |||
| 932 | # | ||
| 933 | # Compression | ||
| 934 | # | ||
| 891 | # CONFIG_CRYPTO_DEFLATE is not set | 935 | # CONFIG_CRYPTO_DEFLATE is not set |
| 892 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 893 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 894 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 895 | # CONFIG_CRYPTO_TEST is not set | ||
| 896 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 897 | # CONFIG_CRYPTO_LZO is not set | 936 | # CONFIG_CRYPTO_LZO is not set |
| 898 | CONFIG_CRYPTO_HW=y | 937 | CONFIG_CRYPTO_HW=y |
| 899 | # CONFIG_PPC_CLOCK is not set | 938 | # CONFIG_PPC_CLOCK is not set |
| 939 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig b/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig index a6331769d88f..0d448556f53a 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:24 2008 | 4 | # Tue Jun 10 09:17:12 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | CONFIG_KALLSYMS=y | 92 | CONFIG_KALLSYMS=y |
| 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 91 | CONFIG_HOTPLUG=y | 94 | CONFIG_HOTPLUG=y |
| @@ -111,12 +114,14 @@ CONFIG_HAVE_OPROFILE=y | |||
| 111 | # CONFIG_KPROBES is not set | 114 | # CONFIG_KPROBES is not set |
| 112 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 118 | CONFIG_PROC_PAGE_MONITOR=y |
| 115 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
| 116 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
| 117 | # CONFIG_TINY_SHMEM is not set | 121 | # CONFIG_TINY_SHMEM is not set |
| 118 | CONFIG_BASE_SMALL=0 | 122 | CONFIG_BASE_SMALL=0 |
| 119 | CONFIG_MODULES=y | 123 | CONFIG_MODULES=y |
| 124 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 120 | CONFIG_MODULE_UNLOAD=y | 125 | CONFIG_MODULE_UNLOAD=y |
| 121 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 122 | # CONFIG_MODVERSIONS is not set | 127 | # CONFIG_MODVERSIONS is not set |
| @@ -211,11 +216,13 @@ CONFIG_FLATMEM=y | |||
| 211 | CONFIG_FLAT_NODE_MEM_MAP=y | 216 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 212 | # CONFIG_SPARSEMEM_STATIC is not set | 217 | # CONFIG_SPARSEMEM_STATIC is not set |
| 213 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 218 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 219 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 214 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 220 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 215 | # CONFIG_RESOURCES_64BIT is not set | 221 | # CONFIG_RESOURCES_64BIT is not set |
| 216 | CONFIG_ZONE_DMA_FLAG=1 | 222 | CONFIG_ZONE_DMA_FLAG=1 |
| 217 | CONFIG_BOUNCE=y | 223 | CONFIG_BOUNCE=y |
| 218 | CONFIG_VIRT_TO_BUS=y | 224 | CONFIG_VIRT_TO_BUS=y |
| 225 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 219 | CONFIG_PROC_DEVICETREE=y | 226 | CONFIG_PROC_DEVICETREE=y |
| 220 | # CONFIG_CMDLINE_BOOL is not set | 227 | # CONFIG_CMDLINE_BOOL is not set |
| 221 | # CONFIG_PM is not set | 228 | # CONFIG_PM is not set |
| @@ -234,6 +241,7 @@ CONFIG_FSL_SOC=y | |||
| 234 | # CONFIG_PCI_SYSCALL is not set | 241 | # CONFIG_PCI_SYSCALL is not set |
| 235 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 242 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 236 | # CONFIG_PCCARD is not set | 243 | # CONFIG_PCCARD is not set |
| 244 | # CONFIG_HAS_RAPIDIO is not set | ||
| 237 | 245 | ||
| 238 | # | 246 | # |
| 239 | # Advanced setup | 247 | # Advanced setup |
| @@ -243,11 +251,11 @@ CONFIG_FSL_SOC=y | |||
| 243 | # | 251 | # |
| 244 | # Default settings for advanced configuration options are used | 252 | # Default settings for advanced configuration options are used |
| 245 | # | 253 | # |
| 246 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 247 | CONFIG_LOWMEM_SIZE=0x30000000 | 254 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 255 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 248 | CONFIG_KERNEL_START=0xc0000000 | 256 | CONFIG_KERNEL_START=0xc0000000 |
| 257 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 249 | CONFIG_TASK_SIZE=0xc0000000 | 258 | CONFIG_TASK_SIZE=0xc0000000 |
| 250 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 251 | 259 | ||
| 252 | # | 260 | # |
| 253 | # Networking | 261 | # Networking |
| @@ -290,8 +298,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 290 | CONFIG_DEFAULT_TCP_CONG="cubic" | 298 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 291 | # CONFIG_TCP_MD5SIG is not set | 299 | # CONFIG_TCP_MD5SIG is not set |
| 292 | # CONFIG_IPV6 is not set | 300 | # CONFIG_IPV6 is not set |
| 293 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 294 | # CONFIG_INET6_TUNNEL is not set | ||
| 295 | # CONFIG_NETWORK_SECMARK is not set | 301 | # CONFIG_NETWORK_SECMARK is not set |
| 296 | # CONFIG_NETFILTER is not set | 302 | # CONFIG_NETFILTER is not set |
| 297 | # CONFIG_IP_DCCP is not set | 303 | # CONFIG_IP_DCCP is not set |
| @@ -345,6 +351,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 345 | # CONFIG_CONNECTOR is not set | 351 | # CONFIG_CONNECTOR is not set |
| 346 | # CONFIG_MTD is not set | 352 | # CONFIG_MTD is not set |
| 347 | CONFIG_OF_DEVICE=y | 353 | CONFIG_OF_DEVICE=y |
| 354 | CONFIG_OF_I2C=y | ||
| 348 | # CONFIG_PARPORT is not set | 355 | # CONFIG_PARPORT is not set |
| 349 | CONFIG_BLK_DEV=y | 356 | CONFIG_BLK_DEV=y |
| 350 | # CONFIG_BLK_DEV_FD is not set | 357 | # CONFIG_BLK_DEV_FD is not set |
| @@ -352,6 +359,7 @@ CONFIG_BLK_DEV=y | |||
| 352 | CONFIG_BLK_DEV_LOOP=y | 359 | CONFIG_BLK_DEV_LOOP=y |
| 353 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 360 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
| 354 | # CONFIG_BLK_DEV_NBD is not set | 361 | # CONFIG_BLK_DEV_NBD is not set |
| 362 | # CONFIG_BLK_DEV_UB is not set | ||
| 355 | CONFIG_BLK_DEV_RAM=y | 363 | CONFIG_BLK_DEV_RAM=y |
| 356 | CONFIG_BLK_DEV_RAM_COUNT=16 | 364 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 357 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 365 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
| @@ -406,8 +414,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 406 | # CONFIG_SCSI_DEBUG is not set | 414 | # CONFIG_SCSI_DEBUG is not set |
| 407 | CONFIG_ATA=y | 415 | CONFIG_ATA=y |
| 408 | # CONFIG_ATA_NONSTANDARD is not set | 416 | # CONFIG_ATA_NONSTANDARD is not set |
| 409 | # CONFIG_SATA_MV is not set | 417 | CONFIG_SATA_PMP=y |
| 410 | CONFIG_SATA_FSL=y | 418 | CONFIG_SATA_FSL=y |
| 419 | CONFIG_ATA_SFF=y | ||
| 420 | # CONFIG_SATA_MV is not set | ||
| 411 | # CONFIG_PATA_PLATFORM is not set | 421 | # CONFIG_PATA_PLATFORM is not set |
| 412 | CONFIG_MD=y | 422 | CONFIG_MD=y |
| 413 | CONFIG_BLK_DEV_MD=y | 423 | CONFIG_BLK_DEV_MD=y |
| @@ -444,7 +454,7 @@ CONFIG_MARVELL_PHY=y | |||
| 444 | # CONFIG_BROADCOM_PHY is not set | 454 | # CONFIG_BROADCOM_PHY is not set |
| 445 | # CONFIG_ICPLUS_PHY is not set | 455 | # CONFIG_ICPLUS_PHY is not set |
| 446 | # CONFIG_REALTEK_PHY is not set | 456 | # CONFIG_REALTEK_PHY is not set |
| 447 | # CONFIG_FIXED_PHY is not set | 457 | CONFIG_FIXED_PHY=y |
| 448 | # CONFIG_MDIO_BITBANG is not set | 458 | # CONFIG_MDIO_BITBANG is not set |
| 449 | CONFIG_NET_ETHERNET=y | 459 | CONFIG_NET_ETHERNET=y |
| 450 | CONFIG_MII=y | 460 | CONFIG_MII=y |
| @@ -464,6 +474,16 @@ CONFIG_GFAR_NAPI=y | |||
| 464 | # | 474 | # |
| 465 | # CONFIG_WLAN_PRE80211 is not set | 475 | # CONFIG_WLAN_PRE80211 is not set |
| 466 | # CONFIG_WLAN_80211 is not set | 476 | # CONFIG_WLAN_80211 is not set |
| 477 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 478 | |||
| 479 | # | ||
| 480 | # USB Network Adapters | ||
| 481 | # | ||
| 482 | # CONFIG_USB_CATC is not set | ||
| 483 | # CONFIG_USB_KAWETH is not set | ||
| 484 | # CONFIG_USB_PEGASUS is not set | ||
| 485 | # CONFIG_USB_RTL8150 is not set | ||
| 486 | # CONFIG_USB_USBNET is not set | ||
| 467 | # CONFIG_WAN is not set | 487 | # CONFIG_WAN is not set |
| 468 | # CONFIG_PPP is not set | 488 | # CONFIG_PPP is not set |
| 469 | # CONFIG_SLIP is not set | 489 | # CONFIG_SLIP is not set |
| @@ -508,6 +528,7 @@ CONFIG_INPUT=y | |||
| 508 | # Character devices | 528 | # Character devices |
| 509 | # | 529 | # |
| 510 | # CONFIG_VT is not set | 530 | # CONFIG_VT is not set |
| 531 | CONFIG_DEVKMEM=y | ||
| 511 | # CONFIG_SERIAL_NONSTANDARD is not set | 532 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 512 | 533 | ||
| 513 | # | 534 | # |
| @@ -542,13 +563,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 542 | CONFIG_I2C_CHARDEV=y | 563 | CONFIG_I2C_CHARDEV=y |
| 543 | 564 | ||
| 544 | # | 565 | # |
| 545 | # I2C Algorithms | ||
| 546 | # | ||
| 547 | # CONFIG_I2C_ALGOBIT is not set | ||
| 548 | # CONFIG_I2C_ALGOPCF is not set | ||
| 549 | # CONFIG_I2C_ALGOPCA is not set | ||
| 550 | |||
| 551 | # | ||
| 552 | # I2C Hardware Bus support | 566 | # I2C Hardware Bus support |
| 553 | # | 567 | # |
| 554 | CONFIG_I2C_MPC=y | 568 | CONFIG_I2C_MPC=y |
| @@ -557,6 +571,8 @@ CONFIG_I2C_MPC=y | |||
| 557 | # CONFIG_I2C_SIMTEC is not set | 571 | # CONFIG_I2C_SIMTEC is not set |
| 558 | # CONFIG_I2C_TAOS_EVM is not set | 572 | # CONFIG_I2C_TAOS_EVM is not set |
| 559 | # CONFIG_I2C_STUB is not set | 573 | # CONFIG_I2C_STUB is not set |
| 574 | # CONFIG_I2C_TINY_USB is not set | ||
| 575 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 560 | 576 | ||
| 561 | # | 577 | # |
| 562 | # Miscellaneous I2C Chip support | 578 | # Miscellaneous I2C Chip support |
| @@ -566,19 +582,13 @@ CONFIG_I2C_MPC=y | |||
| 566 | # CONFIG_SENSORS_PCF8574 is not set | 582 | # CONFIG_SENSORS_PCF8574 is not set |
| 567 | # CONFIG_PCF8575 is not set | 583 | # CONFIG_PCF8575 is not set |
| 568 | # CONFIG_SENSORS_PCF8591 is not set | 584 | # CONFIG_SENSORS_PCF8591 is not set |
| 569 | # CONFIG_TPS65010 is not set | ||
| 570 | # CONFIG_SENSORS_MAX6875 is not set | 585 | # CONFIG_SENSORS_MAX6875 is not set |
| 571 | # CONFIG_SENSORS_TSL2550 is not set | 586 | # CONFIG_SENSORS_TSL2550 is not set |
| 572 | # CONFIG_I2C_DEBUG_CORE is not set | 587 | # CONFIG_I2C_DEBUG_CORE is not set |
| 573 | # CONFIG_I2C_DEBUG_ALGO is not set | 588 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 574 | # CONFIG_I2C_DEBUG_BUS is not set | 589 | # CONFIG_I2C_DEBUG_BUS is not set |
| 575 | # CONFIG_I2C_DEBUG_CHIP is not set | 590 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 576 | |||
| 577 | # | ||
| 578 | # SPI support | ||
| 579 | # | ||
| 580 | # CONFIG_SPI is not set | 591 | # CONFIG_SPI is not set |
| 581 | # CONFIG_SPI_MASTER is not set | ||
| 582 | # CONFIG_W1 is not set | 592 | # CONFIG_W1 is not set |
| 583 | # CONFIG_POWER_SUPPLY is not set | 593 | # CONFIG_POWER_SUPPLY is not set |
| 584 | CONFIG_HWMON=y | 594 | CONFIG_HWMON=y |
| @@ -642,6 +652,11 @@ CONFIG_WATCHDOG=y | |||
| 642 | CONFIG_83xx_WDT=y | 652 | CONFIG_83xx_WDT=y |
| 643 | 653 | ||
| 644 | # | 654 | # |
| 655 | # USB-based Watchdog Cards | ||
| 656 | # | ||
| 657 | # CONFIG_USBPCWATCHDOG is not set | ||
| 658 | |||
| 659 | # | ||
| 645 | # Sonics Silicon Backplane | 660 | # Sonics Silicon Backplane |
| 646 | # | 661 | # |
| 647 | CONFIG_SSB_POSSIBLE=y | 662 | CONFIG_SSB_POSSIBLE=y |
| @@ -651,13 +666,24 @@ CONFIG_SSB_POSSIBLE=y | |||
| 651 | # Multifunction device drivers | 666 | # Multifunction device drivers |
| 652 | # | 667 | # |
| 653 | # CONFIG_MFD_SM501 is not set | 668 | # CONFIG_MFD_SM501 is not set |
| 669 | # CONFIG_HTC_PASIC3 is not set | ||
| 654 | 670 | ||
| 655 | # | 671 | # |
| 656 | # Multimedia devices | 672 | # Multimedia devices |
| 657 | # | 673 | # |
| 674 | |||
| 675 | # | ||
| 676 | # Multimedia core support | ||
| 677 | # | ||
| 658 | # CONFIG_VIDEO_DEV is not set | 678 | # CONFIG_VIDEO_DEV is not set |
| 659 | # CONFIG_DVB_CORE is not set | 679 | # CONFIG_DVB_CORE is not set |
| 680 | # CONFIG_VIDEO_MEDIA is not set | ||
| 681 | |||
| 682 | # | ||
| 683 | # Multimedia drivers | ||
| 684 | # | ||
| 660 | CONFIG_DAB=y | 685 | CONFIG_DAB=y |
| 686 | # CONFIG_USB_DABUSB is not set | ||
| 661 | 687 | ||
| 662 | # | 688 | # |
| 663 | # Graphics support | 689 | # Graphics support |
| @@ -680,6 +706,14 @@ CONFIG_HID_SUPPORT=y | |||
| 680 | CONFIG_HID=y | 706 | CONFIG_HID=y |
| 681 | # CONFIG_HID_DEBUG is not set | 707 | # CONFIG_HID_DEBUG is not set |
| 682 | # CONFIG_HIDRAW is not set | 708 | # CONFIG_HIDRAW is not set |
| 709 | |||
| 710 | # | ||
| 711 | # USB Input Devices | ||
| 712 | # | ||
| 713 | CONFIG_USB_HID=y | ||
| 714 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
| 715 | # CONFIG_HID_FF is not set | ||
| 716 | # CONFIG_USB_HIDDEV is not set | ||
| 683 | CONFIG_USB_SUPPORT=y | 717 | CONFIG_USB_SUPPORT=y |
| 684 | CONFIG_USB_ARCH_HAS_HCD=y | 718 | CONFIG_USB_ARCH_HAS_HCD=y |
| 685 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 719 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
| @@ -695,33 +729,83 @@ CONFIG_USB=y | |||
| 695 | CONFIG_USB_DEVICE_CLASS=y | 729 | CONFIG_USB_DEVICE_CLASS=y |
| 696 | # CONFIG_USB_DYNAMIC_MINORS is not set | 730 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 697 | # CONFIG_USB_OTG is not set | 731 | # CONFIG_USB_OTG is not set |
| 732 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 733 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 698 | 734 | ||
| 699 | # | 735 | # |
| 700 | # USB Host Controller Drivers | 736 | # USB Host Controller Drivers |
| 701 | # | 737 | # |
| 738 | # CONFIG_USB_C67X00_HCD is not set | ||
| 702 | CONFIG_USB_EHCI_HCD=y | 739 | CONFIG_USB_EHCI_HCD=y |
| 703 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 740 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 704 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 741 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 705 | CONFIG_USB_EHCI_FSL=y | 742 | CONFIG_USB_EHCI_FSL=y |
| 706 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 743 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 707 | # CONFIG_USB_ISP116X_HCD is not set | 744 | # CONFIG_USB_ISP116X_HCD is not set |
| 745 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 708 | # CONFIG_USB_SL811_HCD is not set | 746 | # CONFIG_USB_SL811_HCD is not set |
| 709 | # CONFIG_USB_R8A66597_HCD is not set | 747 | # CONFIG_USB_R8A66597_HCD is not set |
| 710 | 748 | ||
| 711 | # | 749 | # |
| 750 | # USB Device Class drivers | ||
| 751 | # | ||
| 752 | # CONFIG_USB_ACM is not set | ||
| 753 | # CONFIG_USB_PRINTER is not set | ||
| 754 | # CONFIG_USB_WDM is not set | ||
| 755 | |||
| 756 | # | ||
| 712 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 757 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 713 | # | 758 | # |
| 759 | |||
| 760 | # | ||
| 761 | # may also be needed; see USB_STORAGE Help for more information | ||
| 762 | # | ||
| 763 | # CONFIG_USB_STORAGE is not set | ||
| 764 | # CONFIG_USB_LIBUSUAL is not set | ||
| 765 | |||
| 766 | # | ||
| 767 | # USB Imaging devices | ||
| 768 | # | ||
| 769 | # CONFIG_USB_MDC800 is not set | ||
| 770 | # CONFIG_USB_MICROTEK is not set | ||
| 771 | CONFIG_USB_MON=y | ||
| 772 | |||
| 773 | # | ||
| 774 | # USB port drivers | ||
| 775 | # | ||
| 776 | # CONFIG_USB_SERIAL is not set | ||
| 777 | |||
| 778 | # | ||
| 779 | # USB Miscellaneous drivers | ||
| 780 | # | ||
| 781 | # CONFIG_USB_EMI62 is not set | ||
| 782 | # CONFIG_USB_EMI26 is not set | ||
| 783 | # CONFIG_USB_ADUTUX is not set | ||
| 784 | # CONFIG_USB_AUERSWALD is not set | ||
| 785 | # CONFIG_USB_RIO500 is not set | ||
| 786 | # CONFIG_USB_LEGOTOWER is not set | ||
| 787 | # CONFIG_USB_LCD is not set | ||
| 788 | # CONFIG_USB_BERRY_CHARGE is not set | ||
| 789 | # CONFIG_USB_LED is not set | ||
| 790 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
| 791 | # CONFIG_USB_CYTHERM is not set | ||
| 792 | # CONFIG_USB_PHIDGET is not set | ||
| 793 | # CONFIG_USB_IDMOUSE is not set | ||
| 794 | # CONFIG_USB_FTDI_ELAN is not set | ||
| 795 | # CONFIG_USB_APPLEDISPLAY is not set | ||
| 796 | # CONFIG_USB_SISUSBVGA is not set | ||
| 797 | # CONFIG_USB_LD is not set | ||
| 798 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
| 799 | # CONFIG_USB_IOWARRIOR is not set | ||
| 800 | # CONFIG_USB_ISIGHTFW is not set | ||
| 714 | # CONFIG_USB_GADGET is not set | 801 | # CONFIG_USB_GADGET is not set |
| 715 | # CONFIG_MMC is not set | 802 | # CONFIG_MMC is not set |
| 716 | # CONFIG_MEMSTICK is not set | 803 | # CONFIG_MEMSTICK is not set |
| 717 | # CONFIG_NEW_LEDS is not set | 804 | # CONFIG_NEW_LEDS is not set |
| 805 | # CONFIG_ACCESSIBILITY is not set | ||
| 718 | # CONFIG_EDAC is not set | 806 | # CONFIG_EDAC is not set |
| 719 | # CONFIG_RTC_CLASS is not set | 807 | # CONFIG_RTC_CLASS is not set |
| 720 | # CONFIG_DMADEVICES is not set | 808 | # CONFIG_DMADEVICES is not set |
| 721 | |||
| 722 | # | ||
| 723 | # Userspace I/O | ||
| 724 | # | ||
| 725 | # CONFIG_UIO is not set | 809 | # CONFIG_UIO is not set |
| 726 | 810 | ||
| 727 | # | 811 | # |
| @@ -741,7 +825,6 @@ CONFIG_FS_MBCACHE=y | |||
| 741 | # CONFIG_JFS_FS is not set | 825 | # CONFIG_JFS_FS is not set |
| 742 | # CONFIG_FS_POSIX_ACL is not set | 826 | # CONFIG_FS_POSIX_ACL is not set |
| 743 | # CONFIG_XFS_FS is not set | 827 | # CONFIG_XFS_FS is not set |
| 744 | # CONFIG_GFS2_FS is not set | ||
| 745 | # CONFIG_OCFS2_FS is not set | 828 | # CONFIG_OCFS2_FS is not set |
| 746 | CONFIG_DNOTIFY=y | 829 | CONFIG_DNOTIFY=y |
| 747 | CONFIG_INOTIFY=y | 830 | CONFIG_INOTIFY=y |
| @@ -799,7 +882,6 @@ CONFIG_NFS_FS=y | |||
| 799 | CONFIG_NFS_V3=y | 882 | CONFIG_NFS_V3=y |
| 800 | # CONFIG_NFS_V3_ACL is not set | 883 | # CONFIG_NFS_V3_ACL is not set |
| 801 | CONFIG_NFS_V4=y | 884 | CONFIG_NFS_V4=y |
| 802 | # CONFIG_NFS_DIRECTIO is not set | ||
| 803 | # CONFIG_NFSD is not set | 885 | # CONFIG_NFSD is not set |
| 804 | CONFIG_ROOT_NFS=y | 886 | CONFIG_ROOT_NFS=y |
| 805 | CONFIG_LOCKD=y | 887 | CONFIG_LOCKD=y |
| @@ -844,6 +926,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 844 | # Library routines | 926 | # Library routines |
| 845 | # | 927 | # |
| 846 | CONFIG_BITREVERSE=y | 928 | CONFIG_BITREVERSE=y |
| 929 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 847 | # CONFIG_CRC_CCITT is not set | 930 | # CONFIG_CRC_CCITT is not set |
| 848 | # CONFIG_CRC16 is not set | 931 | # CONFIG_CRC16 is not set |
| 849 | # CONFIG_CRC_ITU_T is not set | 932 | # CONFIG_CRC_ITU_T is not set |
| @@ -854,6 +937,7 @@ CONFIG_PLIST=y | |||
| 854 | CONFIG_HAS_IOMEM=y | 937 | CONFIG_HAS_IOMEM=y |
| 855 | CONFIG_HAS_IOPORT=y | 938 | CONFIG_HAS_IOPORT=y |
| 856 | CONFIG_HAS_DMA=y | 939 | CONFIG_HAS_DMA=y |
| 940 | CONFIG_HAVE_LMB=y | ||
| 857 | 941 | ||
| 858 | # | 942 | # |
| 859 | # Kernel hacking | 943 | # Kernel hacking |
| @@ -861,6 +945,7 @@ CONFIG_HAS_DMA=y | |||
| 861 | # CONFIG_PRINTK_TIME is not set | 945 | # CONFIG_PRINTK_TIME is not set |
| 862 | CONFIG_ENABLE_WARN_DEPRECATED=y | 946 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 863 | # CONFIG_ENABLE_MUST_CHECK is not set | 947 | # CONFIG_ENABLE_MUST_CHECK is not set |
| 948 | CONFIG_FRAME_WARN=1024 | ||
| 864 | # CONFIG_MAGIC_SYSRQ is not set | 949 | # CONFIG_MAGIC_SYSRQ is not set |
| 865 | # CONFIG_UNUSED_SYMBOLS is not set | 950 | # CONFIG_UNUSED_SYMBOLS is not set |
| 866 | # CONFIG_DEBUG_FS is not set | 951 | # CONFIG_DEBUG_FS is not set |
| @@ -868,6 +953,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
| 868 | # CONFIG_DEBUG_KERNEL is not set | 953 | # CONFIG_DEBUG_KERNEL is not set |
| 869 | # CONFIG_DEBUG_BUGVERBOSE is not set | 954 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 870 | # CONFIG_SAMPLES is not set | 955 | # CONFIG_SAMPLES is not set |
| 956 | # CONFIG_IRQSTACKS is not set | ||
| 871 | # CONFIG_PPC_EARLY_DEBUG is not set | 957 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 872 | 958 | ||
| 873 | # | 959 | # |
| @@ -881,50 +967,80 @@ CONFIG_ASYNC_CORE=y | |||
| 881 | CONFIG_ASYNC_MEMCPY=y | 967 | CONFIG_ASYNC_MEMCPY=y |
| 882 | CONFIG_ASYNC_XOR=y | 968 | CONFIG_ASYNC_XOR=y |
| 883 | CONFIG_CRYPTO=y | 969 | CONFIG_CRYPTO=y |
| 970 | |||
| 971 | # | ||
| 972 | # Crypto core or helper | ||
| 973 | # | ||
| 884 | CONFIG_CRYPTO_ALGAPI=y | 974 | CONFIG_CRYPTO_ALGAPI=y |
| 885 | CONFIG_CRYPTO_BLKCIPHER=y | 975 | CONFIG_CRYPTO_BLKCIPHER=y |
| 886 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 887 | CONFIG_CRYPTO_MANAGER=y | 976 | CONFIG_CRYPTO_MANAGER=y |
| 977 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 978 | # CONFIG_CRYPTO_NULL is not set | ||
| 979 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 980 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 981 | # CONFIG_CRYPTO_TEST is not set | ||
| 982 | |||
| 983 | # | ||
| 984 | # Authenticated Encryption with Associated Data | ||
| 985 | # | ||
| 986 | # CONFIG_CRYPTO_CCM is not set | ||
| 987 | # CONFIG_CRYPTO_GCM is not set | ||
| 988 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 989 | |||
| 990 | # | ||
| 991 | # Block modes | ||
| 992 | # | ||
| 993 | CONFIG_CRYPTO_CBC=y | ||
| 994 | # CONFIG_CRYPTO_CTR is not set | ||
| 995 | # CONFIG_CRYPTO_CTS is not set | ||
| 996 | CONFIG_CRYPTO_ECB=m | ||
| 997 | # CONFIG_CRYPTO_LRW is not set | ||
| 998 | CONFIG_CRYPTO_PCBC=m | ||
| 999 | # CONFIG_CRYPTO_XTS is not set | ||
| 1000 | |||
| 1001 | # | ||
| 1002 | # Hash modes | ||
| 1003 | # | ||
| 888 | # CONFIG_CRYPTO_HMAC is not set | 1004 | # CONFIG_CRYPTO_HMAC is not set |
| 889 | # CONFIG_CRYPTO_XCBC is not set | 1005 | # CONFIG_CRYPTO_XCBC is not set |
| 890 | # CONFIG_CRYPTO_NULL is not set | 1006 | |
| 1007 | # | ||
| 1008 | # Digest | ||
| 1009 | # | ||
| 1010 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 891 | # CONFIG_CRYPTO_MD4 is not set | 1011 | # CONFIG_CRYPTO_MD4 is not set |
| 892 | CONFIG_CRYPTO_MD5=y | 1012 | CONFIG_CRYPTO_MD5=y |
| 1013 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 893 | # CONFIG_CRYPTO_SHA1 is not set | 1014 | # CONFIG_CRYPTO_SHA1 is not set |
| 894 | # CONFIG_CRYPTO_SHA256 is not set | 1015 | # CONFIG_CRYPTO_SHA256 is not set |
| 895 | # CONFIG_CRYPTO_SHA512 is not set | 1016 | # CONFIG_CRYPTO_SHA512 is not set |
| 896 | # CONFIG_CRYPTO_WP512 is not set | ||
| 897 | # CONFIG_CRYPTO_TGR192 is not set | 1017 | # CONFIG_CRYPTO_TGR192 is not set |
| 898 | # CONFIG_CRYPTO_GF128MUL is not set | 1018 | # CONFIG_CRYPTO_WP512 is not set |
| 899 | CONFIG_CRYPTO_ECB=m | 1019 | |
| 900 | CONFIG_CRYPTO_CBC=y | 1020 | # |
| 901 | CONFIG_CRYPTO_PCBC=m | 1021 | # Ciphers |
| 902 | # CONFIG_CRYPTO_LRW is not set | 1022 | # |
| 903 | # CONFIG_CRYPTO_XTS is not set | ||
| 904 | # CONFIG_CRYPTO_CTR is not set | ||
| 905 | # CONFIG_CRYPTO_GCM is not set | ||
| 906 | # CONFIG_CRYPTO_CCM is not set | ||
| 907 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 908 | CONFIG_CRYPTO_DES=y | ||
| 909 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 910 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 911 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 912 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 913 | # CONFIG_CRYPTO_AES is not set | 1023 | # CONFIG_CRYPTO_AES is not set |
| 1024 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1025 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1026 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1027 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 914 | # CONFIG_CRYPTO_CAST5 is not set | 1028 | # CONFIG_CRYPTO_CAST5 is not set |
| 915 | # CONFIG_CRYPTO_CAST6 is not set | 1029 | # CONFIG_CRYPTO_CAST6 is not set |
| 916 | # CONFIG_CRYPTO_TEA is not set | 1030 | CONFIG_CRYPTO_DES=y |
| 917 | # CONFIG_CRYPTO_ARC4 is not set | 1031 | # CONFIG_CRYPTO_FCRYPT is not set |
| 918 | # CONFIG_CRYPTO_KHAZAD is not set | 1032 | # CONFIG_CRYPTO_KHAZAD is not set |
| 919 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 920 | # CONFIG_CRYPTO_SEED is not set | ||
| 921 | # CONFIG_CRYPTO_SALSA20 is not set | 1033 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1034 | # CONFIG_CRYPTO_SEED is not set | ||
| 1035 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1036 | # CONFIG_CRYPTO_TEA is not set | ||
| 1037 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1038 | |||
| 1039 | # | ||
| 1040 | # Compression | ||
| 1041 | # | ||
| 922 | # CONFIG_CRYPTO_DEFLATE is not set | 1042 | # CONFIG_CRYPTO_DEFLATE is not set |
| 923 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 924 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 925 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 926 | # CONFIG_CRYPTO_TEST is not set | ||
| 927 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 928 | # CONFIG_CRYPTO_LZO is not set | 1043 | # CONFIG_CRYPTO_LZO is not set |
| 929 | CONFIG_CRYPTO_HW=y | 1044 | CONFIG_CRYPTO_HW=y |
| 930 | # CONFIG_PPC_CLOCK is not set | 1045 | # CONFIG_PPC_CLOCK is not set |
| 1046 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/83xx/sbc834x_defconfig b/arch/powerpc/configs/83xx/sbc834x_defconfig index 1f1518229f6d..1752918be2c1 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:38 2008 | 4 | # Mon Jun 9 08:52:30 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | # CONFIG_KALLSYMS is not set | 92 | # CONFIG_KALLSYMS is not set |
| 90 | CONFIG_HOTPLUG=y | 93 | CONFIG_HOTPLUG=y |
| 91 | CONFIG_PRINTK=y | 94 | CONFIG_PRINTK=y |
| @@ -109,12 +112,14 @@ CONFIG_SLAB=y | |||
| 109 | CONFIG_HAVE_OPROFILE=y | 112 | CONFIG_HAVE_OPROFILE=y |
| 110 | CONFIG_HAVE_KPROBES=y | 113 | CONFIG_HAVE_KPROBES=y |
| 111 | CONFIG_HAVE_KRETPROBES=y | 114 | CONFIG_HAVE_KRETPROBES=y |
| 115 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 112 | CONFIG_PROC_PAGE_MONITOR=y | 116 | CONFIG_PROC_PAGE_MONITOR=y |
| 113 | CONFIG_SLABINFO=y | 117 | CONFIG_SLABINFO=y |
| 114 | CONFIG_RT_MUTEXES=y | 118 | CONFIG_RT_MUTEXES=y |
| 115 | # CONFIG_TINY_SHMEM is not set | 119 | # CONFIG_TINY_SHMEM is not set |
| 116 | CONFIG_BASE_SMALL=0 | 120 | CONFIG_BASE_SMALL=0 |
| 117 | CONFIG_MODULES=y | 121 | CONFIG_MODULES=y |
| 122 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 118 | CONFIG_MODULE_UNLOAD=y | 123 | CONFIG_MODULE_UNLOAD=y |
| 119 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 124 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 120 | # CONFIG_MODVERSIONS is not set | 125 | # CONFIG_MODVERSIONS is not set |
| @@ -209,11 +214,13 @@ CONFIG_FLATMEM=y | |||
| 209 | CONFIG_FLAT_NODE_MEM_MAP=y | 214 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 210 | # CONFIG_SPARSEMEM_STATIC is not set | 215 | # CONFIG_SPARSEMEM_STATIC is not set |
| 211 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 216 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 217 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 212 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 213 | # CONFIG_RESOURCES_64BIT is not set | 219 | # CONFIG_RESOURCES_64BIT is not set |
| 214 | CONFIG_ZONE_DMA_FLAG=1 | 220 | CONFIG_ZONE_DMA_FLAG=1 |
| 215 | CONFIG_BOUNCE=y | 221 | CONFIG_BOUNCE=y |
| 216 | CONFIG_VIRT_TO_BUS=y | 222 | CONFIG_VIRT_TO_BUS=y |
| 223 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 217 | CONFIG_PROC_DEVICETREE=y | 224 | CONFIG_PROC_DEVICETREE=y |
| 218 | # CONFIG_CMDLINE_BOOL is not set | 225 | # CONFIG_CMDLINE_BOOL is not set |
| 219 | # CONFIG_PM is not set | 226 | # CONFIG_PM is not set |
| @@ -232,6 +239,7 @@ CONFIG_FSL_SOC=y | |||
| 232 | # CONFIG_PCI_SYSCALL is not set | 239 | # CONFIG_PCI_SYSCALL is not set |
| 233 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 240 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 234 | # CONFIG_PCCARD is not set | 241 | # CONFIG_PCCARD is not set |
| 242 | # CONFIG_HAS_RAPIDIO is not set | ||
| 235 | 243 | ||
| 236 | # | 244 | # |
| 237 | # Advanced setup | 245 | # Advanced setup |
| @@ -241,11 +249,11 @@ CONFIG_FSL_SOC=y | |||
| 241 | # | 249 | # |
| 242 | # Default settings for advanced configuration options are used | 250 | # Default settings for advanced configuration options are used |
| 243 | # | 251 | # |
| 244 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 245 | CONFIG_LOWMEM_SIZE=0x30000000 | 252 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 253 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 246 | CONFIG_KERNEL_START=0xc0000000 | 254 | CONFIG_KERNEL_START=0xc0000000 |
| 255 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 247 | CONFIG_TASK_SIZE=0xc0000000 | 256 | CONFIG_TASK_SIZE=0xc0000000 |
| 248 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 249 | 257 | ||
| 250 | # | 258 | # |
| 251 | # Networking | 259 | # Networking |
| @@ -293,8 +301,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 293 | CONFIG_DEFAULT_TCP_CONG="cubic" | 301 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 294 | # CONFIG_TCP_MD5SIG is not set | 302 | # CONFIG_TCP_MD5SIG is not set |
| 295 | # CONFIG_IPV6 is not set | 303 | # CONFIG_IPV6 is not set |
| 296 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 297 | # CONFIG_INET6_TUNNEL is not set | ||
| 298 | # CONFIG_NETWORK_SECMARK is not set | 304 | # CONFIG_NETWORK_SECMARK is not set |
| 299 | # CONFIG_NETFILTER is not set | 305 | # CONFIG_NETFILTER is not set |
| 300 | # CONFIG_IP_DCCP is not set | 306 | # CONFIG_IP_DCCP is not set |
| @@ -348,6 +354,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 348 | # CONFIG_CONNECTOR is not set | 354 | # CONFIG_CONNECTOR is not set |
| 349 | # CONFIG_MTD is not set | 355 | # CONFIG_MTD is not set |
| 350 | CONFIG_OF_DEVICE=y | 356 | CONFIG_OF_DEVICE=y |
| 357 | CONFIG_OF_I2C=y | ||
| 351 | # CONFIG_PARPORT is not set | 358 | # CONFIG_PARPORT is not set |
| 352 | CONFIG_BLK_DEV=y | 359 | CONFIG_BLK_DEV=y |
| 353 | # CONFIG_BLK_DEV_FD is not set | 360 | # CONFIG_BLK_DEV_FD is not set |
| @@ -420,6 +427,7 @@ CONFIG_GIANFAR=y | |||
| 420 | # | 427 | # |
| 421 | # CONFIG_WLAN_PRE80211 is not set | 428 | # CONFIG_WLAN_PRE80211 is not set |
| 422 | # CONFIG_WLAN_80211 is not set | 429 | # CONFIG_WLAN_80211 is not set |
| 430 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 423 | # CONFIG_WAN is not set | 431 | # CONFIG_WAN is not set |
| 424 | # CONFIG_PPP is not set | 432 | # CONFIG_PPP is not set |
| 425 | # CONFIG_SLIP is not set | 433 | # CONFIG_SLIP is not set |
| @@ -464,6 +472,7 @@ CONFIG_INPUT=y | |||
| 464 | # Character devices | 472 | # Character devices |
| 465 | # | 473 | # |
| 466 | # CONFIG_VT is not set | 474 | # CONFIG_VT is not set |
| 475 | CONFIG_DEVKMEM=y | ||
| 467 | # CONFIG_SERIAL_NONSTANDARD is not set | 476 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 468 | 477 | ||
| 469 | # | 478 | # |
| @@ -498,13 +507,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 498 | CONFIG_I2C_CHARDEV=y | 507 | CONFIG_I2C_CHARDEV=y |
| 499 | 508 | ||
| 500 | # | 509 | # |
| 501 | # I2C Algorithms | ||
| 502 | # | ||
| 503 | # CONFIG_I2C_ALGOBIT is not set | ||
| 504 | # CONFIG_I2C_ALGOPCF is not set | ||
| 505 | # CONFIG_I2C_ALGOPCA is not set | ||
| 506 | |||
| 507 | # | ||
| 508 | # I2C Hardware Bus support | 510 | # I2C Hardware Bus support |
| 509 | # | 511 | # |
| 510 | CONFIG_I2C_MPC=y | 512 | CONFIG_I2C_MPC=y |
| @@ -513,6 +515,7 @@ CONFIG_I2C_MPC=y | |||
| 513 | # CONFIG_I2C_SIMTEC is not set | 515 | # CONFIG_I2C_SIMTEC is not set |
| 514 | # CONFIG_I2C_TAOS_EVM is not set | 516 | # CONFIG_I2C_TAOS_EVM is not set |
| 515 | # CONFIG_I2C_STUB is not set | 517 | # CONFIG_I2C_STUB is not set |
| 518 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 516 | 519 | ||
| 517 | # | 520 | # |
| 518 | # Miscellaneous I2C Chip support | 521 | # Miscellaneous I2C Chip support |
| @@ -522,19 +525,13 @@ CONFIG_I2C_MPC=y | |||
| 522 | # CONFIG_SENSORS_PCF8574 is not set | 525 | # CONFIG_SENSORS_PCF8574 is not set |
| 523 | # CONFIG_PCF8575 is not set | 526 | # CONFIG_PCF8575 is not set |
| 524 | # CONFIG_SENSORS_PCF8591 is not set | 527 | # CONFIG_SENSORS_PCF8591 is not set |
| 525 | # CONFIG_TPS65010 is not set | ||
| 526 | # CONFIG_SENSORS_MAX6875 is not set | 528 | # CONFIG_SENSORS_MAX6875 is not set |
| 527 | # CONFIG_SENSORS_TSL2550 is not set | 529 | # CONFIG_SENSORS_TSL2550 is not set |
| 528 | # CONFIG_I2C_DEBUG_CORE is not set | 530 | # CONFIG_I2C_DEBUG_CORE is not set |
| 529 | # CONFIG_I2C_DEBUG_ALGO is not set | 531 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 530 | # CONFIG_I2C_DEBUG_BUS is not set | 532 | # CONFIG_I2C_DEBUG_BUS is not set |
| 531 | # CONFIG_I2C_DEBUG_CHIP is not set | 533 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 532 | |||
| 533 | # | ||
| 534 | # SPI support | ||
| 535 | # | ||
| 536 | # CONFIG_SPI is not set | 534 | # CONFIG_SPI is not set |
| 537 | # CONFIG_SPI_MASTER is not set | ||
| 538 | # CONFIG_W1 is not set | 535 | # CONFIG_W1 is not set |
| 539 | # CONFIG_POWER_SUPPLY is not set | 536 | # CONFIG_POWER_SUPPLY is not set |
| 540 | CONFIG_HWMON=y | 537 | CONFIG_HWMON=y |
| @@ -607,12 +604,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 607 | # Multifunction device drivers | 604 | # Multifunction device drivers |
| 608 | # | 605 | # |
| 609 | # CONFIG_MFD_SM501 is not set | 606 | # CONFIG_MFD_SM501 is not set |
| 607 | # CONFIG_HTC_PASIC3 is not set | ||
| 610 | 608 | ||
| 611 | # | 609 | # |
| 612 | # Multimedia devices | 610 | # Multimedia devices |
| 613 | # | 611 | # |
| 612 | |||
| 613 | # | ||
| 614 | # Multimedia core support | ||
| 615 | # | ||
| 614 | # CONFIG_VIDEO_DEV is not set | 616 | # CONFIG_VIDEO_DEV is not set |
| 615 | # CONFIG_DVB_CORE is not set | 617 | # CONFIG_DVB_CORE is not set |
| 618 | # CONFIG_VIDEO_MEDIA is not set | ||
| 619 | |||
| 620 | # | ||
| 621 | # Multimedia drivers | ||
| 622 | # | ||
| 616 | # CONFIG_DAB is not set | 623 | # CONFIG_DAB is not set |
| 617 | 624 | ||
| 618 | # | 625 | # |
| @@ -640,13 +647,10 @@ CONFIG_HID=y | |||
| 640 | # CONFIG_MMC is not set | 647 | # CONFIG_MMC is not set |
| 641 | # CONFIG_MEMSTICK is not set | 648 | # CONFIG_MEMSTICK is not set |
| 642 | # CONFIG_NEW_LEDS is not set | 649 | # CONFIG_NEW_LEDS is not set |
| 650 | # CONFIG_ACCESSIBILITY is not set | ||
| 643 | # CONFIG_EDAC is not set | 651 | # CONFIG_EDAC is not set |
| 644 | # CONFIG_RTC_CLASS is not set | 652 | # CONFIG_RTC_CLASS is not set |
| 645 | # CONFIG_DMADEVICES is not set | 653 | # CONFIG_DMADEVICES is not set |
| 646 | |||
| 647 | # | ||
| 648 | # Userspace I/O | ||
| 649 | # | ||
| 650 | # CONFIG_UIO is not set | 654 | # CONFIG_UIO is not set |
| 651 | 655 | ||
| 652 | # | 656 | # |
| @@ -659,7 +663,6 @@ CONFIG_HID=y | |||
| 659 | # CONFIG_JFS_FS is not set | 663 | # CONFIG_JFS_FS is not set |
| 660 | # CONFIG_FS_POSIX_ACL is not set | 664 | # CONFIG_FS_POSIX_ACL is not set |
| 661 | # CONFIG_XFS_FS is not set | 665 | # CONFIG_XFS_FS is not set |
| 662 | # CONFIG_GFS2_FS is not set | ||
| 663 | # CONFIG_OCFS2_FS is not set | 666 | # CONFIG_OCFS2_FS is not set |
| 664 | CONFIG_DNOTIFY=y | 667 | CONFIG_DNOTIFY=y |
| 665 | CONFIG_INOTIFY=y | 668 | CONFIG_INOTIFY=y |
| @@ -717,7 +720,6 @@ CONFIG_NFS_FS=y | |||
| 717 | CONFIG_NFS_V3=y | 720 | CONFIG_NFS_V3=y |
| 718 | # CONFIG_NFS_V3_ACL is not set | 721 | # CONFIG_NFS_V3_ACL is not set |
| 719 | CONFIG_NFS_V4=y | 722 | CONFIG_NFS_V4=y |
| 720 | # CONFIG_NFS_DIRECTIO is not set | ||
| 721 | # CONFIG_NFSD is not set | 723 | # CONFIG_NFSD is not set |
| 722 | CONFIG_ROOT_NFS=y | 724 | CONFIG_ROOT_NFS=y |
| 723 | CONFIG_LOCKD=y | 725 | CONFIG_LOCKD=y |
| @@ -746,6 +748,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 746 | # Library routines | 748 | # Library routines |
| 747 | # | 749 | # |
| 748 | CONFIG_BITREVERSE=y | 750 | CONFIG_BITREVERSE=y |
| 751 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 749 | # CONFIG_CRC_CCITT is not set | 752 | # CONFIG_CRC_CCITT is not set |
| 750 | # CONFIG_CRC16 is not set | 753 | # CONFIG_CRC16 is not set |
| 751 | # CONFIG_CRC_ITU_T is not set | 754 | # CONFIG_CRC_ITU_T is not set |
| @@ -756,6 +759,7 @@ CONFIG_PLIST=y | |||
| 756 | CONFIG_HAS_IOMEM=y | 759 | CONFIG_HAS_IOMEM=y |
| 757 | CONFIG_HAS_IOPORT=y | 760 | CONFIG_HAS_IOPORT=y |
| 758 | CONFIG_HAS_DMA=y | 761 | CONFIG_HAS_DMA=y |
| 762 | CONFIG_HAVE_LMB=y | ||
| 759 | 763 | ||
| 760 | # | 764 | # |
| 761 | # Kernel hacking | 765 | # Kernel hacking |
| @@ -763,6 +767,7 @@ CONFIG_HAS_DMA=y | |||
| 763 | # CONFIG_PRINTK_TIME is not set | 767 | # CONFIG_PRINTK_TIME is not set |
| 764 | CONFIG_ENABLE_WARN_DEPRECATED=y | 768 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 765 | CONFIG_ENABLE_MUST_CHECK=y | 769 | CONFIG_ENABLE_MUST_CHECK=y |
| 770 | CONFIG_FRAME_WARN=1024 | ||
| 766 | # CONFIG_MAGIC_SYSRQ is not set | 771 | # CONFIG_MAGIC_SYSRQ is not set |
| 767 | # CONFIG_UNUSED_SYMBOLS is not set | 772 | # CONFIG_UNUSED_SYMBOLS is not set |
| 768 | # CONFIG_DEBUG_FS is not set | 773 | # CONFIG_DEBUG_FS is not set |
| @@ -770,6 +775,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 770 | # CONFIG_DEBUG_KERNEL is not set | 775 | # CONFIG_DEBUG_KERNEL is not set |
| 771 | # CONFIG_DEBUG_BUGVERBOSE is not set | 776 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 772 | # CONFIG_SAMPLES is not set | 777 | # CONFIG_SAMPLES is not set |
| 778 | # CONFIG_IRQSTACKS is not set | ||
| 773 | # CONFIG_PPC_EARLY_DEBUG is not set | 779 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 774 | 780 | ||
| 775 | # | 781 | # |
| @@ -779,50 +785,80 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 779 | # CONFIG_SECURITY is not set | 785 | # CONFIG_SECURITY is not set |
| 780 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 786 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 781 | CONFIG_CRYPTO=y | 787 | CONFIG_CRYPTO=y |
| 788 | |||
| 789 | # | ||
| 790 | # Crypto core or helper | ||
| 791 | # | ||
| 782 | CONFIG_CRYPTO_ALGAPI=y | 792 | CONFIG_CRYPTO_ALGAPI=y |
| 783 | CONFIG_CRYPTO_BLKCIPHER=y | 793 | CONFIG_CRYPTO_BLKCIPHER=y |
| 784 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 785 | CONFIG_CRYPTO_MANAGER=y | 794 | CONFIG_CRYPTO_MANAGER=y |
| 795 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 796 | # CONFIG_CRYPTO_NULL is not set | ||
| 797 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 798 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 799 | # CONFIG_CRYPTO_TEST is not set | ||
| 800 | |||
| 801 | # | ||
| 802 | # Authenticated Encryption with Associated Data | ||
| 803 | # | ||
| 804 | # CONFIG_CRYPTO_CCM is not set | ||
| 805 | # CONFIG_CRYPTO_GCM is not set | ||
| 806 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 807 | |||
| 808 | # | ||
| 809 | # Block modes | ||
| 810 | # | ||
| 811 | CONFIG_CRYPTO_CBC=y | ||
| 812 | # CONFIG_CRYPTO_CTR is not set | ||
| 813 | # CONFIG_CRYPTO_CTS is not set | ||
| 814 | CONFIG_CRYPTO_ECB=m | ||
| 815 | # CONFIG_CRYPTO_LRW is not set | ||
| 816 | CONFIG_CRYPTO_PCBC=m | ||
| 817 | # CONFIG_CRYPTO_XTS is not set | ||
| 818 | |||
| 819 | # | ||
| 820 | # Hash modes | ||
| 821 | # | ||
| 786 | # CONFIG_CRYPTO_HMAC is not set | 822 | # CONFIG_CRYPTO_HMAC is not set |
| 787 | # CONFIG_CRYPTO_XCBC is not set | 823 | # CONFIG_CRYPTO_XCBC is not set |
| 788 | # CONFIG_CRYPTO_NULL is not set | 824 | |
| 825 | # | ||
| 826 | # Digest | ||
| 827 | # | ||
| 828 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 789 | # CONFIG_CRYPTO_MD4 is not set | 829 | # CONFIG_CRYPTO_MD4 is not set |
| 790 | CONFIG_CRYPTO_MD5=y | 830 | CONFIG_CRYPTO_MD5=y |
| 831 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 791 | # CONFIG_CRYPTO_SHA1 is not set | 832 | # CONFIG_CRYPTO_SHA1 is not set |
| 792 | # CONFIG_CRYPTO_SHA256 is not set | 833 | # CONFIG_CRYPTO_SHA256 is not set |
| 793 | # CONFIG_CRYPTO_SHA512 is not set | 834 | # CONFIG_CRYPTO_SHA512 is not set |
| 794 | # CONFIG_CRYPTO_WP512 is not set | ||
| 795 | # CONFIG_CRYPTO_TGR192 is not set | 835 | # CONFIG_CRYPTO_TGR192 is not set |
| 796 | # CONFIG_CRYPTO_GF128MUL is not set | 836 | # CONFIG_CRYPTO_WP512 is not set |
| 797 | CONFIG_CRYPTO_ECB=m | 837 | |
| 798 | CONFIG_CRYPTO_CBC=y | 838 | # |
| 799 | CONFIG_CRYPTO_PCBC=m | 839 | # Ciphers |
| 800 | # CONFIG_CRYPTO_LRW is not set | 840 | # |
| 801 | # CONFIG_CRYPTO_XTS is not set | ||
| 802 | # CONFIG_CRYPTO_CTR is not set | ||
| 803 | # CONFIG_CRYPTO_GCM is not set | ||
| 804 | # CONFIG_CRYPTO_CCM is not set | ||
| 805 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 806 | CONFIG_CRYPTO_DES=y | ||
| 807 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 808 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 809 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 810 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 811 | # CONFIG_CRYPTO_AES is not set | 841 | # CONFIG_CRYPTO_AES is not set |
| 842 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 843 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 844 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 845 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 812 | # CONFIG_CRYPTO_CAST5 is not set | 846 | # CONFIG_CRYPTO_CAST5 is not set |
| 813 | # CONFIG_CRYPTO_CAST6 is not set | 847 | # CONFIG_CRYPTO_CAST6 is not set |
| 814 | # CONFIG_CRYPTO_TEA is not set | 848 | CONFIG_CRYPTO_DES=y |
| 815 | # CONFIG_CRYPTO_ARC4 is not set | 849 | # CONFIG_CRYPTO_FCRYPT is not set |
| 816 | # CONFIG_CRYPTO_KHAZAD is not set | 850 | # CONFIG_CRYPTO_KHAZAD is not set |
| 817 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 818 | # CONFIG_CRYPTO_SEED is not set | ||
| 819 | # CONFIG_CRYPTO_SALSA20 is not set | 851 | # CONFIG_CRYPTO_SALSA20 is not set |
| 852 | # CONFIG_CRYPTO_SEED is not set | ||
| 853 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 854 | # CONFIG_CRYPTO_TEA is not set | ||
| 855 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 856 | |||
| 857 | # | ||
| 858 | # Compression | ||
| 859 | # | ||
| 820 | # CONFIG_CRYPTO_DEFLATE is not set | 860 | # CONFIG_CRYPTO_DEFLATE is not set |
| 821 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 822 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 823 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 824 | # CONFIG_CRYPTO_TEST is not set | ||
| 825 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 826 | # CONFIG_CRYPTO_LZO is not set | 861 | # CONFIG_CRYPTO_LZO is not set |
| 827 | # CONFIG_CRYPTO_HW is not set | 862 | # CONFIG_CRYPTO_HW is not set |
| 828 | # CONFIG_PPC_CLOCK is not set | 863 | # CONFIG_PPC_CLOCK is not set |
| 864 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/ksi8560_defconfig b/arch/powerpc/configs/85xx/ksi8560_defconfig index 2d0debcefdbf..b82bb042308a 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.24 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Feb 11 16:25:19 2008 | 4 | # Mon Jun 9 08:52:30 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -68,23 +70,22 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 68 | # CONFIG_POSIX_MQUEUE is not set | 70 | # CONFIG_POSIX_MQUEUE is not set |
| 69 | # CONFIG_BSD_PROCESS_ACCT is not set | 71 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 70 | # CONFIG_TASKSTATS is not set | 72 | # CONFIG_TASKSTATS is not set |
| 71 | # CONFIG_USER_NS is not set | ||
| 72 | # CONFIG_PID_NS is not set | ||
| 73 | # CONFIG_AUDIT is not set | 73 | # CONFIG_AUDIT is not set |
| 74 | # CONFIG_IKCONFIG is not set | 74 | # CONFIG_IKCONFIG is not set |
| 75 | CONFIG_LOG_BUF_SHIFT=14 | 75 | CONFIG_LOG_BUF_SHIFT=14 |
| 76 | # CONFIG_CGROUPS is not set | 76 | # CONFIG_CGROUPS is not set |
| 77 | CONFIG_FAIR_GROUP_SCHED=y | 77 | # CONFIG_GROUP_SCHED is not set |
| 78 | CONFIG_FAIR_USER_SCHED=y | ||
| 79 | # CONFIG_FAIR_CGROUP_SCHED is not set | ||
| 80 | CONFIG_SYSFS_DEPRECATED=y | 78 | CONFIG_SYSFS_DEPRECATED=y |
| 79 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
| 81 | # CONFIG_RELAY is not set | 80 | # CONFIG_RELAY is not set |
| 81 | # CONFIG_NAMESPACES is not set | ||
| 82 | CONFIG_BLK_DEV_INITRD=y | 82 | CONFIG_BLK_DEV_INITRD=y |
| 83 | CONFIG_INITRAMFS_SOURCE="" | 83 | CONFIG_INITRAMFS_SOURCE="" |
| 84 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 84 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 85 | CONFIG_SYSCTL=y | 85 | CONFIG_SYSCTL=y |
| 86 | CONFIG_EMBEDDED=y | 86 | CONFIG_EMBEDDED=y |
| 87 | CONFIG_SYSCTL_SYSCALL=y | 87 | CONFIG_SYSCTL_SYSCALL=y |
| 88 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 88 | CONFIG_KALLSYMS=y | 89 | CONFIG_KALLSYMS=y |
| 89 | # CONFIG_KALLSYMS_ALL is not set | 90 | # CONFIG_KALLSYMS_ALL is not set |
| 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 91 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -92,6 +93,7 @@ CONFIG_HOTPLUG=y | |||
| 92 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
| 93 | CONFIG_BUG=y | 94 | CONFIG_BUG=y |
| 94 | CONFIG_ELF_CORE=y | 95 | CONFIG_ELF_CORE=y |
| 96 | CONFIG_COMPAT_BRK=y | ||
| 95 | CONFIG_BASE_FULL=y | 97 | CONFIG_BASE_FULL=y |
| 96 | CONFIG_FUTEX=y | 98 | CONFIG_FUTEX=y |
| 97 | CONFIG_ANON_INODES=y | 99 | CONFIG_ANON_INODES=y |
| @@ -109,6 +111,8 @@ CONFIG_SLUB=y | |||
| 109 | # CONFIG_MARKERS is not set | 111 | # CONFIG_MARKERS is not set |
| 110 | CONFIG_HAVE_OPROFILE=y | 112 | CONFIG_HAVE_OPROFILE=y |
| 111 | CONFIG_HAVE_KPROBES=y | 113 | CONFIG_HAVE_KPROBES=y |
| 114 | CONFIG_HAVE_KRETPROBES=y | ||
| 115 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 112 | CONFIG_PROC_PAGE_MONITOR=y | 116 | CONFIG_PROC_PAGE_MONITOR=y |
| 113 | CONFIG_SLABINFO=y | 117 | CONFIG_SLABINFO=y |
| 114 | CONFIG_RT_MUTEXES=y | 118 | CONFIG_RT_MUTEXES=y |
| @@ -134,7 +138,6 @@ CONFIG_DEFAULT_AS=y | |||
| 134 | # CONFIG_DEFAULT_NOOP is not set | 138 | # CONFIG_DEFAULT_NOOP is not set |
| 135 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 139 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 136 | CONFIG_CLASSIC_RCU=y | 140 | CONFIG_CLASSIC_RCU=y |
| 137 | # CONFIG_PREEMPT_RCU is not set | ||
| 138 | 141 | ||
| 139 | # | 142 | # |
| 140 | # Platform support | 143 | # Platform support |
| @@ -191,12 +194,13 @@ CONFIG_HZ=250 | |||
| 191 | CONFIG_PREEMPT_NONE=y | 194 | CONFIG_PREEMPT_NONE=y |
| 192 | # CONFIG_PREEMPT_VOLUNTARY is not set | 195 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 193 | # CONFIG_PREEMPT is not set | 196 | # CONFIG_PREEMPT is not set |
| 194 | CONFIG_RCU_TRACE=y | ||
| 195 | CONFIG_BINFMT_ELF=y | 197 | CONFIG_BINFMT_ELF=y |
| 196 | CONFIG_BINFMT_MISC=y | 198 | CONFIG_BINFMT_MISC=y |
| 197 | CONFIG_MATH_EMULATION=y | 199 | CONFIG_MATH_EMULATION=y |
| 198 | # CONFIG_IOMMU_HELPER is not set | 200 | # CONFIG_IOMMU_HELPER is not set |
| 199 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 201 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 202 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
| 203 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
| 200 | CONFIG_ARCH_FLATMEM_ENABLE=y | 204 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 201 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 205 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 202 | CONFIG_SELECT_MEMORY_MODEL=y | 206 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -207,16 +211,17 @@ CONFIG_FLATMEM=y | |||
| 207 | CONFIG_FLAT_NODE_MEM_MAP=y | 211 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 208 | # CONFIG_SPARSEMEM_STATIC is not set | 212 | # CONFIG_SPARSEMEM_STATIC is not set |
| 209 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 213 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 214 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 210 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 215 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 211 | # CONFIG_RESOURCES_64BIT is not set | 216 | # CONFIG_RESOURCES_64BIT is not set |
| 212 | CONFIG_ZONE_DMA_FLAG=1 | 217 | CONFIG_ZONE_DMA_FLAG=1 |
| 213 | CONFIG_BOUNCE=y | 218 | CONFIG_BOUNCE=y |
| 214 | CONFIG_VIRT_TO_BUS=y | 219 | CONFIG_VIRT_TO_BUS=y |
| 220 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 215 | # CONFIG_PROC_DEVICETREE is not set | 221 | # CONFIG_PROC_DEVICETREE is not set |
| 216 | # CONFIG_CMDLINE_BOOL is not set | 222 | # CONFIG_CMDLINE_BOOL is not set |
| 217 | # CONFIG_PM is not set | 223 | # CONFIG_PM is not set |
| 218 | # CONFIG_SECCOMP is not set | 224 | # CONFIG_SECCOMP is not set |
| 219 | CONFIG_WANT_DEVICE_TREE=y | ||
| 220 | CONFIG_ISA_DMA_API=y | 225 | CONFIG_ISA_DMA_API=y |
| 221 | 226 | ||
| 222 | # | 227 | # |
| @@ -229,6 +234,7 @@ CONFIG_FSL_SOC=y | |||
| 229 | # CONFIG_PCI_SYSCALL is not set | 234 | # CONFIG_PCI_SYSCALL is not set |
| 230 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 235 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 231 | # CONFIG_PCCARD is not set | 236 | # CONFIG_PCCARD is not set |
| 237 | # CONFIG_HAS_RAPIDIO is not set | ||
| 232 | 238 | ||
| 233 | # | 239 | # |
| 234 | # Advanced setup | 240 | # Advanced setup |
| @@ -238,11 +244,12 @@ CONFIG_FSL_SOC=y | |||
| 238 | # | 244 | # |
| 239 | # Default settings for advanced configuration options are used | 245 | # Default settings for advanced configuration options are used |
| 240 | # | 246 | # |
| 241 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 242 | CONFIG_LOWMEM_SIZE=0x30000000 | 247 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 248 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 243 | CONFIG_KERNEL_START=0xc0000000 | 249 | CONFIG_KERNEL_START=0xc0000000 |
| 250 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 251 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 244 | CONFIG_TASK_SIZE=0xc0000000 | 252 | CONFIG_TASK_SIZE=0xc0000000 |
| 245 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 246 | 253 | ||
| 247 | # | 254 | # |
| 248 | # Networking | 255 | # Networking |
| @@ -290,8 +297,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 290 | CONFIG_DEFAULT_TCP_CONG="cubic" | 297 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 291 | # CONFIG_TCP_MD5SIG is not set | 298 | # CONFIG_TCP_MD5SIG is not set |
| 292 | # CONFIG_IPV6 is not set | 299 | # CONFIG_IPV6 is not set |
| 293 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 294 | # CONFIG_INET6_TUNNEL is not set | ||
| 295 | # CONFIG_NETWORK_SECMARK is not set | 300 | # CONFIG_NETWORK_SECMARK is not set |
| 296 | # CONFIG_NETFILTER is not set | 301 | # CONFIG_NETFILTER is not set |
| 297 | # CONFIG_IP_DCCP is not set | 302 | # CONFIG_IP_DCCP is not set |
| @@ -351,6 +356,8 @@ CONFIG_MTD_CONCAT=y | |||
| 351 | CONFIG_MTD_PARTITIONS=y | 356 | CONFIG_MTD_PARTITIONS=y |
| 352 | # CONFIG_MTD_REDBOOT_PARTS is not set | 357 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 353 | # CONFIG_MTD_CMDLINE_PARTS is not set | 358 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 359 | # CONFIG_MTD_OF_PARTS is not set | ||
| 360 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 354 | 361 | ||
| 355 | # | 362 | # |
| 356 | # User Modules And Translation Layers | 363 | # User Modules And Translation Layers |
| @@ -430,17 +437,19 @@ CONFIG_BLK_DEV_LOOP=y | |||
| 430 | CONFIG_BLK_DEV_RAM=y | 437 | CONFIG_BLK_DEV_RAM=y |
| 431 | CONFIG_BLK_DEV_RAM_COUNT=16 | 438 | CONFIG_BLK_DEV_RAM_COUNT=16 |
| 432 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 439 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
| 433 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | 440 | # CONFIG_BLK_DEV_XIP is not set |
| 434 | # CONFIG_CDROM_PKTCDVD is not set | 441 | # CONFIG_CDROM_PKTCDVD is not set |
| 435 | # CONFIG_ATA_OVER_ETH is not set | 442 | # CONFIG_ATA_OVER_ETH is not set |
| 436 | CONFIG_MISC_DEVICES=y | 443 | CONFIG_MISC_DEVICES=y |
| 437 | # CONFIG_EEPROM_93CX6 is not set | 444 | # CONFIG_EEPROM_93CX6 is not set |
| 445 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
| 446 | CONFIG_HAVE_IDE=y | ||
| 438 | CONFIG_IDE=y | 447 | CONFIG_IDE=y |
| 439 | CONFIG_IDE_MAX_HWIFS=4 | 448 | CONFIG_IDE_MAX_HWIFS=4 |
| 440 | CONFIG_BLK_DEV_IDE=y | 449 | CONFIG_BLK_DEV_IDE=y |
| 441 | 450 | ||
| 442 | # | 451 | # |
| 443 | # Please see Documentation/ide.txt for help/info on IDE drives | 452 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 444 | # | 453 | # |
| 445 | # CONFIG_BLK_DEV_IDE_SATA is not set | 454 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 446 | # CONFIG_BLK_DEV_IDEDISK is not set | 455 | # CONFIG_BLK_DEV_IDEDISK is not set |
| @@ -457,7 +466,7 @@ CONFIG_IDE_PROC_FS=y | |||
| 457 | CONFIG_IDE_GENERIC=y | 466 | CONFIG_IDE_GENERIC=y |
| 458 | # CONFIG_BLK_DEV_PLATFORM is not set | 467 | # CONFIG_BLK_DEV_PLATFORM is not set |
| 459 | # CONFIG_BLK_DEV_IDEDMA is not set | 468 | # CONFIG_BLK_DEV_IDEDMA is not set |
| 460 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 469 | # CONFIG_BLK_DEV_HD_ONLY is not set |
| 461 | # CONFIG_BLK_DEV_HD is not set | 470 | # CONFIG_BLK_DEV_HD is not set |
| 462 | 471 | ||
| 463 | # | 472 | # |
| @@ -517,6 +526,7 @@ CONFIG_NETDEV_10000=y | |||
| 517 | # | 526 | # |
| 518 | # CONFIG_WLAN_PRE80211 is not set | 527 | # CONFIG_WLAN_PRE80211 is not set |
| 519 | # CONFIG_WLAN_80211 is not set | 528 | # CONFIG_WLAN_80211 is not set |
| 529 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 520 | # CONFIG_WAN is not set | 530 | # CONFIG_WAN is not set |
| 521 | # CONFIG_PPP is not set | 531 | # CONFIG_PPP is not set |
| 522 | # CONFIG_SLIP is not set | 532 | # CONFIG_SLIP is not set |
| @@ -561,6 +571,7 @@ CONFIG_INPUT=y | |||
| 561 | # Character devices | 571 | # Character devices |
| 562 | # | 572 | # |
| 563 | # CONFIG_VT is not set | 573 | # CONFIG_VT is not set |
| 574 | CONFIG_DEVKMEM=y | ||
| 564 | # CONFIG_SERIAL_NONSTANDARD is not set | 575 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 565 | 576 | ||
| 566 | # | 577 | # |
| @@ -594,12 +605,7 @@ CONFIG_GEN_RTC=y | |||
| 594 | # CONFIG_RAW_DRIVER is not set | 605 | # CONFIG_RAW_DRIVER is not set |
| 595 | # CONFIG_TCG_TPM is not set | 606 | # CONFIG_TCG_TPM is not set |
| 596 | # CONFIG_I2C is not set | 607 | # CONFIG_I2C is not set |
| 597 | |||
| 598 | # | ||
| 599 | # SPI support | ||
| 600 | # | ||
| 601 | # CONFIG_SPI is not set | 608 | # CONFIG_SPI is not set |
| 602 | # CONFIG_SPI_MASTER is not set | ||
| 603 | # CONFIG_W1 is not set | 609 | # CONFIG_W1 is not set |
| 604 | # CONFIG_POWER_SUPPLY is not set | 610 | # CONFIG_POWER_SUPPLY is not set |
| 605 | CONFIG_HWMON=y | 611 | CONFIG_HWMON=y |
| @@ -615,6 +621,7 @@ CONFIG_HWMON=y | |||
| 615 | # CONFIG_SENSORS_W83627HF is not set | 621 | # CONFIG_SENSORS_W83627HF is not set |
| 616 | # CONFIG_SENSORS_W83627EHF is not set | 622 | # CONFIG_SENSORS_W83627EHF is not set |
| 617 | # CONFIG_HWMON_DEBUG_CHIP is not set | 623 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 624 | # CONFIG_THERMAL is not set | ||
| 618 | # CONFIG_WATCHDOG is not set | 625 | # CONFIG_WATCHDOG is not set |
| 619 | 626 | ||
| 620 | # | 627 | # |
| @@ -627,12 +634,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 627 | # Multifunction device drivers | 634 | # Multifunction device drivers |
| 628 | # | 635 | # |
| 629 | # CONFIG_MFD_SM501 is not set | 636 | # CONFIG_MFD_SM501 is not set |
| 637 | # CONFIG_HTC_PASIC3 is not set | ||
| 630 | 638 | ||
| 631 | # | 639 | # |
| 632 | # Multimedia devices | 640 | # Multimedia devices |
| 633 | # | 641 | # |
| 642 | |||
| 643 | # | ||
| 644 | # Multimedia core support | ||
| 645 | # | ||
| 634 | # CONFIG_VIDEO_DEV is not set | 646 | # CONFIG_VIDEO_DEV is not set |
| 635 | # CONFIG_DVB_CORE is not set | 647 | # CONFIG_DVB_CORE is not set |
| 648 | # CONFIG_VIDEO_MEDIA is not set | ||
| 649 | |||
| 650 | # | ||
| 651 | # Multimedia drivers | ||
| 652 | # | ||
| 636 | CONFIG_DAB=y | 653 | CONFIG_DAB=y |
| 637 | 654 | ||
| 638 | # | 655 | # |
| @@ -660,19 +677,20 @@ CONFIG_USB_SUPPORT=y | |||
| 660 | # CONFIG_USB_ARCH_HAS_HCD is not set | 677 | # CONFIG_USB_ARCH_HAS_HCD is not set |
| 661 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 678 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
| 662 | # CONFIG_USB_ARCH_HAS_EHCI is not set | 679 | # CONFIG_USB_ARCH_HAS_EHCI is not set |
| 680 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 681 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 663 | 682 | ||
| 664 | # | 683 | # |
| 665 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 684 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 666 | # | 685 | # |
| 667 | # CONFIG_USB_GADGET is not set | 686 | # CONFIG_USB_GADGET is not set |
| 668 | # CONFIG_MMC is not set | 687 | # CONFIG_MMC is not set |
| 688 | # CONFIG_MEMSTICK is not set | ||
| 669 | # CONFIG_NEW_LEDS is not set | 689 | # CONFIG_NEW_LEDS is not set |
| 690 | # CONFIG_ACCESSIBILITY is not set | ||
| 670 | # CONFIG_EDAC is not set | 691 | # CONFIG_EDAC is not set |
| 671 | # CONFIG_RTC_CLASS is not set | 692 | # CONFIG_RTC_CLASS is not set |
| 672 | 693 | # CONFIG_DMADEVICES is not set | |
| 673 | # | ||
| 674 | # Userspace I/O | ||
| 675 | # | ||
| 676 | # CONFIG_UIO is not set | 694 | # CONFIG_UIO is not set |
| 677 | 695 | ||
| 678 | # | 696 | # |
| @@ -693,14 +711,11 @@ CONFIG_FS_MBCACHE=y | |||
| 693 | # CONFIG_JFS_FS is not set | 711 | # CONFIG_JFS_FS is not set |
| 694 | # CONFIG_FS_POSIX_ACL is not set | 712 | # CONFIG_FS_POSIX_ACL is not set |
| 695 | # CONFIG_XFS_FS is not set | 713 | # CONFIG_XFS_FS is not set |
| 696 | # CONFIG_GFS2_FS is not set | ||
| 697 | # CONFIG_OCFS2_FS is not set | 714 | # CONFIG_OCFS2_FS is not set |
| 698 | # CONFIG_MINIX_FS is not set | 715 | CONFIG_DNOTIFY=y |
| 699 | # CONFIG_ROMFS_FS is not set | ||
| 700 | CONFIG_INOTIFY=y | 716 | CONFIG_INOTIFY=y |
| 701 | CONFIG_INOTIFY_USER=y | 717 | CONFIG_INOTIFY_USER=y |
| 702 | # CONFIG_QUOTA is not set | 718 | # CONFIG_QUOTA is not set |
| 703 | CONFIG_DNOTIFY=y | ||
| 704 | # CONFIG_AUTOFS_FS is not set | 719 | # CONFIG_AUTOFS_FS is not set |
| 705 | # CONFIG_AUTOFS4_FS is not set | 720 | # CONFIG_AUTOFS4_FS is not set |
| 706 | # CONFIG_FUSE_FS is not set | 721 | # CONFIG_FUSE_FS is not set |
| @@ -743,15 +758,16 @@ CONFIG_TMPFS=y | |||
| 743 | # CONFIG_JFFS2_FS is not set | 758 | # CONFIG_JFFS2_FS is not set |
| 744 | # CONFIG_CRAMFS is not set | 759 | # CONFIG_CRAMFS is not set |
| 745 | # CONFIG_VXFS_FS is not set | 760 | # CONFIG_VXFS_FS is not set |
| 761 | # CONFIG_MINIX_FS is not set | ||
| 746 | # CONFIG_HPFS_FS is not set | 762 | # CONFIG_HPFS_FS is not set |
| 747 | # CONFIG_QNX4FS_FS is not set | 763 | # CONFIG_QNX4FS_FS is not set |
| 764 | # CONFIG_ROMFS_FS is not set | ||
| 748 | # CONFIG_SYSV_FS is not set | 765 | # CONFIG_SYSV_FS is not set |
| 749 | # CONFIG_UFS_FS is not set | 766 | # CONFIG_UFS_FS is not set |
| 750 | CONFIG_NETWORK_FILESYSTEMS=y | 767 | CONFIG_NETWORK_FILESYSTEMS=y |
| 751 | CONFIG_NFS_FS=y | 768 | CONFIG_NFS_FS=y |
| 752 | # CONFIG_NFS_V3 is not set | 769 | # CONFIG_NFS_V3 is not set |
| 753 | # CONFIG_NFS_V4 is not set | 770 | # CONFIG_NFS_V4 is not set |
| 754 | # CONFIG_NFS_DIRECTIO is not set | ||
| 755 | # CONFIG_NFSD is not set | 771 | # CONFIG_NFSD is not set |
| 756 | CONFIG_ROOT_NFS=y | 772 | CONFIG_ROOT_NFS=y |
| 757 | CONFIG_LOCKD=y | 773 | CONFIG_LOCKD=y |
| @@ -790,6 +806,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 790 | # Library routines | 806 | # Library routines |
| 791 | # | 807 | # |
| 792 | CONFIG_BITREVERSE=y | 808 | CONFIG_BITREVERSE=y |
| 809 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 793 | # CONFIG_CRC_CCITT is not set | 810 | # CONFIG_CRC_CCITT is not set |
| 794 | # CONFIG_CRC16 is not set | 811 | # CONFIG_CRC16 is not set |
| 795 | # CONFIG_CRC_ITU_T is not set | 812 | # CONFIG_CRC_ITU_T is not set |
| @@ -800,6 +817,7 @@ CONFIG_PLIST=y | |||
| 800 | CONFIG_HAS_IOMEM=y | 817 | CONFIG_HAS_IOMEM=y |
| 801 | CONFIG_HAS_IOPORT=y | 818 | CONFIG_HAS_IOPORT=y |
| 802 | CONFIG_HAS_DMA=y | 819 | CONFIG_HAS_DMA=y |
| 820 | CONFIG_HAVE_LMB=y | ||
| 803 | 821 | ||
| 804 | # | 822 | # |
| 805 | # Kernel hacking | 823 | # Kernel hacking |
| @@ -807,6 +825,7 @@ CONFIG_HAS_DMA=y | |||
| 807 | # CONFIG_PRINTK_TIME is not set | 825 | # CONFIG_PRINTK_TIME is not set |
| 808 | CONFIG_ENABLE_WARN_DEPRECATED=y | 826 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 809 | CONFIG_ENABLE_MUST_CHECK=y | 827 | CONFIG_ENABLE_MUST_CHECK=y |
| 828 | CONFIG_FRAME_WARN=1024 | ||
| 810 | # CONFIG_MAGIC_SYSRQ is not set | 829 | # CONFIG_MAGIC_SYSRQ is not set |
| 811 | # CONFIG_UNUSED_SYMBOLS is not set | 830 | # CONFIG_UNUSED_SYMBOLS is not set |
| 812 | CONFIG_DEBUG_FS=y | 831 | CONFIG_DEBUG_FS=y |
| @@ -817,7 +836,9 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 817 | CONFIG_SCHED_DEBUG=y | 836 | CONFIG_SCHED_DEBUG=y |
| 818 | # CONFIG_SCHEDSTATS is not set | 837 | # CONFIG_SCHEDSTATS is not set |
| 819 | # CONFIG_TIMER_STATS is not set | 838 | # CONFIG_TIMER_STATS is not set |
| 839 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 820 | # CONFIG_SLUB_DEBUG_ON is not set | 840 | # CONFIG_SLUB_DEBUG_ON is not set |
| 841 | # CONFIG_SLUB_STATS is not set | ||
| 821 | # CONFIG_DEBUG_RT_MUTEXES is not set | 842 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| 822 | # CONFIG_RT_MUTEX_TESTER is not set | 843 | # CONFIG_RT_MUTEX_TESTER is not set |
| 823 | # CONFIG_DEBUG_SPINLOCK is not set | 844 | # CONFIG_DEBUG_SPINLOCK is not set |
| @@ -829,9 +850,9 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 829 | # CONFIG_DEBUG_BUGVERBOSE is not set | 850 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 830 | # CONFIG_DEBUG_INFO is not set | 851 | # CONFIG_DEBUG_INFO is not set |
| 831 | # CONFIG_DEBUG_VM is not set | 852 | # CONFIG_DEBUG_VM is not set |
| 853 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 832 | # CONFIG_DEBUG_LIST is not set | 854 | # CONFIG_DEBUG_LIST is not set |
| 833 | # CONFIG_DEBUG_SG is not set | 855 | # CONFIG_DEBUG_SG is not set |
| 834 | CONFIG_FORCED_INLINING=y | ||
| 835 | # CONFIG_BOOT_PRINTK_DELAY is not set | 856 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 836 | # CONFIG_BACKTRACE_SELF_TEST is not set | 857 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 837 | # CONFIG_FAULT_INJECTION is not set | 858 | # CONFIG_FAULT_INJECTION is not set |
| @@ -841,6 +862,7 @@ CONFIG_FORCED_INLINING=y | |||
| 841 | # CONFIG_DEBUG_PAGEALLOC is not set | 862 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 842 | # CONFIG_DEBUGGER is not set | 863 | # CONFIG_DEBUGGER is not set |
| 843 | # CONFIG_KGDB_CONSOLE is not set | 864 | # CONFIG_KGDB_CONSOLE is not set |
| 865 | # CONFIG_IRQSTACKS is not set | ||
| 844 | # CONFIG_VIRQ_DEBUG is not set | 866 | # CONFIG_VIRQ_DEBUG is not set |
| 845 | # CONFIG_BDI_SWITCH is not set | 867 | # CONFIG_BDI_SWITCH is not set |
| 846 | # CONFIG_PPC_EARLY_DEBUG is not set | 868 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -852,48 +874,78 @@ CONFIG_FORCED_INLINING=y | |||
| 852 | # CONFIG_SECURITY is not set | 874 | # CONFIG_SECURITY is not set |
| 853 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 875 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 854 | CONFIG_CRYPTO=y | 876 | CONFIG_CRYPTO=y |
| 855 | # CONFIG_CRYPTO_SEQIV is not set | 877 | |
| 878 | # | ||
| 879 | # Crypto core or helper | ||
| 880 | # | ||
| 856 | # CONFIG_CRYPTO_MANAGER is not set | 881 | # CONFIG_CRYPTO_MANAGER is not set |
| 882 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 883 | # CONFIG_CRYPTO_NULL is not set | ||
| 884 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 885 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 886 | |||
| 887 | # | ||
| 888 | # Authenticated Encryption with Associated Data | ||
| 889 | # | ||
| 890 | # CONFIG_CRYPTO_CCM is not set | ||
| 891 | # CONFIG_CRYPTO_GCM is not set | ||
| 892 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 893 | |||
| 894 | # | ||
| 895 | # Block modes | ||
| 896 | # | ||
| 897 | # CONFIG_CRYPTO_CBC is not set | ||
| 898 | # CONFIG_CRYPTO_CTR is not set | ||
| 899 | # CONFIG_CRYPTO_CTS is not set | ||
| 900 | # CONFIG_CRYPTO_ECB is not set | ||
| 901 | # CONFIG_CRYPTO_LRW is not set | ||
| 902 | # CONFIG_CRYPTO_PCBC is not set | ||
| 903 | # CONFIG_CRYPTO_XTS is not set | ||
| 904 | |||
| 905 | # | ||
| 906 | # Hash modes | ||
| 907 | # | ||
| 857 | # CONFIG_CRYPTO_HMAC is not set | 908 | # CONFIG_CRYPTO_HMAC is not set |
| 858 | # CONFIG_CRYPTO_XCBC is not set | 909 | # CONFIG_CRYPTO_XCBC is not set |
| 859 | # CONFIG_CRYPTO_NULL is not set | 910 | |
| 911 | # | ||
| 912 | # Digest | ||
| 913 | # | ||
| 914 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 860 | # CONFIG_CRYPTO_MD4 is not set | 915 | # CONFIG_CRYPTO_MD4 is not set |
| 861 | # CONFIG_CRYPTO_MD5 is not set | 916 | # CONFIG_CRYPTO_MD5 is not set |
| 917 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 862 | # CONFIG_CRYPTO_SHA1 is not set | 918 | # CONFIG_CRYPTO_SHA1 is not set |
| 863 | # CONFIG_CRYPTO_SHA256 is not set | 919 | # CONFIG_CRYPTO_SHA256 is not set |
| 864 | # CONFIG_CRYPTO_SHA512 is not set | 920 | # CONFIG_CRYPTO_SHA512 is not set |
| 865 | # CONFIG_CRYPTO_WP512 is not set | ||
| 866 | # CONFIG_CRYPTO_TGR192 is not set | 921 | # CONFIG_CRYPTO_TGR192 is not set |
| 867 | # CONFIG_CRYPTO_GF128MUL is not set | 922 | # CONFIG_CRYPTO_WP512 is not set |
| 868 | # CONFIG_CRYPTO_ECB is not set | 923 | |
| 869 | # CONFIG_CRYPTO_CBC is not set | 924 | # |
| 870 | # CONFIG_CRYPTO_PCBC is not set | 925 | # Ciphers |
| 871 | # CONFIG_CRYPTO_LRW is not set | 926 | # |
| 872 | # CONFIG_CRYPTO_XTS is not set | ||
| 873 | # CONFIG_CRYPTO_CTR is not set | ||
| 874 | # CONFIG_CRYPTO_GCM is not set | ||
| 875 | # CONFIG_CRYPTO_CCM is not set | ||
| 876 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 877 | # CONFIG_CRYPTO_DES is not set | ||
| 878 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 879 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 880 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 881 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 882 | # CONFIG_CRYPTO_AES is not set | 927 | # CONFIG_CRYPTO_AES is not set |
| 928 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 929 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 930 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 931 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 883 | # CONFIG_CRYPTO_CAST5 is not set | 932 | # CONFIG_CRYPTO_CAST5 is not set |
| 884 | # CONFIG_CRYPTO_CAST6 is not set | 933 | # CONFIG_CRYPTO_CAST6 is not set |
| 885 | # CONFIG_CRYPTO_TEA is not set | 934 | # CONFIG_CRYPTO_DES is not set |
| 886 | # CONFIG_CRYPTO_ARC4 is not set | 935 | # CONFIG_CRYPTO_FCRYPT is not set |
| 887 | # CONFIG_CRYPTO_KHAZAD is not set | 936 | # CONFIG_CRYPTO_KHAZAD is not set |
| 888 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 889 | # CONFIG_CRYPTO_SEED is not set | ||
| 890 | # CONFIG_CRYPTO_SALSA20 is not set | 937 | # CONFIG_CRYPTO_SALSA20 is not set |
| 938 | # CONFIG_CRYPTO_SEED is not set | ||
| 939 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 940 | # CONFIG_CRYPTO_TEA is not set | ||
| 941 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 942 | |||
| 943 | # | ||
| 944 | # Compression | ||
| 945 | # | ||
| 891 | # CONFIG_CRYPTO_DEFLATE is not set | 946 | # CONFIG_CRYPTO_DEFLATE is not set |
| 892 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 893 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 894 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 895 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 896 | # CONFIG_CRYPTO_LZO is not set | 947 | # CONFIG_CRYPTO_LZO is not set |
| 897 | CONFIG_CRYPTO_HW=y | 948 | CONFIG_CRYPTO_HW=y |
| 898 | # CONFIG_PPC_CLOCK is not set | 949 | # CONFIG_PPC_CLOCK is not set |
| 899 | CONFIG_PPC_LIB_RHEAP=y | 950 | CONFIG_PPC_LIB_RHEAP=y |
| 951 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/mpc8540_ads_defconfig b/arch/powerpc/configs/85xx/mpc8540_ads_defconfig index b998539da86e..f33fd516fd54 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:25 2008 | 4 | # Mon Jun 9 08:52:31 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -87,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 87 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 90 | CONFIG_KALLSYMS=y | 93 | CONFIG_KALLSYMS=y |
| 91 | # CONFIG_KALLSYMS_ALL is not set | 94 | # CONFIG_KALLSYMS_ALL is not set |
| 92 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -113,6 +116,7 @@ CONFIG_SLUB=y | |||
| 113 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
| 114 | CONFIG_HAVE_KPROBES=y | 117 | CONFIG_HAVE_KPROBES=y |
| 115 | CONFIG_HAVE_KRETPROBES=y | 118 | CONFIG_HAVE_KRETPROBES=y |
| 119 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 116 | CONFIG_PROC_PAGE_MONITOR=y | 120 | CONFIG_PROC_PAGE_MONITOR=y |
| 117 | CONFIG_SLABINFO=y | 121 | CONFIG_SLABINFO=y |
| 118 | CONFIG_RT_MUTEXES=y | 122 | CONFIG_RT_MUTEXES=y |
| @@ -153,6 +157,7 @@ CONFIG_MPC8540_ADS=y | |||
| 153 | # CONFIG_MPC85xx_CDS is not set | 157 | # CONFIG_MPC85xx_CDS is not set |
| 154 | # CONFIG_MPC85xx_MDS is not set | 158 | # CONFIG_MPC85xx_MDS is not set |
| 155 | # CONFIG_MPC85xx_DS is not set | 159 | # CONFIG_MPC85xx_DS is not set |
| 160 | # CONFIG_KSI8560 is not set | ||
| 156 | # CONFIG_STX_GP3 is not set | 161 | # CONFIG_STX_GP3 is not set |
| 157 | # CONFIG_TQM8540 is not set | 162 | # CONFIG_TQM8540 is not set |
| 158 | # CONFIG_TQM8541 is not set | 163 | # CONFIG_TQM8541 is not set |
| @@ -208,11 +213,13 @@ CONFIG_FLATMEM=y | |||
| 208 | CONFIG_FLAT_NODE_MEM_MAP=y | 213 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 209 | # CONFIG_SPARSEMEM_STATIC is not set | 214 | # CONFIG_SPARSEMEM_STATIC is not set |
| 210 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 215 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 216 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 211 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 217 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 212 | # CONFIG_RESOURCES_64BIT is not set | 218 | # CONFIG_RESOURCES_64BIT is not set |
| 213 | CONFIG_ZONE_DMA_FLAG=1 | 219 | CONFIG_ZONE_DMA_FLAG=1 |
| 214 | CONFIG_BOUNCE=y | 220 | CONFIG_BOUNCE=y |
| 215 | CONFIG_VIRT_TO_BUS=y | 221 | CONFIG_VIRT_TO_BUS=y |
| 222 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 216 | CONFIG_PROC_DEVICETREE=y | 223 | CONFIG_PROC_DEVICETREE=y |
| 217 | # CONFIG_CMDLINE_BOOL is not set | 224 | # CONFIG_CMDLINE_BOOL is not set |
| 218 | # CONFIG_PM is not set | 225 | # CONFIG_PM is not set |
| @@ -229,6 +236,7 @@ CONFIG_FSL_SOC=y | |||
| 229 | # CONFIG_PCI_SYSCALL is not set | 236 | # CONFIG_PCI_SYSCALL is not set |
| 230 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 237 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 231 | # CONFIG_PCCARD is not set | 238 | # CONFIG_PCCARD is not set |
| 239 | # CONFIG_HAS_RAPIDIO is not set | ||
| 232 | 240 | ||
| 233 | # | 241 | # |
| 234 | # Advanced setup | 242 | # Advanced setup |
| @@ -238,11 +246,12 @@ CONFIG_FSL_SOC=y | |||
| 238 | # | 246 | # |
| 239 | # Default settings for advanced configuration options are used | 247 | # Default settings for advanced configuration options are used |
| 240 | # | 248 | # |
| 241 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 242 | CONFIG_LOWMEM_SIZE=0x30000000 | 249 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 250 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 243 | CONFIG_KERNEL_START=0xc0000000 | 251 | CONFIG_KERNEL_START=0xc0000000 |
| 252 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 253 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 244 | CONFIG_TASK_SIZE=0xc0000000 | 254 | CONFIG_TASK_SIZE=0xc0000000 |
| 245 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 246 | 255 | ||
| 247 | # | 256 | # |
| 248 | # Networking | 257 | # Networking |
| @@ -290,8 +299,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 290 | CONFIG_DEFAULT_TCP_CONG="cubic" | 299 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 291 | # CONFIG_TCP_MD5SIG is not set | 300 | # CONFIG_TCP_MD5SIG is not set |
| 292 | # CONFIG_IPV6 is not set | 301 | # CONFIG_IPV6 is not set |
| 293 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 294 | # CONFIG_INET6_TUNNEL is not set | ||
| 295 | # CONFIG_NETWORK_SECMARK is not set | 302 | # CONFIG_NETWORK_SECMARK is not set |
| 296 | # CONFIG_NETFILTER is not set | 303 | # CONFIG_NETFILTER is not set |
| 297 | # CONFIG_IP_DCCP is not set | 304 | # CONFIG_IP_DCCP is not set |
| @@ -419,6 +426,7 @@ CONFIG_NETDEV_10000=y | |||
| 419 | # | 426 | # |
| 420 | # CONFIG_WLAN_PRE80211 is not set | 427 | # CONFIG_WLAN_PRE80211 is not set |
| 421 | # CONFIG_WLAN_80211 is not set | 428 | # CONFIG_WLAN_80211 is not set |
| 429 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 422 | # CONFIG_WAN is not set | 430 | # CONFIG_WAN is not set |
| 423 | # CONFIG_PPP is not set | 431 | # CONFIG_PPP is not set |
| 424 | # CONFIG_SLIP is not set | 432 | # CONFIG_SLIP is not set |
| @@ -463,6 +471,7 @@ CONFIG_INPUT=y | |||
| 463 | # Character devices | 471 | # Character devices |
| 464 | # | 472 | # |
| 465 | # CONFIG_VT is not set | 473 | # CONFIG_VT is not set |
| 474 | CONFIG_DEVKMEM=y | ||
| 466 | # CONFIG_SERIAL_NONSTANDARD is not set | 475 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 467 | 476 | ||
| 468 | # | 477 | # |
| @@ -494,12 +503,7 @@ CONFIG_GEN_RTC=y | |||
| 494 | # CONFIG_RAW_DRIVER is not set | 503 | # CONFIG_RAW_DRIVER is not set |
| 495 | # CONFIG_TCG_TPM is not set | 504 | # CONFIG_TCG_TPM is not set |
| 496 | # CONFIG_I2C is not set | 505 | # CONFIG_I2C is not set |
| 497 | |||
| 498 | # | ||
| 499 | # SPI support | ||
| 500 | # | ||
| 501 | # CONFIG_SPI is not set | 506 | # CONFIG_SPI is not set |
| 502 | # CONFIG_SPI_MASTER is not set | ||
| 503 | # CONFIG_W1 is not set | 507 | # CONFIG_W1 is not set |
| 504 | # CONFIG_POWER_SUPPLY is not set | 508 | # CONFIG_POWER_SUPPLY is not set |
| 505 | CONFIG_HWMON=y | 509 | CONFIG_HWMON=y |
| @@ -528,12 +532,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 528 | # Multifunction device drivers | 532 | # Multifunction device drivers |
| 529 | # | 533 | # |
| 530 | # CONFIG_MFD_SM501 is not set | 534 | # CONFIG_MFD_SM501 is not set |
| 535 | # CONFIG_HTC_PASIC3 is not set | ||
| 531 | 536 | ||
| 532 | # | 537 | # |
| 533 | # Multimedia devices | 538 | # Multimedia devices |
| 534 | # | 539 | # |
| 540 | |||
| 541 | # | ||
| 542 | # Multimedia core support | ||
| 543 | # | ||
| 535 | # CONFIG_VIDEO_DEV is not set | 544 | # CONFIG_VIDEO_DEV is not set |
| 536 | # CONFIG_DVB_CORE is not set | 545 | # CONFIG_DVB_CORE is not set |
| 546 | # CONFIG_VIDEO_MEDIA is not set | ||
| 547 | |||
| 548 | # | ||
| 549 | # Multimedia drivers | ||
| 550 | # | ||
| 537 | CONFIG_DAB=y | 551 | CONFIG_DAB=y |
| 538 | 552 | ||
| 539 | # | 553 | # |
| @@ -561,6 +575,8 @@ CONFIG_USB_SUPPORT=y | |||
| 561 | # CONFIG_USB_ARCH_HAS_HCD is not set | 575 | # CONFIG_USB_ARCH_HAS_HCD is not set |
| 562 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 576 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
| 563 | # CONFIG_USB_ARCH_HAS_EHCI is not set | 577 | # CONFIG_USB_ARCH_HAS_EHCI is not set |
| 578 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 579 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 564 | 580 | ||
| 565 | # | 581 | # |
| 566 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 582 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -569,13 +585,10 @@ CONFIG_USB_SUPPORT=y | |||
| 569 | # CONFIG_MMC is not set | 585 | # CONFIG_MMC is not set |
| 570 | # CONFIG_MEMSTICK is not set | 586 | # CONFIG_MEMSTICK is not set |
| 571 | # CONFIG_NEW_LEDS is not set | 587 | # CONFIG_NEW_LEDS is not set |
| 588 | # CONFIG_ACCESSIBILITY is not set | ||
| 572 | # CONFIG_EDAC is not set | 589 | # CONFIG_EDAC is not set |
| 573 | # CONFIG_RTC_CLASS is not set | 590 | # CONFIG_RTC_CLASS is not set |
| 574 | # CONFIG_DMADEVICES is not set | 591 | # CONFIG_DMADEVICES is not set |
| 575 | |||
| 576 | # | ||
| 577 | # Userspace I/O | ||
| 578 | # | ||
| 579 | # CONFIG_UIO is not set | 592 | # CONFIG_UIO is not set |
| 580 | 593 | ||
| 581 | # | 594 | # |
| @@ -595,7 +608,6 @@ CONFIG_FS_MBCACHE=y | |||
| 595 | # CONFIG_JFS_FS is not set | 608 | # CONFIG_JFS_FS is not set |
| 596 | # CONFIG_FS_POSIX_ACL is not set | 609 | # CONFIG_FS_POSIX_ACL is not set |
| 597 | # CONFIG_XFS_FS is not set | 610 | # CONFIG_XFS_FS is not set |
| 598 | # CONFIG_GFS2_FS is not set | ||
| 599 | # CONFIG_OCFS2_FS is not set | 611 | # CONFIG_OCFS2_FS is not set |
| 600 | CONFIG_DNOTIFY=y | 612 | CONFIG_DNOTIFY=y |
| 601 | CONFIG_INOTIFY=y | 613 | CONFIG_INOTIFY=y |
| @@ -652,7 +664,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 652 | CONFIG_NFS_FS=y | 664 | CONFIG_NFS_FS=y |
| 653 | # CONFIG_NFS_V3 is not set | 665 | # CONFIG_NFS_V3 is not set |
| 654 | # CONFIG_NFS_V4 is not set | 666 | # CONFIG_NFS_V4 is not set |
| 655 | # CONFIG_NFS_DIRECTIO is not set | ||
| 656 | # CONFIG_NFSD is not set | 667 | # CONFIG_NFSD is not set |
| 657 | CONFIG_ROOT_NFS=y | 668 | CONFIG_ROOT_NFS=y |
| 658 | CONFIG_LOCKD=y | 669 | CONFIG_LOCKD=y |
| @@ -691,6 +702,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 691 | # Library routines | 702 | # Library routines |
| 692 | # | 703 | # |
| 693 | CONFIG_BITREVERSE=y | 704 | CONFIG_BITREVERSE=y |
| 705 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 694 | # CONFIG_CRC_CCITT is not set | 706 | # CONFIG_CRC_CCITT is not set |
| 695 | # CONFIG_CRC16 is not set | 707 | # CONFIG_CRC16 is not set |
| 696 | # CONFIG_CRC_ITU_T is not set | 708 | # CONFIG_CRC_ITU_T is not set |
| @@ -701,6 +713,7 @@ CONFIG_PLIST=y | |||
| 701 | CONFIG_HAS_IOMEM=y | 713 | CONFIG_HAS_IOMEM=y |
| 702 | CONFIG_HAS_IOPORT=y | 714 | CONFIG_HAS_IOPORT=y |
| 703 | CONFIG_HAS_DMA=y | 715 | CONFIG_HAS_DMA=y |
| 716 | CONFIG_HAVE_LMB=y | ||
| 704 | 717 | ||
| 705 | # | 718 | # |
| 706 | # Kernel hacking | 719 | # Kernel hacking |
| @@ -708,6 +721,7 @@ CONFIG_HAS_DMA=y | |||
| 708 | # CONFIG_PRINTK_TIME is not set | 721 | # CONFIG_PRINTK_TIME is not set |
| 709 | CONFIG_ENABLE_WARN_DEPRECATED=y | 722 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 710 | CONFIG_ENABLE_MUST_CHECK=y | 723 | CONFIG_ENABLE_MUST_CHECK=y |
| 724 | CONFIG_FRAME_WARN=1024 | ||
| 711 | # CONFIG_MAGIC_SYSRQ is not set | 725 | # CONFIG_MAGIC_SYSRQ is not set |
| 712 | # CONFIG_UNUSED_SYMBOLS is not set | 726 | # CONFIG_UNUSED_SYMBOLS is not set |
| 713 | # CONFIG_DEBUG_FS is not set | 727 | # CONFIG_DEBUG_FS is not set |
| @@ -718,6 +732,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 718 | CONFIG_SCHED_DEBUG=y | 732 | CONFIG_SCHED_DEBUG=y |
| 719 | # CONFIG_SCHEDSTATS is not set | 733 | # CONFIG_SCHEDSTATS is not set |
| 720 | # CONFIG_TIMER_STATS is not set | 734 | # CONFIG_TIMER_STATS is not set |
| 735 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 721 | # CONFIG_SLUB_DEBUG_ON is not set | 736 | # CONFIG_SLUB_DEBUG_ON is not set |
| 722 | # CONFIG_SLUB_STATS is not set | 737 | # CONFIG_SLUB_STATS is not set |
| 723 | # CONFIG_DEBUG_RT_MUTEXES is not set | 738 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -730,6 +745,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 730 | # CONFIG_DEBUG_BUGVERBOSE is not set | 745 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 731 | # CONFIG_DEBUG_INFO is not set | 746 | # CONFIG_DEBUG_INFO is not set |
| 732 | # CONFIG_DEBUG_VM is not set | 747 | # CONFIG_DEBUG_VM is not set |
| 748 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 733 | # CONFIG_DEBUG_LIST is not set | 749 | # CONFIG_DEBUG_LIST is not set |
| 734 | # CONFIG_DEBUG_SG is not set | 750 | # CONFIG_DEBUG_SG is not set |
| 735 | # CONFIG_BOOT_PRINTK_DELAY is not set | 751 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -740,6 +756,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 740 | # CONFIG_DEBUG_STACK_USAGE is not set | 756 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 741 | # CONFIG_DEBUG_PAGEALLOC is not set | 757 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 742 | # CONFIG_DEBUGGER is not set | 758 | # CONFIG_DEBUGGER is not set |
| 759 | # CONFIG_IRQSTACKS is not set | ||
| 743 | # CONFIG_BDI_SWITCH is not set | 760 | # CONFIG_BDI_SWITCH is not set |
| 744 | # CONFIG_PPC_EARLY_DEBUG is not set | 761 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 745 | 762 | ||
| @@ -750,47 +767,77 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 750 | # CONFIG_SECURITY is not set | 767 | # CONFIG_SECURITY is not set |
| 751 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 768 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 752 | CONFIG_CRYPTO=y | 769 | CONFIG_CRYPTO=y |
| 753 | # CONFIG_CRYPTO_SEQIV is not set | 770 | |
| 771 | # | ||
| 772 | # Crypto core or helper | ||
| 773 | # | ||
| 754 | # CONFIG_CRYPTO_MANAGER is not set | 774 | # CONFIG_CRYPTO_MANAGER is not set |
| 775 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 776 | # CONFIG_CRYPTO_NULL is not set | ||
| 777 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 778 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 779 | |||
| 780 | # | ||
| 781 | # Authenticated Encryption with Associated Data | ||
| 782 | # | ||
| 783 | # CONFIG_CRYPTO_CCM is not set | ||
| 784 | # CONFIG_CRYPTO_GCM is not set | ||
| 785 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 786 | |||
| 787 | # | ||
| 788 | # Block modes | ||
| 789 | # | ||
| 790 | # CONFIG_CRYPTO_CBC is not set | ||
| 791 | # CONFIG_CRYPTO_CTR is not set | ||
| 792 | # CONFIG_CRYPTO_CTS is not set | ||
| 793 | # CONFIG_CRYPTO_ECB is not set | ||
| 794 | # CONFIG_CRYPTO_LRW is not set | ||
| 795 | # CONFIG_CRYPTO_PCBC is not set | ||
| 796 | # CONFIG_CRYPTO_XTS is not set | ||
| 797 | |||
| 798 | # | ||
| 799 | # Hash modes | ||
| 800 | # | ||
| 755 | # CONFIG_CRYPTO_HMAC is not set | 801 | # CONFIG_CRYPTO_HMAC is not set |
| 756 | # CONFIG_CRYPTO_XCBC is not set | 802 | # CONFIG_CRYPTO_XCBC is not set |
| 757 | # CONFIG_CRYPTO_NULL is not set | 803 | |
| 804 | # | ||
| 805 | # Digest | ||
| 806 | # | ||
| 807 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 758 | # CONFIG_CRYPTO_MD4 is not set | 808 | # CONFIG_CRYPTO_MD4 is not set |
| 759 | # CONFIG_CRYPTO_MD5 is not set | 809 | # CONFIG_CRYPTO_MD5 is not set |
| 810 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 760 | # CONFIG_CRYPTO_SHA1 is not set | 811 | # CONFIG_CRYPTO_SHA1 is not set |
| 761 | # CONFIG_CRYPTO_SHA256 is not set | 812 | # CONFIG_CRYPTO_SHA256 is not set |
| 762 | # CONFIG_CRYPTO_SHA512 is not set | 813 | # CONFIG_CRYPTO_SHA512 is not set |
| 763 | # CONFIG_CRYPTO_WP512 is not set | ||
| 764 | # CONFIG_CRYPTO_TGR192 is not set | 814 | # CONFIG_CRYPTO_TGR192 is not set |
| 765 | # CONFIG_CRYPTO_GF128MUL is not set | 815 | # CONFIG_CRYPTO_WP512 is not set |
| 766 | # CONFIG_CRYPTO_ECB is not set | 816 | |
| 767 | # CONFIG_CRYPTO_CBC is not set | 817 | # |
| 768 | # CONFIG_CRYPTO_PCBC is not set | 818 | # Ciphers |
| 769 | # CONFIG_CRYPTO_LRW is not set | 819 | # |
| 770 | # CONFIG_CRYPTO_XTS is not set | ||
| 771 | # CONFIG_CRYPTO_CTR is not set | ||
| 772 | # CONFIG_CRYPTO_GCM is not set | ||
| 773 | # CONFIG_CRYPTO_CCM is not set | ||
| 774 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 775 | # CONFIG_CRYPTO_DES is not set | ||
| 776 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 777 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 778 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 779 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 780 | # CONFIG_CRYPTO_AES is not set | 820 | # CONFIG_CRYPTO_AES is not set |
| 821 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 822 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 823 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 824 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 781 | # CONFIG_CRYPTO_CAST5 is not set | 825 | # CONFIG_CRYPTO_CAST5 is not set |
| 782 | # CONFIG_CRYPTO_CAST6 is not set | 826 | # CONFIG_CRYPTO_CAST6 is not set |
| 783 | # CONFIG_CRYPTO_TEA is not set | 827 | # CONFIG_CRYPTO_DES is not set |
| 784 | # CONFIG_CRYPTO_ARC4 is not set | 828 | # CONFIG_CRYPTO_FCRYPT is not set |
| 785 | # CONFIG_CRYPTO_KHAZAD is not set | 829 | # CONFIG_CRYPTO_KHAZAD is not set |
| 786 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 787 | # CONFIG_CRYPTO_SEED is not set | ||
| 788 | # CONFIG_CRYPTO_SALSA20 is not set | 830 | # CONFIG_CRYPTO_SALSA20 is not set |
| 831 | # CONFIG_CRYPTO_SEED is not set | ||
| 832 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 833 | # CONFIG_CRYPTO_TEA is not set | ||
| 834 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 835 | |||
| 836 | # | ||
| 837 | # Compression | ||
| 838 | # | ||
| 789 | # CONFIG_CRYPTO_DEFLATE is not set | 839 | # CONFIG_CRYPTO_DEFLATE is not set |
| 790 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 791 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 792 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 793 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 794 | # CONFIG_CRYPTO_LZO is not set | 840 | # CONFIG_CRYPTO_LZO is not set |
| 795 | CONFIG_CRYPTO_HW=y | 841 | CONFIG_CRYPTO_HW=y |
| 796 | # CONFIG_PPC_CLOCK is not set | 842 | # CONFIG_PPC_CLOCK is not set |
| 843 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/mpc8544_ds_defconfig b/arch/powerpc/configs/85xx/mpc8544_ds_defconfig index a9f113b243ae..042a85ea7b72 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.25-rc7 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 31 11:37:03 2008 | 4 | # Mon Jun 9 08:52:32 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -90,6 +92,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 90 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 91 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 92 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
| 94 | CONFIG_KALLSYMS_ALL=y | 97 | CONFIG_KALLSYMS_ALL=y |
| 95 | CONFIG_KALLSYMS_EXTRA_PASS=y | 98 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -117,12 +120,14 @@ CONFIG_HAVE_OPROFILE=y | |||
| 117 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
| 118 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 119 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 120 | CONFIG_PROC_PAGE_MONITOR=y | 124 | CONFIG_PROC_PAGE_MONITOR=y |
| 121 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
| 122 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
| 123 | # CONFIG_TINY_SHMEM is not set | 127 | # CONFIG_TINY_SHMEM is not set |
| 124 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
| 125 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
| 130 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 126 | CONFIG_MODULE_UNLOAD=y | 131 | CONFIG_MODULE_UNLOAD=y |
| 127 | CONFIG_MODULE_FORCE_UNLOAD=y | 132 | CONFIG_MODULE_FORCE_UNLOAD=y |
| 128 | CONFIG_MODVERSIONS=y | 133 | CONFIG_MODVERSIONS=y |
| @@ -203,7 +208,6 @@ CONFIG_PREEMPT_NONE=y | |||
| 203 | # CONFIG_PREEMPT is not set | 208 | # CONFIG_PREEMPT is not set |
| 204 | CONFIG_BINFMT_ELF=y | 209 | CONFIG_BINFMT_ELF=y |
| 205 | CONFIG_BINFMT_MISC=m | 210 | CONFIG_BINFMT_MISC=m |
| 206 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 207 | CONFIG_MATH_EMULATION=y | 211 | CONFIG_MATH_EMULATION=y |
| 208 | # CONFIG_IOMMU_HELPER is not set | 212 | # CONFIG_IOMMU_HELPER is not set |
| 209 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 213 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| @@ -219,11 +223,13 @@ CONFIG_FLATMEM=y | |||
| 219 | CONFIG_FLAT_NODE_MEM_MAP=y | 223 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 220 | # CONFIG_SPARSEMEM_STATIC is not set | 224 | # CONFIG_SPARSEMEM_STATIC is not set |
| 221 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 225 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 226 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 222 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 223 | # CONFIG_RESOURCES_64BIT is not set | 228 | # CONFIG_RESOURCES_64BIT is not set |
| 224 | CONFIG_ZONE_DMA_FLAG=1 | 229 | CONFIG_ZONE_DMA_FLAG=1 |
| 225 | CONFIG_BOUNCE=y | 230 | CONFIG_BOUNCE=y |
| 226 | CONFIG_VIRT_TO_BUS=y | 231 | CONFIG_VIRT_TO_BUS=y |
| 232 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 227 | CONFIG_PROC_DEVICETREE=y | 233 | CONFIG_PROC_DEVICETREE=y |
| 228 | # CONFIG_CMDLINE_BOOL is not set | 234 | # CONFIG_CMDLINE_BOOL is not set |
| 229 | # CONFIG_PM is not set | 235 | # CONFIG_PM is not set |
| @@ -248,6 +254,7 @@ CONFIG_PCI_LEGACY=y | |||
| 248 | # CONFIG_PCI_DEBUG is not set | 254 | # CONFIG_PCI_DEBUG is not set |
| 249 | # CONFIG_PCCARD is not set | 255 | # CONFIG_PCCARD is not set |
| 250 | # CONFIG_HOTPLUG_PCI is not set | 256 | # CONFIG_HOTPLUG_PCI is not set |
| 257 | # CONFIG_HAS_RAPIDIO is not set | ||
| 251 | 258 | ||
| 252 | # | 259 | # |
| 253 | # Advanced setup | 260 | # Advanced setup |
| @@ -257,11 +264,12 @@ CONFIG_PCI_LEGACY=y | |||
| 257 | # | 264 | # |
| 258 | # Default settings for advanced configuration options are used | 265 | # Default settings for advanced configuration options are used |
| 259 | # | 266 | # |
| 260 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 261 | CONFIG_LOWMEM_SIZE=0x30000000 | 267 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 268 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 262 | CONFIG_KERNEL_START=0xc0000000 | 269 | CONFIG_KERNEL_START=0xc0000000 |
| 270 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 271 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 263 | CONFIG_TASK_SIZE=0xc0000000 | 272 | CONFIG_TASK_SIZE=0xc0000000 |
| 264 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 265 | 273 | ||
| 266 | # | 274 | # |
| 267 | # Networking | 275 | # Networking |
| @@ -332,8 +340,10 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=y | |||
| 332 | CONFIG_INET6_XFRM_MODE_BEET=y | 340 | CONFIG_INET6_XFRM_MODE_BEET=y |
| 333 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 341 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set |
| 334 | CONFIG_IPV6_SIT=y | 342 | CONFIG_IPV6_SIT=y |
| 343 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
| 335 | # CONFIG_IPV6_TUNNEL is not set | 344 | # CONFIG_IPV6_TUNNEL is not set |
| 336 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | 345 | # CONFIG_IPV6_MULTIPLE_TABLES is not set |
| 346 | # CONFIG_IPV6_MROUTE is not set | ||
| 337 | # CONFIG_NETWORK_SECMARK is not set | 347 | # CONFIG_NETWORK_SECMARK is not set |
| 338 | # CONFIG_NETFILTER is not set | 348 | # CONFIG_NETFILTER is not set |
| 339 | # CONFIG_IP_DCCP is not set | 349 | # CONFIG_IP_DCCP is not set |
| @@ -395,6 +405,7 @@ CONFIG_FW_LOADER=y | |||
| 395 | # CONFIG_CONNECTOR is not set | 405 | # CONFIG_CONNECTOR is not set |
| 396 | # CONFIG_MTD is not set | 406 | # CONFIG_MTD is not set |
| 397 | CONFIG_OF_DEVICE=y | 407 | CONFIG_OF_DEVICE=y |
| 408 | CONFIG_OF_I2C=y | ||
| 398 | # CONFIG_PARPORT is not set | 409 | # CONFIG_PARPORT is not set |
| 399 | CONFIG_BLK_DEV=y | 410 | CONFIG_BLK_DEV=y |
| 400 | # CONFIG_BLK_DEV_FD is not set | 411 | # CONFIG_BLK_DEV_FD is not set |
| @@ -501,7 +512,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 501 | # CONFIG_SCSI_SRP is not set | 512 | # CONFIG_SCSI_SRP is not set |
| 502 | CONFIG_ATA=y | 513 | CONFIG_ATA=y |
| 503 | # CONFIG_ATA_NONSTANDARD is not set | 514 | # CONFIG_ATA_NONSTANDARD is not set |
| 515 | CONFIG_SATA_PMP=y | ||
| 504 | CONFIG_SATA_AHCI=y | 516 | CONFIG_SATA_AHCI=y |
| 517 | # CONFIG_SATA_SIL24 is not set | ||
| 518 | # CONFIG_SATA_FSL is not set | ||
| 519 | CONFIG_ATA_SFF=y | ||
| 505 | # CONFIG_SATA_SVW is not set | 520 | # CONFIG_SATA_SVW is not set |
| 506 | # CONFIG_ATA_PIIX is not set | 521 | # CONFIG_ATA_PIIX is not set |
| 507 | # CONFIG_SATA_MV is not set | 522 | # CONFIG_SATA_MV is not set |
| @@ -511,13 +526,11 @@ CONFIG_SATA_AHCI=y | |||
| 511 | # CONFIG_SATA_PROMISE is not set | 526 | # CONFIG_SATA_PROMISE is not set |
| 512 | # CONFIG_SATA_SX4 is not set | 527 | # CONFIG_SATA_SX4 is not set |
| 513 | # CONFIG_SATA_SIL is not set | 528 | # CONFIG_SATA_SIL is not set |
| 514 | # CONFIG_SATA_SIL24 is not set | ||
| 515 | # CONFIG_SATA_SIS is not set | 529 | # CONFIG_SATA_SIS is not set |
| 516 | # CONFIG_SATA_ULI is not set | 530 | # CONFIG_SATA_ULI is not set |
| 517 | # CONFIG_SATA_VIA is not set | 531 | # CONFIG_SATA_VIA is not set |
| 518 | # CONFIG_SATA_VITESSE is not set | 532 | # CONFIG_SATA_VITESSE is not set |
| 519 | # CONFIG_SATA_INIC162X is not set | 533 | # CONFIG_SATA_INIC162X is not set |
| 520 | # CONFIG_SATA_FSL is not set | ||
| 521 | CONFIG_PATA_ALI=y | 534 | CONFIG_PATA_ALI=y |
| 522 | # CONFIG_PATA_AMD is not set | 535 | # CONFIG_PATA_AMD is not set |
| 523 | # CONFIG_PATA_ARTOP is not set | 536 | # CONFIG_PATA_ARTOP is not set |
| @@ -557,6 +570,7 @@ CONFIG_PATA_ALI=y | |||
| 557 | # CONFIG_PATA_VIA is not set | 570 | # CONFIG_PATA_VIA is not set |
| 558 | # CONFIG_PATA_WINBOND is not set | 571 | # CONFIG_PATA_WINBOND is not set |
| 559 | # CONFIG_PATA_PLATFORM is not set | 572 | # CONFIG_PATA_PLATFORM is not set |
| 573 | # CONFIG_PATA_SCH is not set | ||
| 560 | # CONFIG_MD is not set | 574 | # CONFIG_MD is not set |
| 561 | # CONFIG_FUSION is not set | 575 | # CONFIG_FUSION is not set |
| 562 | 576 | ||
| @@ -622,7 +636,6 @@ CONFIG_NETDEV_1000=y | |||
| 622 | # CONFIG_SIS190 is not set | 636 | # CONFIG_SIS190 is not set |
| 623 | # CONFIG_SKGE is not set | 637 | # CONFIG_SKGE is not set |
| 624 | # CONFIG_SKY2 is not set | 638 | # CONFIG_SKY2 is not set |
| 625 | # CONFIG_SK98LIN is not set | ||
| 626 | # CONFIG_VIA_VELOCITY is not set | 639 | # CONFIG_VIA_VELOCITY is not set |
| 627 | # CONFIG_TIGON3 is not set | 640 | # CONFIG_TIGON3 is not set |
| 628 | # CONFIG_BNX2 is not set | 641 | # CONFIG_BNX2 is not set |
| @@ -642,6 +655,7 @@ CONFIG_NETDEV_10000=y | |||
| 642 | # CONFIG_MLX4_CORE is not set | 655 | # CONFIG_MLX4_CORE is not set |
| 643 | # CONFIG_TEHUTI is not set | 656 | # CONFIG_TEHUTI is not set |
| 644 | # CONFIG_BNX2X is not set | 657 | # CONFIG_BNX2X is not set |
| 658 | # CONFIG_SFC is not set | ||
| 645 | # CONFIG_TR is not set | 659 | # CONFIG_TR is not set |
| 646 | 660 | ||
| 647 | # | 661 | # |
| @@ -649,6 +663,7 @@ CONFIG_NETDEV_10000=y | |||
| 649 | # | 663 | # |
| 650 | # CONFIG_WLAN_PRE80211 is not set | 664 | # CONFIG_WLAN_PRE80211 is not set |
| 651 | # CONFIG_WLAN_80211 is not set | 665 | # CONFIG_WLAN_80211 is not set |
| 666 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 652 | 667 | ||
| 653 | # | 668 | # |
| 654 | # USB Network Adapters | 669 | # USB Network Adapters |
| @@ -713,6 +728,7 @@ CONFIG_VT=y | |||
| 713 | CONFIG_VT_CONSOLE=y | 728 | CONFIG_VT_CONSOLE=y |
| 714 | CONFIG_HW_CONSOLE=y | 729 | CONFIG_HW_CONSOLE=y |
| 715 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 730 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 731 | CONFIG_DEVKMEM=y | ||
| 716 | # CONFIG_SERIAL_NONSTANDARD is not set | 732 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 717 | # CONFIG_NOZOMI is not set | 733 | # CONFIG_NOZOMI is not set |
| 718 | 734 | ||
| @@ -744,7 +760,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 744 | # CONFIG_IPMI_HANDLER is not set | 760 | # CONFIG_IPMI_HANDLER is not set |
| 745 | # CONFIG_HW_RANDOM is not set | 761 | # CONFIG_HW_RANDOM is not set |
| 746 | CONFIG_NVRAM=y | 762 | CONFIG_NVRAM=y |
| 747 | # CONFIG_GEN_RTC is not set | ||
| 748 | # CONFIG_R3964 is not set | 763 | # CONFIG_R3964 is not set |
| 749 | # CONFIG_APPLICOM is not set | 764 | # CONFIG_APPLICOM is not set |
| 750 | # CONFIG_RAW_DRIVER is not set | 765 | # CONFIG_RAW_DRIVER is not set |
| @@ -755,13 +770,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 755 | # CONFIG_I2C_CHARDEV is not set | 770 | # CONFIG_I2C_CHARDEV is not set |
| 756 | 771 | ||
| 757 | # | 772 | # |
| 758 | # I2C Algorithms | ||
| 759 | # | ||
| 760 | # CONFIG_I2C_ALGOBIT is not set | ||
| 761 | # CONFIG_I2C_ALGOPCF is not set | ||
| 762 | # CONFIG_I2C_ALGOPCA is not set | ||
| 763 | |||
| 764 | # | ||
| 765 | # I2C Hardware Bus support | 773 | # I2C Hardware Bus support |
| 766 | # | 774 | # |
| 767 | # CONFIG_I2C_ALI1535 is not set | 775 | # CONFIG_I2C_ALI1535 is not set |
| @@ -788,6 +796,7 @@ CONFIG_I2C_MPC=y | |||
| 788 | # CONFIG_I2C_VIA is not set | 796 | # CONFIG_I2C_VIA is not set |
| 789 | # CONFIG_I2C_VIAPRO is not set | 797 | # CONFIG_I2C_VIAPRO is not set |
| 790 | # CONFIG_I2C_VOODOO3 is not set | 798 | # CONFIG_I2C_VOODOO3 is not set |
| 799 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 791 | 800 | ||
| 792 | # | 801 | # |
| 793 | # Miscellaneous I2C Chip support | 802 | # Miscellaneous I2C Chip support |
| @@ -797,19 +806,13 @@ CONFIG_SENSORS_EEPROM=y | |||
| 797 | # CONFIG_SENSORS_PCF8574 is not set | 806 | # CONFIG_SENSORS_PCF8574 is not set |
| 798 | # CONFIG_PCF8575 is not set | 807 | # CONFIG_PCF8575 is not set |
| 799 | # CONFIG_SENSORS_PCF8591 is not set | 808 | # CONFIG_SENSORS_PCF8591 is not set |
| 800 | # CONFIG_TPS65010 is not set | ||
| 801 | # CONFIG_SENSORS_MAX6875 is not set | 809 | # CONFIG_SENSORS_MAX6875 is not set |
| 802 | # CONFIG_SENSORS_TSL2550 is not set | 810 | # CONFIG_SENSORS_TSL2550 is not set |
| 803 | # CONFIG_I2C_DEBUG_CORE is not set | 811 | # CONFIG_I2C_DEBUG_CORE is not set |
| 804 | # CONFIG_I2C_DEBUG_ALGO is not set | 812 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 805 | # CONFIG_I2C_DEBUG_BUS is not set | 813 | # CONFIG_I2C_DEBUG_BUS is not set |
| 806 | # CONFIG_I2C_DEBUG_CHIP is not set | 814 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 807 | |||
| 808 | # | ||
| 809 | # SPI support | ||
| 810 | # | ||
| 811 | # CONFIG_SPI is not set | 815 | # CONFIG_SPI is not set |
| 812 | # CONFIG_SPI_MASTER is not set | ||
| 813 | # CONFIG_W1 is not set | 816 | # CONFIG_W1 is not set |
| 814 | # CONFIG_POWER_SUPPLY is not set | 817 | # CONFIG_POWER_SUPPLY is not set |
| 815 | # CONFIG_HWMON is not set | 818 | # CONFIG_HWMON is not set |
| @@ -826,13 +829,33 @@ CONFIG_SSB_POSSIBLE=y | |||
| 826 | # Multifunction device drivers | 829 | # Multifunction device drivers |
| 827 | # | 830 | # |
| 828 | # CONFIG_MFD_SM501 is not set | 831 | # CONFIG_MFD_SM501 is not set |
| 832 | # CONFIG_HTC_PASIC3 is not set | ||
| 829 | 833 | ||
| 830 | # | 834 | # |
| 831 | # Multimedia devices | 835 | # Multimedia devices |
| 832 | # | 836 | # |
| 837 | |||
| 838 | # | ||
| 839 | # Multimedia core support | ||
| 840 | # | ||
| 833 | # CONFIG_VIDEO_DEV is not set | 841 | # CONFIG_VIDEO_DEV is not set |
| 834 | CONFIG_DVB_CORE=m | 842 | CONFIG_DVB_CORE=m |
| 835 | # CONFIG_DVB_CORE_ATTACH is not set | 843 | CONFIG_VIDEO_MEDIA=m |
| 844 | |||
| 845 | # | ||
| 846 | # Multimedia drivers | ||
| 847 | # | ||
| 848 | # CONFIG_MEDIA_ATTACH is not set | ||
| 849 | CONFIG_MEDIA_TUNER=m | ||
| 850 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | ||
| 851 | CONFIG_MEDIA_TUNER_SIMPLE=m | ||
| 852 | CONFIG_MEDIA_TUNER_TDA8290=m | ||
| 853 | CONFIG_MEDIA_TUNER_TDA9887=m | ||
| 854 | CONFIG_MEDIA_TUNER_TEA5761=m | ||
| 855 | CONFIG_MEDIA_TUNER_TEA5767=m | ||
| 856 | CONFIG_MEDIA_TUNER_MT20XX=m | ||
| 857 | CONFIG_MEDIA_TUNER_XC2028=m | ||
| 858 | CONFIG_MEDIA_TUNER_XC5000=m | ||
| 836 | CONFIG_DVB_CAPTURE_DRIVERS=y | 859 | CONFIG_DVB_CAPTURE_DRIVERS=y |
| 837 | 860 | ||
| 838 | # | 861 | # |
| @@ -875,14 +898,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 875 | # | 898 | # |
| 876 | # DVB-S (satellite) frontends | 899 | # DVB-S (satellite) frontends |
| 877 | # | 900 | # |
| 878 | # CONFIG_DVB_STV0299 is not set | ||
| 879 | # CONFIG_DVB_CX24110 is not set | 901 | # CONFIG_DVB_CX24110 is not set |
| 880 | # CONFIG_DVB_CX24123 is not set | 902 | # CONFIG_DVB_CX24123 is not set |
| 881 | # CONFIG_DVB_TDA8083 is not set | ||
| 882 | # CONFIG_DVB_MT312 is not set | 903 | # CONFIG_DVB_MT312 is not set |
| 883 | # CONFIG_DVB_VES1X93 is not set | ||
| 884 | # CONFIG_DVB_S5H1420 is not set | 904 | # CONFIG_DVB_S5H1420 is not set |
| 905 | # CONFIG_DVB_STV0299 is not set | ||
| 906 | # CONFIG_DVB_TDA8083 is not set | ||
| 885 | # CONFIG_DVB_TDA10086 is not set | 907 | # CONFIG_DVB_TDA10086 is not set |
| 908 | # CONFIG_DVB_VES1X93 is not set | ||
| 909 | # CONFIG_DVB_TUNER_ITD1000 is not set | ||
| 910 | # CONFIG_DVB_TDA826X is not set | ||
| 911 | # CONFIG_DVB_TUA6100 is not set | ||
| 886 | 912 | ||
| 887 | # | 913 | # |
| 888 | # DVB-T (terrestrial) frontends | 914 | # DVB-T (terrestrial) frontends |
| @@ -900,6 +926,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 900 | # CONFIG_DVB_DIB3000MC is not set | 926 | # CONFIG_DVB_DIB3000MC is not set |
| 901 | # CONFIG_DVB_DIB7000M is not set | 927 | # CONFIG_DVB_DIB7000M is not set |
| 902 | # CONFIG_DVB_DIB7000P is not set | 928 | # CONFIG_DVB_DIB7000P is not set |
| 929 | # CONFIG_DVB_TDA10048 is not set | ||
| 903 | 930 | ||
| 904 | # | 931 | # |
| 905 | # DVB-C (cable) frontends | 932 | # DVB-C (cable) frontends |
| @@ -918,27 +945,21 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 918 | # CONFIG_DVB_BCM3510 is not set | 945 | # CONFIG_DVB_BCM3510 is not set |
| 919 | # CONFIG_DVB_LGDT330X is not set | 946 | # CONFIG_DVB_LGDT330X is not set |
| 920 | # CONFIG_DVB_S5H1409 is not set | 947 | # CONFIG_DVB_S5H1409 is not set |
| 948 | # CONFIG_DVB_AU8522 is not set | ||
| 949 | # CONFIG_DVB_S5H1411 is not set | ||
| 921 | 950 | ||
| 922 | # | 951 | # |
| 923 | # Tuners/PLL support | 952 | # Digital terrestrial only tuners/PLL |
| 924 | # | 953 | # |
| 925 | # CONFIG_DVB_PLL is not set | 954 | # CONFIG_DVB_PLL is not set |
| 926 | # CONFIG_DVB_TDA826X is not set | ||
| 927 | # CONFIG_DVB_TDA827X is not set | ||
| 928 | # CONFIG_DVB_TDA18271 is not set | ||
| 929 | # CONFIG_DVB_TUNER_QT1010 is not set | ||
| 930 | # CONFIG_DVB_TUNER_MT2060 is not set | ||
| 931 | # CONFIG_DVB_TUNER_MT2266 is not set | ||
| 932 | # CONFIG_DVB_TUNER_MT2131 is not set | ||
| 933 | # CONFIG_DVB_TUNER_DIB0070 is not set | 955 | # CONFIG_DVB_TUNER_DIB0070 is not set |
| 934 | # CONFIG_DVB_TUNER_XC5000 is not set | ||
| 935 | 956 | ||
| 936 | # | 957 | # |
| 937 | # Miscellaneous devices | 958 | # SEC control devices for DVB-S |
| 938 | # | 959 | # |
| 939 | # CONFIG_DVB_LNBP21 is not set | 960 | # CONFIG_DVB_LNBP21 is not set |
| 961 | # CONFIG_DVB_ISL6405 is not set | ||
| 940 | # CONFIG_DVB_ISL6421 is not set | 962 | # CONFIG_DVB_ISL6421 is not set |
| 941 | # CONFIG_DVB_TUA6100 is not set | ||
| 942 | CONFIG_DAB=y | 963 | CONFIG_DAB=y |
| 943 | # CONFIG_USB_DABUSB is not set | 964 | # CONFIG_USB_DABUSB is not set |
| 944 | 965 | ||
| @@ -1005,6 +1026,7 @@ CONFIG_SND_AC97_CODEC=y | |||
| 1005 | # CONFIG_SND_AU8810 is not set | 1026 | # CONFIG_SND_AU8810 is not set |
| 1006 | # CONFIG_SND_AU8820 is not set | 1027 | # CONFIG_SND_AU8820 is not set |
| 1007 | # CONFIG_SND_AU8830 is not set | 1028 | # CONFIG_SND_AU8830 is not set |
| 1029 | # CONFIG_SND_AW2 is not set | ||
| 1008 | # CONFIG_SND_AZT3328 is not set | 1030 | # CONFIG_SND_AZT3328 is not set |
| 1009 | # CONFIG_SND_BT87X is not set | 1031 | # CONFIG_SND_BT87X is not set |
| 1010 | # CONFIG_SND_CA0106 is not set | 1032 | # CONFIG_SND_CA0106 is not set |
| @@ -1079,11 +1101,11 @@ CONFIG_SND_INTEL8X0=y | |||
| 1079 | # CONFIG_SND_SOC is not set | 1101 | # CONFIG_SND_SOC is not set |
| 1080 | 1102 | ||
| 1081 | # | 1103 | # |
| 1082 | # SoC Audio support for SuperH | 1104 | # ALSA SoC audio for Freescale SOCs |
| 1083 | # | 1105 | # |
| 1084 | 1106 | ||
| 1085 | # | 1107 | # |
| 1086 | # ALSA SoC audio for Freescale SOCs | 1108 | # SoC Audio for the Texas Instruments OMAP |
| 1087 | # | 1109 | # |
| 1088 | 1110 | ||
| 1089 | # | 1111 | # |
| @@ -1118,16 +1140,20 @@ CONFIG_USB_DEVICEFS=y | |||
| 1118 | CONFIG_USB_DEVICE_CLASS=y | 1140 | CONFIG_USB_DEVICE_CLASS=y |
| 1119 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1141 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1120 | # CONFIG_USB_OTG is not set | 1142 | # CONFIG_USB_OTG is not set |
| 1143 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 1144 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 1121 | 1145 | ||
| 1122 | # | 1146 | # |
| 1123 | # USB Host Controller Drivers | 1147 | # USB Host Controller Drivers |
| 1124 | # | 1148 | # |
| 1149 | # CONFIG_USB_C67X00_HCD is not set | ||
| 1125 | CONFIG_USB_EHCI_HCD=y | 1150 | CONFIG_USB_EHCI_HCD=y |
| 1126 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1151 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 1127 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1152 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1128 | # CONFIG_USB_EHCI_FSL is not set | 1153 | # CONFIG_USB_EHCI_FSL is not set |
| 1129 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1154 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 1130 | # CONFIG_USB_ISP116X_HCD is not set | 1155 | # CONFIG_USB_ISP116X_HCD is not set |
| 1156 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 1131 | CONFIG_USB_OHCI_HCD=y | 1157 | CONFIG_USB_OHCI_HCD=y |
| 1132 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1158 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
| 1133 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | 1159 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y |
| @@ -1145,6 +1171,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1145 | # | 1171 | # |
| 1146 | # CONFIG_USB_ACM is not set | 1172 | # CONFIG_USB_ACM is not set |
| 1147 | # CONFIG_USB_PRINTER is not set | 1173 | # CONFIG_USB_PRINTER is not set |
| 1174 | # CONFIG_USB_WDM is not set | ||
| 1148 | 1175 | ||
| 1149 | # | 1176 | # |
| 1150 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1177 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1164,7 +1191,9 @@ CONFIG_USB_STORAGE=y | |||
| 1164 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1191 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 1165 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 1192 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 1166 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1193 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1194 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
| 1167 | # CONFIG_USB_STORAGE_KARMA is not set | 1195 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1196 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 1168 | # CONFIG_USB_LIBUSUAL is not set | 1197 | # CONFIG_USB_LIBUSUAL is not set |
| 1169 | 1198 | ||
| 1170 | # | 1199 | # |
| @@ -1202,10 +1231,12 @@ CONFIG_USB_MON=y | |||
| 1202 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1231 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1203 | # CONFIG_USB_IOWARRIOR is not set | 1232 | # CONFIG_USB_IOWARRIOR is not set |
| 1204 | # CONFIG_USB_TEST is not set | 1233 | # CONFIG_USB_TEST is not set |
| 1234 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1205 | # CONFIG_USB_GADGET is not set | 1235 | # CONFIG_USB_GADGET is not set |
| 1206 | # CONFIG_MMC is not set | 1236 | # CONFIG_MMC is not set |
| 1207 | # CONFIG_MEMSTICK is not set | 1237 | # CONFIG_MEMSTICK is not set |
| 1208 | # CONFIG_NEW_LEDS is not set | 1238 | # CONFIG_NEW_LEDS is not set |
| 1239 | # CONFIG_ACCESSIBILITY is not set | ||
| 1209 | # CONFIG_INFINIBAND is not set | 1240 | # CONFIG_INFINIBAND is not set |
| 1210 | # CONFIG_EDAC is not set | 1241 | # CONFIG_EDAC is not set |
| 1211 | CONFIG_RTC_LIB=y | 1242 | CONFIG_RTC_LIB=y |
| @@ -1257,23 +1288,19 @@ CONFIG_RTC_DRV_CMOS=y | |||
| 1257 | # | 1288 | # |
| 1258 | # on-CPU RTC drivers | 1289 | # on-CPU RTC drivers |
| 1259 | # | 1290 | # |
| 1291 | # CONFIG_RTC_DRV_PPC is not set | ||
| 1260 | CONFIG_DMADEVICES=y | 1292 | CONFIG_DMADEVICES=y |
| 1261 | 1293 | ||
| 1262 | # | 1294 | # |
| 1263 | # DMA Devices | 1295 | # DMA Devices |
| 1264 | # | 1296 | # |
| 1265 | CONFIG_FSL_DMA=y | 1297 | CONFIG_FSL_DMA=y |
| 1266 | # CONFIG_FSL_DMA_SELFTEST is not set | ||
| 1267 | CONFIG_DMA_ENGINE=y | 1298 | CONFIG_DMA_ENGINE=y |
| 1268 | 1299 | ||
| 1269 | # | 1300 | # |
| 1270 | # DMA Clients | 1301 | # DMA Clients |
| 1271 | # | 1302 | # |
| 1272 | # CONFIG_NET_DMA is not set | 1303 | # CONFIG_NET_DMA is not set |
| 1273 | |||
| 1274 | # | ||
| 1275 | # Userspace I/O | ||
| 1276 | # | ||
| 1277 | # CONFIG_UIO is not set | 1304 | # CONFIG_UIO is not set |
| 1278 | 1305 | ||
| 1279 | # | 1306 | # |
| @@ -1293,7 +1320,6 @@ CONFIG_FS_MBCACHE=y | |||
| 1293 | # CONFIG_JFS_FS is not set | 1320 | # CONFIG_JFS_FS is not set |
| 1294 | # CONFIG_FS_POSIX_ACL is not set | 1321 | # CONFIG_FS_POSIX_ACL is not set |
| 1295 | # CONFIG_XFS_FS is not set | 1322 | # CONFIG_XFS_FS is not set |
| 1296 | # CONFIG_GFS2_FS is not set | ||
| 1297 | # CONFIG_OCFS2_FS is not set | 1323 | # CONFIG_OCFS2_FS is not set |
| 1298 | CONFIG_DNOTIFY=y | 1324 | CONFIG_DNOTIFY=y |
| 1299 | CONFIG_INOTIFY=y | 1325 | CONFIG_INOTIFY=y |
| @@ -1363,10 +1389,9 @@ CONFIG_NFS_FS=y | |||
| 1363 | CONFIG_NFS_V3=y | 1389 | CONFIG_NFS_V3=y |
| 1364 | # CONFIG_NFS_V3_ACL is not set | 1390 | # CONFIG_NFS_V3_ACL is not set |
| 1365 | CONFIG_NFS_V4=y | 1391 | CONFIG_NFS_V4=y |
| 1366 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1367 | CONFIG_NFSD=y | 1392 | CONFIG_NFSD=y |
| 1368 | # CONFIG_NFSD_V3 is not set | 1393 | # CONFIG_NFSD_V3 is not set |
| 1369 | CONFIG_NFSD_TCP=y | 1394 | # CONFIG_NFSD_V4 is not set |
| 1370 | CONFIG_ROOT_NFS=y | 1395 | CONFIG_ROOT_NFS=y |
| 1371 | CONFIG_LOCKD=y | 1396 | CONFIG_LOCKD=y |
| 1372 | CONFIG_LOCKD_V4=y | 1397 | CONFIG_LOCKD_V4=y |
| @@ -1450,9 +1475,10 @@ CONFIG_NLS_UTF8=m | |||
| 1450 | # Library routines | 1475 | # Library routines |
| 1451 | # | 1476 | # |
| 1452 | CONFIG_BITREVERSE=y | 1477 | CONFIG_BITREVERSE=y |
| 1478 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1453 | # CONFIG_CRC_CCITT is not set | 1479 | # CONFIG_CRC_CCITT is not set |
| 1454 | # CONFIG_CRC16 is not set | 1480 | # CONFIG_CRC16 is not set |
| 1455 | # CONFIG_CRC_ITU_T is not set | 1481 | CONFIG_CRC_ITU_T=m |
| 1456 | CONFIG_CRC32=y | 1482 | CONFIG_CRC32=y |
| 1457 | # CONFIG_CRC7 is not set | 1483 | # CONFIG_CRC7 is not set |
| 1458 | CONFIG_LIBCRC32C=m | 1484 | CONFIG_LIBCRC32C=m |
| @@ -1469,6 +1495,7 @@ CONFIG_HAVE_LMB=y | |||
| 1469 | # CONFIG_PRINTK_TIME is not set | 1495 | # CONFIG_PRINTK_TIME is not set |
| 1470 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1496 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1471 | CONFIG_ENABLE_MUST_CHECK=y | 1497 | CONFIG_ENABLE_MUST_CHECK=y |
| 1498 | CONFIG_FRAME_WARN=1024 | ||
| 1472 | # CONFIG_MAGIC_SYSRQ is not set | 1499 | # CONFIG_MAGIC_SYSRQ is not set |
| 1473 | # CONFIG_UNUSED_SYMBOLS is not set | 1500 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1474 | # CONFIG_DEBUG_FS is not set | 1501 | # CONFIG_DEBUG_FS is not set |
| @@ -1479,6 +1506,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1479 | CONFIG_SCHED_DEBUG=y | 1506 | CONFIG_SCHED_DEBUG=y |
| 1480 | # CONFIG_SCHEDSTATS is not set | 1507 | # CONFIG_SCHEDSTATS is not set |
| 1481 | # CONFIG_TIMER_STATS is not set | 1508 | # CONFIG_TIMER_STATS is not set |
| 1509 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1482 | # CONFIG_SLUB_DEBUG_ON is not set | 1510 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1483 | # CONFIG_SLUB_STATS is not set | 1511 | # CONFIG_SLUB_STATS is not set |
| 1484 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1512 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -1492,6 +1520,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1492 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1520 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1493 | CONFIG_DEBUG_INFO=y | 1521 | CONFIG_DEBUG_INFO=y |
| 1494 | # CONFIG_DEBUG_VM is not set | 1522 | # CONFIG_DEBUG_VM is not set |
| 1523 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1495 | # CONFIG_DEBUG_LIST is not set | 1524 | # CONFIG_DEBUG_LIST is not set |
| 1496 | # CONFIG_DEBUG_SG is not set | 1525 | # CONFIG_DEBUG_SG is not set |
| 1497 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1526 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1503,6 +1532,7 @@ CONFIG_DEBUG_INFO=y | |||
| 1503 | # CONFIG_DEBUG_STACK_USAGE is not set | 1532 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1504 | # CONFIG_DEBUG_PAGEALLOC is not set | 1533 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1505 | # CONFIG_DEBUGGER is not set | 1534 | # CONFIG_DEBUGGER is not set |
| 1535 | # CONFIG_IRQSTACKS is not set | ||
| 1506 | # CONFIG_BDI_SWITCH is not set | 1536 | # CONFIG_BDI_SWITCH is not set |
| 1507 | # CONFIG_PPC_EARLY_DEBUG is not set | 1537 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1508 | 1538 | ||
| @@ -1513,52 +1543,82 @@ CONFIG_DEBUG_INFO=y | |||
| 1513 | # CONFIG_SECURITY is not set | 1543 | # CONFIG_SECURITY is not set |
| 1514 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1544 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1515 | CONFIG_CRYPTO=y | 1545 | CONFIG_CRYPTO=y |
| 1546 | |||
| 1547 | # | ||
| 1548 | # Crypto core or helper | ||
| 1549 | # | ||
| 1516 | CONFIG_CRYPTO_ALGAPI=y | 1550 | CONFIG_CRYPTO_ALGAPI=y |
| 1517 | CONFIG_CRYPTO_BLKCIPHER=y | 1551 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1518 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1519 | CONFIG_CRYPTO_HASH=y | 1552 | CONFIG_CRYPTO_HASH=y |
| 1520 | CONFIG_CRYPTO_MANAGER=y | 1553 | CONFIG_CRYPTO_MANAGER=y |
| 1554 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1555 | # CONFIG_CRYPTO_NULL is not set | ||
| 1556 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1557 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1558 | # CONFIG_CRYPTO_TEST is not set | ||
| 1559 | |||
| 1560 | # | ||
| 1561 | # Authenticated Encryption with Associated Data | ||
| 1562 | # | ||
| 1563 | # CONFIG_CRYPTO_CCM is not set | ||
| 1564 | # CONFIG_CRYPTO_GCM is not set | ||
| 1565 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1566 | |||
| 1567 | # | ||
| 1568 | # Block modes | ||
| 1569 | # | ||
| 1570 | CONFIG_CRYPTO_CBC=y | ||
| 1571 | # CONFIG_CRYPTO_CTR is not set | ||
| 1572 | # CONFIG_CRYPTO_CTS is not set | ||
| 1573 | # CONFIG_CRYPTO_ECB is not set | ||
| 1574 | # CONFIG_CRYPTO_LRW is not set | ||
| 1575 | CONFIG_CRYPTO_PCBC=m | ||
| 1576 | # CONFIG_CRYPTO_XTS is not set | ||
| 1577 | |||
| 1578 | # | ||
| 1579 | # Hash modes | ||
| 1580 | # | ||
| 1521 | CONFIG_CRYPTO_HMAC=y | 1581 | CONFIG_CRYPTO_HMAC=y |
| 1522 | # CONFIG_CRYPTO_XCBC is not set | 1582 | # CONFIG_CRYPTO_XCBC is not set |
| 1523 | # CONFIG_CRYPTO_NULL is not set | 1583 | |
| 1584 | # | ||
| 1585 | # Digest | ||
| 1586 | # | ||
| 1587 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1524 | # CONFIG_CRYPTO_MD4 is not set | 1588 | # CONFIG_CRYPTO_MD4 is not set |
| 1525 | CONFIG_CRYPTO_MD5=y | 1589 | CONFIG_CRYPTO_MD5=y |
| 1590 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1526 | CONFIG_CRYPTO_SHA1=m | 1591 | CONFIG_CRYPTO_SHA1=m |
| 1527 | # CONFIG_CRYPTO_SHA256 is not set | 1592 | # CONFIG_CRYPTO_SHA256 is not set |
| 1528 | # CONFIG_CRYPTO_SHA512 is not set | 1593 | # CONFIG_CRYPTO_SHA512 is not set |
| 1529 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1530 | # CONFIG_CRYPTO_TGR192 is not set | 1594 | # CONFIG_CRYPTO_TGR192 is not set |
| 1531 | # CONFIG_CRYPTO_GF128MUL is not set | 1595 | # CONFIG_CRYPTO_WP512 is not set |
| 1532 | # CONFIG_CRYPTO_ECB is not set | 1596 | |
| 1533 | CONFIG_CRYPTO_CBC=y | 1597 | # |
| 1534 | CONFIG_CRYPTO_PCBC=m | 1598 | # Ciphers |
| 1535 | # CONFIG_CRYPTO_LRW is not set | 1599 | # |
| 1536 | # CONFIG_CRYPTO_XTS is not set | ||
| 1537 | # CONFIG_CRYPTO_CTR is not set | ||
| 1538 | # CONFIG_CRYPTO_GCM is not set | ||
| 1539 | # CONFIG_CRYPTO_CCM is not set | ||
| 1540 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1541 | CONFIG_CRYPTO_DES=y | ||
| 1542 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1543 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1544 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1545 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1546 | # CONFIG_CRYPTO_AES is not set | 1600 | # CONFIG_CRYPTO_AES is not set |
| 1601 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1602 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1603 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1604 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1547 | # CONFIG_CRYPTO_CAST5 is not set | 1605 | # CONFIG_CRYPTO_CAST5 is not set |
| 1548 | # CONFIG_CRYPTO_CAST6 is not set | 1606 | # CONFIG_CRYPTO_CAST6 is not set |
| 1549 | # CONFIG_CRYPTO_TEA is not set | 1607 | CONFIG_CRYPTO_DES=y |
| 1550 | # CONFIG_CRYPTO_ARC4 is not set | 1608 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1551 | # CONFIG_CRYPTO_KHAZAD is not set | 1609 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1552 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1553 | # CONFIG_CRYPTO_SEED is not set | ||
| 1554 | # CONFIG_CRYPTO_SALSA20 is not set | 1610 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1611 | # CONFIG_CRYPTO_SEED is not set | ||
| 1612 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1613 | # CONFIG_CRYPTO_TEA is not set | ||
| 1614 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1615 | |||
| 1616 | # | ||
| 1617 | # Compression | ||
| 1618 | # | ||
| 1555 | # CONFIG_CRYPTO_DEFLATE is not set | 1619 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1556 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1557 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1558 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1559 | # CONFIG_CRYPTO_TEST is not set | ||
| 1560 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1561 | # CONFIG_CRYPTO_LZO is not set | 1620 | # CONFIG_CRYPTO_LZO is not set |
| 1562 | CONFIG_CRYPTO_HW=y | 1621 | CONFIG_CRYPTO_HW=y |
| 1563 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1622 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1564 | # CONFIG_PPC_CLOCK is not set | 1623 | # CONFIG_PPC_CLOCK is not set |
| 1624 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/mpc8560_ads_defconfig b/arch/powerpc/configs/85xx/mpc8560_ads_defconfig index 851ac9115617..e19592b42043 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:27 2008 | 4 | # Mon Jun 9 08:52:33 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -87,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 87 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 90 | CONFIG_KALLSYMS=y | 93 | CONFIG_KALLSYMS=y |
| 91 | # CONFIG_KALLSYMS_ALL is not set | 94 | # CONFIG_KALLSYMS_ALL is not set |
| 92 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -113,6 +116,7 @@ CONFIG_SLUB=y | |||
| 113 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
| 114 | CONFIG_HAVE_KPROBES=y | 117 | CONFIG_HAVE_KPROBES=y |
| 115 | CONFIG_HAVE_KRETPROBES=y | 118 | CONFIG_HAVE_KRETPROBES=y |
| 119 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 116 | CONFIG_PROC_PAGE_MONITOR=y | 120 | CONFIG_PROC_PAGE_MONITOR=y |
| 117 | CONFIG_SLABINFO=y | 121 | CONFIG_SLABINFO=y |
| 118 | CONFIG_RT_MUTEXES=y | 122 | CONFIG_RT_MUTEXES=y |
| @@ -153,6 +157,7 @@ CONFIG_MPC8560_ADS=y | |||
| 153 | # CONFIG_MPC85xx_CDS is not set | 157 | # CONFIG_MPC85xx_CDS is not set |
| 154 | # CONFIG_MPC85xx_MDS is not set | 158 | # CONFIG_MPC85xx_MDS is not set |
| 155 | # CONFIG_MPC85xx_DS is not set | 159 | # CONFIG_MPC85xx_DS is not set |
| 160 | # CONFIG_KSI8560 is not set | ||
| 156 | # CONFIG_STX_GP3 is not set | 161 | # CONFIG_STX_GP3 is not set |
| 157 | # CONFIG_TQM8540 is not set | 162 | # CONFIG_TQM8540 is not set |
| 158 | # CONFIG_TQM8541 is not set | 163 | # CONFIG_TQM8541 is not set |
| @@ -210,11 +215,13 @@ CONFIG_FLATMEM=y | |||
| 210 | CONFIG_FLAT_NODE_MEM_MAP=y | 215 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 211 | # CONFIG_SPARSEMEM_STATIC is not set | 216 | # CONFIG_SPARSEMEM_STATIC is not set |
| 212 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 213 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 214 | # CONFIG_RESOURCES_64BIT is not set | 220 | # CONFIG_RESOURCES_64BIT is not set |
| 215 | CONFIG_ZONE_DMA_FLAG=1 | 221 | CONFIG_ZONE_DMA_FLAG=1 |
| 216 | CONFIG_BOUNCE=y | 222 | CONFIG_BOUNCE=y |
| 217 | CONFIG_VIRT_TO_BUS=y | 223 | CONFIG_VIRT_TO_BUS=y |
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 218 | # CONFIG_PROC_DEVICETREE is not set | 225 | # CONFIG_PROC_DEVICETREE is not set |
| 219 | # CONFIG_CMDLINE_BOOL is not set | 226 | # CONFIG_CMDLINE_BOOL is not set |
| 220 | # CONFIG_PM is not set | 227 | # CONFIG_PM is not set |
| @@ -238,6 +245,7 @@ CONFIG_PCI_LEGACY=y | |||
| 238 | CONFIG_PCI_DEBUG=y | 245 | CONFIG_PCI_DEBUG=y |
| 239 | # CONFIG_PCCARD is not set | 246 | # CONFIG_PCCARD is not set |
| 240 | # CONFIG_HOTPLUG_PCI is not set | 247 | # CONFIG_HOTPLUG_PCI is not set |
| 248 | # CONFIG_HAS_RAPIDIO is not set | ||
| 241 | 249 | ||
| 242 | # | 250 | # |
| 243 | # Advanced setup | 251 | # Advanced setup |
| @@ -247,11 +255,12 @@ CONFIG_PCI_DEBUG=y | |||
| 247 | # | 255 | # |
| 248 | # Default settings for advanced configuration options are used | 256 | # Default settings for advanced configuration options are used |
| 249 | # | 257 | # |
| 250 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 251 | CONFIG_LOWMEM_SIZE=0x30000000 | 258 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 259 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 252 | CONFIG_KERNEL_START=0xc0000000 | 260 | CONFIG_KERNEL_START=0xc0000000 |
| 261 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 262 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 253 | CONFIG_TASK_SIZE=0xc0000000 | 263 | CONFIG_TASK_SIZE=0xc0000000 |
| 254 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 255 | 264 | ||
| 256 | # | 265 | # |
| 257 | # Networking | 266 | # Networking |
| @@ -299,8 +308,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 299 | CONFIG_DEFAULT_TCP_CONG="cubic" | 308 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 300 | # CONFIG_TCP_MD5SIG is not set | 309 | # CONFIG_TCP_MD5SIG is not set |
| 301 | # CONFIG_IPV6 is not set | 310 | # CONFIG_IPV6 is not set |
| 302 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 303 | # CONFIG_INET6_TUNNEL is not set | ||
| 304 | # CONFIG_NETWORK_SECMARK is not set | 311 | # CONFIG_NETWORK_SECMARK is not set |
| 305 | # CONFIG_NETFILTER is not set | 312 | # CONFIG_NETFILTER is not set |
| 306 | # CONFIG_IP_DCCP is not set | 313 | # CONFIG_IP_DCCP is not set |
| @@ -462,7 +469,6 @@ CONFIG_E1000_NAPI=y | |||
| 462 | # CONFIG_SIS190 is not set | 469 | # CONFIG_SIS190 is not set |
| 463 | # CONFIG_SKGE is not set | 470 | # CONFIG_SKGE is not set |
| 464 | # CONFIG_SKY2 is not set | 471 | # CONFIG_SKY2 is not set |
| 465 | # CONFIG_SK98LIN is not set | ||
| 466 | # CONFIG_VIA_VELOCITY is not set | 472 | # CONFIG_VIA_VELOCITY is not set |
| 467 | # CONFIG_TIGON3 is not set | 473 | # CONFIG_TIGON3 is not set |
| 468 | # CONFIG_BNX2 is not set | 474 | # CONFIG_BNX2 is not set |
| @@ -482,6 +488,7 @@ CONFIG_NETDEV_10000=y | |||
| 482 | # CONFIG_MLX4_CORE is not set | 488 | # CONFIG_MLX4_CORE is not set |
| 483 | # CONFIG_TEHUTI is not set | 489 | # CONFIG_TEHUTI is not set |
| 484 | # CONFIG_BNX2X is not set | 490 | # CONFIG_BNX2X is not set |
| 491 | # CONFIG_SFC is not set | ||
| 485 | # CONFIG_TR is not set | 492 | # CONFIG_TR is not set |
| 486 | 493 | ||
| 487 | # | 494 | # |
| @@ -489,6 +496,7 @@ CONFIG_NETDEV_10000=y | |||
| 489 | # | 496 | # |
| 490 | # CONFIG_WLAN_PRE80211 is not set | 497 | # CONFIG_WLAN_PRE80211 is not set |
| 491 | # CONFIG_WLAN_80211 is not set | 498 | # CONFIG_WLAN_80211 is not set |
| 499 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 492 | # CONFIG_WAN is not set | 500 | # CONFIG_WAN is not set |
| 493 | # CONFIG_FDDI is not set | 501 | # CONFIG_FDDI is not set |
| 494 | # CONFIG_HIPPI is not set | 502 | # CONFIG_HIPPI is not set |
| @@ -535,6 +543,7 @@ CONFIG_INPUT=y | |||
| 535 | # Character devices | 543 | # Character devices |
| 536 | # | 544 | # |
| 537 | # CONFIG_VT is not set | 545 | # CONFIG_VT is not set |
| 546 | CONFIG_DEVKMEM=y | ||
| 538 | # CONFIG_SERIAL_NONSTANDARD is not set | 547 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 539 | # CONFIG_NOZOMI is not set | 548 | # CONFIG_NOZOMI is not set |
| 540 | 549 | ||
| @@ -572,12 +581,7 @@ CONFIG_GEN_RTC=y | |||
| 572 | # CONFIG_TCG_TPM is not set | 581 | # CONFIG_TCG_TPM is not set |
| 573 | CONFIG_DEVPORT=y | 582 | CONFIG_DEVPORT=y |
| 574 | # CONFIG_I2C is not set | 583 | # CONFIG_I2C is not set |
| 575 | |||
| 576 | # | ||
| 577 | # SPI support | ||
| 578 | # | ||
| 579 | # CONFIG_SPI is not set | 584 | # CONFIG_SPI is not set |
| 580 | # CONFIG_SPI_MASTER is not set | ||
| 581 | # CONFIG_W1 is not set | 585 | # CONFIG_W1 is not set |
| 582 | # CONFIG_POWER_SUPPLY is not set | 586 | # CONFIG_POWER_SUPPLY is not set |
| 583 | CONFIG_HWMON=y | 587 | CONFIG_HWMON=y |
| @@ -610,12 +614,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 610 | # Multifunction device drivers | 614 | # Multifunction device drivers |
| 611 | # | 615 | # |
| 612 | # CONFIG_MFD_SM501 is not set | 616 | # CONFIG_MFD_SM501 is not set |
| 617 | # CONFIG_HTC_PASIC3 is not set | ||
| 613 | 618 | ||
| 614 | # | 619 | # |
| 615 | # Multimedia devices | 620 | # Multimedia devices |
| 616 | # | 621 | # |
| 622 | |||
| 623 | # | ||
| 624 | # Multimedia core support | ||
| 625 | # | ||
| 617 | # CONFIG_VIDEO_DEV is not set | 626 | # CONFIG_VIDEO_DEV is not set |
| 618 | # CONFIG_DVB_CORE is not set | 627 | # CONFIG_DVB_CORE is not set |
| 628 | # CONFIG_VIDEO_MEDIA is not set | ||
| 629 | |||
| 630 | # | ||
| 631 | # Multimedia drivers | ||
| 632 | # | ||
| 619 | CONFIG_DAB=y | 633 | CONFIG_DAB=y |
| 620 | 634 | ||
| 621 | # | 635 | # |
| @@ -646,6 +660,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 646 | CONFIG_USB_ARCH_HAS_OHCI=y | 660 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 647 | CONFIG_USB_ARCH_HAS_EHCI=y | 661 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 648 | # CONFIG_USB is not set | 662 | # CONFIG_USB is not set |
| 663 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 664 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 649 | 665 | ||
| 650 | # | 666 | # |
| 651 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 667 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -654,14 +670,11 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 654 | # CONFIG_MMC is not set | 670 | # CONFIG_MMC is not set |
| 655 | # CONFIG_MEMSTICK is not set | 671 | # CONFIG_MEMSTICK is not set |
| 656 | # CONFIG_NEW_LEDS is not set | 672 | # CONFIG_NEW_LEDS is not set |
| 673 | # CONFIG_ACCESSIBILITY is not set | ||
| 657 | # CONFIG_INFINIBAND is not set | 674 | # CONFIG_INFINIBAND is not set |
| 658 | # CONFIG_EDAC is not set | 675 | # CONFIG_EDAC is not set |
| 659 | # CONFIG_RTC_CLASS is not set | 676 | # CONFIG_RTC_CLASS is not set |
| 660 | # CONFIG_DMADEVICES is not set | 677 | # CONFIG_DMADEVICES is not set |
| 661 | |||
| 662 | # | ||
| 663 | # Userspace I/O | ||
| 664 | # | ||
| 665 | # CONFIG_UIO is not set | 678 | # CONFIG_UIO is not set |
| 666 | 679 | ||
| 667 | # | 680 | # |
| @@ -681,7 +694,6 @@ CONFIG_FS_MBCACHE=y | |||
| 681 | # CONFIG_JFS_FS is not set | 694 | # CONFIG_JFS_FS is not set |
| 682 | # CONFIG_FS_POSIX_ACL is not set | 695 | # CONFIG_FS_POSIX_ACL is not set |
| 683 | # CONFIG_XFS_FS is not set | 696 | # CONFIG_XFS_FS is not set |
| 684 | # CONFIG_GFS2_FS is not set | ||
| 685 | # CONFIG_OCFS2_FS is not set | 697 | # CONFIG_OCFS2_FS is not set |
| 686 | CONFIG_DNOTIFY=y | 698 | CONFIG_DNOTIFY=y |
| 687 | CONFIG_INOTIFY=y | 699 | CONFIG_INOTIFY=y |
| @@ -738,7 +750,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 738 | CONFIG_NFS_FS=y | 750 | CONFIG_NFS_FS=y |
| 739 | # CONFIG_NFS_V3 is not set | 751 | # CONFIG_NFS_V3 is not set |
| 740 | # CONFIG_NFS_V4 is not set | 752 | # CONFIG_NFS_V4 is not set |
| 741 | # CONFIG_NFS_DIRECTIO is not set | ||
| 742 | # CONFIG_NFSD is not set | 753 | # CONFIG_NFSD is not set |
| 743 | CONFIG_ROOT_NFS=y | 754 | CONFIG_ROOT_NFS=y |
| 744 | CONFIG_LOCKD=y | 755 | CONFIG_LOCKD=y |
| @@ -777,6 +788,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 777 | # Library routines | 788 | # Library routines |
| 778 | # | 789 | # |
| 779 | CONFIG_BITREVERSE=y | 790 | CONFIG_BITREVERSE=y |
| 791 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 780 | # CONFIG_CRC_CCITT is not set | 792 | # CONFIG_CRC_CCITT is not set |
| 781 | # CONFIG_CRC16 is not set | 793 | # CONFIG_CRC16 is not set |
| 782 | # CONFIG_CRC_ITU_T is not set | 794 | # CONFIG_CRC_ITU_T is not set |
| @@ -787,6 +799,7 @@ CONFIG_PLIST=y | |||
| 787 | CONFIG_HAS_IOMEM=y | 799 | CONFIG_HAS_IOMEM=y |
| 788 | CONFIG_HAS_IOPORT=y | 800 | CONFIG_HAS_IOPORT=y |
| 789 | CONFIG_HAS_DMA=y | 801 | CONFIG_HAS_DMA=y |
| 802 | CONFIG_HAVE_LMB=y | ||
| 790 | 803 | ||
| 791 | # | 804 | # |
| 792 | # Kernel hacking | 805 | # Kernel hacking |
| @@ -794,6 +807,7 @@ CONFIG_HAS_DMA=y | |||
| 794 | # CONFIG_PRINTK_TIME is not set | 807 | # CONFIG_PRINTK_TIME is not set |
| 795 | CONFIG_ENABLE_WARN_DEPRECATED=y | 808 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 796 | CONFIG_ENABLE_MUST_CHECK=y | 809 | CONFIG_ENABLE_MUST_CHECK=y |
| 810 | CONFIG_FRAME_WARN=1024 | ||
| 797 | # CONFIG_MAGIC_SYSRQ is not set | 811 | # CONFIG_MAGIC_SYSRQ is not set |
| 798 | # CONFIG_UNUSED_SYMBOLS is not set | 812 | # CONFIG_UNUSED_SYMBOLS is not set |
| 799 | # CONFIG_DEBUG_FS is not set | 813 | # CONFIG_DEBUG_FS is not set |
| @@ -804,6 +818,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 804 | CONFIG_SCHED_DEBUG=y | 818 | CONFIG_SCHED_DEBUG=y |
| 805 | # CONFIG_SCHEDSTATS is not set | 819 | # CONFIG_SCHEDSTATS is not set |
| 806 | # CONFIG_TIMER_STATS is not set | 820 | # CONFIG_TIMER_STATS is not set |
| 821 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 807 | # CONFIG_SLUB_DEBUG_ON is not set | 822 | # CONFIG_SLUB_DEBUG_ON is not set |
| 808 | # CONFIG_SLUB_STATS is not set | 823 | # CONFIG_SLUB_STATS is not set |
| 809 | # CONFIG_DEBUG_RT_MUTEXES is not set | 824 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -816,6 +831,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 816 | # CONFIG_DEBUG_BUGVERBOSE is not set | 831 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 817 | # CONFIG_DEBUG_INFO is not set | 832 | # CONFIG_DEBUG_INFO is not set |
| 818 | # CONFIG_DEBUG_VM is not set | 833 | # CONFIG_DEBUG_VM is not set |
| 834 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 819 | # CONFIG_DEBUG_LIST is not set | 835 | # CONFIG_DEBUG_LIST is not set |
| 820 | # CONFIG_DEBUG_SG is not set | 836 | # CONFIG_DEBUG_SG is not set |
| 821 | # CONFIG_BOOT_PRINTK_DELAY is not set | 837 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -827,6 +843,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 827 | # CONFIG_DEBUG_PAGEALLOC is not set | 843 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 828 | # CONFIG_DEBUGGER is not set | 844 | # CONFIG_DEBUGGER is not set |
| 829 | # CONFIG_KGDB_CONSOLE is not set | 845 | # CONFIG_KGDB_CONSOLE is not set |
| 846 | # CONFIG_IRQSTACKS is not set | ||
| 830 | # CONFIG_BDI_SWITCH is not set | 847 | # CONFIG_BDI_SWITCH is not set |
| 831 | # CONFIG_PPC_EARLY_DEBUG is not set | 848 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 832 | 849 | ||
| @@ -837,49 +854,79 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 837 | # CONFIG_SECURITY is not set | 854 | # CONFIG_SECURITY is not set |
| 838 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 855 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 839 | CONFIG_CRYPTO=y | 856 | CONFIG_CRYPTO=y |
| 840 | # CONFIG_CRYPTO_SEQIV is not set | 857 | |
| 858 | # | ||
| 859 | # Crypto core or helper | ||
| 860 | # | ||
| 841 | # CONFIG_CRYPTO_MANAGER is not set | 861 | # CONFIG_CRYPTO_MANAGER is not set |
| 862 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 863 | # CONFIG_CRYPTO_NULL is not set | ||
| 864 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 865 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 866 | |||
| 867 | # | ||
| 868 | # Authenticated Encryption with Associated Data | ||
| 869 | # | ||
| 870 | # CONFIG_CRYPTO_CCM is not set | ||
| 871 | # CONFIG_CRYPTO_GCM is not set | ||
| 872 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 873 | |||
| 874 | # | ||
| 875 | # Block modes | ||
| 876 | # | ||
| 877 | # CONFIG_CRYPTO_CBC is not set | ||
| 878 | # CONFIG_CRYPTO_CTR is not set | ||
| 879 | # CONFIG_CRYPTO_CTS is not set | ||
| 880 | # CONFIG_CRYPTO_ECB is not set | ||
| 881 | # CONFIG_CRYPTO_LRW is not set | ||
| 882 | # CONFIG_CRYPTO_PCBC is not set | ||
| 883 | # CONFIG_CRYPTO_XTS is not set | ||
| 884 | |||
| 885 | # | ||
| 886 | # Hash modes | ||
| 887 | # | ||
| 842 | # CONFIG_CRYPTO_HMAC is not set | 888 | # CONFIG_CRYPTO_HMAC is not set |
| 843 | # CONFIG_CRYPTO_XCBC is not set | 889 | # CONFIG_CRYPTO_XCBC is not set |
| 844 | # CONFIG_CRYPTO_NULL is not set | 890 | |
| 891 | # | ||
| 892 | # Digest | ||
| 893 | # | ||
| 894 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 845 | # CONFIG_CRYPTO_MD4 is not set | 895 | # CONFIG_CRYPTO_MD4 is not set |
| 846 | # CONFIG_CRYPTO_MD5 is not set | 896 | # CONFIG_CRYPTO_MD5 is not set |
| 897 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 847 | # CONFIG_CRYPTO_SHA1 is not set | 898 | # CONFIG_CRYPTO_SHA1 is not set |
| 848 | # CONFIG_CRYPTO_SHA256 is not set | 899 | # CONFIG_CRYPTO_SHA256 is not set |
| 849 | # CONFIG_CRYPTO_SHA512 is not set | 900 | # CONFIG_CRYPTO_SHA512 is not set |
| 850 | # CONFIG_CRYPTO_WP512 is not set | ||
| 851 | # CONFIG_CRYPTO_TGR192 is not set | 901 | # CONFIG_CRYPTO_TGR192 is not set |
| 852 | # CONFIG_CRYPTO_GF128MUL is not set | 902 | # CONFIG_CRYPTO_WP512 is not set |
| 853 | # CONFIG_CRYPTO_ECB is not set | 903 | |
| 854 | # CONFIG_CRYPTO_CBC is not set | 904 | # |
| 855 | # CONFIG_CRYPTO_PCBC is not set | 905 | # Ciphers |
| 856 | # CONFIG_CRYPTO_LRW is not set | 906 | # |
| 857 | # CONFIG_CRYPTO_XTS is not set | ||
| 858 | # CONFIG_CRYPTO_CTR is not set | ||
| 859 | # CONFIG_CRYPTO_GCM is not set | ||
| 860 | # CONFIG_CRYPTO_CCM is not set | ||
| 861 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 862 | # CONFIG_CRYPTO_DES is not set | ||
| 863 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 864 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 865 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 866 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 867 | # CONFIG_CRYPTO_AES is not set | 907 | # CONFIG_CRYPTO_AES is not set |
| 908 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 909 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 910 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 911 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 868 | # CONFIG_CRYPTO_CAST5 is not set | 912 | # CONFIG_CRYPTO_CAST5 is not set |
| 869 | # CONFIG_CRYPTO_CAST6 is not set | 913 | # CONFIG_CRYPTO_CAST6 is not set |
| 870 | # CONFIG_CRYPTO_TEA is not set | 914 | # CONFIG_CRYPTO_DES is not set |
| 871 | # CONFIG_CRYPTO_ARC4 is not set | 915 | # CONFIG_CRYPTO_FCRYPT is not set |
| 872 | # CONFIG_CRYPTO_KHAZAD is not set | 916 | # CONFIG_CRYPTO_KHAZAD is not set |
| 873 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 874 | # CONFIG_CRYPTO_SEED is not set | ||
| 875 | # CONFIG_CRYPTO_SALSA20 is not set | 917 | # CONFIG_CRYPTO_SALSA20 is not set |
| 918 | # CONFIG_CRYPTO_SEED is not set | ||
| 919 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 920 | # CONFIG_CRYPTO_TEA is not set | ||
| 921 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 922 | |||
| 923 | # | ||
| 924 | # Compression | ||
| 925 | # | ||
| 876 | # CONFIG_CRYPTO_DEFLATE is not set | 926 | # CONFIG_CRYPTO_DEFLATE is not set |
| 877 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 878 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 879 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 880 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 881 | # CONFIG_CRYPTO_LZO is not set | 927 | # CONFIG_CRYPTO_LZO is not set |
| 882 | CONFIG_CRYPTO_HW=y | 928 | CONFIG_CRYPTO_HW=y |
| 883 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 929 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 884 | # CONFIG_PPC_CLOCK is not set | 930 | # CONFIG_PPC_CLOCK is not set |
| 885 | CONFIG_PPC_LIB_RHEAP=y | 931 | CONFIG_PPC_LIB_RHEAP=y |
| 932 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/mpc8568mds_defconfig b/arch/powerpc/configs/85xx/mpc8568mds_defconfig index 2b866b385607..28004e93aeee 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.25-rc7 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 31 11:37:05 2008 | 4 | # Mon Jun 9 08:52:34 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -87,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 87 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 90 | # CONFIG_KALLSYMS is not set | 93 | # CONFIG_KALLSYMS is not set |
| 91 | CONFIG_HOTPLUG=y | 94 | CONFIG_HOTPLUG=y |
| 92 | CONFIG_PRINTK=y | 95 | CONFIG_PRINTK=y |
| @@ -111,12 +114,14 @@ CONFIG_SLUB=y | |||
| 111 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
| 112 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 118 | CONFIG_PROC_PAGE_MONITOR=y |
| 115 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
| 116 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
| 117 | # CONFIG_TINY_SHMEM is not set | 121 | # CONFIG_TINY_SHMEM is not set |
| 118 | CONFIG_BASE_SMALL=0 | 122 | CONFIG_BASE_SMALL=0 |
| 119 | CONFIG_MODULES=y | 123 | CONFIG_MODULES=y |
| 124 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 120 | CONFIG_MODULE_UNLOAD=y | 125 | CONFIG_MODULE_UNLOAD=y |
| 121 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 122 | # CONFIG_MODVERSIONS is not set | 127 | # CONFIG_MODVERSIONS is not set |
| @@ -156,6 +161,7 @@ CONFIG_MPC85xx=y | |||
| 156 | # CONFIG_MPC85xx_CDS is not set | 161 | # CONFIG_MPC85xx_CDS is not set |
| 157 | CONFIG_MPC85xx_MDS=y | 162 | CONFIG_MPC85xx_MDS=y |
| 158 | # CONFIG_MPC85xx_DS is not set | 163 | # CONFIG_MPC85xx_DS is not set |
| 164 | # CONFIG_KSI8560 is not set | ||
| 159 | # CONFIG_STX_GP3 is not set | 165 | # CONFIG_STX_GP3 is not set |
| 160 | # CONFIG_TQM8540 is not set | 166 | # CONFIG_TQM8540 is not set |
| 161 | # CONFIG_TQM8541 is not set | 167 | # CONFIG_TQM8541 is not set |
| @@ -212,11 +218,13 @@ CONFIG_FLATMEM=y | |||
| 212 | CONFIG_FLAT_NODE_MEM_MAP=y | 218 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 213 | # CONFIG_SPARSEMEM_STATIC is not set | 219 | # CONFIG_SPARSEMEM_STATIC is not set |
| 214 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 220 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 221 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 215 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 222 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 216 | # CONFIG_RESOURCES_64BIT is not set | 223 | # CONFIG_RESOURCES_64BIT is not set |
| 217 | CONFIG_ZONE_DMA_FLAG=1 | 224 | CONFIG_ZONE_DMA_FLAG=1 |
| 218 | CONFIG_BOUNCE=y | 225 | CONFIG_BOUNCE=y |
| 219 | CONFIG_VIRT_TO_BUS=y | 226 | CONFIG_VIRT_TO_BUS=y |
| 227 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 220 | CONFIG_PROC_DEVICETREE=y | 228 | CONFIG_PROC_DEVICETREE=y |
| 221 | # CONFIG_CMDLINE_BOOL is not set | 229 | # CONFIG_CMDLINE_BOOL is not set |
| 222 | # CONFIG_PM is not set | 230 | # CONFIG_PM is not set |
| @@ -240,6 +248,7 @@ CONFIG_PCI_LEGACY=y | |||
| 240 | # CONFIG_PCI_DEBUG is not set | 248 | # CONFIG_PCI_DEBUG is not set |
| 241 | # CONFIG_PCCARD is not set | 249 | # CONFIG_PCCARD is not set |
| 242 | # CONFIG_HOTPLUG_PCI is not set | 250 | # CONFIG_HOTPLUG_PCI is not set |
| 251 | # CONFIG_HAS_RAPIDIO is not set | ||
| 243 | 252 | ||
| 244 | # | 253 | # |
| 245 | # Advanced setup | 254 | # Advanced setup |
| @@ -249,11 +258,12 @@ CONFIG_PCI_LEGACY=y | |||
| 249 | # | 258 | # |
| 250 | # Default settings for advanced configuration options are used | 259 | # Default settings for advanced configuration options are used |
| 251 | # | 260 | # |
| 252 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 253 | CONFIG_LOWMEM_SIZE=0x30000000 | 261 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 262 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 254 | CONFIG_KERNEL_START=0xc0000000 | 263 | CONFIG_KERNEL_START=0xc0000000 |
| 264 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 265 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 255 | CONFIG_TASK_SIZE=0xc0000000 | 266 | CONFIG_TASK_SIZE=0xc0000000 |
| 256 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 257 | 267 | ||
| 258 | # | 268 | # |
| 259 | # Networking | 269 | # Networking |
| @@ -301,8 +311,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 301 | CONFIG_DEFAULT_TCP_CONG="cubic" | 311 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 302 | # CONFIG_TCP_MD5SIG is not set | 312 | # CONFIG_TCP_MD5SIG is not set |
| 303 | # CONFIG_IPV6 is not set | 313 | # CONFIG_IPV6 is not set |
| 304 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 305 | # CONFIG_INET6_TUNNEL is not set | ||
| 306 | # CONFIG_NETWORK_SECMARK is not set | 314 | # CONFIG_NETWORK_SECMARK is not set |
| 307 | # CONFIG_NETFILTER is not set | 315 | # CONFIG_NETFILTER is not set |
| 308 | # CONFIG_IP_DCCP is not set | 316 | # CONFIG_IP_DCCP is not set |
| @@ -358,6 +366,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 358 | # CONFIG_CONNECTOR is not set | 366 | # CONFIG_CONNECTOR is not set |
| 359 | # CONFIG_MTD is not set | 367 | # CONFIG_MTD is not set |
| 360 | CONFIG_OF_DEVICE=y | 368 | CONFIG_OF_DEVICE=y |
| 369 | CONFIG_OF_I2C=y | ||
| 361 | # CONFIG_PARPORT is not set | 370 | # CONFIG_PARPORT is not set |
| 362 | CONFIG_BLK_DEV=y | 371 | CONFIG_BLK_DEV=y |
| 363 | # CONFIG_BLK_DEV_FD is not set | 372 | # CONFIG_BLK_DEV_FD is not set |
| @@ -525,7 +534,6 @@ CONFIG_NETDEV_1000=y | |||
| 525 | # CONFIG_SIS190 is not set | 534 | # CONFIG_SIS190 is not set |
| 526 | # CONFIG_SKGE is not set | 535 | # CONFIG_SKGE is not set |
| 527 | # CONFIG_SKY2 is not set | 536 | # CONFIG_SKY2 is not set |
| 528 | # CONFIG_SK98LIN is not set | ||
| 529 | # CONFIG_VIA_VELOCITY is not set | 537 | # CONFIG_VIA_VELOCITY is not set |
| 530 | # CONFIG_TIGON3 is not set | 538 | # CONFIG_TIGON3 is not set |
| 531 | # CONFIG_BNX2 is not set | 539 | # CONFIG_BNX2 is not set |
| @@ -546,6 +554,7 @@ CONFIG_NETDEV_10000=y | |||
| 546 | # CONFIG_MLX4_CORE is not set | 554 | # CONFIG_MLX4_CORE is not set |
| 547 | # CONFIG_TEHUTI is not set | 555 | # CONFIG_TEHUTI is not set |
| 548 | # CONFIG_BNX2X is not set | 556 | # CONFIG_BNX2X is not set |
| 557 | # CONFIG_SFC is not set | ||
| 549 | # CONFIG_TR is not set | 558 | # CONFIG_TR is not set |
| 550 | 559 | ||
| 551 | # | 560 | # |
| @@ -553,6 +562,7 @@ CONFIG_NETDEV_10000=y | |||
| 553 | # | 562 | # |
| 554 | # CONFIG_WLAN_PRE80211 is not set | 563 | # CONFIG_WLAN_PRE80211 is not set |
| 555 | # CONFIG_WLAN_80211 is not set | 564 | # CONFIG_WLAN_80211 is not set |
| 565 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 556 | # CONFIG_WAN is not set | 566 | # CONFIG_WAN is not set |
| 557 | # CONFIG_FDDI is not set | 567 | # CONFIG_FDDI is not set |
| 558 | # CONFIG_HIPPI is not set | 568 | # CONFIG_HIPPI is not set |
| @@ -600,6 +610,7 @@ CONFIG_INPUT=y | |||
| 600 | # Character devices | 610 | # Character devices |
| 601 | # | 611 | # |
| 602 | # CONFIG_VT is not set | 612 | # CONFIG_VT is not set |
| 613 | CONFIG_DEVKMEM=y | ||
| 603 | # CONFIG_SERIAL_NONSTANDARD is not set | 614 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 604 | # CONFIG_NOZOMI is not set | 615 | # CONFIG_NOZOMI is not set |
| 605 | 616 | ||
| @@ -629,7 +640,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 629 | # CONFIG_IPMI_HANDLER is not set | 640 | # CONFIG_IPMI_HANDLER is not set |
| 630 | CONFIG_HW_RANDOM=y | 641 | CONFIG_HW_RANDOM=y |
| 631 | # CONFIG_NVRAM is not set | 642 | # CONFIG_NVRAM is not set |
| 632 | # CONFIG_GEN_RTC is not set | ||
| 633 | # CONFIG_R3964 is not set | 643 | # CONFIG_R3964 is not set |
| 634 | # CONFIG_APPLICOM is not set | 644 | # CONFIG_APPLICOM is not set |
| 635 | # CONFIG_RAW_DRIVER is not set | 645 | # CONFIG_RAW_DRIVER is not set |
| @@ -640,13 +650,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 640 | CONFIG_I2C_CHARDEV=y | 650 | CONFIG_I2C_CHARDEV=y |
| 641 | 651 | ||
| 642 | # | 652 | # |
| 643 | # I2C Algorithms | ||
| 644 | # | ||
| 645 | # CONFIG_I2C_ALGOBIT is not set | ||
| 646 | # CONFIG_I2C_ALGOPCF is not set | ||
| 647 | # CONFIG_I2C_ALGOPCA is not set | ||
| 648 | |||
| 649 | # | ||
| 650 | # I2C Hardware Bus support | 653 | # I2C Hardware Bus support |
| 651 | # | 654 | # |
| 652 | # CONFIG_I2C_ALI1535 is not set | 655 | # CONFIG_I2C_ALI1535 is not set |
| @@ -672,6 +675,7 @@ CONFIG_I2C_MPC=y | |||
| 672 | # CONFIG_I2C_VIA is not set | 675 | # CONFIG_I2C_VIA is not set |
| 673 | # CONFIG_I2C_VIAPRO is not set | 676 | # CONFIG_I2C_VIAPRO is not set |
| 674 | # CONFIG_I2C_VOODOO3 is not set | 677 | # CONFIG_I2C_VOODOO3 is not set |
| 678 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 675 | 679 | ||
| 676 | # | 680 | # |
| 677 | # Miscellaneous I2C Chip support | 681 | # Miscellaneous I2C Chip support |
| @@ -681,19 +685,13 @@ CONFIG_I2C_MPC=y | |||
| 681 | # CONFIG_SENSORS_PCF8574 is not set | 685 | # CONFIG_SENSORS_PCF8574 is not set |
| 682 | # CONFIG_PCF8575 is not set | 686 | # CONFIG_PCF8575 is not set |
| 683 | # CONFIG_SENSORS_PCF8591 is not set | 687 | # CONFIG_SENSORS_PCF8591 is not set |
| 684 | # CONFIG_TPS65010 is not set | ||
| 685 | # CONFIG_SENSORS_MAX6875 is not set | 688 | # CONFIG_SENSORS_MAX6875 is not set |
| 686 | # CONFIG_SENSORS_TSL2550 is not set | 689 | # CONFIG_SENSORS_TSL2550 is not set |
| 687 | # CONFIG_I2C_DEBUG_CORE is not set | 690 | # CONFIG_I2C_DEBUG_CORE is not set |
| 688 | # CONFIG_I2C_DEBUG_ALGO is not set | 691 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 689 | # CONFIG_I2C_DEBUG_BUS is not set | 692 | # CONFIG_I2C_DEBUG_BUS is not set |
| 690 | # CONFIG_I2C_DEBUG_CHIP is not set | 693 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 691 | |||
| 692 | # | ||
| 693 | # SPI support | ||
| 694 | # | ||
| 695 | # CONFIG_SPI is not set | 694 | # CONFIG_SPI is not set |
| 696 | # CONFIG_SPI_MASTER is not set | ||
| 697 | # CONFIG_W1 is not set | 695 | # CONFIG_W1 is not set |
| 698 | # CONFIG_POWER_SUPPLY is not set | 696 | # CONFIG_POWER_SUPPLY is not set |
| 699 | CONFIG_HWMON=y | 697 | CONFIG_HWMON=y |
| @@ -776,12 +774,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 776 | # Multifunction device drivers | 774 | # Multifunction device drivers |
| 777 | # | 775 | # |
| 778 | # CONFIG_MFD_SM501 is not set | 776 | # CONFIG_MFD_SM501 is not set |
| 777 | # CONFIG_HTC_PASIC3 is not set | ||
| 779 | 778 | ||
| 780 | # | 779 | # |
| 781 | # Multimedia devices | 780 | # Multimedia devices |
| 782 | # | 781 | # |
| 782 | |||
| 783 | # | ||
| 784 | # Multimedia core support | ||
| 785 | # | ||
| 783 | # CONFIG_VIDEO_DEV is not set | 786 | # CONFIG_VIDEO_DEV is not set |
| 784 | # CONFIG_DVB_CORE is not set | 787 | # CONFIG_DVB_CORE is not set |
| 788 | # CONFIG_VIDEO_MEDIA is not set | ||
| 789 | |||
| 790 | # | ||
| 791 | # Multimedia drivers | ||
| 792 | # | ||
| 785 | CONFIG_DAB=y | 793 | CONFIG_DAB=y |
| 786 | 794 | ||
| 787 | # | 795 | # |
| @@ -812,6 +820,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 812 | CONFIG_USB_ARCH_HAS_OHCI=y | 820 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 813 | CONFIG_USB_ARCH_HAS_EHCI=y | 821 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 814 | # CONFIG_USB is not set | 822 | # CONFIG_USB is not set |
| 823 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 824 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 815 | 825 | ||
| 816 | # | 826 | # |
| 817 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 827 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -820,6 +830,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 820 | # CONFIG_MMC is not set | 830 | # CONFIG_MMC is not set |
| 821 | # CONFIG_MEMSTICK is not set | 831 | # CONFIG_MEMSTICK is not set |
| 822 | # CONFIG_NEW_LEDS is not set | 832 | # CONFIG_NEW_LEDS is not set |
| 833 | # CONFIG_ACCESSIBILITY is not set | ||
| 823 | # CONFIG_INFINIBAND is not set | 834 | # CONFIG_INFINIBAND is not set |
| 824 | # CONFIG_EDAC is not set | 835 | # CONFIG_EDAC is not set |
| 825 | CONFIG_RTC_LIB=y | 836 | CONFIG_RTC_LIB=y |
| @@ -871,11 +882,8 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 871 | # | 882 | # |
| 872 | # on-CPU RTC drivers | 883 | # on-CPU RTC drivers |
| 873 | # | 884 | # |
| 885 | # CONFIG_RTC_DRV_PPC is not set | ||
| 874 | # CONFIG_DMADEVICES is not set | 886 | # CONFIG_DMADEVICES is not set |
| 875 | |||
| 876 | # | ||
| 877 | # Userspace I/O | ||
| 878 | # | ||
| 879 | # CONFIG_UIO is not set | 887 | # CONFIG_UIO is not set |
| 880 | 888 | ||
| 881 | # | 889 | # |
| @@ -895,7 +903,6 @@ CONFIG_FS_MBCACHE=y | |||
| 895 | # CONFIG_JFS_FS is not set | 903 | # CONFIG_JFS_FS is not set |
| 896 | # CONFIG_FS_POSIX_ACL is not set | 904 | # CONFIG_FS_POSIX_ACL is not set |
| 897 | # CONFIG_XFS_FS is not set | 905 | # CONFIG_XFS_FS is not set |
| 898 | # CONFIG_GFS2_FS is not set | ||
| 899 | # CONFIG_OCFS2_FS is not set | 906 | # CONFIG_OCFS2_FS is not set |
| 900 | CONFIG_DNOTIFY=y | 907 | CONFIG_DNOTIFY=y |
| 901 | CONFIG_INOTIFY=y | 908 | CONFIG_INOTIFY=y |
| @@ -953,7 +960,6 @@ CONFIG_NFS_FS=y | |||
| 953 | CONFIG_NFS_V3=y | 960 | CONFIG_NFS_V3=y |
| 954 | # CONFIG_NFS_V3_ACL is not set | 961 | # CONFIG_NFS_V3_ACL is not set |
| 955 | CONFIG_NFS_V4=y | 962 | CONFIG_NFS_V4=y |
| 956 | # CONFIG_NFS_DIRECTIO is not set | ||
| 957 | # CONFIG_NFSD is not set | 963 | # CONFIG_NFSD is not set |
| 958 | CONFIG_ROOT_NFS=y | 964 | CONFIG_ROOT_NFS=y |
| 959 | CONFIG_LOCKD=y | 965 | CONFIG_LOCKD=y |
| @@ -994,6 +1000,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 994 | # Library routines | 1000 | # Library routines |
| 995 | # | 1001 | # |
| 996 | CONFIG_BITREVERSE=y | 1002 | CONFIG_BITREVERSE=y |
| 1003 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 997 | # CONFIG_CRC_CCITT is not set | 1004 | # CONFIG_CRC_CCITT is not set |
| 998 | # CONFIG_CRC16 is not set | 1005 | # CONFIG_CRC16 is not set |
| 999 | # CONFIG_CRC_ITU_T is not set | 1006 | # CONFIG_CRC_ITU_T is not set |
| @@ -1004,6 +1011,7 @@ CONFIG_PLIST=y | |||
| 1004 | CONFIG_HAS_IOMEM=y | 1011 | CONFIG_HAS_IOMEM=y |
| 1005 | CONFIG_HAS_IOPORT=y | 1012 | CONFIG_HAS_IOPORT=y |
| 1006 | CONFIG_HAS_DMA=y | 1013 | CONFIG_HAS_DMA=y |
| 1014 | CONFIG_HAVE_LMB=y | ||
| 1007 | 1015 | ||
| 1008 | # | 1016 | # |
| 1009 | # Kernel hacking | 1017 | # Kernel hacking |
| @@ -1011,6 +1019,7 @@ CONFIG_HAS_DMA=y | |||
| 1011 | # CONFIG_PRINTK_TIME is not set | 1019 | # CONFIG_PRINTK_TIME is not set |
| 1012 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1020 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1013 | CONFIG_ENABLE_MUST_CHECK=y | 1021 | CONFIG_ENABLE_MUST_CHECK=y |
| 1022 | CONFIG_FRAME_WARN=1024 | ||
| 1014 | # CONFIG_MAGIC_SYSRQ is not set | 1023 | # CONFIG_MAGIC_SYSRQ is not set |
| 1015 | # CONFIG_UNUSED_SYMBOLS is not set | 1024 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1016 | # CONFIG_DEBUG_FS is not set | 1025 | # CONFIG_DEBUG_FS is not set |
| @@ -1021,6 +1030,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1021 | CONFIG_SCHED_DEBUG=y | 1030 | CONFIG_SCHED_DEBUG=y |
| 1022 | # CONFIG_SCHEDSTATS is not set | 1031 | # CONFIG_SCHEDSTATS is not set |
| 1023 | # CONFIG_TIMER_STATS is not set | 1032 | # CONFIG_TIMER_STATS is not set |
| 1033 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1024 | # CONFIG_SLUB_DEBUG_ON is not set | 1034 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1025 | # CONFIG_SLUB_STATS is not set | 1035 | # CONFIG_SLUB_STATS is not set |
| 1026 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1036 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -1033,6 +1043,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1033 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1043 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1034 | # CONFIG_DEBUG_INFO is not set | 1044 | # CONFIG_DEBUG_INFO is not set |
| 1035 | # CONFIG_DEBUG_VM is not set | 1045 | # CONFIG_DEBUG_VM is not set |
| 1046 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1036 | # CONFIG_DEBUG_LIST is not set | 1047 | # CONFIG_DEBUG_LIST is not set |
| 1037 | # CONFIG_DEBUG_SG is not set | 1048 | # CONFIG_DEBUG_SG is not set |
| 1038 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1049 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1045,6 +1056,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1045 | # CONFIG_DEBUG_PAGEALLOC is not set | 1056 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1046 | CONFIG_DEBUGGER=y | 1057 | CONFIG_DEBUGGER=y |
| 1047 | # CONFIG_XMON is not set | 1058 | # CONFIG_XMON is not set |
| 1059 | # CONFIG_IRQSTACKS is not set | ||
| 1048 | # CONFIG_BDI_SWITCH is not set | 1060 | # CONFIG_BDI_SWITCH is not set |
| 1049 | CONFIG_PPC_EARLY_DEBUG=y | 1061 | CONFIG_PPC_EARLY_DEBUG=y |
| 1050 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | 1062 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set |
| @@ -1066,52 +1078,82 @@ CONFIG_PPC_EARLY_DEBUG=y | |||
| 1066 | # CONFIG_SECURITY is not set | 1078 | # CONFIG_SECURITY is not set |
| 1067 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1079 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1068 | CONFIG_CRYPTO=y | 1080 | CONFIG_CRYPTO=y |
| 1081 | |||
| 1082 | # | ||
| 1083 | # Crypto core or helper | ||
| 1084 | # | ||
| 1069 | CONFIG_CRYPTO_ALGAPI=y | 1085 | CONFIG_CRYPTO_ALGAPI=y |
| 1070 | CONFIG_CRYPTO_BLKCIPHER=y | 1086 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1071 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1072 | CONFIG_CRYPTO_MANAGER=y | 1087 | CONFIG_CRYPTO_MANAGER=y |
| 1088 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1089 | # CONFIG_CRYPTO_NULL is not set | ||
| 1090 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1091 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1092 | # CONFIG_CRYPTO_TEST is not set | ||
| 1093 | |||
| 1094 | # | ||
| 1095 | # Authenticated Encryption with Associated Data | ||
| 1096 | # | ||
| 1097 | # CONFIG_CRYPTO_CCM is not set | ||
| 1098 | # CONFIG_CRYPTO_GCM is not set | ||
| 1099 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1100 | |||
| 1101 | # | ||
| 1102 | # Block modes | ||
| 1103 | # | ||
| 1104 | CONFIG_CRYPTO_CBC=y | ||
| 1105 | # CONFIG_CRYPTO_CTR is not set | ||
| 1106 | # CONFIG_CRYPTO_CTS is not set | ||
| 1107 | CONFIG_CRYPTO_ECB=m | ||
| 1108 | # CONFIG_CRYPTO_LRW is not set | ||
| 1109 | CONFIG_CRYPTO_PCBC=m | ||
| 1110 | # CONFIG_CRYPTO_XTS is not set | ||
| 1111 | |||
| 1112 | # | ||
| 1113 | # Hash modes | ||
| 1114 | # | ||
| 1073 | # CONFIG_CRYPTO_HMAC is not set | 1115 | # CONFIG_CRYPTO_HMAC is not set |
| 1074 | # CONFIG_CRYPTO_XCBC is not set | 1116 | # CONFIG_CRYPTO_XCBC is not set |
| 1075 | # CONFIG_CRYPTO_NULL is not set | 1117 | |
| 1118 | # | ||
| 1119 | # Digest | ||
| 1120 | # | ||
| 1121 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1076 | # CONFIG_CRYPTO_MD4 is not set | 1122 | # CONFIG_CRYPTO_MD4 is not set |
| 1077 | CONFIG_CRYPTO_MD5=y | 1123 | CONFIG_CRYPTO_MD5=y |
| 1124 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1078 | # CONFIG_CRYPTO_SHA1 is not set | 1125 | # CONFIG_CRYPTO_SHA1 is not set |
| 1079 | # CONFIG_CRYPTO_SHA256 is not set | 1126 | # CONFIG_CRYPTO_SHA256 is not set |
| 1080 | # CONFIG_CRYPTO_SHA512 is not set | 1127 | # CONFIG_CRYPTO_SHA512 is not set |
| 1081 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1082 | # CONFIG_CRYPTO_TGR192 is not set | 1128 | # CONFIG_CRYPTO_TGR192 is not set |
| 1083 | # CONFIG_CRYPTO_GF128MUL is not set | 1129 | # CONFIG_CRYPTO_WP512 is not set |
| 1084 | CONFIG_CRYPTO_ECB=m | 1130 | |
| 1085 | CONFIG_CRYPTO_CBC=y | 1131 | # |
| 1086 | CONFIG_CRYPTO_PCBC=m | 1132 | # Ciphers |
| 1087 | # CONFIG_CRYPTO_LRW is not set | 1133 | # |
| 1088 | # CONFIG_CRYPTO_XTS is not set | ||
| 1089 | # CONFIG_CRYPTO_CTR is not set | ||
| 1090 | # CONFIG_CRYPTO_GCM is not set | ||
| 1091 | # CONFIG_CRYPTO_CCM is not set | ||
| 1092 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1093 | CONFIG_CRYPTO_DES=y | ||
| 1094 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1095 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1096 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1097 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1098 | # CONFIG_CRYPTO_AES is not set | 1134 | # CONFIG_CRYPTO_AES is not set |
| 1135 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1136 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1137 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1138 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1099 | # CONFIG_CRYPTO_CAST5 is not set | 1139 | # CONFIG_CRYPTO_CAST5 is not set |
| 1100 | # CONFIG_CRYPTO_CAST6 is not set | 1140 | # CONFIG_CRYPTO_CAST6 is not set |
| 1101 | # CONFIG_CRYPTO_TEA is not set | 1141 | CONFIG_CRYPTO_DES=y |
| 1102 | # CONFIG_CRYPTO_ARC4 is not set | 1142 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1103 | # CONFIG_CRYPTO_KHAZAD is not set | 1143 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1104 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1105 | # CONFIG_CRYPTO_SEED is not set | ||
| 1106 | # CONFIG_CRYPTO_SALSA20 is not set | 1144 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1145 | # CONFIG_CRYPTO_SEED is not set | ||
| 1146 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1147 | # CONFIG_CRYPTO_TEA is not set | ||
| 1148 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1149 | |||
| 1150 | # | ||
| 1151 | # Compression | ||
| 1152 | # | ||
| 1107 | # CONFIG_CRYPTO_DEFLATE is not set | 1153 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1108 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1109 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1110 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1111 | # CONFIG_CRYPTO_TEST is not set | ||
| 1112 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1113 | # CONFIG_CRYPTO_LZO is not set | 1154 | # CONFIG_CRYPTO_LZO is not set |
| 1114 | CONFIG_CRYPTO_HW=y | 1155 | CONFIG_CRYPTO_HW=y |
| 1115 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1156 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1116 | # CONFIG_PPC_CLOCK is not set | 1157 | # CONFIG_PPC_CLOCK is not set |
| 1117 | CONFIG_PPC_LIB_RHEAP=y | 1158 | CONFIG_PPC_LIB_RHEAP=y |
| 1159 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/mpc8572_ds_defconfig b/arch/powerpc/configs/85xx/mpc8572_ds_defconfig index 53aa6f3173a5..03627cfebcb4 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.25-rc7 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 31 11:37:06 2008 | 4 | # Mon Jun 9 08:52:35 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -90,6 +92,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 90 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 91 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 92 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
| 94 | CONFIG_KALLSYMS_ALL=y | 97 | CONFIG_KALLSYMS_ALL=y |
| 95 | CONFIG_KALLSYMS_EXTRA_PASS=y | 98 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -117,12 +120,14 @@ CONFIG_HAVE_OPROFILE=y | |||
| 117 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
| 118 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 119 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 120 | CONFIG_PROC_PAGE_MONITOR=y | 124 | CONFIG_PROC_PAGE_MONITOR=y |
| 121 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
| 122 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
| 123 | # CONFIG_TINY_SHMEM is not set | 127 | # CONFIG_TINY_SHMEM is not set |
| 124 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
| 125 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
| 130 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 126 | CONFIG_MODULE_UNLOAD=y | 131 | CONFIG_MODULE_UNLOAD=y |
| 127 | CONFIG_MODULE_FORCE_UNLOAD=y | 132 | CONFIG_MODULE_FORCE_UNLOAD=y |
| 128 | CONFIG_MODVERSIONS=y | 133 | CONFIG_MODVERSIONS=y |
| @@ -162,6 +167,7 @@ CONFIG_MPC85xx=y | |||
| 162 | # CONFIG_MPC85xx_CDS is not set | 167 | # CONFIG_MPC85xx_CDS is not set |
| 163 | # CONFIG_MPC85xx_MDS is not set | 168 | # CONFIG_MPC85xx_MDS is not set |
| 164 | CONFIG_MPC85xx_DS=y | 169 | CONFIG_MPC85xx_DS=y |
| 170 | # CONFIG_KSI8560 is not set | ||
| 165 | # CONFIG_STX_GP3 is not set | 171 | # CONFIG_STX_GP3 is not set |
| 166 | # CONFIG_TQM8540 is not set | 172 | # CONFIG_TQM8540 is not set |
| 167 | # CONFIG_TQM8541 is not set | 173 | # CONFIG_TQM8541 is not set |
| @@ -217,11 +223,13 @@ CONFIG_FLATMEM=y | |||
| 217 | CONFIG_FLAT_NODE_MEM_MAP=y | 223 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 218 | # CONFIG_SPARSEMEM_STATIC is not set | 224 | # CONFIG_SPARSEMEM_STATIC is not set |
| 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 225 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 226 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 227 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 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 |
| 224 | CONFIG_VIRT_TO_BUS=y | 231 | CONFIG_VIRT_TO_BUS=y |
| 232 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 225 | CONFIG_PROC_DEVICETREE=y | 233 | CONFIG_PROC_DEVICETREE=y |
| 226 | # CONFIG_CMDLINE_BOOL is not set | 234 | # CONFIG_CMDLINE_BOOL is not set |
| 227 | # CONFIG_PM is not set | 235 | # CONFIG_PM is not set |
| @@ -246,6 +254,7 @@ CONFIG_PCI_LEGACY=y | |||
| 246 | # CONFIG_PCI_DEBUG is not set | 254 | # CONFIG_PCI_DEBUG is not set |
| 247 | # CONFIG_PCCARD is not set | 255 | # CONFIG_PCCARD is not set |
| 248 | # CONFIG_HOTPLUG_PCI is not set | 256 | # CONFIG_HOTPLUG_PCI is not set |
| 257 | # CONFIG_HAS_RAPIDIO is not set | ||
| 249 | 258 | ||
| 250 | # | 259 | # |
| 251 | # Advanced setup | 260 | # Advanced setup |
| @@ -255,11 +264,12 @@ CONFIG_PCI_LEGACY=y | |||
| 255 | # | 264 | # |
| 256 | # Default settings for advanced configuration options are used | 265 | # Default settings for advanced configuration options are used |
| 257 | # | 266 | # |
| 258 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 259 | CONFIG_LOWMEM_SIZE=0x30000000 | 267 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 268 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 260 | CONFIG_KERNEL_START=0xc0000000 | 269 | CONFIG_KERNEL_START=0xc0000000 |
| 270 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 271 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 261 | CONFIG_TASK_SIZE=0xc0000000 | 272 | CONFIG_TASK_SIZE=0xc0000000 |
| 262 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 263 | 273 | ||
| 264 | # | 274 | # |
| 265 | # Networking | 275 | # Networking |
| @@ -330,8 +340,10 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=y | |||
| 330 | CONFIG_INET6_XFRM_MODE_BEET=y | 340 | CONFIG_INET6_XFRM_MODE_BEET=y |
| 331 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 341 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set |
| 332 | CONFIG_IPV6_SIT=y | 342 | CONFIG_IPV6_SIT=y |
| 343 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
| 333 | # CONFIG_IPV6_TUNNEL is not set | 344 | # CONFIG_IPV6_TUNNEL is not set |
| 334 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | 345 | # CONFIG_IPV6_MULTIPLE_TABLES is not set |
| 346 | # CONFIG_IPV6_MROUTE is not set | ||
| 335 | # CONFIG_NETWORK_SECMARK is not set | 347 | # CONFIG_NETWORK_SECMARK is not set |
| 336 | # CONFIG_NETFILTER is not set | 348 | # CONFIG_NETFILTER is not set |
| 337 | # CONFIG_IP_DCCP is not set | 349 | # CONFIG_IP_DCCP is not set |
| @@ -393,6 +405,7 @@ CONFIG_FW_LOADER=y | |||
| 393 | # CONFIG_CONNECTOR is not set | 405 | # CONFIG_CONNECTOR is not set |
| 394 | # CONFIG_MTD is not set | 406 | # CONFIG_MTD is not set |
| 395 | CONFIG_OF_DEVICE=y | 407 | CONFIG_OF_DEVICE=y |
| 408 | CONFIG_OF_I2C=y | ||
| 396 | # CONFIG_PARPORT is not set | 409 | # CONFIG_PARPORT is not set |
| 397 | CONFIG_BLK_DEV=y | 410 | CONFIG_BLK_DEV=y |
| 398 | # CONFIG_BLK_DEV_FD is not set | 411 | # CONFIG_BLK_DEV_FD is not set |
| @@ -499,7 +512,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 499 | # CONFIG_SCSI_SRP is not set | 512 | # CONFIG_SCSI_SRP is not set |
| 500 | CONFIG_ATA=y | 513 | CONFIG_ATA=y |
| 501 | # CONFIG_ATA_NONSTANDARD is not set | 514 | # CONFIG_ATA_NONSTANDARD is not set |
| 515 | CONFIG_SATA_PMP=y | ||
| 502 | CONFIG_SATA_AHCI=y | 516 | CONFIG_SATA_AHCI=y |
| 517 | # CONFIG_SATA_SIL24 is not set | ||
| 518 | # CONFIG_SATA_FSL is not set | ||
| 519 | CONFIG_ATA_SFF=y | ||
| 503 | # CONFIG_SATA_SVW is not set | 520 | # CONFIG_SATA_SVW is not set |
| 504 | # CONFIG_ATA_PIIX is not set | 521 | # CONFIG_ATA_PIIX is not set |
| 505 | # CONFIG_SATA_MV is not set | 522 | # CONFIG_SATA_MV is not set |
| @@ -509,13 +526,11 @@ CONFIG_SATA_AHCI=y | |||
| 509 | # CONFIG_SATA_PROMISE is not set | 526 | # CONFIG_SATA_PROMISE is not set |
| 510 | # CONFIG_SATA_SX4 is not set | 527 | # CONFIG_SATA_SX4 is not set |
| 511 | # CONFIG_SATA_SIL is not set | 528 | # CONFIG_SATA_SIL is not set |
| 512 | # CONFIG_SATA_SIL24 is not set | ||
| 513 | # CONFIG_SATA_SIS is not set | 529 | # CONFIG_SATA_SIS is not set |
| 514 | # CONFIG_SATA_ULI is not set | 530 | # CONFIG_SATA_ULI is not set |
| 515 | # CONFIG_SATA_VIA is not set | 531 | # CONFIG_SATA_VIA is not set |
| 516 | # CONFIG_SATA_VITESSE is not set | 532 | # CONFIG_SATA_VITESSE is not set |
| 517 | # CONFIG_SATA_INIC162X is not set | 533 | # CONFIG_SATA_INIC162X is not set |
| 518 | # CONFIG_SATA_FSL is not set | ||
| 519 | CONFIG_PATA_ALI=y | 534 | CONFIG_PATA_ALI=y |
| 520 | # CONFIG_PATA_AMD is not set | 535 | # CONFIG_PATA_AMD is not set |
| 521 | # CONFIG_PATA_ARTOP is not set | 536 | # CONFIG_PATA_ARTOP is not set |
| @@ -555,6 +570,7 @@ CONFIG_PATA_ALI=y | |||
| 555 | # CONFIG_PATA_VIA is not set | 570 | # CONFIG_PATA_VIA is not set |
| 556 | # CONFIG_PATA_WINBOND is not set | 571 | # CONFIG_PATA_WINBOND is not set |
| 557 | # CONFIG_PATA_PLATFORM is not set | 572 | # CONFIG_PATA_PLATFORM is not set |
| 573 | # CONFIG_PATA_SCH is not set | ||
| 558 | # CONFIG_MD is not set | 574 | # CONFIG_MD is not set |
| 559 | # CONFIG_FUSION is not set | 575 | # CONFIG_FUSION is not set |
| 560 | 576 | ||
| @@ -620,7 +636,6 @@ CONFIG_NETDEV_1000=y | |||
| 620 | # CONFIG_SIS190 is not set | 636 | # CONFIG_SIS190 is not set |
| 621 | # CONFIG_SKGE is not set | 637 | # CONFIG_SKGE is not set |
| 622 | # CONFIG_SKY2 is not set | 638 | # CONFIG_SKY2 is not set |
| 623 | # CONFIG_SK98LIN is not set | ||
| 624 | # CONFIG_VIA_VELOCITY is not set | 639 | # CONFIG_VIA_VELOCITY is not set |
| 625 | # CONFIG_TIGON3 is not set | 640 | # CONFIG_TIGON3 is not set |
| 626 | # CONFIG_BNX2 is not set | 641 | # CONFIG_BNX2 is not set |
| @@ -640,6 +655,7 @@ CONFIG_NETDEV_10000=y | |||
| 640 | # CONFIG_MLX4_CORE is not set | 655 | # CONFIG_MLX4_CORE is not set |
| 641 | # CONFIG_TEHUTI is not set | 656 | # CONFIG_TEHUTI is not set |
| 642 | # CONFIG_BNX2X is not set | 657 | # CONFIG_BNX2X is not set |
| 658 | # CONFIG_SFC is not set | ||
| 643 | # CONFIG_TR is not set | 659 | # CONFIG_TR is not set |
| 644 | 660 | ||
| 645 | # | 661 | # |
| @@ -647,6 +663,7 @@ CONFIG_NETDEV_10000=y | |||
| 647 | # | 663 | # |
| 648 | # CONFIG_WLAN_PRE80211 is not set | 664 | # CONFIG_WLAN_PRE80211 is not set |
| 649 | # CONFIG_WLAN_80211 is not set | 665 | # CONFIG_WLAN_80211 is not set |
| 666 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 650 | 667 | ||
| 651 | # | 668 | # |
| 652 | # USB Network Adapters | 669 | # USB Network Adapters |
| @@ -711,6 +728,7 @@ CONFIG_VT=y | |||
| 711 | CONFIG_VT_CONSOLE=y | 728 | CONFIG_VT_CONSOLE=y |
| 712 | CONFIG_HW_CONSOLE=y | 729 | CONFIG_HW_CONSOLE=y |
| 713 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 730 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 731 | CONFIG_DEVKMEM=y | ||
| 714 | # CONFIG_SERIAL_NONSTANDARD is not set | 732 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 715 | # CONFIG_NOZOMI is not set | 733 | # CONFIG_NOZOMI is not set |
| 716 | 734 | ||
| @@ -742,7 +760,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 742 | # CONFIG_IPMI_HANDLER is not set | 760 | # CONFIG_IPMI_HANDLER is not set |
| 743 | # CONFIG_HW_RANDOM is not set | 761 | # CONFIG_HW_RANDOM is not set |
| 744 | CONFIG_NVRAM=y | 762 | CONFIG_NVRAM=y |
| 745 | # CONFIG_GEN_RTC is not set | ||
| 746 | # CONFIG_R3964 is not set | 763 | # CONFIG_R3964 is not set |
| 747 | # CONFIG_APPLICOM is not set | 764 | # CONFIG_APPLICOM is not set |
| 748 | # CONFIG_RAW_DRIVER is not set | 765 | # CONFIG_RAW_DRIVER is not set |
| @@ -753,13 +770,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 753 | # CONFIG_I2C_CHARDEV is not set | 770 | # CONFIG_I2C_CHARDEV is not set |
| 754 | 771 | ||
| 755 | # | 772 | # |
| 756 | # I2C Algorithms | ||
| 757 | # | ||
| 758 | # CONFIG_I2C_ALGOBIT is not set | ||
| 759 | # CONFIG_I2C_ALGOPCF is not set | ||
| 760 | # CONFIG_I2C_ALGOPCA is not set | ||
| 761 | |||
| 762 | # | ||
| 763 | # I2C Hardware Bus support | 773 | # I2C Hardware Bus support |
| 764 | # | 774 | # |
| 765 | # CONFIG_I2C_ALI1535 is not set | 775 | # CONFIG_I2C_ALI1535 is not set |
| @@ -786,6 +796,7 @@ CONFIG_I2C_MPC=y | |||
| 786 | # CONFIG_I2C_VIA is not set | 796 | # CONFIG_I2C_VIA is not set |
| 787 | # CONFIG_I2C_VIAPRO is not set | 797 | # CONFIG_I2C_VIAPRO is not set |
| 788 | # CONFIG_I2C_VOODOO3 is not set | 798 | # CONFIG_I2C_VOODOO3 is not set |
| 799 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 789 | 800 | ||
| 790 | # | 801 | # |
| 791 | # Miscellaneous I2C Chip support | 802 | # Miscellaneous I2C Chip support |
| @@ -795,19 +806,13 @@ CONFIG_SENSORS_EEPROM=y | |||
| 795 | # CONFIG_SENSORS_PCF8574 is not set | 806 | # CONFIG_SENSORS_PCF8574 is not set |
| 796 | # CONFIG_PCF8575 is not set | 807 | # CONFIG_PCF8575 is not set |
| 797 | # CONFIG_SENSORS_PCF8591 is not set | 808 | # CONFIG_SENSORS_PCF8591 is not set |
| 798 | # CONFIG_TPS65010 is not set | ||
| 799 | # CONFIG_SENSORS_MAX6875 is not set | 809 | # CONFIG_SENSORS_MAX6875 is not set |
| 800 | # CONFIG_SENSORS_TSL2550 is not set | 810 | # CONFIG_SENSORS_TSL2550 is not set |
| 801 | # CONFIG_I2C_DEBUG_CORE is not set | 811 | # CONFIG_I2C_DEBUG_CORE is not set |
| 802 | # CONFIG_I2C_DEBUG_ALGO is not set | 812 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 803 | # CONFIG_I2C_DEBUG_BUS is not set | 813 | # CONFIG_I2C_DEBUG_BUS is not set |
| 804 | # CONFIG_I2C_DEBUG_CHIP is not set | 814 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 805 | |||
| 806 | # | ||
| 807 | # SPI support | ||
| 808 | # | ||
| 809 | # CONFIG_SPI is not set | 815 | # CONFIG_SPI is not set |
| 810 | # CONFIG_SPI_MASTER is not set | ||
| 811 | # CONFIG_W1 is not set | 816 | # CONFIG_W1 is not set |
| 812 | # CONFIG_POWER_SUPPLY is not set | 817 | # CONFIG_POWER_SUPPLY is not set |
| 813 | # CONFIG_HWMON is not set | 818 | # CONFIG_HWMON is not set |
| @@ -824,13 +829,33 @@ CONFIG_SSB_POSSIBLE=y | |||
| 824 | # Multifunction device drivers | 829 | # Multifunction device drivers |
| 825 | # | 830 | # |
| 826 | # CONFIG_MFD_SM501 is not set | 831 | # CONFIG_MFD_SM501 is not set |
| 832 | # CONFIG_HTC_PASIC3 is not set | ||
| 827 | 833 | ||
| 828 | # | 834 | # |
| 829 | # Multimedia devices | 835 | # Multimedia devices |
| 830 | # | 836 | # |
| 837 | |||
| 838 | # | ||
| 839 | # Multimedia core support | ||
| 840 | # | ||
| 831 | # CONFIG_VIDEO_DEV is not set | 841 | # CONFIG_VIDEO_DEV is not set |
| 832 | CONFIG_DVB_CORE=m | 842 | CONFIG_DVB_CORE=m |
| 833 | # CONFIG_DVB_CORE_ATTACH is not set | 843 | CONFIG_VIDEO_MEDIA=m |
| 844 | |||
| 845 | # | ||
| 846 | # Multimedia drivers | ||
| 847 | # | ||
| 848 | # CONFIG_MEDIA_ATTACH is not set | ||
| 849 | CONFIG_MEDIA_TUNER=m | ||
| 850 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | ||
| 851 | CONFIG_MEDIA_TUNER_SIMPLE=m | ||
| 852 | CONFIG_MEDIA_TUNER_TDA8290=m | ||
| 853 | CONFIG_MEDIA_TUNER_TDA9887=m | ||
| 854 | CONFIG_MEDIA_TUNER_TEA5761=m | ||
| 855 | CONFIG_MEDIA_TUNER_TEA5767=m | ||
| 856 | CONFIG_MEDIA_TUNER_MT20XX=m | ||
| 857 | CONFIG_MEDIA_TUNER_XC2028=m | ||
| 858 | CONFIG_MEDIA_TUNER_XC5000=m | ||
| 834 | CONFIG_DVB_CAPTURE_DRIVERS=y | 859 | CONFIG_DVB_CAPTURE_DRIVERS=y |
| 835 | 860 | ||
| 836 | # | 861 | # |
| @@ -873,14 +898,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 873 | # | 898 | # |
| 874 | # DVB-S (satellite) frontends | 899 | # DVB-S (satellite) frontends |
| 875 | # | 900 | # |
| 876 | # CONFIG_DVB_STV0299 is not set | ||
| 877 | # CONFIG_DVB_CX24110 is not set | 901 | # CONFIG_DVB_CX24110 is not set |
| 878 | # CONFIG_DVB_CX24123 is not set | 902 | # CONFIG_DVB_CX24123 is not set |
| 879 | # CONFIG_DVB_TDA8083 is not set | ||
| 880 | # CONFIG_DVB_MT312 is not set | 903 | # CONFIG_DVB_MT312 is not set |
| 881 | # CONFIG_DVB_VES1X93 is not set | ||
| 882 | # CONFIG_DVB_S5H1420 is not set | 904 | # CONFIG_DVB_S5H1420 is not set |
| 905 | # CONFIG_DVB_STV0299 is not set | ||
| 906 | # CONFIG_DVB_TDA8083 is not set | ||
| 883 | # CONFIG_DVB_TDA10086 is not set | 907 | # CONFIG_DVB_TDA10086 is not set |
| 908 | # CONFIG_DVB_VES1X93 is not set | ||
| 909 | # CONFIG_DVB_TUNER_ITD1000 is not set | ||
| 910 | # CONFIG_DVB_TDA826X is not set | ||
| 911 | # CONFIG_DVB_TUA6100 is not set | ||
| 884 | 912 | ||
| 885 | # | 913 | # |
| 886 | # DVB-T (terrestrial) frontends | 914 | # DVB-T (terrestrial) frontends |
| @@ -898,6 +926,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 898 | # CONFIG_DVB_DIB3000MC is not set | 926 | # CONFIG_DVB_DIB3000MC is not set |
| 899 | # CONFIG_DVB_DIB7000M is not set | 927 | # CONFIG_DVB_DIB7000M is not set |
| 900 | # CONFIG_DVB_DIB7000P is not set | 928 | # CONFIG_DVB_DIB7000P is not set |
| 929 | # CONFIG_DVB_TDA10048 is not set | ||
| 901 | 930 | ||
| 902 | # | 931 | # |
| 903 | # DVB-C (cable) frontends | 932 | # DVB-C (cable) frontends |
| @@ -916,27 +945,21 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 916 | # CONFIG_DVB_BCM3510 is not set | 945 | # CONFIG_DVB_BCM3510 is not set |
| 917 | # CONFIG_DVB_LGDT330X is not set | 946 | # CONFIG_DVB_LGDT330X is not set |
| 918 | # CONFIG_DVB_S5H1409 is not set | 947 | # CONFIG_DVB_S5H1409 is not set |
| 948 | # CONFIG_DVB_AU8522 is not set | ||
| 949 | # CONFIG_DVB_S5H1411 is not set | ||
| 919 | 950 | ||
| 920 | # | 951 | # |
| 921 | # Tuners/PLL support | 952 | # Digital terrestrial only tuners/PLL |
| 922 | # | 953 | # |
| 923 | # CONFIG_DVB_PLL is not set | 954 | # CONFIG_DVB_PLL is not set |
| 924 | # CONFIG_DVB_TDA826X is not set | ||
| 925 | # CONFIG_DVB_TDA827X is not set | ||
| 926 | # CONFIG_DVB_TDA18271 is not set | ||
| 927 | # CONFIG_DVB_TUNER_QT1010 is not set | ||
| 928 | # CONFIG_DVB_TUNER_MT2060 is not set | ||
| 929 | # CONFIG_DVB_TUNER_MT2266 is not set | ||
| 930 | # CONFIG_DVB_TUNER_MT2131 is not set | ||
| 931 | # CONFIG_DVB_TUNER_DIB0070 is not set | 955 | # CONFIG_DVB_TUNER_DIB0070 is not set |
| 932 | # CONFIG_DVB_TUNER_XC5000 is not set | ||
| 933 | 956 | ||
| 934 | # | 957 | # |
| 935 | # Miscellaneous devices | 958 | # SEC control devices for DVB-S |
| 936 | # | 959 | # |
| 937 | # CONFIG_DVB_LNBP21 is not set | 960 | # CONFIG_DVB_LNBP21 is not set |
| 961 | # CONFIG_DVB_ISL6405 is not set | ||
| 938 | # CONFIG_DVB_ISL6421 is not set | 962 | # CONFIG_DVB_ISL6421 is not set |
| 939 | # CONFIG_DVB_TUA6100 is not set | ||
| 940 | CONFIG_DAB=y | 963 | CONFIG_DAB=y |
| 941 | # CONFIG_USB_DABUSB is not set | 964 | # CONFIG_USB_DABUSB is not set |
| 942 | 965 | ||
| @@ -1003,6 +1026,7 @@ CONFIG_SND_AC97_CODEC=y | |||
| 1003 | # CONFIG_SND_AU8810 is not set | 1026 | # CONFIG_SND_AU8810 is not set |
| 1004 | # CONFIG_SND_AU8820 is not set | 1027 | # CONFIG_SND_AU8820 is not set |
| 1005 | # CONFIG_SND_AU8830 is not set | 1028 | # CONFIG_SND_AU8830 is not set |
| 1029 | # CONFIG_SND_AW2 is not set | ||
| 1006 | # CONFIG_SND_AZT3328 is not set | 1030 | # CONFIG_SND_AZT3328 is not set |
| 1007 | # CONFIG_SND_BT87X is not set | 1031 | # CONFIG_SND_BT87X is not set |
| 1008 | # CONFIG_SND_CA0106 is not set | 1032 | # CONFIG_SND_CA0106 is not set |
| @@ -1077,11 +1101,11 @@ CONFIG_SND_INTEL8X0=y | |||
| 1077 | # CONFIG_SND_SOC is not set | 1101 | # CONFIG_SND_SOC is not set |
| 1078 | 1102 | ||
| 1079 | # | 1103 | # |
| 1080 | # SoC Audio support for SuperH | 1104 | # ALSA SoC audio for Freescale SOCs |
| 1081 | # | 1105 | # |
| 1082 | 1106 | ||
| 1083 | # | 1107 | # |
| 1084 | # ALSA SoC audio for Freescale SOCs | 1108 | # SoC Audio for the Texas Instruments OMAP |
| 1085 | # | 1109 | # |
| 1086 | 1110 | ||
| 1087 | # | 1111 | # |
| @@ -1116,16 +1140,20 @@ CONFIG_USB_DEVICEFS=y | |||
| 1116 | CONFIG_USB_DEVICE_CLASS=y | 1140 | CONFIG_USB_DEVICE_CLASS=y |
| 1117 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1141 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1118 | # CONFIG_USB_OTG is not set | 1142 | # CONFIG_USB_OTG is not set |
| 1143 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 1144 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 1119 | 1145 | ||
| 1120 | # | 1146 | # |
| 1121 | # USB Host Controller Drivers | 1147 | # USB Host Controller Drivers |
| 1122 | # | 1148 | # |
| 1149 | # CONFIG_USB_C67X00_HCD is not set | ||
| 1123 | CONFIG_USB_EHCI_HCD=y | 1150 | CONFIG_USB_EHCI_HCD=y |
| 1124 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1151 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 1125 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1152 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1126 | # CONFIG_USB_EHCI_FSL is not set | 1153 | # CONFIG_USB_EHCI_FSL is not set |
| 1127 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1154 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 1128 | # CONFIG_USB_ISP116X_HCD is not set | 1155 | # CONFIG_USB_ISP116X_HCD is not set |
| 1156 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 1129 | CONFIG_USB_OHCI_HCD=y | 1157 | CONFIG_USB_OHCI_HCD=y |
| 1130 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1158 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
| 1131 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | 1159 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y |
| @@ -1143,6 +1171,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1143 | # | 1171 | # |
| 1144 | # CONFIG_USB_ACM is not set | 1172 | # CONFIG_USB_ACM is not set |
| 1145 | # CONFIG_USB_PRINTER is not set | 1173 | # CONFIG_USB_PRINTER is not set |
| 1174 | # CONFIG_USB_WDM is not set | ||
| 1146 | 1175 | ||
| 1147 | # | 1176 | # |
| 1148 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1177 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1162,7 +1191,9 @@ CONFIG_USB_STORAGE=y | |||
| 1162 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1191 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 1163 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 1192 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 1164 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1193 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1194 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
| 1165 | # CONFIG_USB_STORAGE_KARMA is not set | 1195 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1196 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 1166 | # CONFIG_USB_LIBUSUAL is not set | 1197 | # CONFIG_USB_LIBUSUAL is not set |
| 1167 | 1198 | ||
| 1168 | # | 1199 | # |
| @@ -1200,10 +1231,12 @@ CONFIG_USB_MON=y | |||
| 1200 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1231 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1201 | # CONFIG_USB_IOWARRIOR is not set | 1232 | # CONFIG_USB_IOWARRIOR is not set |
| 1202 | # CONFIG_USB_TEST is not set | 1233 | # CONFIG_USB_TEST is not set |
| 1234 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1203 | # CONFIG_USB_GADGET is not set | 1235 | # CONFIG_USB_GADGET is not set |
| 1204 | # CONFIG_MMC is not set | 1236 | # CONFIG_MMC is not set |
| 1205 | # CONFIG_MEMSTICK is not set | 1237 | # CONFIG_MEMSTICK is not set |
| 1206 | # CONFIG_NEW_LEDS is not set | 1238 | # CONFIG_NEW_LEDS is not set |
| 1239 | # CONFIG_ACCESSIBILITY is not set | ||
| 1207 | # CONFIG_INFINIBAND is not set | 1240 | # CONFIG_INFINIBAND is not set |
| 1208 | # CONFIG_EDAC is not set | 1241 | # CONFIG_EDAC is not set |
| 1209 | CONFIG_RTC_LIB=y | 1242 | CONFIG_RTC_LIB=y |
| @@ -1255,11 +1288,8 @@ CONFIG_RTC_DRV_CMOS=y | |||
| 1255 | # | 1288 | # |
| 1256 | # on-CPU RTC drivers | 1289 | # on-CPU RTC drivers |
| 1257 | # | 1290 | # |
| 1291 | # CONFIG_RTC_DRV_PPC is not set | ||
| 1258 | # CONFIG_DMADEVICES is not set | 1292 | # CONFIG_DMADEVICES is not set |
| 1259 | |||
| 1260 | # | ||
| 1261 | # Userspace I/O | ||
| 1262 | # | ||
| 1263 | # CONFIG_UIO is not set | 1293 | # CONFIG_UIO is not set |
| 1264 | 1294 | ||
| 1265 | # | 1295 | # |
| @@ -1279,7 +1309,6 @@ CONFIG_FS_MBCACHE=y | |||
| 1279 | # CONFIG_JFS_FS is not set | 1309 | # CONFIG_JFS_FS is not set |
| 1280 | # CONFIG_FS_POSIX_ACL is not set | 1310 | # CONFIG_FS_POSIX_ACL is not set |
| 1281 | # CONFIG_XFS_FS is not set | 1311 | # CONFIG_XFS_FS is not set |
| 1282 | # CONFIG_GFS2_FS is not set | ||
| 1283 | # CONFIG_OCFS2_FS is not set | 1312 | # CONFIG_OCFS2_FS is not set |
| 1284 | CONFIG_DNOTIFY=y | 1313 | CONFIG_DNOTIFY=y |
| 1285 | CONFIG_INOTIFY=y | 1314 | CONFIG_INOTIFY=y |
| @@ -1349,10 +1378,9 @@ CONFIG_NFS_FS=y | |||
| 1349 | CONFIG_NFS_V3=y | 1378 | CONFIG_NFS_V3=y |
| 1350 | # CONFIG_NFS_V3_ACL is not set | 1379 | # CONFIG_NFS_V3_ACL is not set |
| 1351 | CONFIG_NFS_V4=y | 1380 | CONFIG_NFS_V4=y |
| 1352 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1353 | CONFIG_NFSD=y | 1381 | CONFIG_NFSD=y |
| 1354 | # CONFIG_NFSD_V3 is not set | 1382 | # CONFIG_NFSD_V3 is not set |
| 1355 | CONFIG_NFSD_TCP=y | 1383 | # CONFIG_NFSD_V4 is not set |
| 1356 | CONFIG_ROOT_NFS=y | 1384 | CONFIG_ROOT_NFS=y |
| 1357 | CONFIG_LOCKD=y | 1385 | CONFIG_LOCKD=y |
| 1358 | CONFIG_LOCKD_V4=y | 1386 | CONFIG_LOCKD_V4=y |
| @@ -1436,9 +1464,10 @@ CONFIG_NLS_UTF8=m | |||
| 1436 | # Library routines | 1464 | # Library routines |
| 1437 | # | 1465 | # |
| 1438 | CONFIG_BITREVERSE=y | 1466 | CONFIG_BITREVERSE=y |
| 1467 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1439 | # CONFIG_CRC_CCITT is not set | 1468 | # CONFIG_CRC_CCITT is not set |
| 1440 | # CONFIG_CRC16 is not set | 1469 | # CONFIG_CRC16 is not set |
| 1441 | # CONFIG_CRC_ITU_T is not set | 1470 | CONFIG_CRC_ITU_T=m |
| 1442 | CONFIG_CRC32=y | 1471 | CONFIG_CRC32=y |
| 1443 | # CONFIG_CRC7 is not set | 1472 | # CONFIG_CRC7 is not set |
| 1444 | CONFIG_LIBCRC32C=m | 1473 | CONFIG_LIBCRC32C=m |
| @@ -1447,6 +1476,7 @@ CONFIG_PLIST=y | |||
| 1447 | CONFIG_HAS_IOMEM=y | 1476 | CONFIG_HAS_IOMEM=y |
| 1448 | CONFIG_HAS_IOPORT=y | 1477 | CONFIG_HAS_IOPORT=y |
| 1449 | CONFIG_HAS_DMA=y | 1478 | CONFIG_HAS_DMA=y |
| 1479 | CONFIG_HAVE_LMB=y | ||
| 1450 | 1480 | ||
| 1451 | # | 1481 | # |
| 1452 | # Kernel hacking | 1482 | # Kernel hacking |
| @@ -1454,6 +1484,7 @@ CONFIG_HAS_DMA=y | |||
| 1454 | # CONFIG_PRINTK_TIME is not set | 1484 | # CONFIG_PRINTK_TIME is not set |
| 1455 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1485 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1456 | CONFIG_ENABLE_MUST_CHECK=y | 1486 | CONFIG_ENABLE_MUST_CHECK=y |
| 1487 | CONFIG_FRAME_WARN=1024 | ||
| 1457 | # CONFIG_MAGIC_SYSRQ is not set | 1488 | # CONFIG_MAGIC_SYSRQ is not set |
| 1458 | # CONFIG_UNUSED_SYMBOLS is not set | 1489 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1459 | # CONFIG_DEBUG_FS is not set | 1490 | # CONFIG_DEBUG_FS is not set |
| @@ -1464,6 +1495,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1464 | CONFIG_SCHED_DEBUG=y | 1495 | CONFIG_SCHED_DEBUG=y |
| 1465 | # CONFIG_SCHEDSTATS is not set | 1496 | # CONFIG_SCHEDSTATS is not set |
| 1466 | # CONFIG_TIMER_STATS is not set | 1497 | # CONFIG_TIMER_STATS is not set |
| 1498 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1467 | # CONFIG_SLUB_DEBUG_ON is not set | 1499 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1468 | # CONFIG_SLUB_STATS is not set | 1500 | # CONFIG_SLUB_STATS is not set |
| 1469 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1501 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -1477,6 +1509,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1477 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1509 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1478 | CONFIG_DEBUG_INFO=y | 1510 | CONFIG_DEBUG_INFO=y |
| 1479 | # CONFIG_DEBUG_VM is not set | 1511 | # CONFIG_DEBUG_VM is not set |
| 1512 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1480 | # CONFIG_DEBUG_LIST is not set | 1513 | # CONFIG_DEBUG_LIST is not set |
| 1481 | # CONFIG_DEBUG_SG is not set | 1514 | # CONFIG_DEBUG_SG is not set |
| 1482 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1515 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1488,6 +1521,7 @@ CONFIG_DEBUG_INFO=y | |||
| 1488 | # CONFIG_DEBUG_STACK_USAGE is not set | 1521 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1489 | # CONFIG_DEBUG_PAGEALLOC is not set | 1522 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1490 | # CONFIG_DEBUGGER is not set | 1523 | # CONFIG_DEBUGGER is not set |
| 1524 | # CONFIG_IRQSTACKS is not set | ||
| 1491 | # CONFIG_BDI_SWITCH is not set | 1525 | # CONFIG_BDI_SWITCH is not set |
| 1492 | # CONFIG_PPC_EARLY_DEBUG is not set | 1526 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1493 | 1527 | ||
| @@ -1498,52 +1532,82 @@ CONFIG_DEBUG_INFO=y | |||
| 1498 | # CONFIG_SECURITY is not set | 1532 | # CONFIG_SECURITY is not set |
| 1499 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1533 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1500 | CONFIG_CRYPTO=y | 1534 | CONFIG_CRYPTO=y |
| 1535 | |||
| 1536 | # | ||
| 1537 | # Crypto core or helper | ||
| 1538 | # | ||
| 1501 | CONFIG_CRYPTO_ALGAPI=y | 1539 | CONFIG_CRYPTO_ALGAPI=y |
| 1502 | CONFIG_CRYPTO_BLKCIPHER=y | 1540 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1503 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1504 | CONFIG_CRYPTO_HASH=y | 1541 | CONFIG_CRYPTO_HASH=y |
| 1505 | CONFIG_CRYPTO_MANAGER=y | 1542 | CONFIG_CRYPTO_MANAGER=y |
| 1543 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1544 | # CONFIG_CRYPTO_NULL is not set | ||
| 1545 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1546 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1547 | # CONFIG_CRYPTO_TEST is not set | ||
| 1548 | |||
| 1549 | # | ||
| 1550 | # Authenticated Encryption with Associated Data | ||
| 1551 | # | ||
| 1552 | # CONFIG_CRYPTO_CCM is not set | ||
| 1553 | # CONFIG_CRYPTO_GCM is not set | ||
| 1554 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1555 | |||
| 1556 | # | ||
| 1557 | # Block modes | ||
| 1558 | # | ||
| 1559 | CONFIG_CRYPTO_CBC=y | ||
| 1560 | # CONFIG_CRYPTO_CTR is not set | ||
| 1561 | # CONFIG_CRYPTO_CTS is not set | ||
| 1562 | # CONFIG_CRYPTO_ECB is not set | ||
| 1563 | # CONFIG_CRYPTO_LRW is not set | ||
| 1564 | CONFIG_CRYPTO_PCBC=m | ||
| 1565 | # CONFIG_CRYPTO_XTS is not set | ||
| 1566 | |||
| 1567 | # | ||
| 1568 | # Hash modes | ||
| 1569 | # | ||
| 1506 | CONFIG_CRYPTO_HMAC=y | 1570 | CONFIG_CRYPTO_HMAC=y |
| 1507 | # CONFIG_CRYPTO_XCBC is not set | 1571 | # CONFIG_CRYPTO_XCBC is not set |
| 1508 | # CONFIG_CRYPTO_NULL is not set | 1572 | |
| 1573 | # | ||
| 1574 | # Digest | ||
| 1575 | # | ||
| 1576 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1509 | # CONFIG_CRYPTO_MD4 is not set | 1577 | # CONFIG_CRYPTO_MD4 is not set |
| 1510 | CONFIG_CRYPTO_MD5=y | 1578 | CONFIG_CRYPTO_MD5=y |
| 1579 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1511 | CONFIG_CRYPTO_SHA1=m | 1580 | CONFIG_CRYPTO_SHA1=m |
| 1512 | # CONFIG_CRYPTO_SHA256 is not set | 1581 | # CONFIG_CRYPTO_SHA256 is not set |
| 1513 | # CONFIG_CRYPTO_SHA512 is not set | 1582 | # CONFIG_CRYPTO_SHA512 is not set |
| 1514 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1515 | # CONFIG_CRYPTO_TGR192 is not set | 1583 | # CONFIG_CRYPTO_TGR192 is not set |
| 1516 | # CONFIG_CRYPTO_GF128MUL is not set | 1584 | # CONFIG_CRYPTO_WP512 is not set |
| 1517 | # CONFIG_CRYPTO_ECB is not set | 1585 | |
| 1518 | CONFIG_CRYPTO_CBC=y | 1586 | # |
| 1519 | CONFIG_CRYPTO_PCBC=m | 1587 | # Ciphers |
| 1520 | # CONFIG_CRYPTO_LRW is not set | 1588 | # |
| 1521 | # CONFIG_CRYPTO_XTS is not set | ||
| 1522 | # CONFIG_CRYPTO_CTR is not set | ||
| 1523 | # CONFIG_CRYPTO_GCM is not set | ||
| 1524 | # CONFIG_CRYPTO_CCM is not set | ||
| 1525 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1526 | CONFIG_CRYPTO_DES=y | ||
| 1527 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1528 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1529 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1530 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1531 | # CONFIG_CRYPTO_AES is not set | 1589 | # CONFIG_CRYPTO_AES is not set |
| 1590 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1591 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1592 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1593 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1532 | # CONFIG_CRYPTO_CAST5 is not set | 1594 | # CONFIG_CRYPTO_CAST5 is not set |
| 1533 | # CONFIG_CRYPTO_CAST6 is not set | 1595 | # CONFIG_CRYPTO_CAST6 is not set |
| 1534 | # CONFIG_CRYPTO_TEA is not set | 1596 | CONFIG_CRYPTO_DES=y |
| 1535 | # CONFIG_CRYPTO_ARC4 is not set | 1597 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1536 | # CONFIG_CRYPTO_KHAZAD is not set | 1598 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1537 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1538 | # CONFIG_CRYPTO_SEED is not set | ||
| 1539 | # CONFIG_CRYPTO_SALSA20 is not set | 1599 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1600 | # CONFIG_CRYPTO_SEED is not set | ||
| 1601 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1602 | # CONFIG_CRYPTO_TEA is not set | ||
| 1603 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1604 | |||
| 1605 | # | ||
| 1606 | # Compression | ||
| 1607 | # | ||
| 1540 | # CONFIG_CRYPTO_DEFLATE is not set | 1608 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1541 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1542 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1543 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1544 | # CONFIG_CRYPTO_TEST is not set | ||
| 1545 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1546 | # CONFIG_CRYPTO_LZO is not set | 1609 | # CONFIG_CRYPTO_LZO is not set |
| 1547 | CONFIG_CRYPTO_HW=y | 1610 | CONFIG_CRYPTO_HW=y |
| 1548 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1611 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1549 | # CONFIG_PPC_CLOCK is not set | 1612 | # CONFIG_PPC_CLOCK is not set |
| 1613 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig b/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig index a469fe918816..b09f0032a10b 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:30 2008 | 4 | # Mon Jun 9 08:52:36 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -87,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 87 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 90 | CONFIG_KALLSYMS=y | 93 | CONFIG_KALLSYMS=y |
| 91 | # CONFIG_KALLSYMS_ALL is not set | 94 | # CONFIG_KALLSYMS_ALL is not set |
| 92 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -113,6 +116,7 @@ CONFIG_SLUB=y | |||
| 113 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
| 114 | CONFIG_HAVE_KPROBES=y | 117 | CONFIG_HAVE_KPROBES=y |
| 115 | CONFIG_HAVE_KRETPROBES=y | 118 | CONFIG_HAVE_KRETPROBES=y |
| 119 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 116 | CONFIG_PROC_PAGE_MONITOR=y | 120 | CONFIG_PROC_PAGE_MONITOR=y |
| 117 | CONFIG_SLABINFO=y | 121 | CONFIG_SLABINFO=y |
| 118 | CONFIG_RT_MUTEXES=y | 122 | CONFIG_RT_MUTEXES=y |
| @@ -153,6 +157,7 @@ CONFIG_MPC85xx=y | |||
| 153 | CONFIG_MPC85xx_CDS=y | 157 | CONFIG_MPC85xx_CDS=y |
| 154 | # CONFIG_MPC85xx_MDS is not set | 158 | # CONFIG_MPC85xx_MDS is not set |
| 155 | # CONFIG_MPC85xx_DS is not set | 159 | # CONFIG_MPC85xx_DS is not set |
| 160 | # CONFIG_KSI8560 is not set | ||
| 156 | # CONFIG_STX_GP3 is not set | 161 | # CONFIG_STX_GP3 is not set |
| 157 | # CONFIG_TQM8540 is not set | 162 | # CONFIG_TQM8540 is not set |
| 158 | # CONFIG_TQM8541 is not set | 163 | # CONFIG_TQM8541 is not set |
| @@ -208,11 +213,13 @@ CONFIG_FLATMEM=y | |||
| 208 | CONFIG_FLAT_NODE_MEM_MAP=y | 213 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 209 | # CONFIG_SPARSEMEM_STATIC is not set | 214 | # CONFIG_SPARSEMEM_STATIC is not set |
| 210 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 215 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 216 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 211 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 217 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 212 | # CONFIG_RESOURCES_64BIT is not set | 218 | # CONFIG_RESOURCES_64BIT is not set |
| 213 | CONFIG_ZONE_DMA_FLAG=1 | 219 | CONFIG_ZONE_DMA_FLAG=1 |
| 214 | CONFIG_BOUNCE=y | 220 | CONFIG_BOUNCE=y |
| 215 | CONFIG_VIRT_TO_BUS=y | 221 | CONFIG_VIRT_TO_BUS=y |
| 222 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 216 | CONFIG_PROC_DEVICETREE=y | 223 | CONFIG_PROC_DEVICETREE=y |
| 217 | # CONFIG_CMDLINE_BOOL is not set | 224 | # CONFIG_CMDLINE_BOOL is not set |
| 218 | # CONFIG_PM is not set | 225 | # CONFIG_PM is not set |
| @@ -236,6 +243,7 @@ CONFIG_PCI_LEGACY=y | |||
| 236 | # CONFIG_PCI_DEBUG is not set | 243 | # CONFIG_PCI_DEBUG is not set |
| 237 | # CONFIG_PCCARD is not set | 244 | # CONFIG_PCCARD is not set |
| 238 | # CONFIG_HOTPLUG_PCI is not set | 245 | # CONFIG_HOTPLUG_PCI is not set |
| 246 | # CONFIG_HAS_RAPIDIO is not set | ||
| 239 | 247 | ||
| 240 | # | 248 | # |
| 241 | # Advanced setup | 249 | # Advanced setup |
| @@ -245,11 +253,12 @@ CONFIG_PCI_LEGACY=y | |||
| 245 | # | 253 | # |
| 246 | # Default settings for advanced configuration options are used | 254 | # Default settings for advanced configuration options are used |
| 247 | # | 255 | # |
| 248 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 249 | CONFIG_LOWMEM_SIZE=0x30000000 | 256 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 257 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 250 | CONFIG_KERNEL_START=0xc0000000 | 258 | CONFIG_KERNEL_START=0xc0000000 |
| 259 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 260 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 251 | CONFIG_TASK_SIZE=0xc0000000 | 261 | CONFIG_TASK_SIZE=0xc0000000 |
| 252 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 253 | 262 | ||
| 254 | # | 263 | # |
| 255 | # Networking | 264 | # Networking |
| @@ -297,8 +306,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 297 | CONFIG_DEFAULT_TCP_CONG="cubic" | 306 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 298 | # CONFIG_TCP_MD5SIG is not set | 307 | # CONFIG_TCP_MD5SIG is not set |
| 299 | # CONFIG_IPV6 is not set | 308 | # CONFIG_IPV6 is not set |
| 300 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 301 | # CONFIG_INET6_TUNNEL is not set | ||
| 302 | # CONFIG_NETWORK_SECMARK is not set | 309 | # CONFIG_NETWORK_SECMARK is not set |
| 303 | # CONFIG_NETFILTER is not set | 310 | # CONFIG_NETFILTER is not set |
| 304 | # CONFIG_IP_DCCP is not set | 311 | # CONFIG_IP_DCCP is not set |
| @@ -437,7 +444,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 437 | CONFIG_BLK_DEV_VIA82CXXX=y | 444 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 438 | # CONFIG_BLK_DEV_TC86C001 is not set | 445 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 439 | CONFIG_BLK_DEV_IDEDMA=y | 446 | CONFIG_BLK_DEV_IDEDMA=y |
| 440 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 447 | # CONFIG_BLK_DEV_HD_ONLY is not set |
| 441 | # CONFIG_BLK_DEV_HD is not set | 448 | # CONFIG_BLK_DEV_HD is not set |
| 442 | 449 | ||
| 443 | # | 450 | # |
| @@ -515,7 +522,6 @@ CONFIG_E1000_NAPI=y | |||
| 515 | # CONFIG_SIS190 is not set | 522 | # CONFIG_SIS190 is not set |
| 516 | # CONFIG_SKGE is not set | 523 | # CONFIG_SKGE is not set |
| 517 | # CONFIG_SKY2 is not set | 524 | # CONFIG_SKY2 is not set |
| 518 | # CONFIG_SK98LIN is not set | ||
| 519 | # CONFIG_VIA_VELOCITY is not set | 525 | # CONFIG_VIA_VELOCITY is not set |
| 520 | # CONFIG_TIGON3 is not set | 526 | # CONFIG_TIGON3 is not set |
| 521 | # CONFIG_BNX2 is not set | 527 | # CONFIG_BNX2 is not set |
| @@ -535,6 +541,7 @@ CONFIG_NETDEV_10000=y | |||
| 535 | # CONFIG_MLX4_CORE is not set | 541 | # CONFIG_MLX4_CORE is not set |
| 536 | # CONFIG_TEHUTI is not set | 542 | # CONFIG_TEHUTI is not set |
| 537 | # CONFIG_BNX2X is not set | 543 | # CONFIG_BNX2X is not set |
| 544 | # CONFIG_SFC is not set | ||
| 538 | # CONFIG_TR is not set | 545 | # CONFIG_TR is not set |
| 539 | 546 | ||
| 540 | # | 547 | # |
| @@ -542,6 +549,7 @@ CONFIG_NETDEV_10000=y | |||
| 542 | # | 549 | # |
| 543 | # CONFIG_WLAN_PRE80211 is not set | 550 | # CONFIG_WLAN_PRE80211 is not set |
| 544 | # CONFIG_WLAN_80211 is not set | 551 | # CONFIG_WLAN_80211 is not set |
| 552 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 545 | # CONFIG_WAN is not set | 553 | # CONFIG_WAN is not set |
| 546 | # CONFIG_FDDI is not set | 554 | # CONFIG_FDDI is not set |
| 547 | # CONFIG_HIPPI is not set | 555 | # CONFIG_HIPPI is not set |
| @@ -588,6 +596,7 @@ CONFIG_INPUT=y | |||
| 588 | # Character devices | 596 | # Character devices |
| 589 | # | 597 | # |
| 590 | # CONFIG_VT is not set | 598 | # CONFIG_VT is not set |
| 599 | CONFIG_DEVKMEM=y | ||
| 591 | # CONFIG_SERIAL_NONSTANDARD is not set | 600 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 592 | # CONFIG_NOZOMI is not set | 601 | # CONFIG_NOZOMI is not set |
| 593 | 602 | ||
| @@ -624,12 +633,7 @@ CONFIG_GEN_RTC=y | |||
| 624 | # CONFIG_TCG_TPM is not set | 633 | # CONFIG_TCG_TPM is not set |
| 625 | CONFIG_DEVPORT=y | 634 | CONFIG_DEVPORT=y |
| 626 | # CONFIG_I2C is not set | 635 | # CONFIG_I2C is not set |
| 627 | |||
| 628 | # | ||
| 629 | # SPI support | ||
| 630 | # | ||
| 631 | # CONFIG_SPI is not set | 636 | # CONFIG_SPI is not set |
| 632 | # CONFIG_SPI_MASTER is not set | ||
| 633 | # CONFIG_W1 is not set | 637 | # CONFIG_W1 is not set |
| 634 | # CONFIG_POWER_SUPPLY is not set | 638 | # CONFIG_POWER_SUPPLY is not set |
| 635 | CONFIG_HWMON=y | 639 | CONFIG_HWMON=y |
| @@ -662,12 +666,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 662 | # Multifunction device drivers | 666 | # Multifunction device drivers |
| 663 | # | 667 | # |
| 664 | # CONFIG_MFD_SM501 is not set | 668 | # CONFIG_MFD_SM501 is not set |
| 669 | # CONFIG_HTC_PASIC3 is not set | ||
| 665 | 670 | ||
| 666 | # | 671 | # |
| 667 | # Multimedia devices | 672 | # Multimedia devices |
| 668 | # | 673 | # |
| 674 | |||
| 675 | # | ||
| 676 | # Multimedia core support | ||
| 677 | # | ||
| 669 | # CONFIG_VIDEO_DEV is not set | 678 | # CONFIG_VIDEO_DEV is not set |
| 670 | # CONFIG_DVB_CORE is not set | 679 | # CONFIG_DVB_CORE is not set |
| 680 | # CONFIG_VIDEO_MEDIA is not set | ||
| 681 | |||
| 682 | # | ||
| 683 | # Multimedia drivers | ||
| 684 | # | ||
| 671 | CONFIG_DAB=y | 685 | CONFIG_DAB=y |
| 672 | 686 | ||
| 673 | # | 687 | # |
| @@ -698,6 +712,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 698 | CONFIG_USB_ARCH_HAS_OHCI=y | 712 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 699 | CONFIG_USB_ARCH_HAS_EHCI=y | 713 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 700 | # CONFIG_USB is not set | 714 | # CONFIG_USB is not set |
| 715 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 716 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 701 | 717 | ||
| 702 | # | 718 | # |
| 703 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 719 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -706,14 +722,11 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 706 | # CONFIG_MMC is not set | 722 | # CONFIG_MMC is not set |
| 707 | # CONFIG_MEMSTICK is not set | 723 | # CONFIG_MEMSTICK is not set |
| 708 | # CONFIG_NEW_LEDS is not set | 724 | # CONFIG_NEW_LEDS is not set |
| 725 | # CONFIG_ACCESSIBILITY is not set | ||
| 709 | # CONFIG_INFINIBAND is not set | 726 | # CONFIG_INFINIBAND is not set |
| 710 | # CONFIG_EDAC is not set | 727 | # CONFIG_EDAC is not set |
| 711 | # CONFIG_RTC_CLASS is not set | 728 | # CONFIG_RTC_CLASS is not set |
| 712 | # CONFIG_DMADEVICES is not set | 729 | # CONFIG_DMADEVICES is not set |
| 713 | |||
| 714 | # | ||
| 715 | # Userspace I/O | ||
| 716 | # | ||
| 717 | # CONFIG_UIO is not set | 730 | # CONFIG_UIO is not set |
| 718 | 731 | ||
| 719 | # | 732 | # |
| @@ -733,7 +746,6 @@ CONFIG_FS_MBCACHE=y | |||
| 733 | # CONFIG_JFS_FS is not set | 746 | # CONFIG_JFS_FS is not set |
| 734 | # CONFIG_FS_POSIX_ACL is not set | 747 | # CONFIG_FS_POSIX_ACL is not set |
| 735 | # CONFIG_XFS_FS is not set | 748 | # CONFIG_XFS_FS is not set |
| 736 | # CONFIG_GFS2_FS is not set | ||
| 737 | # CONFIG_OCFS2_FS is not set | 749 | # CONFIG_OCFS2_FS is not set |
| 738 | CONFIG_DNOTIFY=y | 750 | CONFIG_DNOTIFY=y |
| 739 | CONFIG_INOTIFY=y | 751 | CONFIG_INOTIFY=y |
| @@ -790,7 +802,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 790 | CONFIG_NFS_FS=y | 802 | CONFIG_NFS_FS=y |
| 791 | # CONFIG_NFS_V3 is not set | 803 | # CONFIG_NFS_V3 is not set |
| 792 | # CONFIG_NFS_V4 is not set | 804 | # CONFIG_NFS_V4 is not set |
| 793 | # CONFIG_NFS_DIRECTIO is not set | ||
| 794 | # CONFIG_NFSD is not set | 805 | # CONFIG_NFSD is not set |
| 795 | CONFIG_ROOT_NFS=y | 806 | CONFIG_ROOT_NFS=y |
| 796 | CONFIG_LOCKD=y | 807 | CONFIG_LOCKD=y |
| @@ -829,6 +840,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 829 | # Library routines | 840 | # Library routines |
| 830 | # | 841 | # |
| 831 | CONFIG_BITREVERSE=y | 842 | CONFIG_BITREVERSE=y |
| 843 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 832 | # CONFIG_CRC_CCITT is not set | 844 | # CONFIG_CRC_CCITT is not set |
| 833 | # CONFIG_CRC16 is not set | 845 | # CONFIG_CRC16 is not set |
| 834 | # CONFIG_CRC_ITU_T is not set | 846 | # CONFIG_CRC_ITU_T is not set |
| @@ -839,6 +851,7 @@ CONFIG_PLIST=y | |||
| 839 | CONFIG_HAS_IOMEM=y | 851 | CONFIG_HAS_IOMEM=y |
| 840 | CONFIG_HAS_IOPORT=y | 852 | CONFIG_HAS_IOPORT=y |
| 841 | CONFIG_HAS_DMA=y | 853 | CONFIG_HAS_DMA=y |
| 854 | CONFIG_HAVE_LMB=y | ||
| 842 | 855 | ||
| 843 | # | 856 | # |
| 844 | # Kernel hacking | 857 | # Kernel hacking |
| @@ -846,6 +859,7 @@ CONFIG_HAS_DMA=y | |||
| 846 | # CONFIG_PRINTK_TIME is not set | 859 | # CONFIG_PRINTK_TIME is not set |
| 847 | CONFIG_ENABLE_WARN_DEPRECATED=y | 860 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 848 | CONFIG_ENABLE_MUST_CHECK=y | 861 | CONFIG_ENABLE_MUST_CHECK=y |
| 862 | CONFIG_FRAME_WARN=1024 | ||
| 849 | # CONFIG_MAGIC_SYSRQ is not set | 863 | # CONFIG_MAGIC_SYSRQ is not set |
| 850 | # CONFIG_UNUSED_SYMBOLS is not set | 864 | # CONFIG_UNUSED_SYMBOLS is not set |
| 851 | # CONFIG_DEBUG_FS is not set | 865 | # CONFIG_DEBUG_FS is not set |
| @@ -856,6 +870,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 856 | CONFIG_SCHED_DEBUG=y | 870 | CONFIG_SCHED_DEBUG=y |
| 857 | # CONFIG_SCHEDSTATS is not set | 871 | # CONFIG_SCHEDSTATS is not set |
| 858 | # CONFIG_TIMER_STATS is not set | 872 | # CONFIG_TIMER_STATS is not set |
| 873 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 859 | # CONFIG_SLUB_DEBUG_ON is not set | 874 | # CONFIG_SLUB_DEBUG_ON is not set |
| 860 | # CONFIG_SLUB_STATS is not set | 875 | # CONFIG_SLUB_STATS is not set |
| 861 | # CONFIG_DEBUG_RT_MUTEXES is not set | 876 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -868,6 +883,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 868 | # CONFIG_DEBUG_BUGVERBOSE is not set | 883 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 869 | # CONFIG_DEBUG_INFO is not set | 884 | # CONFIG_DEBUG_INFO is not set |
| 870 | # CONFIG_DEBUG_VM is not set | 885 | # CONFIG_DEBUG_VM is not set |
| 886 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 871 | # CONFIG_DEBUG_LIST is not set | 887 | # CONFIG_DEBUG_LIST is not set |
| 872 | # CONFIG_DEBUG_SG is not set | 888 | # CONFIG_DEBUG_SG is not set |
| 873 | # CONFIG_BOOT_PRINTK_DELAY is not set | 889 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -878,6 +894,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 878 | # CONFIG_DEBUG_STACK_USAGE is not set | 894 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 879 | # CONFIG_DEBUG_PAGEALLOC is not set | 895 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 880 | # CONFIG_DEBUGGER is not set | 896 | # CONFIG_DEBUGGER is not set |
| 897 | # CONFIG_IRQSTACKS is not set | ||
| 881 | # CONFIG_BDI_SWITCH is not set | 898 | # CONFIG_BDI_SWITCH is not set |
| 882 | # CONFIG_PPC_EARLY_DEBUG is not set | 899 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 883 | 900 | ||
| @@ -888,48 +905,78 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 888 | # CONFIG_SECURITY is not set | 905 | # CONFIG_SECURITY is not set |
| 889 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 906 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 890 | CONFIG_CRYPTO=y | 907 | CONFIG_CRYPTO=y |
| 891 | # CONFIG_CRYPTO_SEQIV is not set | 908 | |
| 909 | # | ||
| 910 | # Crypto core or helper | ||
| 911 | # | ||
| 892 | # CONFIG_CRYPTO_MANAGER is not set | 912 | # CONFIG_CRYPTO_MANAGER is not set |
| 913 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 914 | # CONFIG_CRYPTO_NULL is not set | ||
| 915 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 916 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 917 | |||
| 918 | # | ||
| 919 | # Authenticated Encryption with Associated Data | ||
| 920 | # | ||
| 921 | # CONFIG_CRYPTO_CCM is not set | ||
| 922 | # CONFIG_CRYPTO_GCM is not set | ||
| 923 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 924 | |||
| 925 | # | ||
| 926 | # Block modes | ||
| 927 | # | ||
| 928 | # CONFIG_CRYPTO_CBC is not set | ||
| 929 | # CONFIG_CRYPTO_CTR is not set | ||
| 930 | # CONFIG_CRYPTO_CTS is not set | ||
| 931 | # CONFIG_CRYPTO_ECB is not set | ||
| 932 | # CONFIG_CRYPTO_LRW is not set | ||
| 933 | # CONFIG_CRYPTO_PCBC is not set | ||
| 934 | # CONFIG_CRYPTO_XTS is not set | ||
| 935 | |||
| 936 | # | ||
| 937 | # Hash modes | ||
| 938 | # | ||
| 893 | # CONFIG_CRYPTO_HMAC is not set | 939 | # CONFIG_CRYPTO_HMAC is not set |
| 894 | # CONFIG_CRYPTO_XCBC is not set | 940 | # CONFIG_CRYPTO_XCBC is not set |
| 895 | # CONFIG_CRYPTO_NULL is not set | 941 | |
| 942 | # | ||
| 943 | # Digest | ||
| 944 | # | ||
| 945 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 896 | # CONFIG_CRYPTO_MD4 is not set | 946 | # CONFIG_CRYPTO_MD4 is not set |
| 897 | # CONFIG_CRYPTO_MD5 is not set | 947 | # CONFIG_CRYPTO_MD5 is not set |
| 948 | # CONFIG_CRYPTO_MICHAEL_MIC 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 |
| 901 | # CONFIG_CRYPTO_WP512 is not set | ||
| 902 | # CONFIG_CRYPTO_TGR192 is not set | 952 | # CONFIG_CRYPTO_TGR192 is not set |
| 903 | # CONFIG_CRYPTO_GF128MUL is not set | 953 | # CONFIG_CRYPTO_WP512 is not set |
| 904 | # CONFIG_CRYPTO_ECB is not set | 954 | |
| 905 | # CONFIG_CRYPTO_CBC is not set | 955 | # |
| 906 | # CONFIG_CRYPTO_PCBC is not set | 956 | # Ciphers |
| 907 | # CONFIG_CRYPTO_LRW is not set | 957 | # |
| 908 | # CONFIG_CRYPTO_XTS is not set | ||
| 909 | # CONFIG_CRYPTO_CTR is not set | ||
| 910 | # CONFIG_CRYPTO_GCM is not set | ||
| 911 | # CONFIG_CRYPTO_CCM is not set | ||
| 912 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 913 | # CONFIG_CRYPTO_DES is not set | ||
| 914 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 915 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 916 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 917 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 918 | # CONFIG_CRYPTO_AES is not set | 958 | # CONFIG_CRYPTO_AES is not set |
| 959 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 960 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 961 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 962 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 919 | # CONFIG_CRYPTO_CAST5 is not set | 963 | # CONFIG_CRYPTO_CAST5 is not set |
| 920 | # CONFIG_CRYPTO_CAST6 is not set | 964 | # CONFIG_CRYPTO_CAST6 is not set |
| 921 | # CONFIG_CRYPTO_TEA is not set | 965 | # CONFIG_CRYPTO_DES is not set |
| 922 | # CONFIG_CRYPTO_ARC4 is not set | 966 | # CONFIG_CRYPTO_FCRYPT is not set |
| 923 | # CONFIG_CRYPTO_KHAZAD is not set | 967 | # CONFIG_CRYPTO_KHAZAD is not set |
| 924 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 925 | # CONFIG_CRYPTO_SEED is not set | ||
| 926 | # CONFIG_CRYPTO_SALSA20 is not set | 968 | # CONFIG_CRYPTO_SALSA20 is not set |
| 969 | # CONFIG_CRYPTO_SEED is not set | ||
| 970 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 971 | # CONFIG_CRYPTO_TEA is not set | ||
| 972 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 973 | |||
| 974 | # | ||
| 975 | # Compression | ||
| 976 | # | ||
| 927 | # CONFIG_CRYPTO_DEFLATE is not set | 977 | # CONFIG_CRYPTO_DEFLATE is not set |
| 928 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 929 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 930 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 931 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 932 | # CONFIG_CRYPTO_LZO is not set | 978 | # CONFIG_CRYPTO_LZO is not set |
| 933 | CONFIG_CRYPTO_HW=y | 979 | CONFIG_CRYPTO_HW=y |
| 934 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 980 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 935 | # CONFIG_PPC_CLOCK is not set | 981 | # CONFIG_PPC_CLOCK is not set |
| 982 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/sbc8548_defconfig b/arch/powerpc/configs/85xx/sbc8548_defconfig index 67f67978c742..24f7f44b4821 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:39 2008 | 4 | # Mon Jun 9 08:52:37 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -87,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 87 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 90 | CONFIG_KALLSYMS=y | 93 | CONFIG_KALLSYMS=y |
| 91 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 94 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 92 | CONFIG_HOTPLUG=y | 95 | CONFIG_HOTPLUG=y |
| @@ -111,6 +114,7 @@ CONFIG_SLAB=y | |||
| 111 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
| 112 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 118 | CONFIG_PROC_PAGE_MONITOR=y |
| 115 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
| 116 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
| @@ -151,6 +155,7 @@ CONFIG_MPC85xx=y | |||
| 151 | # CONFIG_MPC85xx_CDS is not set | 155 | # CONFIG_MPC85xx_CDS is not set |
| 152 | # CONFIG_MPC85xx_MDS is not set | 156 | # CONFIG_MPC85xx_MDS is not set |
| 153 | # CONFIG_MPC85xx_DS is not set | 157 | # CONFIG_MPC85xx_DS is not set |
| 158 | # CONFIG_KSI8560 is not set | ||
| 154 | # CONFIG_STX_GP3 is not set | 159 | # CONFIG_STX_GP3 is not set |
| 155 | # CONFIG_TQM8540 is not set | 160 | # CONFIG_TQM8540 is not set |
| 156 | # CONFIG_TQM8541 is not set | 161 | # CONFIG_TQM8541 is not set |
| @@ -206,11 +211,13 @@ CONFIG_FLATMEM=y | |||
| 206 | CONFIG_FLAT_NODE_MEM_MAP=y | 211 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 207 | # CONFIG_SPARSEMEM_STATIC is not set | 212 | # CONFIG_SPARSEMEM_STATIC is not set |
| 208 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 213 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 214 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 209 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 215 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 210 | # CONFIG_RESOURCES_64BIT is not set | 216 | # CONFIG_RESOURCES_64BIT is not set |
| 211 | CONFIG_ZONE_DMA_FLAG=1 | 217 | CONFIG_ZONE_DMA_FLAG=1 |
| 212 | CONFIG_BOUNCE=y | 218 | CONFIG_BOUNCE=y |
| 213 | CONFIG_VIRT_TO_BUS=y | 219 | CONFIG_VIRT_TO_BUS=y |
| 220 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 214 | CONFIG_PROC_DEVICETREE=y | 221 | CONFIG_PROC_DEVICETREE=y |
| 215 | # CONFIG_CMDLINE_BOOL is not set | 222 | # CONFIG_CMDLINE_BOOL is not set |
| 216 | # CONFIG_PM is not set | 223 | # CONFIG_PM is not set |
| @@ -233,6 +240,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 233 | CONFIG_PCI_LEGACY=y | 240 | CONFIG_PCI_LEGACY=y |
| 234 | # CONFIG_PCCARD is not set | 241 | # CONFIG_PCCARD is not set |
| 235 | # CONFIG_HOTPLUG_PCI is not set | 242 | # CONFIG_HOTPLUG_PCI is not set |
| 243 | # CONFIG_HAS_RAPIDIO is not set | ||
| 236 | 244 | ||
| 237 | # | 245 | # |
| 238 | # Advanced setup | 246 | # Advanced setup |
| @@ -242,11 +250,12 @@ CONFIG_PCI_LEGACY=y | |||
| 242 | # | 250 | # |
| 243 | # Default settings for advanced configuration options are used | 251 | # Default settings for advanced configuration options are used |
| 244 | # | 252 | # |
| 245 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 246 | CONFIG_LOWMEM_SIZE=0x30000000 | 253 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 254 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 247 | CONFIG_KERNEL_START=0xc0000000 | 255 | CONFIG_KERNEL_START=0xc0000000 |
| 256 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 257 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 248 | CONFIG_TASK_SIZE=0xc0000000 | 258 | CONFIG_TASK_SIZE=0xc0000000 |
| 249 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 250 | 259 | ||
| 251 | # | 260 | # |
| 252 | # Networking | 261 | # Networking |
| @@ -294,8 +303,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 294 | CONFIG_DEFAULT_TCP_CONG="cubic" | 303 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 295 | # CONFIG_TCP_MD5SIG is not set | 304 | # CONFIG_TCP_MD5SIG is not set |
| 296 | # CONFIG_IPV6 is not set | 305 | # CONFIG_IPV6 is not set |
| 297 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 298 | # CONFIG_INET6_TUNNEL is not set | ||
| 299 | # CONFIG_NETWORK_SECMARK is not set | 306 | # CONFIG_NETWORK_SECMARK is not set |
| 300 | # CONFIG_NETFILTER is not set | 307 | # CONFIG_NETFILTER is not set |
| 301 | # CONFIG_IP_DCCP is not set | 308 | # CONFIG_IP_DCCP is not set |
| @@ -449,7 +456,6 @@ CONFIG_NETDEV_1000=y | |||
| 449 | # CONFIG_SIS190 is not set | 456 | # CONFIG_SIS190 is not set |
| 450 | # CONFIG_SKGE is not set | 457 | # CONFIG_SKGE is not set |
| 451 | # CONFIG_SKY2 is not set | 458 | # CONFIG_SKY2 is not set |
| 452 | # CONFIG_SK98LIN is not set | ||
| 453 | # CONFIG_VIA_VELOCITY is not set | 459 | # CONFIG_VIA_VELOCITY is not set |
| 454 | # CONFIG_TIGON3 is not set | 460 | # CONFIG_TIGON3 is not set |
| 455 | # CONFIG_BNX2 is not set | 461 | # CONFIG_BNX2 is not set |
| @@ -469,6 +475,7 @@ CONFIG_NETDEV_10000=y | |||
| 469 | # CONFIG_MLX4_CORE is not set | 475 | # CONFIG_MLX4_CORE is not set |
| 470 | # CONFIG_TEHUTI is not set | 476 | # CONFIG_TEHUTI is not set |
| 471 | # CONFIG_BNX2X is not set | 477 | # CONFIG_BNX2X is not set |
| 478 | # CONFIG_SFC is not set | ||
| 472 | # CONFIG_TR is not set | 479 | # CONFIG_TR is not set |
| 473 | 480 | ||
| 474 | # | 481 | # |
| @@ -476,6 +483,7 @@ CONFIG_NETDEV_10000=y | |||
| 476 | # | 483 | # |
| 477 | # CONFIG_WLAN_PRE80211 is not set | 484 | # CONFIG_WLAN_PRE80211 is not set |
| 478 | # CONFIG_WLAN_80211 is not set | 485 | # CONFIG_WLAN_80211 is not set |
| 486 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 479 | # CONFIG_WAN is not set | 487 | # CONFIG_WAN is not set |
| 480 | # CONFIG_FDDI is not set | 488 | # CONFIG_FDDI is not set |
| 481 | # CONFIG_HIPPI is not set | 489 | # CONFIG_HIPPI is not set |
| @@ -522,6 +530,7 @@ CONFIG_INPUT=y | |||
| 522 | # Character devices | 530 | # Character devices |
| 523 | # | 531 | # |
| 524 | # CONFIG_VT is not set | 532 | # CONFIG_VT is not set |
| 533 | CONFIG_DEVKMEM=y | ||
| 525 | # CONFIG_SERIAL_NONSTANDARD is not set | 534 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 526 | # CONFIG_NOZOMI is not set | 535 | # CONFIG_NOZOMI is not set |
| 527 | 536 | ||
| @@ -558,12 +567,7 @@ CONFIG_GEN_RTC=y | |||
| 558 | # CONFIG_TCG_TPM is not set | 567 | # CONFIG_TCG_TPM is not set |
| 559 | CONFIG_DEVPORT=y | 568 | CONFIG_DEVPORT=y |
| 560 | # CONFIG_I2C is not set | 569 | # CONFIG_I2C is not set |
| 561 | |||
| 562 | # | ||
| 563 | # SPI support | ||
| 564 | # | ||
| 565 | # CONFIG_SPI is not set | 570 | # CONFIG_SPI is not set |
| 566 | # CONFIG_SPI_MASTER is not set | ||
| 567 | # CONFIG_W1 is not set | 571 | # CONFIG_W1 is not set |
| 568 | # CONFIG_POWER_SUPPLY is not set | 572 | # CONFIG_POWER_SUPPLY is not set |
| 569 | CONFIG_HWMON=y | 573 | CONFIG_HWMON=y |
| @@ -596,12 +600,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 596 | # Multifunction device drivers | 600 | # Multifunction device drivers |
| 597 | # | 601 | # |
| 598 | # CONFIG_MFD_SM501 is not set | 602 | # CONFIG_MFD_SM501 is not set |
| 603 | # CONFIG_HTC_PASIC3 is not set | ||
| 599 | 604 | ||
| 600 | # | 605 | # |
| 601 | # Multimedia devices | 606 | # Multimedia devices |
| 602 | # | 607 | # |
| 608 | |||
| 609 | # | ||
| 610 | # Multimedia core support | ||
| 611 | # | ||
| 603 | # CONFIG_VIDEO_DEV is not set | 612 | # CONFIG_VIDEO_DEV is not set |
| 604 | # CONFIG_DVB_CORE is not set | 613 | # CONFIG_DVB_CORE is not set |
| 614 | # CONFIG_VIDEO_MEDIA is not set | ||
| 615 | |||
| 616 | # | ||
| 617 | # Multimedia drivers | ||
| 618 | # | ||
| 605 | CONFIG_DAB=y | 619 | CONFIG_DAB=y |
| 606 | 620 | ||
| 607 | # | 621 | # |
| @@ -628,14 +642,11 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 628 | # CONFIG_MMC is not set | 642 | # CONFIG_MMC is not set |
| 629 | # CONFIG_MEMSTICK is not set | 643 | # CONFIG_MEMSTICK is not set |
| 630 | # CONFIG_NEW_LEDS is not set | 644 | # CONFIG_NEW_LEDS is not set |
| 645 | # CONFIG_ACCESSIBILITY is not set | ||
| 631 | # CONFIG_INFINIBAND is not set | 646 | # CONFIG_INFINIBAND is not set |
| 632 | # CONFIG_EDAC is not set | 647 | # CONFIG_EDAC is not set |
| 633 | # CONFIG_RTC_CLASS is not set | 648 | # CONFIG_RTC_CLASS is not set |
| 634 | # CONFIG_DMADEVICES is not set | 649 | # CONFIG_DMADEVICES is not set |
| 635 | |||
| 636 | # | ||
| 637 | # Userspace I/O | ||
| 638 | # | ||
| 639 | # CONFIG_UIO is not set | 650 | # CONFIG_UIO is not set |
| 640 | 651 | ||
| 641 | # | 652 | # |
| @@ -648,7 +659,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 648 | # CONFIG_JFS_FS is not set | 659 | # CONFIG_JFS_FS is not set |
| 649 | # CONFIG_FS_POSIX_ACL is not set | 660 | # CONFIG_FS_POSIX_ACL is not set |
| 650 | # CONFIG_XFS_FS is not set | 661 | # CONFIG_XFS_FS is not set |
| 651 | # CONFIG_GFS2_FS is not set | ||
| 652 | # CONFIG_OCFS2_FS is not set | 662 | # CONFIG_OCFS2_FS is not set |
| 653 | CONFIG_DNOTIFY=y | 663 | CONFIG_DNOTIFY=y |
| 654 | CONFIG_INOTIFY=y | 664 | CONFIG_INOTIFY=y |
| @@ -705,7 +715,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 705 | CONFIG_NFS_FS=y | 715 | CONFIG_NFS_FS=y |
| 706 | # CONFIG_NFS_V3 is not set | 716 | # CONFIG_NFS_V3 is not set |
| 707 | # CONFIG_NFS_V4 is not set | 717 | # CONFIG_NFS_V4 is not set |
| 708 | # CONFIG_NFS_DIRECTIO is not set | ||
| 709 | # CONFIG_NFSD is not set | 718 | # CONFIG_NFSD is not set |
| 710 | CONFIG_ROOT_NFS=y | 719 | CONFIG_ROOT_NFS=y |
| 711 | CONFIG_LOCKD=y | 720 | CONFIG_LOCKD=y |
| @@ -732,6 +741,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 732 | # Library routines | 741 | # Library routines |
| 733 | # | 742 | # |
| 734 | CONFIG_BITREVERSE=y | 743 | CONFIG_BITREVERSE=y |
| 744 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 735 | # CONFIG_CRC_CCITT is not set | 745 | # CONFIG_CRC_CCITT is not set |
| 736 | # CONFIG_CRC16 is not set | 746 | # CONFIG_CRC16 is not set |
| 737 | # CONFIG_CRC_ITU_T is not set | 747 | # CONFIG_CRC_ITU_T is not set |
| @@ -742,6 +752,7 @@ CONFIG_PLIST=y | |||
| 742 | CONFIG_HAS_IOMEM=y | 752 | CONFIG_HAS_IOMEM=y |
| 743 | CONFIG_HAS_IOPORT=y | 753 | CONFIG_HAS_IOPORT=y |
| 744 | CONFIG_HAS_DMA=y | 754 | CONFIG_HAS_DMA=y |
| 755 | CONFIG_HAVE_LMB=y | ||
| 745 | 756 | ||
| 746 | # | 757 | # |
| 747 | # Kernel hacking | 758 | # Kernel hacking |
| @@ -749,6 +760,7 @@ CONFIG_HAS_DMA=y | |||
| 749 | # CONFIG_PRINTK_TIME is not set | 760 | # CONFIG_PRINTK_TIME is not set |
| 750 | CONFIG_ENABLE_WARN_DEPRECATED=y | 761 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 751 | CONFIG_ENABLE_MUST_CHECK=y | 762 | CONFIG_ENABLE_MUST_CHECK=y |
| 763 | CONFIG_FRAME_WARN=1024 | ||
| 752 | # CONFIG_MAGIC_SYSRQ is not set | 764 | # CONFIG_MAGIC_SYSRQ is not set |
| 753 | # CONFIG_UNUSED_SYMBOLS is not set | 765 | # CONFIG_UNUSED_SYMBOLS is not set |
| 754 | # CONFIG_DEBUG_FS is not set | 766 | # CONFIG_DEBUG_FS is not set |
| @@ -756,6 +768,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 756 | # CONFIG_DEBUG_KERNEL is not set | 768 | # CONFIG_DEBUG_KERNEL is not set |
| 757 | # CONFIG_DEBUG_BUGVERBOSE is not set | 769 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 758 | # CONFIG_SAMPLES is not set | 770 | # CONFIG_SAMPLES is not set |
| 771 | # CONFIG_IRQSTACKS is not set | ||
| 759 | # CONFIG_PPC_EARLY_DEBUG is not set | 772 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 760 | 773 | ||
| 761 | # | 774 | # |
| @@ -765,48 +778,78 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 765 | # CONFIG_SECURITY is not set | 778 | # CONFIG_SECURITY is not set |
| 766 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 779 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 767 | CONFIG_CRYPTO=y | 780 | CONFIG_CRYPTO=y |
| 768 | # CONFIG_CRYPTO_SEQIV is not set | 781 | |
| 782 | # | ||
| 783 | # Crypto core or helper | ||
| 784 | # | ||
| 769 | # CONFIG_CRYPTO_MANAGER is not set | 785 | # CONFIG_CRYPTO_MANAGER is not set |
| 786 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 787 | # CONFIG_CRYPTO_NULL is not set | ||
| 788 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 789 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 790 | |||
| 791 | # | ||
| 792 | # Authenticated Encryption with Associated Data | ||
| 793 | # | ||
| 794 | # CONFIG_CRYPTO_CCM is not set | ||
| 795 | # CONFIG_CRYPTO_GCM is not set | ||
| 796 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 797 | |||
| 798 | # | ||
| 799 | # Block modes | ||
| 800 | # | ||
| 801 | # CONFIG_CRYPTO_CBC is not set | ||
| 802 | # CONFIG_CRYPTO_CTR is not set | ||
| 803 | # CONFIG_CRYPTO_CTS is not set | ||
| 804 | # CONFIG_CRYPTO_ECB is not set | ||
| 805 | # CONFIG_CRYPTO_LRW is not set | ||
| 806 | # CONFIG_CRYPTO_PCBC is not set | ||
| 807 | # CONFIG_CRYPTO_XTS is not set | ||
| 808 | |||
| 809 | # | ||
| 810 | # Hash modes | ||
| 811 | # | ||
| 770 | # CONFIG_CRYPTO_HMAC is not set | 812 | # CONFIG_CRYPTO_HMAC is not set |
| 771 | # CONFIG_CRYPTO_XCBC is not set | 813 | # CONFIG_CRYPTO_XCBC is not set |
| 772 | # CONFIG_CRYPTO_NULL is not set | 814 | |
| 815 | # | ||
| 816 | # Digest | ||
| 817 | # | ||
| 818 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 773 | # CONFIG_CRYPTO_MD4 is not set | 819 | # CONFIG_CRYPTO_MD4 is not set |
| 774 | # CONFIG_CRYPTO_MD5 is not set | 820 | # CONFIG_CRYPTO_MD5 is not set |
| 821 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 775 | # CONFIG_CRYPTO_SHA1 is not set | 822 | # CONFIG_CRYPTO_SHA1 is not set |
| 776 | # CONFIG_CRYPTO_SHA256 is not set | 823 | # CONFIG_CRYPTO_SHA256 is not set |
| 777 | # CONFIG_CRYPTO_SHA512 is not set | 824 | # CONFIG_CRYPTO_SHA512 is not set |
| 778 | # CONFIG_CRYPTO_WP512 is not set | ||
| 779 | # CONFIG_CRYPTO_TGR192 is not set | 825 | # CONFIG_CRYPTO_TGR192 is not set |
| 780 | # CONFIG_CRYPTO_GF128MUL is not set | 826 | # CONFIG_CRYPTO_WP512 is not set |
| 781 | # CONFIG_CRYPTO_ECB is not set | 827 | |
| 782 | # CONFIG_CRYPTO_CBC is not set | 828 | # |
| 783 | # CONFIG_CRYPTO_PCBC is not set | 829 | # Ciphers |
| 784 | # CONFIG_CRYPTO_LRW is not set | 830 | # |
| 785 | # CONFIG_CRYPTO_XTS is not set | ||
| 786 | # CONFIG_CRYPTO_CTR is not set | ||
| 787 | # CONFIG_CRYPTO_GCM is not set | ||
| 788 | # CONFIG_CRYPTO_CCM is not set | ||
| 789 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 790 | # CONFIG_CRYPTO_DES is not set | ||
| 791 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 792 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 793 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 794 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 795 | # CONFIG_CRYPTO_AES is not set | 831 | # CONFIG_CRYPTO_AES is not set |
| 832 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 833 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 834 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 835 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 796 | # CONFIG_CRYPTO_CAST5 is not set | 836 | # CONFIG_CRYPTO_CAST5 is not set |
| 797 | # CONFIG_CRYPTO_CAST6 is not set | 837 | # CONFIG_CRYPTO_CAST6 is not set |
| 798 | # CONFIG_CRYPTO_TEA is not set | 838 | # CONFIG_CRYPTO_DES is not set |
| 799 | # CONFIG_CRYPTO_ARC4 is not set | 839 | # CONFIG_CRYPTO_FCRYPT is not set |
| 800 | # CONFIG_CRYPTO_KHAZAD is not set | 840 | # CONFIG_CRYPTO_KHAZAD is not set |
| 801 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 802 | # CONFIG_CRYPTO_SEED is not set | ||
| 803 | # CONFIG_CRYPTO_SALSA20 is not set | 841 | # CONFIG_CRYPTO_SALSA20 is not set |
| 842 | # CONFIG_CRYPTO_SEED is not set | ||
| 843 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 844 | # CONFIG_CRYPTO_TEA is not set | ||
| 845 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 846 | |||
| 847 | # | ||
| 848 | # Compression | ||
| 849 | # | ||
| 804 | # CONFIG_CRYPTO_DEFLATE is not set | 850 | # CONFIG_CRYPTO_DEFLATE is not set |
| 805 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 806 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 807 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 808 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 809 | # CONFIG_CRYPTO_LZO is not set | 851 | # CONFIG_CRYPTO_LZO is not set |
| 810 | CONFIG_CRYPTO_HW=y | 852 | CONFIG_CRYPTO_HW=y |
| 811 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 853 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 812 | # CONFIG_PPC_CLOCK is not set | 854 | # CONFIG_PPC_CLOCK is not set |
| 855 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/sbc8560_defconfig b/arch/powerpc/configs/85xx/sbc8560_defconfig index fef605579e29..655518dcd73f 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:39 2008 | 4 | # Mon Jun 9 08:52:38 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -87,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 87 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 90 | CONFIG_KALLSYMS=y | 93 | CONFIG_KALLSYMS=y |
| 91 | # CONFIG_KALLSYMS_ALL is not set | 94 | # CONFIG_KALLSYMS_ALL is not set |
| 92 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -112,6 +115,7 @@ CONFIG_SLAB=y | |||
| 112 | CONFIG_HAVE_OPROFILE=y | 115 | CONFIG_HAVE_OPROFILE=y |
| 113 | CONFIG_HAVE_KPROBES=y | 116 | CONFIG_HAVE_KPROBES=y |
| 114 | CONFIG_HAVE_KRETPROBES=y | 117 | CONFIG_HAVE_KRETPROBES=y |
| 118 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 115 | CONFIG_PROC_PAGE_MONITOR=y | 119 | CONFIG_PROC_PAGE_MONITOR=y |
| 116 | CONFIG_SLABINFO=y | 120 | CONFIG_SLABINFO=y |
| 117 | CONFIG_RT_MUTEXES=y | 121 | CONFIG_RT_MUTEXES=y |
| @@ -152,6 +156,7 @@ CONFIG_MPC85xx=y | |||
| 152 | # CONFIG_MPC85xx_CDS is not set | 156 | # CONFIG_MPC85xx_CDS is not set |
| 153 | # CONFIG_MPC85xx_MDS is not set | 157 | # CONFIG_MPC85xx_MDS is not set |
| 154 | # CONFIG_MPC85xx_DS is not set | 158 | # CONFIG_MPC85xx_DS is not set |
| 159 | # CONFIG_KSI8560 is not set | ||
| 155 | # CONFIG_STX_GP3 is not set | 160 | # CONFIG_STX_GP3 is not set |
| 156 | # CONFIG_TQM8540 is not set | 161 | # CONFIG_TQM8540 is not set |
| 157 | # CONFIG_TQM8541 is not set | 162 | # CONFIG_TQM8541 is not set |
| @@ -207,11 +212,13 @@ CONFIG_FLATMEM=y | |||
| 207 | CONFIG_FLAT_NODE_MEM_MAP=y | 212 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 208 | # CONFIG_SPARSEMEM_STATIC is not set | 213 | # CONFIG_SPARSEMEM_STATIC is not set |
| 209 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 214 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 215 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 210 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 216 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 211 | # CONFIG_RESOURCES_64BIT is not set | 217 | # CONFIG_RESOURCES_64BIT is not set |
| 212 | CONFIG_ZONE_DMA_FLAG=1 | 218 | CONFIG_ZONE_DMA_FLAG=1 |
| 213 | CONFIG_BOUNCE=y | 219 | CONFIG_BOUNCE=y |
| 214 | CONFIG_VIRT_TO_BUS=y | 220 | CONFIG_VIRT_TO_BUS=y |
| 221 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 215 | CONFIG_PROC_DEVICETREE=y | 222 | CONFIG_PROC_DEVICETREE=y |
| 216 | # CONFIG_CMDLINE_BOOL is not set | 223 | # CONFIG_CMDLINE_BOOL is not set |
| 217 | # CONFIG_PM is not set | 224 | # CONFIG_PM is not set |
| @@ -228,6 +235,7 @@ CONFIG_FSL_SOC=y | |||
| 228 | # CONFIG_PCI_SYSCALL is not set | 235 | # CONFIG_PCI_SYSCALL is not set |
| 229 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 236 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 230 | # CONFIG_PCCARD is not set | 237 | # CONFIG_PCCARD is not set |
| 238 | # CONFIG_HAS_RAPIDIO is not set | ||
| 231 | 239 | ||
| 232 | # | 240 | # |
| 233 | # Advanced setup | 241 | # Advanced setup |
| @@ -237,11 +245,12 @@ CONFIG_FSL_SOC=y | |||
| 237 | # | 245 | # |
| 238 | # Default settings for advanced configuration options are used | 246 | # Default settings for advanced configuration options are used |
| 239 | # | 247 | # |
| 240 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 241 | CONFIG_LOWMEM_SIZE=0x30000000 | 248 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 249 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 242 | CONFIG_KERNEL_START=0xc0000000 | 250 | CONFIG_KERNEL_START=0xc0000000 |
| 251 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 252 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 243 | CONFIG_TASK_SIZE=0xc0000000 | 253 | CONFIG_TASK_SIZE=0xc0000000 |
| 244 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 245 | 254 | ||
| 246 | # | 255 | # |
| 247 | # Networking | 256 | # Networking |
| @@ -289,8 +298,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 289 | CONFIG_DEFAULT_TCP_CONG="cubic" | 298 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 290 | # CONFIG_TCP_MD5SIG is not set | 299 | # CONFIG_TCP_MD5SIG is not set |
| 291 | # CONFIG_IPV6 is not set | 300 | # CONFIG_IPV6 is not set |
| 292 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 293 | # CONFIG_INET6_TUNNEL is not set | ||
| 294 | # CONFIG_NETWORK_SECMARK is not set | 301 | # CONFIG_NETWORK_SECMARK is not set |
| 295 | # CONFIG_NETFILTER is not set | 302 | # CONFIG_NETFILTER is not set |
| 296 | # CONFIG_IP_DCCP is not set | 303 | # CONFIG_IP_DCCP is not set |
| @@ -418,6 +425,7 @@ CONFIG_NETDEV_10000=y | |||
| 418 | # | 425 | # |
| 419 | # CONFIG_WLAN_PRE80211 is not set | 426 | # CONFIG_WLAN_PRE80211 is not set |
| 420 | # CONFIG_WLAN_80211 is not set | 427 | # CONFIG_WLAN_80211 is not set |
| 428 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 421 | # CONFIG_WAN is not set | 429 | # CONFIG_WAN is not set |
| 422 | # CONFIG_PPP is not set | 430 | # CONFIG_PPP is not set |
| 423 | # CONFIG_SLIP is not set | 431 | # CONFIG_SLIP is not set |
| @@ -462,6 +470,7 @@ CONFIG_INPUT=y | |||
| 462 | # Character devices | 470 | # Character devices |
| 463 | # | 471 | # |
| 464 | # CONFIG_VT is not set | 472 | # CONFIG_VT is not set |
| 473 | CONFIG_DEVKMEM=y | ||
| 465 | # CONFIG_SERIAL_NONSTANDARD is not set | 474 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 466 | 475 | ||
| 467 | # | 476 | # |
| @@ -487,17 +496,11 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 487 | # CONFIG_IPMI_HANDLER is not set | 496 | # CONFIG_IPMI_HANDLER is not set |
| 488 | # CONFIG_HW_RANDOM is not set | 497 | # CONFIG_HW_RANDOM is not set |
| 489 | # CONFIG_NVRAM is not set | 498 | # CONFIG_NVRAM is not set |
| 490 | # CONFIG_GEN_RTC is not set | ||
| 491 | # CONFIG_R3964 is not set | 499 | # CONFIG_R3964 is not set |
| 492 | # CONFIG_RAW_DRIVER is not set | 500 | # CONFIG_RAW_DRIVER is not set |
| 493 | # CONFIG_TCG_TPM is not set | 501 | # CONFIG_TCG_TPM is not set |
| 494 | # CONFIG_I2C is not set | 502 | # CONFIG_I2C is not set |
| 495 | |||
| 496 | # | ||
| 497 | # SPI support | ||
| 498 | # | ||
| 499 | # CONFIG_SPI is not set | 503 | # CONFIG_SPI is not set |
| 500 | # CONFIG_SPI_MASTER is not set | ||
| 501 | # CONFIG_W1 is not set | 504 | # CONFIG_W1 is not set |
| 502 | # CONFIG_POWER_SUPPLY is not set | 505 | # CONFIG_POWER_SUPPLY is not set |
| 503 | CONFIG_HWMON=y | 506 | CONFIG_HWMON=y |
| @@ -526,12 +529,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 526 | # Multifunction device drivers | 529 | # Multifunction device drivers |
| 527 | # | 530 | # |
| 528 | # CONFIG_MFD_SM501 is not set | 531 | # CONFIG_MFD_SM501 is not set |
| 532 | # CONFIG_HTC_PASIC3 is not set | ||
| 529 | 533 | ||
| 530 | # | 534 | # |
| 531 | # Multimedia devices | 535 | # Multimedia devices |
| 532 | # | 536 | # |
| 537 | |||
| 538 | # | ||
| 539 | # Multimedia core support | ||
| 540 | # | ||
| 533 | # CONFIG_VIDEO_DEV is not set | 541 | # CONFIG_VIDEO_DEV is not set |
| 534 | # CONFIG_DVB_CORE is not set | 542 | # CONFIG_DVB_CORE is not set |
| 543 | # CONFIG_VIDEO_MEDIA is not set | ||
| 544 | |||
| 545 | # | ||
| 546 | # Multimedia drivers | ||
| 547 | # | ||
| 535 | CONFIG_DAB=y | 548 | CONFIG_DAB=y |
| 536 | 549 | ||
| 537 | # | 550 | # |
| @@ -559,6 +572,8 @@ CONFIG_USB_SUPPORT=y | |||
| 559 | # CONFIG_USB_ARCH_HAS_HCD is not set | 572 | # CONFIG_USB_ARCH_HAS_HCD is not set |
| 560 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 573 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
| 561 | # CONFIG_USB_ARCH_HAS_EHCI is not set | 574 | # CONFIG_USB_ARCH_HAS_EHCI is not set |
| 575 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 576 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 562 | 577 | ||
| 563 | # | 578 | # |
| 564 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 579 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -567,6 +582,7 @@ CONFIG_USB_SUPPORT=y | |||
| 567 | # CONFIG_MMC is not set | 582 | # CONFIG_MMC is not set |
| 568 | # CONFIG_MEMSTICK is not set | 583 | # CONFIG_MEMSTICK is not set |
| 569 | # CONFIG_NEW_LEDS is not set | 584 | # CONFIG_NEW_LEDS is not set |
| 585 | # CONFIG_ACCESSIBILITY is not set | ||
| 570 | # CONFIG_EDAC is not set | 586 | # CONFIG_EDAC is not set |
| 571 | CONFIG_RTC_LIB=y | 587 | CONFIG_RTC_LIB=y |
| 572 | CONFIG_RTC_CLASS=y | 588 | CONFIG_RTC_CLASS=y |
| @@ -602,11 +618,8 @@ CONFIG_RTC_DRV_M48T59=y | |||
| 602 | # | 618 | # |
| 603 | # on-CPU RTC drivers | 619 | # on-CPU RTC drivers |
| 604 | # | 620 | # |
| 621 | # CONFIG_RTC_DRV_PPC is not set | ||
| 605 | # CONFIG_DMADEVICES is not set | 622 | # CONFIG_DMADEVICES is not set |
| 606 | |||
| 607 | # | ||
| 608 | # Userspace I/O | ||
| 609 | # | ||
| 610 | # CONFIG_UIO is not set | 623 | # CONFIG_UIO is not set |
| 611 | 624 | ||
| 612 | # | 625 | # |
| @@ -619,7 +632,6 @@ CONFIG_RTC_DRV_M48T59=y | |||
| 619 | # CONFIG_JFS_FS is not set | 632 | # CONFIG_JFS_FS is not set |
| 620 | # CONFIG_FS_POSIX_ACL is not set | 633 | # CONFIG_FS_POSIX_ACL is not set |
| 621 | # CONFIG_XFS_FS is not set | 634 | # CONFIG_XFS_FS is not set |
| 622 | # CONFIG_GFS2_FS is not set | ||
| 623 | # CONFIG_OCFS2_FS is not set | 635 | # CONFIG_OCFS2_FS is not set |
| 624 | CONFIG_DNOTIFY=y | 636 | CONFIG_DNOTIFY=y |
| 625 | CONFIG_INOTIFY=y | 637 | CONFIG_INOTIFY=y |
| @@ -676,7 +688,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 676 | CONFIG_NFS_FS=y | 688 | CONFIG_NFS_FS=y |
| 677 | # CONFIG_NFS_V3 is not set | 689 | # CONFIG_NFS_V3 is not set |
| 678 | # CONFIG_NFS_V4 is not set | 690 | # CONFIG_NFS_V4 is not set |
| 679 | # CONFIG_NFS_DIRECTIO is not set | ||
| 680 | # CONFIG_NFSD is not set | 691 | # CONFIG_NFSD is not set |
| 681 | CONFIG_ROOT_NFS=y | 692 | CONFIG_ROOT_NFS=y |
| 682 | CONFIG_LOCKD=y | 693 | CONFIG_LOCKD=y |
| @@ -715,6 +726,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 715 | # Library routines | 726 | # Library routines |
| 716 | # | 727 | # |
| 717 | CONFIG_BITREVERSE=y | 728 | CONFIG_BITREVERSE=y |
| 729 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 718 | # CONFIG_CRC_CCITT is not set | 730 | # CONFIG_CRC_CCITT is not set |
| 719 | # CONFIG_CRC16 is not set | 731 | # CONFIG_CRC16 is not set |
| 720 | # CONFIG_CRC_ITU_T is not set | 732 | # CONFIG_CRC_ITU_T is not set |
| @@ -725,6 +737,7 @@ CONFIG_PLIST=y | |||
| 725 | CONFIG_HAS_IOMEM=y | 737 | CONFIG_HAS_IOMEM=y |
| 726 | CONFIG_HAS_IOPORT=y | 738 | CONFIG_HAS_IOPORT=y |
| 727 | CONFIG_HAS_DMA=y | 739 | CONFIG_HAS_DMA=y |
| 740 | CONFIG_HAVE_LMB=y | ||
| 728 | 741 | ||
| 729 | # | 742 | # |
| 730 | # Kernel hacking | 743 | # Kernel hacking |
| @@ -732,6 +745,7 @@ CONFIG_HAS_DMA=y | |||
| 732 | # CONFIG_PRINTK_TIME is not set | 745 | # CONFIG_PRINTK_TIME is not set |
| 733 | CONFIG_ENABLE_WARN_DEPRECATED=y | 746 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 734 | CONFIG_ENABLE_MUST_CHECK=y | 747 | CONFIG_ENABLE_MUST_CHECK=y |
| 748 | CONFIG_FRAME_WARN=1024 | ||
| 735 | CONFIG_MAGIC_SYSRQ=y | 749 | CONFIG_MAGIC_SYSRQ=y |
| 736 | # CONFIG_UNUSED_SYMBOLS is not set | 750 | # CONFIG_UNUSED_SYMBOLS is not set |
| 737 | # CONFIG_DEBUG_FS is not set | 751 | # CONFIG_DEBUG_FS is not set |
| @@ -742,6 +756,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 742 | CONFIG_SCHED_DEBUG=y | 756 | CONFIG_SCHED_DEBUG=y |
| 743 | # CONFIG_SCHEDSTATS is not set | 757 | # CONFIG_SCHEDSTATS is not set |
| 744 | # CONFIG_TIMER_STATS is not set | 758 | # CONFIG_TIMER_STATS is not set |
| 759 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 745 | # CONFIG_DEBUG_SLAB is not set | 760 | # CONFIG_DEBUG_SLAB is not set |
| 746 | # CONFIG_DEBUG_RT_MUTEXES is not set | 761 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| 747 | # CONFIG_RT_MUTEX_TESTER is not set | 762 | # CONFIG_RT_MUTEX_TESTER is not set |
| @@ -753,6 +768,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 753 | # CONFIG_DEBUG_BUGVERBOSE is not set | 768 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 754 | # CONFIG_DEBUG_INFO is not set | 769 | # CONFIG_DEBUG_INFO is not set |
| 755 | # CONFIG_DEBUG_VM is not set | 770 | # CONFIG_DEBUG_VM is not set |
| 771 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 756 | # CONFIG_DEBUG_LIST is not set | 772 | # CONFIG_DEBUG_LIST is not set |
| 757 | # CONFIG_DEBUG_SG is not set | 773 | # CONFIG_DEBUG_SG is not set |
| 758 | # CONFIG_BOOT_PRINTK_DELAY is not set | 774 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -763,6 +779,7 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 763 | # CONFIG_DEBUG_STACK_USAGE is not set | 779 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 764 | # CONFIG_DEBUG_PAGEALLOC is not set | 780 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 765 | # CONFIG_DEBUGGER is not set | 781 | # CONFIG_DEBUGGER is not set |
| 782 | # CONFIG_IRQSTACKS is not set | ||
| 766 | # CONFIG_BDI_SWITCH is not set | 783 | # CONFIG_BDI_SWITCH is not set |
| 767 | CONFIG_PPC_EARLY_DEBUG=y | 784 | CONFIG_PPC_EARLY_DEBUG=y |
| 768 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | 785 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set |
| @@ -784,47 +801,77 @@ CONFIG_PPC_EARLY_DEBUG=y | |||
| 784 | # CONFIG_SECURITY is not set | 801 | # CONFIG_SECURITY is not set |
| 785 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 802 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 786 | CONFIG_CRYPTO=y | 803 | CONFIG_CRYPTO=y |
| 787 | # CONFIG_CRYPTO_SEQIV is not set | 804 | |
| 805 | # | ||
| 806 | # Crypto core or helper | ||
| 807 | # | ||
| 788 | # CONFIG_CRYPTO_MANAGER is not set | 808 | # CONFIG_CRYPTO_MANAGER is not set |
| 809 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 810 | # CONFIG_CRYPTO_NULL is not set | ||
| 811 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 812 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 813 | |||
| 814 | # | ||
| 815 | # Authenticated Encryption with Associated Data | ||
| 816 | # | ||
| 817 | # CONFIG_CRYPTO_CCM is not set | ||
| 818 | # CONFIG_CRYPTO_GCM is not set | ||
| 819 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 820 | |||
| 821 | # | ||
| 822 | # Block modes | ||
| 823 | # | ||
| 824 | # CONFIG_CRYPTO_CBC is not set | ||
| 825 | # CONFIG_CRYPTO_CTR is not set | ||
| 826 | # CONFIG_CRYPTO_CTS is not set | ||
| 827 | # CONFIG_CRYPTO_ECB is not set | ||
| 828 | # CONFIG_CRYPTO_LRW is not set | ||
| 829 | # CONFIG_CRYPTO_PCBC is not set | ||
| 830 | # CONFIG_CRYPTO_XTS is not set | ||
| 831 | |||
| 832 | # | ||
| 833 | # Hash modes | ||
| 834 | # | ||
| 789 | # CONFIG_CRYPTO_HMAC is not set | 835 | # CONFIG_CRYPTO_HMAC is not set |
| 790 | # CONFIG_CRYPTO_XCBC is not set | 836 | # CONFIG_CRYPTO_XCBC is not set |
| 791 | # CONFIG_CRYPTO_NULL is not set | 837 | |
| 838 | # | ||
| 839 | # Digest | ||
| 840 | # | ||
| 841 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 792 | # CONFIG_CRYPTO_MD4 is not set | 842 | # CONFIG_CRYPTO_MD4 is not set |
| 793 | # CONFIG_CRYPTO_MD5 is not set | 843 | # CONFIG_CRYPTO_MD5 is not set |
| 844 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 794 | # CONFIG_CRYPTO_SHA1 is not set | 845 | # CONFIG_CRYPTO_SHA1 is not set |
| 795 | # CONFIG_CRYPTO_SHA256 is not set | 846 | # CONFIG_CRYPTO_SHA256 is not set |
| 796 | # CONFIG_CRYPTO_SHA512 is not set | 847 | # CONFIG_CRYPTO_SHA512 is not set |
| 797 | # CONFIG_CRYPTO_WP512 is not set | ||
| 798 | # CONFIG_CRYPTO_TGR192 is not set | 848 | # CONFIG_CRYPTO_TGR192 is not set |
| 799 | # CONFIG_CRYPTO_GF128MUL is not set | 849 | # CONFIG_CRYPTO_WP512 is not set |
| 800 | # CONFIG_CRYPTO_ECB is not set | 850 | |
| 801 | # CONFIG_CRYPTO_CBC is not set | 851 | # |
| 802 | # CONFIG_CRYPTO_PCBC is not set | 852 | # Ciphers |
| 803 | # CONFIG_CRYPTO_LRW is not set | 853 | # |
| 804 | # CONFIG_CRYPTO_XTS is not set | ||
| 805 | # CONFIG_CRYPTO_CTR is not set | ||
| 806 | # CONFIG_CRYPTO_GCM is not set | ||
| 807 | # CONFIG_CRYPTO_CCM is not set | ||
| 808 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 809 | # CONFIG_CRYPTO_DES is not set | ||
| 810 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 811 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 812 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 813 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 814 | # CONFIG_CRYPTO_AES is not set | 854 | # CONFIG_CRYPTO_AES is not set |
| 855 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 856 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 857 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 858 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 815 | # CONFIG_CRYPTO_CAST5 is not set | 859 | # CONFIG_CRYPTO_CAST5 is not set |
| 816 | # CONFIG_CRYPTO_CAST6 is not set | 860 | # CONFIG_CRYPTO_CAST6 is not set |
| 817 | # CONFIG_CRYPTO_TEA is not set | 861 | # CONFIG_CRYPTO_DES is not set |
| 818 | # CONFIG_CRYPTO_ARC4 is not set | 862 | # CONFIG_CRYPTO_FCRYPT is not set |
| 819 | # CONFIG_CRYPTO_KHAZAD is not set | 863 | # CONFIG_CRYPTO_KHAZAD is not set |
| 820 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 821 | # CONFIG_CRYPTO_SEED is not set | ||
| 822 | # CONFIG_CRYPTO_SALSA20 is not set | 864 | # CONFIG_CRYPTO_SALSA20 is not set |
| 865 | # CONFIG_CRYPTO_SEED is not set | ||
| 866 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 867 | # CONFIG_CRYPTO_TEA is not set | ||
| 868 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 869 | |||
| 870 | # | ||
| 871 | # Compression | ||
| 872 | # | ||
| 823 | # CONFIG_CRYPTO_DEFLATE is not set | 873 | # CONFIG_CRYPTO_DEFLATE is not set |
| 824 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 825 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 826 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 827 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 828 | # CONFIG_CRYPTO_LZO is not set | 874 | # CONFIG_CRYPTO_LZO is not set |
| 829 | CONFIG_CRYPTO_HW=y | 875 | CONFIG_CRYPTO_HW=y |
| 830 | # CONFIG_PPC_CLOCK is not set | 876 | # CONFIG_PPC_CLOCK is not set |
| 877 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/stx_gp3_defconfig b/arch/powerpc/configs/85xx/stx_gp3_defconfig index 1d303c49bb0c..7804ca1ecc94 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:42 2008 | 4 | # Mon Jun 9 08:52:38 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -87,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 87 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 90 | CONFIG_KALLSYMS=y | 93 | CONFIG_KALLSYMS=y |
| 91 | # CONFIG_KALLSYMS_ALL is not set | 94 | # CONFIG_KALLSYMS_ALL is not set |
| 92 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -114,12 +117,14 @@ CONFIG_HAVE_OPROFILE=y | |||
| 114 | # CONFIG_KPROBES is not set | 117 | # CONFIG_KPROBES is not set |
| 115 | CONFIG_HAVE_KPROBES=y | 118 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 119 | CONFIG_HAVE_KRETPROBES=y |
| 120 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 117 | CONFIG_PROC_PAGE_MONITOR=y | 121 | CONFIG_PROC_PAGE_MONITOR=y |
| 118 | CONFIG_SLABINFO=y | 122 | CONFIG_SLABINFO=y |
| 119 | CONFIG_RT_MUTEXES=y | 123 | CONFIG_RT_MUTEXES=y |
| 120 | # CONFIG_TINY_SHMEM is not set | 124 | # CONFIG_TINY_SHMEM is not set |
| 121 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
| 122 | CONFIG_MODULES=y | 126 | CONFIG_MODULES=y |
| 127 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 123 | # CONFIG_MODULE_UNLOAD is not set | 128 | # CONFIG_MODULE_UNLOAD is not set |
| 124 | CONFIG_MODVERSIONS=y | 129 | CONFIG_MODVERSIONS=y |
| 125 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 130 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| @@ -158,6 +163,7 @@ CONFIG_MPC85xx=y | |||
| 158 | # CONFIG_MPC85xx_CDS is not set | 163 | # CONFIG_MPC85xx_CDS is not set |
| 159 | # CONFIG_MPC85xx_MDS is not set | 164 | # CONFIG_MPC85xx_MDS is not set |
| 160 | # CONFIG_MPC85xx_DS is not set | 165 | # CONFIG_MPC85xx_DS is not set |
| 166 | # CONFIG_KSI8560 is not set | ||
| 161 | CONFIG_STX_GP3=y | 167 | CONFIG_STX_GP3=y |
| 162 | # CONFIG_TQM8540 is not set | 168 | # CONFIG_TQM8540 is not set |
| 163 | # CONFIG_TQM8541 is not set | 169 | # CONFIG_TQM8541 is not set |
| @@ -215,11 +221,13 @@ CONFIG_FLATMEM=y | |||
| 215 | CONFIG_FLAT_NODE_MEM_MAP=y | 221 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 216 | # CONFIG_SPARSEMEM_STATIC is not set | 222 | # CONFIG_SPARSEMEM_STATIC is not set |
| 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 223 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 224 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 225 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 219 | # CONFIG_RESOURCES_64BIT is not set | 226 | # CONFIG_RESOURCES_64BIT is not set |
| 220 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
| 221 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
| 222 | CONFIG_VIRT_TO_BUS=y | 229 | CONFIG_VIRT_TO_BUS=y |
| 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 |
| 225 | # CONFIG_PM is not set | 233 | # CONFIG_PM is not set |
| @@ -243,6 +251,7 @@ CONFIG_PCI_LEGACY=y | |||
| 243 | # CONFIG_PCI_DEBUG is not set | 251 | # CONFIG_PCI_DEBUG is not set |
| 244 | # CONFIG_PCCARD is not set | 252 | # CONFIG_PCCARD is not set |
| 245 | # CONFIG_HOTPLUG_PCI is not set | 253 | # CONFIG_HOTPLUG_PCI is not set |
| 254 | # CONFIG_HAS_RAPIDIO is not set | ||
| 246 | 255 | ||
| 247 | # | 256 | # |
| 248 | # Advanced setup | 257 | # Advanced setup |
| @@ -252,11 +261,12 @@ CONFIG_PCI_LEGACY=y | |||
| 252 | # | 261 | # |
| 253 | # Default settings for advanced configuration options are used | 262 | # Default settings for advanced configuration options are used |
| 254 | # | 263 | # |
| 255 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 256 | CONFIG_LOWMEM_SIZE=0x30000000 | 264 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 265 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 257 | CONFIG_KERNEL_START=0xc0000000 | 266 | CONFIG_KERNEL_START=0xc0000000 |
| 267 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 268 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 258 | CONFIG_TASK_SIZE=0xc0000000 | 269 | CONFIG_TASK_SIZE=0xc0000000 |
| 259 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 260 | 270 | ||
| 261 | # | 271 | # |
| 262 | # Networking | 272 | # Networking |
| @@ -304,8 +314,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 304 | # CONFIG_TCP_MD5SIG is not set | 314 | # CONFIG_TCP_MD5SIG is not set |
| 305 | # CONFIG_IP_VS is not set | 315 | # CONFIG_IP_VS is not set |
| 306 | # CONFIG_IPV6 is not set | 316 | # CONFIG_IPV6 is not set |
| 307 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 308 | # CONFIG_INET6_TUNNEL is not set | ||
| 309 | # CONFIG_NETWORK_SECMARK is not set | 317 | # CONFIG_NETWORK_SECMARK is not set |
| 310 | CONFIG_NETFILTER=y | 318 | CONFIG_NETFILTER=y |
| 311 | # CONFIG_NETFILTER_DEBUG is not set | 319 | # CONFIG_NETFILTER_DEBUG is not set |
| @@ -418,6 +426,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
| 418 | # CONFIG_CONNECTOR is not set | 426 | # CONFIG_CONNECTOR is not set |
| 419 | # CONFIG_MTD is not set | 427 | # CONFIG_MTD is not set |
| 420 | CONFIG_OF_DEVICE=y | 428 | CONFIG_OF_DEVICE=y |
| 429 | CONFIG_OF_I2C=m | ||
| 421 | CONFIG_PARPORT=m | 430 | CONFIG_PARPORT=m |
| 422 | CONFIG_PARPORT_PC=m | 431 | CONFIG_PARPORT_PC=m |
| 423 | # CONFIG_PARPORT_PC_FIFO is not set | 432 | # CONFIG_PARPORT_PC_FIFO is not set |
| @@ -505,7 +514,7 @@ CONFIG_IDE_GENERIC=y | |||
| 505 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 514 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
| 506 | # CONFIG_BLK_DEV_TC86C001 is not set | 515 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 507 | # CONFIG_BLK_DEV_IDEDMA is not set | 516 | # CONFIG_BLK_DEV_IDEDMA is not set |
| 508 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 517 | # CONFIG_BLK_DEV_HD_ONLY is not set |
| 509 | # CONFIG_BLK_DEV_HD is not set | 518 | # CONFIG_BLK_DEV_HD is not set |
| 510 | 519 | ||
| 511 | # | 520 | # |
| @@ -653,7 +662,6 @@ CONFIG_NETDEV_1000=y | |||
| 653 | # CONFIG_SIS190 is not set | 662 | # CONFIG_SIS190 is not set |
| 654 | # CONFIG_SKGE is not set | 663 | # CONFIG_SKGE is not set |
| 655 | # CONFIG_SKY2 is not set | 664 | # CONFIG_SKY2 is not set |
| 656 | # CONFIG_SK98LIN is not set | ||
| 657 | # CONFIG_VIA_VELOCITY is not set | 665 | # CONFIG_VIA_VELOCITY is not set |
| 658 | # CONFIG_TIGON3 is not set | 666 | # CONFIG_TIGON3 is not set |
| 659 | # CONFIG_BNX2 is not set | 667 | # CONFIG_BNX2 is not set |
| @@ -673,6 +681,7 @@ CONFIG_NETDEV_10000=y | |||
| 673 | # CONFIG_MLX4_CORE is not set | 681 | # CONFIG_MLX4_CORE is not set |
| 674 | # CONFIG_TEHUTI is not set | 682 | # CONFIG_TEHUTI is not set |
| 675 | # CONFIG_BNX2X is not set | 683 | # CONFIG_BNX2X is not set |
| 684 | # CONFIG_SFC is not set | ||
| 676 | # CONFIG_TR is not set | 685 | # CONFIG_TR is not set |
| 677 | 686 | ||
| 678 | # | 687 | # |
| @@ -680,6 +689,7 @@ CONFIG_NETDEV_10000=y | |||
| 680 | # | 689 | # |
| 681 | # CONFIG_WLAN_PRE80211 is not set | 690 | # CONFIG_WLAN_PRE80211 is not set |
| 682 | # CONFIG_WLAN_80211 is not set | 691 | # CONFIG_WLAN_80211 is not set |
| 692 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 683 | # CONFIG_WAN is not set | 693 | # CONFIG_WAN is not set |
| 684 | # CONFIG_FDDI is not set | 694 | # CONFIG_FDDI is not set |
| 685 | # CONFIG_HIPPI is not set | 695 | # CONFIG_HIPPI is not set |
| @@ -753,6 +763,7 @@ CONFIG_SERIO_LIBPS2=y | |||
| 753 | # Character devices | 763 | # Character devices |
| 754 | # | 764 | # |
| 755 | # CONFIG_VT is not set | 765 | # CONFIG_VT is not set |
| 766 | CONFIG_DEVKMEM=y | ||
| 756 | # CONFIG_SERIAL_NONSTANDARD is not set | 767 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 757 | # CONFIG_NOZOMI is not set | 768 | # CONFIG_NOZOMI is not set |
| 758 | 769 | ||
| @@ -796,13 +807,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 796 | CONFIG_I2C_CHARDEV=m | 807 | CONFIG_I2C_CHARDEV=m |
| 797 | 808 | ||
| 798 | # | 809 | # |
| 799 | # I2C Algorithms | ||
| 800 | # | ||
| 801 | CONFIG_I2C_ALGOBIT=m | ||
| 802 | # CONFIG_I2C_ALGOPCF is not set | ||
| 803 | # CONFIG_I2C_ALGOPCA is not set | ||
| 804 | |||
| 805 | # | ||
| 806 | # I2C Hardware Bus support | 810 | # I2C Hardware Bus support |
| 807 | # | 811 | # |
| 808 | # CONFIG_I2C_ALI1535 is not set | 812 | # CONFIG_I2C_ALI1535 is not set |
| @@ -829,6 +833,7 @@ CONFIG_I2C_ALGOBIT=m | |||
| 829 | # CONFIG_I2C_VIA is not set | 833 | # CONFIG_I2C_VIA is not set |
| 830 | # CONFIG_I2C_VIAPRO is not set | 834 | # CONFIG_I2C_VIAPRO is not set |
| 831 | # CONFIG_I2C_VOODOO3 is not set | 835 | # CONFIG_I2C_VOODOO3 is not set |
| 836 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 832 | 837 | ||
| 833 | # | 838 | # |
| 834 | # Miscellaneous I2C Chip support | 839 | # Miscellaneous I2C Chip support |
| @@ -838,19 +843,13 @@ CONFIG_I2C_ALGOBIT=m | |||
| 838 | # CONFIG_SENSORS_PCF8574 is not set | 843 | # CONFIG_SENSORS_PCF8574 is not set |
| 839 | # CONFIG_PCF8575 is not set | 844 | # CONFIG_PCF8575 is not set |
| 840 | # CONFIG_SENSORS_PCF8591 is not set | 845 | # CONFIG_SENSORS_PCF8591 is not set |
| 841 | # CONFIG_TPS65010 is not set | ||
| 842 | # CONFIG_SENSORS_MAX6875 is not set | 846 | # CONFIG_SENSORS_MAX6875 is not set |
| 843 | # CONFIG_SENSORS_TSL2550 is not set | 847 | # CONFIG_SENSORS_TSL2550 is not set |
| 844 | # CONFIG_I2C_DEBUG_CORE is not set | 848 | # CONFIG_I2C_DEBUG_CORE is not set |
| 845 | # CONFIG_I2C_DEBUG_ALGO is not set | 849 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 846 | # CONFIG_I2C_DEBUG_BUS is not set | 850 | # CONFIG_I2C_DEBUG_BUS is not set |
| 847 | # CONFIG_I2C_DEBUG_CHIP is not set | 851 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 848 | |||
| 849 | # | ||
| 850 | # SPI support | ||
| 851 | # | ||
| 852 | # CONFIG_SPI is not set | 852 | # CONFIG_SPI is not set |
| 853 | # CONFIG_SPI_MASTER is not set | ||
| 854 | # CONFIG_W1 is not set | 853 | # CONFIG_W1 is not set |
| 855 | # CONFIG_POWER_SUPPLY is not set | 854 | # CONFIG_POWER_SUPPLY is not set |
| 856 | CONFIG_HWMON=y | 855 | CONFIG_HWMON=y |
| @@ -920,12 +919,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 920 | # Multifunction device drivers | 919 | # Multifunction device drivers |
| 921 | # | 920 | # |
| 922 | # CONFIG_MFD_SM501 is not set | 921 | # CONFIG_MFD_SM501 is not set |
| 922 | # CONFIG_HTC_PASIC3 is not set | ||
| 923 | 923 | ||
| 924 | # | 924 | # |
| 925 | # Multimedia devices | 925 | # Multimedia devices |
| 926 | # | 926 | # |
| 927 | |||
| 928 | # | ||
| 929 | # Multimedia core support | ||
| 930 | # | ||
| 927 | # CONFIG_VIDEO_DEV is not set | 931 | # CONFIG_VIDEO_DEV is not set |
| 928 | # CONFIG_DVB_CORE is not set | 932 | # CONFIG_DVB_CORE is not set |
| 933 | # CONFIG_VIDEO_MEDIA is not set | ||
| 934 | |||
| 935 | # | ||
| 936 | # Multimedia drivers | ||
| 937 | # | ||
| 929 | CONFIG_DAB=y | 938 | CONFIG_DAB=y |
| 930 | 939 | ||
| 931 | # | 940 | # |
| @@ -973,6 +982,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 973 | CONFIG_USB_ARCH_HAS_OHCI=y | 982 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 974 | CONFIG_USB_ARCH_HAS_EHCI=y | 983 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 975 | # CONFIG_USB is not set | 984 | # CONFIG_USB is not set |
| 985 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 986 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 976 | 987 | ||
| 977 | # | 988 | # |
| 978 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 989 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -981,15 +992,12 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 981 | # CONFIG_MMC is not set | 992 | # CONFIG_MMC is not set |
| 982 | # CONFIG_MEMSTICK is not set | 993 | # CONFIG_MEMSTICK is not set |
| 983 | # CONFIG_NEW_LEDS is not set | 994 | # CONFIG_NEW_LEDS is not set |
| 995 | # CONFIG_ACCESSIBILITY is not set | ||
| 984 | # CONFIG_INFINIBAND is not set | 996 | # CONFIG_INFINIBAND is not set |
| 985 | # CONFIG_EDAC is not set | 997 | # CONFIG_EDAC is not set |
| 986 | # CONFIG_RTC_CLASS is not set | 998 | # CONFIG_RTC_CLASS is not set |
| 987 | # CONFIG_DMADEVICES is not set | 999 | # CONFIG_DMADEVICES is not set |
| 988 | # CONFIG_AUXDISPLAY is not set | 1000 | # CONFIG_AUXDISPLAY is not set |
| 989 | |||
| 990 | # | ||
| 991 | # Userspace I/O | ||
| 992 | # | ||
| 993 | # CONFIG_UIO is not set | 1001 | # CONFIG_UIO is not set |
| 994 | 1002 | ||
| 995 | # | 1003 | # |
| @@ -1009,7 +1017,6 @@ CONFIG_FS_MBCACHE=y | |||
| 1009 | # CONFIG_JFS_FS is not set | 1017 | # CONFIG_JFS_FS is not set |
| 1010 | # CONFIG_FS_POSIX_ACL is not set | 1018 | # CONFIG_FS_POSIX_ACL is not set |
| 1011 | # CONFIG_XFS_FS is not set | 1019 | # CONFIG_XFS_FS is not set |
| 1012 | # CONFIG_GFS2_FS is not set | ||
| 1013 | # CONFIG_OCFS2_FS is not set | 1020 | # CONFIG_OCFS2_FS is not set |
| 1014 | CONFIG_DNOTIFY=y | 1021 | CONFIG_DNOTIFY=y |
| 1015 | CONFIG_INOTIFY=y | 1022 | CONFIG_INOTIFY=y |
| @@ -1073,7 +1080,6 @@ CONFIG_NFS_FS=y | |||
| 1073 | CONFIG_NFS_V3=y | 1080 | CONFIG_NFS_V3=y |
| 1074 | # CONFIG_NFS_V3_ACL is not set | 1081 | # CONFIG_NFS_V3_ACL is not set |
| 1075 | # CONFIG_NFS_V4 is not set | 1082 | # CONFIG_NFS_V4 is not set |
| 1076 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1077 | # CONFIG_NFSD is not set | 1083 | # CONFIG_NFSD is not set |
| 1078 | CONFIG_ROOT_NFS=y | 1084 | CONFIG_ROOT_NFS=y |
| 1079 | CONFIG_LOCKD=y | 1085 | CONFIG_LOCKD=y |
| @@ -1141,9 +1147,10 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1141 | # Library routines | 1147 | # Library routines |
| 1142 | # | 1148 | # |
| 1143 | CONFIG_BITREVERSE=y | 1149 | CONFIG_BITREVERSE=y |
| 1150 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1144 | CONFIG_CRC_CCITT=y | 1151 | CONFIG_CRC_CCITT=y |
| 1145 | # CONFIG_CRC16 is not set | 1152 | # CONFIG_CRC16 is not set |
| 1146 | # CONFIG_CRC_ITU_T is not set | 1153 | CONFIG_CRC_ITU_T=m |
| 1147 | CONFIG_CRC32=y | 1154 | CONFIG_CRC32=y |
| 1148 | # CONFIG_CRC7 is not set | 1155 | # CONFIG_CRC7 is not set |
| 1149 | # CONFIG_LIBCRC32C is not set | 1156 | # CONFIG_LIBCRC32C is not set |
| @@ -1152,6 +1159,7 @@ CONFIG_PLIST=y | |||
| 1152 | CONFIG_HAS_IOMEM=y | 1159 | CONFIG_HAS_IOMEM=y |
| 1153 | CONFIG_HAS_IOPORT=y | 1160 | CONFIG_HAS_IOPORT=y |
| 1154 | CONFIG_HAS_DMA=y | 1161 | CONFIG_HAS_DMA=y |
| 1162 | CONFIG_HAVE_LMB=y | ||
| 1155 | 1163 | ||
| 1156 | # | 1164 | # |
| 1157 | # Kernel hacking | 1165 | # Kernel hacking |
| @@ -1159,6 +1167,7 @@ CONFIG_HAS_DMA=y | |||
| 1159 | # CONFIG_PRINTK_TIME is not set | 1167 | # CONFIG_PRINTK_TIME is not set |
| 1160 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1168 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1161 | CONFIG_ENABLE_MUST_CHECK=y | 1169 | CONFIG_ENABLE_MUST_CHECK=y |
| 1170 | CONFIG_FRAME_WARN=1024 | ||
| 1162 | # CONFIG_MAGIC_SYSRQ is not set | 1171 | # CONFIG_MAGIC_SYSRQ is not set |
| 1163 | # CONFIG_UNUSED_SYMBOLS is not set | 1172 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1164 | # CONFIG_DEBUG_FS is not set | 1173 | # CONFIG_DEBUG_FS is not set |
| @@ -1169,6 +1178,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1169 | CONFIG_SCHED_DEBUG=y | 1178 | CONFIG_SCHED_DEBUG=y |
| 1170 | # CONFIG_SCHEDSTATS is not set | 1179 | # CONFIG_SCHEDSTATS is not set |
| 1171 | # CONFIG_TIMER_STATS is not set | 1180 | # CONFIG_TIMER_STATS is not set |
| 1181 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1172 | # CONFIG_SLUB_DEBUG_ON is not set | 1182 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1173 | # CONFIG_SLUB_STATS is not set | 1183 | # CONFIG_SLUB_STATS is not set |
| 1174 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1184 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -1182,6 +1192,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1182 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1192 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1183 | # CONFIG_DEBUG_INFO is not set | 1193 | # CONFIG_DEBUG_INFO is not set |
| 1184 | # CONFIG_DEBUG_VM is not set | 1194 | # CONFIG_DEBUG_VM is not set |
| 1195 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1185 | # CONFIG_DEBUG_LIST is not set | 1196 | # CONFIG_DEBUG_LIST is not set |
| 1186 | # CONFIG_DEBUG_SG is not set | 1197 | # CONFIG_DEBUG_SG is not set |
| 1187 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1198 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1194,6 +1205,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1194 | # CONFIG_DEBUG_PAGEALLOC is not set | 1205 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1195 | # CONFIG_DEBUGGER is not set | 1206 | # CONFIG_DEBUGGER is not set |
| 1196 | # CONFIG_KGDB_CONSOLE is not set | 1207 | # CONFIG_KGDB_CONSOLE is not set |
| 1208 | # CONFIG_IRQSTACKS is not set | ||
| 1197 | CONFIG_BDI_SWITCH=y | 1209 | CONFIG_BDI_SWITCH=y |
| 1198 | # CONFIG_PPC_EARLY_DEBUG is not set | 1210 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1199 | 1211 | ||
| @@ -1204,50 +1216,80 @@ CONFIG_BDI_SWITCH=y | |||
| 1204 | # CONFIG_SECURITY is not set | 1216 | # CONFIG_SECURITY is not set |
| 1205 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1217 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1206 | CONFIG_CRYPTO=y | 1218 | CONFIG_CRYPTO=y |
| 1207 | # CONFIG_CRYPTO_SEQIV is not set | 1219 | |
| 1220 | # | ||
| 1221 | # Crypto core or helper | ||
| 1222 | # | ||
| 1208 | # CONFIG_CRYPTO_MANAGER is not set | 1223 | # CONFIG_CRYPTO_MANAGER is not set |
| 1224 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1225 | # CONFIG_CRYPTO_NULL is not set | ||
| 1226 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1227 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1228 | # CONFIG_CRYPTO_TEST is not set | ||
| 1229 | |||
| 1230 | # | ||
| 1231 | # Authenticated Encryption with Associated Data | ||
| 1232 | # | ||
| 1233 | # CONFIG_CRYPTO_CCM is not set | ||
| 1234 | # CONFIG_CRYPTO_GCM is not set | ||
| 1235 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1236 | |||
| 1237 | # | ||
| 1238 | # Block modes | ||
| 1239 | # | ||
| 1240 | # CONFIG_CRYPTO_CBC is not set | ||
| 1241 | # CONFIG_CRYPTO_CTR is not set | ||
| 1242 | # CONFIG_CRYPTO_CTS is not set | ||
| 1243 | # CONFIG_CRYPTO_ECB is not set | ||
| 1244 | # CONFIG_CRYPTO_LRW is not set | ||
| 1245 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1246 | # CONFIG_CRYPTO_XTS is not set | ||
| 1247 | |||
| 1248 | # | ||
| 1249 | # Hash modes | ||
| 1250 | # | ||
| 1209 | # CONFIG_CRYPTO_HMAC is not set | 1251 | # CONFIG_CRYPTO_HMAC is not set |
| 1210 | # CONFIG_CRYPTO_XCBC is not set | 1252 | # CONFIG_CRYPTO_XCBC is not set |
| 1211 | # CONFIG_CRYPTO_NULL is not set | 1253 | |
| 1254 | # | ||
| 1255 | # Digest | ||
| 1256 | # | ||
| 1257 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1212 | # CONFIG_CRYPTO_MD4 is not set | 1258 | # CONFIG_CRYPTO_MD4 is not set |
| 1213 | # CONFIG_CRYPTO_MD5 is not set | 1259 | # CONFIG_CRYPTO_MD5 is not set |
| 1260 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1214 | # CONFIG_CRYPTO_SHA1 is not set | 1261 | # CONFIG_CRYPTO_SHA1 is not set |
| 1215 | # CONFIG_CRYPTO_SHA256 is not set | 1262 | # CONFIG_CRYPTO_SHA256 is not set |
| 1216 | # CONFIG_CRYPTO_SHA512 is not set | 1263 | # CONFIG_CRYPTO_SHA512 is not set |
| 1217 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1218 | # CONFIG_CRYPTO_TGR192 is not set | 1264 | # CONFIG_CRYPTO_TGR192 is not set |
| 1219 | # CONFIG_CRYPTO_GF128MUL is not set | 1265 | # CONFIG_CRYPTO_WP512 is not set |
| 1220 | # CONFIG_CRYPTO_ECB is not set | 1266 | |
| 1221 | # CONFIG_CRYPTO_CBC is not set | 1267 | # |
| 1222 | # CONFIG_CRYPTO_PCBC is not set | 1268 | # Ciphers |
| 1223 | # CONFIG_CRYPTO_LRW is not set | 1269 | # |
| 1224 | # CONFIG_CRYPTO_XTS is not set | ||
| 1225 | # CONFIG_CRYPTO_CTR is not set | ||
| 1226 | # CONFIG_CRYPTO_GCM is not set | ||
| 1227 | # CONFIG_CRYPTO_CCM is not set | ||
| 1228 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1229 | # CONFIG_CRYPTO_DES is not set | ||
| 1230 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1231 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1232 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1233 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1234 | # CONFIG_CRYPTO_AES is not set | 1270 | # CONFIG_CRYPTO_AES is not set |
| 1271 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1272 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1273 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1274 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1235 | # CONFIG_CRYPTO_CAST5 is not set | 1275 | # CONFIG_CRYPTO_CAST5 is not set |
| 1236 | # CONFIG_CRYPTO_CAST6 is not set | 1276 | # CONFIG_CRYPTO_CAST6 is not set |
| 1237 | # CONFIG_CRYPTO_TEA is not set | 1277 | # CONFIG_CRYPTO_DES is not set |
| 1238 | # CONFIG_CRYPTO_ARC4 is not set | 1278 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1239 | # CONFIG_CRYPTO_KHAZAD is not set | 1279 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1240 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1241 | # CONFIG_CRYPTO_SEED is not set | ||
| 1242 | # CONFIG_CRYPTO_SALSA20 is not set | 1280 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1281 | # CONFIG_CRYPTO_SEED is not set | ||
| 1282 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1283 | # CONFIG_CRYPTO_TEA is not set | ||
| 1284 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1285 | |||
| 1286 | # | ||
| 1287 | # Compression | ||
| 1288 | # | ||
| 1243 | # CONFIG_CRYPTO_DEFLATE is not set | 1289 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1244 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1245 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1246 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1247 | # CONFIG_CRYPTO_TEST is not set | ||
| 1248 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1249 | # CONFIG_CRYPTO_LZO is not set | 1290 | # CONFIG_CRYPTO_LZO is not set |
| 1250 | CONFIG_CRYPTO_HW=y | 1291 | CONFIG_CRYPTO_HW=y |
| 1251 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1292 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1252 | # CONFIG_PPC_CLOCK is not set | 1293 | # CONFIG_PPC_CLOCK is not set |
| 1253 | CONFIG_PPC_LIB_RHEAP=y | 1294 | CONFIG_PPC_LIB_RHEAP=y |
| 1295 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/tqm8540_defconfig b/arch/powerpc/configs/85xx/tqm8540_defconfig index d39ee3b35bfc..e0b5559e84aa 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:43 2008 | 4 | # Mon Jun 9 08:52:39 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -87,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 87 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 90 | # CONFIG_KALLSYMS is not set | 93 | # CONFIG_KALLSYMS is not set |
| 91 | # CONFIG_HOTPLUG is not set | 94 | # CONFIG_HOTPLUG is not set |
| 92 | CONFIG_PRINTK=y | 95 | CONFIG_PRINTK=y |
| @@ -111,6 +114,7 @@ CONFIG_SLUB=y | |||
| 111 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
| 112 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 118 | CONFIG_PROC_PAGE_MONITOR=y |
| 115 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
| 116 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
| @@ -151,6 +155,7 @@ CONFIG_MPC85xx=y | |||
| 151 | # CONFIG_MPC85xx_CDS is not set | 155 | # CONFIG_MPC85xx_CDS is not set |
| 152 | # CONFIG_MPC85xx_MDS is not set | 156 | # CONFIG_MPC85xx_MDS is not set |
| 153 | # CONFIG_MPC85xx_DS is not set | 157 | # CONFIG_MPC85xx_DS is not set |
| 158 | # CONFIG_KSI8560 is not set | ||
| 154 | # CONFIG_STX_GP3 is not set | 159 | # CONFIG_STX_GP3 is not set |
| 155 | CONFIG_TQM8540=y | 160 | CONFIG_TQM8540=y |
| 156 | # CONFIG_TQM8541 is not set | 161 | # CONFIG_TQM8541 is not set |
| @@ -171,7 +176,6 @@ CONFIG_MPIC=y | |||
| 171 | # CONFIG_GENERIC_IOMAP is not set | 176 | # CONFIG_GENERIC_IOMAP is not set |
| 172 | # CONFIG_CPU_FREQ is not set | 177 | # CONFIG_CPU_FREQ is not set |
| 173 | # CONFIG_CPM2 is not set | 178 | # CONFIG_CPM2 is not set |
| 174 | CONFIG_PPC_CPM_NEW_BINDING=y | ||
| 175 | # CONFIG_FSL_ULI1575 is not set | 179 | # CONFIG_FSL_ULI1575 is not set |
| 176 | 180 | ||
| 177 | # | 181 | # |
| @@ -208,11 +212,13 @@ CONFIG_FLATMEM=y | |||
| 208 | CONFIG_FLAT_NODE_MEM_MAP=y | 212 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 209 | # CONFIG_SPARSEMEM_STATIC is not set | 213 | # CONFIG_SPARSEMEM_STATIC is not set |
| 210 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 214 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 215 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 211 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 216 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 212 | # CONFIG_RESOURCES_64BIT is not set | 217 | # CONFIG_RESOURCES_64BIT is not set |
| 213 | CONFIG_ZONE_DMA_FLAG=1 | 218 | CONFIG_ZONE_DMA_FLAG=1 |
| 214 | CONFIG_BOUNCE=y | 219 | CONFIG_BOUNCE=y |
| 215 | CONFIG_VIRT_TO_BUS=y | 220 | CONFIG_VIRT_TO_BUS=y |
| 221 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 216 | # CONFIG_PROC_DEVICETREE is not set | 222 | # CONFIG_PROC_DEVICETREE is not set |
| 217 | # CONFIG_CMDLINE_BOOL is not set | 223 | # CONFIG_CMDLINE_BOOL is not set |
| 218 | # CONFIG_PM is not set | 224 | # CONFIG_PM is not set |
| @@ -233,6 +239,7 @@ CONFIG_PCI_SYSCALL=y | |||
| 233 | CONFIG_ARCH_SUPPORTS_MSI=y | 239 | CONFIG_ARCH_SUPPORTS_MSI=y |
| 234 | # CONFIG_PCI_MSI is not set | 240 | # CONFIG_PCI_MSI is not set |
| 235 | CONFIG_PCI_LEGACY=y | 241 | CONFIG_PCI_LEGACY=y |
| 242 | # CONFIG_HAS_RAPIDIO is not set | ||
| 236 | 243 | ||
| 237 | # | 244 | # |
| 238 | # Advanced setup | 245 | # Advanced setup |
| @@ -242,11 +249,12 @@ CONFIG_PCI_LEGACY=y | |||
| 242 | # | 249 | # |
| 243 | # Default settings for advanced configuration options are used | 250 | # Default settings for advanced configuration options are used |
| 244 | # | 251 | # |
| 245 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 246 | CONFIG_LOWMEM_SIZE=0x30000000 | 252 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 253 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 247 | CONFIG_KERNEL_START=0xc0000000 | 254 | CONFIG_KERNEL_START=0xc0000000 |
| 255 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 256 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 248 | CONFIG_TASK_SIZE=0xc0000000 | 257 | CONFIG_TASK_SIZE=0xc0000000 |
| 249 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 250 | 258 | ||
| 251 | # | 259 | # |
| 252 | # Networking | 260 | # Networking |
| @@ -294,8 +302,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 294 | CONFIG_DEFAULT_TCP_CONG="cubic" | 302 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 295 | # CONFIG_TCP_MD5SIG is not set | 303 | # CONFIG_TCP_MD5SIG is not set |
| 296 | # CONFIG_IPV6 is not set | 304 | # CONFIG_IPV6 is not set |
| 297 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 298 | # CONFIG_INET6_TUNNEL is not set | ||
| 299 | # CONFIG_NETWORK_SECMARK is not set | 305 | # CONFIG_NETWORK_SECMARK is not set |
| 300 | # CONFIG_NETFILTER is not set | 306 | # CONFIG_NETFILTER is not set |
| 301 | # CONFIG_IP_DCCP is not set | 307 | # CONFIG_IP_DCCP is not set |
| @@ -352,6 +358,7 @@ CONFIG_MTD_PARTITIONS=y | |||
| 352 | # CONFIG_MTD_REDBOOT_PARTS is not set | 358 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 353 | CONFIG_MTD_CMDLINE_PARTS=y | 359 | CONFIG_MTD_CMDLINE_PARTS=y |
| 354 | # CONFIG_MTD_OF_PARTS is not set | 360 | # CONFIG_MTD_OF_PARTS is not set |
| 361 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 355 | 362 | ||
| 356 | # | 363 | # |
| 357 | # User Modules And Translation Layers | 364 | # User Modules And Translation Layers |
| @@ -423,6 +430,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 423 | # | 430 | # |
| 424 | # CONFIG_MTD_UBI is not set | 431 | # CONFIG_MTD_UBI is not set |
| 425 | CONFIG_OF_DEVICE=y | 432 | CONFIG_OF_DEVICE=y |
| 433 | CONFIG_OF_I2C=y | ||
| 426 | # CONFIG_PARPORT is not set | 434 | # CONFIG_PARPORT is not set |
| 427 | CONFIG_BLK_DEV=y | 435 | CONFIG_BLK_DEV=y |
| 428 | # CONFIG_BLK_DEV_FD is not set | 436 | # CONFIG_BLK_DEV_FD is not set |
| @@ -506,7 +514,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 506 | CONFIG_BLK_DEV_VIA82CXXX=y | 514 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 507 | # CONFIG_BLK_DEV_TC86C001 is not set | 515 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 508 | CONFIG_BLK_DEV_IDEDMA=y | 516 | CONFIG_BLK_DEV_IDEDMA=y |
| 509 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 517 | # CONFIG_BLK_DEV_HD_ONLY is not set |
| 510 | # CONFIG_BLK_DEV_HD is not set | 518 | # CONFIG_BLK_DEV_HD is not set |
| 511 | 519 | ||
| 512 | # | 520 | # |
| @@ -600,7 +608,6 @@ CONFIG_NETDEV_1000=y | |||
| 600 | # CONFIG_SIS190 is not set | 608 | # CONFIG_SIS190 is not set |
| 601 | # CONFIG_SKGE is not set | 609 | # CONFIG_SKGE is not set |
| 602 | # CONFIG_SKY2 is not set | 610 | # CONFIG_SKY2 is not set |
| 603 | # CONFIG_SK98LIN is not set | ||
| 604 | # CONFIG_VIA_VELOCITY is not set | 611 | # CONFIG_VIA_VELOCITY is not set |
| 605 | # CONFIG_TIGON3 is not set | 612 | # CONFIG_TIGON3 is not set |
| 606 | # CONFIG_BNX2 is not set | 613 | # CONFIG_BNX2 is not set |
| @@ -620,6 +627,7 @@ CONFIG_NETDEV_10000=y | |||
| 620 | # CONFIG_MLX4_CORE is not set | 627 | # CONFIG_MLX4_CORE is not set |
| 621 | # CONFIG_TEHUTI is not set | 628 | # CONFIG_TEHUTI is not set |
| 622 | # CONFIG_BNX2X is not set | 629 | # CONFIG_BNX2X is not set |
| 630 | # CONFIG_SFC is not set | ||
| 623 | # CONFIG_TR is not set | 631 | # CONFIG_TR is not set |
| 624 | 632 | ||
| 625 | # | 633 | # |
| @@ -627,6 +635,7 @@ CONFIG_NETDEV_10000=y | |||
| 627 | # | 635 | # |
| 628 | # CONFIG_WLAN_PRE80211 is not set | 636 | # CONFIG_WLAN_PRE80211 is not set |
| 629 | # CONFIG_WLAN_80211 is not set | 637 | # CONFIG_WLAN_80211 is not set |
| 638 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 630 | # CONFIG_WAN is not set | 639 | # CONFIG_WAN is not set |
| 631 | # CONFIG_FDDI is not set | 640 | # CONFIG_FDDI is not set |
| 632 | # CONFIG_HIPPI is not set | 641 | # CONFIG_HIPPI is not set |
| @@ -673,6 +682,7 @@ CONFIG_INPUT=y | |||
| 673 | # Character devices | 682 | # Character devices |
| 674 | # | 683 | # |
| 675 | # CONFIG_VT is not set | 684 | # CONFIG_VT is not set |
| 685 | CONFIG_DEVKMEM=y | ||
| 676 | # CONFIG_SERIAL_NONSTANDARD is not set | 686 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 677 | # CONFIG_NOZOMI is not set | 687 | # CONFIG_NOZOMI is not set |
| 678 | 688 | ||
| @@ -713,13 +723,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 713 | CONFIG_I2C_CHARDEV=y | 723 | CONFIG_I2C_CHARDEV=y |
| 714 | 724 | ||
| 715 | # | 725 | # |
| 716 | # I2C Algorithms | ||
| 717 | # | ||
| 718 | # CONFIG_I2C_ALGOBIT is not set | ||
| 719 | # CONFIG_I2C_ALGOPCF is not set | ||
| 720 | # CONFIG_I2C_ALGOPCA is not set | ||
| 721 | |||
| 722 | # | ||
| 723 | # I2C Hardware Bus support | 726 | # I2C Hardware Bus support |
| 724 | # | 727 | # |
| 725 | # CONFIG_I2C_ALI1535 is not set | 728 | # CONFIG_I2C_ALI1535 is not set |
| @@ -744,6 +747,7 @@ CONFIG_I2C_MPC=y | |||
| 744 | # CONFIG_I2C_VIA is not set | 747 | # CONFIG_I2C_VIA is not set |
| 745 | # CONFIG_I2C_VIAPRO is not set | 748 | # CONFIG_I2C_VIAPRO is not set |
| 746 | # CONFIG_I2C_VOODOO3 is not set | 749 | # CONFIG_I2C_VOODOO3 is not set |
| 750 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 747 | 751 | ||
| 748 | # | 752 | # |
| 749 | # Miscellaneous I2C Chip support | 753 | # Miscellaneous I2C Chip support |
| @@ -753,19 +757,13 @@ CONFIG_I2C_MPC=y | |||
| 753 | # CONFIG_SENSORS_PCF8574 is not set | 757 | # CONFIG_SENSORS_PCF8574 is not set |
| 754 | # CONFIG_PCF8575 is not set | 758 | # CONFIG_PCF8575 is not set |
| 755 | # CONFIG_SENSORS_PCF8591 is not set | 759 | # CONFIG_SENSORS_PCF8591 is not set |
| 756 | # CONFIG_TPS65010 is not set | ||
| 757 | # CONFIG_SENSORS_MAX6875 is not set | 760 | # CONFIG_SENSORS_MAX6875 is not set |
| 758 | # CONFIG_SENSORS_TSL2550 is not set | 761 | # CONFIG_SENSORS_TSL2550 is not set |
| 759 | # CONFIG_I2C_DEBUG_CORE is not set | 762 | # CONFIG_I2C_DEBUG_CORE is not set |
| 760 | # CONFIG_I2C_DEBUG_ALGO is not set | 763 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 761 | # CONFIG_I2C_DEBUG_BUS is not set | 764 | # CONFIG_I2C_DEBUG_BUS is not set |
| 762 | # CONFIG_I2C_DEBUG_CHIP is not set | 765 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 763 | |||
| 764 | # | ||
| 765 | # SPI support | ||
| 766 | # | ||
| 767 | # CONFIG_SPI is not set | 766 | # CONFIG_SPI is not set |
| 768 | # CONFIG_SPI_MASTER is not set | ||
| 769 | # CONFIG_W1 is not set | 767 | # CONFIG_W1 is not set |
| 770 | # CONFIG_POWER_SUPPLY is not set | 768 | # CONFIG_POWER_SUPPLY is not set |
| 771 | CONFIG_HWMON=y | 769 | CONFIG_HWMON=y |
| @@ -835,12 +833,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 835 | # Multifunction device drivers | 833 | # Multifunction device drivers |
| 836 | # | 834 | # |
| 837 | # CONFIG_MFD_SM501 is not set | 835 | # CONFIG_MFD_SM501 is not set |
| 836 | # CONFIG_HTC_PASIC3 is not set | ||
| 838 | 837 | ||
| 839 | # | 838 | # |
| 840 | # Multimedia devices | 839 | # Multimedia devices |
| 841 | # | 840 | # |
| 841 | |||
| 842 | # | ||
| 843 | # Multimedia core support | ||
| 844 | # | ||
| 842 | # CONFIG_VIDEO_DEV is not set | 845 | # CONFIG_VIDEO_DEV is not set |
| 843 | # CONFIG_DVB_CORE is not set | 846 | # CONFIG_DVB_CORE is not set |
| 847 | # CONFIG_VIDEO_MEDIA is not set | ||
| 848 | |||
| 849 | # | ||
| 850 | # Multimedia drivers | ||
| 851 | # | ||
| 844 | CONFIG_DAB=y | 852 | CONFIG_DAB=y |
| 845 | 853 | ||
| 846 | # | 854 | # |
| @@ -871,6 +879,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 871 | CONFIG_USB_ARCH_HAS_OHCI=y | 879 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 872 | CONFIG_USB_ARCH_HAS_EHCI=y | 880 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 873 | # CONFIG_USB is not set | 881 | # CONFIG_USB is not set |
| 882 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 883 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 874 | 884 | ||
| 875 | # | 885 | # |
| 876 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 886 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -879,14 +889,11 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 879 | # CONFIG_MMC is not set | 889 | # CONFIG_MMC is not set |
| 880 | # CONFIG_MEMSTICK is not set | 890 | # CONFIG_MEMSTICK is not set |
| 881 | # CONFIG_NEW_LEDS is not set | 891 | # CONFIG_NEW_LEDS is not set |
| 892 | # CONFIG_ACCESSIBILITY is not set | ||
| 882 | # CONFIG_INFINIBAND is not set | 893 | # CONFIG_INFINIBAND is not set |
| 883 | # CONFIG_EDAC is not set | 894 | # CONFIG_EDAC is not set |
| 884 | # CONFIG_RTC_CLASS is not set | 895 | # CONFIG_RTC_CLASS is not set |
| 885 | # CONFIG_DMADEVICES is not set | 896 | # CONFIG_DMADEVICES is not set |
| 886 | |||
| 887 | # | ||
| 888 | # Userspace I/O | ||
| 889 | # | ||
| 890 | # CONFIG_UIO is not set | 897 | # CONFIG_UIO is not set |
| 891 | 898 | ||
| 892 | # | 899 | # |
| @@ -906,7 +913,6 @@ CONFIG_FS_MBCACHE=y | |||
| 906 | # CONFIG_JFS_FS is not set | 913 | # CONFIG_JFS_FS is not set |
| 907 | # CONFIG_FS_POSIX_ACL is not set | 914 | # CONFIG_FS_POSIX_ACL is not set |
| 908 | # CONFIG_XFS_FS is not set | 915 | # CONFIG_XFS_FS is not set |
| 909 | # CONFIG_GFS2_FS is not set | ||
| 910 | # CONFIG_OCFS2_FS is not set | 916 | # CONFIG_OCFS2_FS is not set |
| 911 | CONFIG_DNOTIFY=y | 917 | CONFIG_DNOTIFY=y |
| 912 | CONFIG_INOTIFY=y | 918 | CONFIG_INOTIFY=y |
| @@ -974,7 +980,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 974 | CONFIG_NFS_FS=y | 980 | CONFIG_NFS_FS=y |
| 975 | # CONFIG_NFS_V3 is not set | 981 | # CONFIG_NFS_V3 is not set |
| 976 | # CONFIG_NFS_V4 is not set | 982 | # CONFIG_NFS_V4 is not set |
| 977 | # CONFIG_NFS_DIRECTIO is not set | ||
| 978 | # CONFIG_NFSD is not set | 983 | # CONFIG_NFSD is not set |
| 979 | CONFIG_ROOT_NFS=y | 984 | CONFIG_ROOT_NFS=y |
| 980 | CONFIG_LOCKD=y | 985 | CONFIG_LOCKD=y |
| @@ -1013,6 +1018,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1013 | # Library routines | 1018 | # Library routines |
| 1014 | # | 1019 | # |
| 1015 | CONFIG_BITREVERSE=y | 1020 | CONFIG_BITREVERSE=y |
| 1021 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1016 | # CONFIG_CRC_CCITT is not set | 1022 | # CONFIG_CRC_CCITT is not set |
| 1017 | # CONFIG_CRC16 is not set | 1023 | # CONFIG_CRC16 is not set |
| 1018 | # CONFIG_CRC_ITU_T is not set | 1024 | # CONFIG_CRC_ITU_T is not set |
| @@ -1025,6 +1031,7 @@ CONFIG_PLIST=y | |||
| 1025 | CONFIG_HAS_IOMEM=y | 1031 | CONFIG_HAS_IOMEM=y |
| 1026 | CONFIG_HAS_IOPORT=y | 1032 | CONFIG_HAS_IOPORT=y |
| 1027 | CONFIG_HAS_DMA=y | 1033 | CONFIG_HAS_DMA=y |
| 1034 | CONFIG_HAVE_LMB=y | ||
| 1028 | 1035 | ||
| 1029 | # | 1036 | # |
| 1030 | # Kernel hacking | 1037 | # Kernel hacking |
| @@ -1032,6 +1039,7 @@ CONFIG_HAS_DMA=y | |||
| 1032 | # CONFIG_PRINTK_TIME is not set | 1039 | # CONFIG_PRINTK_TIME is not set |
| 1033 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1040 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1034 | CONFIG_ENABLE_MUST_CHECK=y | 1041 | CONFIG_ENABLE_MUST_CHECK=y |
| 1042 | CONFIG_FRAME_WARN=1024 | ||
| 1035 | # CONFIG_MAGIC_SYSRQ is not set | 1043 | # CONFIG_MAGIC_SYSRQ is not set |
| 1036 | # CONFIG_UNUSED_SYMBOLS is not set | 1044 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1037 | # CONFIG_DEBUG_FS is not set | 1045 | # CONFIG_DEBUG_FS is not set |
| @@ -1041,6 +1049,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1041 | # CONFIG_SLUB_STATS is not set | 1049 | # CONFIG_SLUB_STATS is not set |
| 1042 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1050 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1043 | # CONFIG_SAMPLES is not set | 1051 | # CONFIG_SAMPLES is not set |
| 1052 | # CONFIG_IRQSTACKS is not set | ||
| 1044 | # CONFIG_PPC_EARLY_DEBUG is not set | 1053 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1045 | 1054 | ||
| 1046 | # | 1055 | # |
| @@ -1050,48 +1059,78 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1050 | # CONFIG_SECURITY is not set | 1059 | # CONFIG_SECURITY is not set |
| 1051 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1060 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1052 | CONFIG_CRYPTO=y | 1061 | CONFIG_CRYPTO=y |
| 1053 | # CONFIG_CRYPTO_SEQIV is not set | 1062 | |
| 1063 | # | ||
| 1064 | # Crypto core or helper | ||
| 1065 | # | ||
| 1054 | # CONFIG_CRYPTO_MANAGER is not set | 1066 | # CONFIG_CRYPTO_MANAGER is not set |
| 1067 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1068 | # CONFIG_CRYPTO_NULL is not set | ||
| 1069 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1070 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1071 | |||
| 1072 | # | ||
| 1073 | # Authenticated Encryption with Associated Data | ||
| 1074 | # | ||
| 1075 | # CONFIG_CRYPTO_CCM is not set | ||
| 1076 | # CONFIG_CRYPTO_GCM is not set | ||
| 1077 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1078 | |||
| 1079 | # | ||
| 1080 | # Block modes | ||
| 1081 | # | ||
| 1082 | # CONFIG_CRYPTO_CBC is not set | ||
| 1083 | # CONFIG_CRYPTO_CTR is not set | ||
| 1084 | # CONFIG_CRYPTO_CTS is not set | ||
| 1085 | # CONFIG_CRYPTO_ECB is not set | ||
| 1086 | # CONFIG_CRYPTO_LRW is not set | ||
| 1087 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1088 | # CONFIG_CRYPTO_XTS is not set | ||
| 1089 | |||
| 1090 | # | ||
| 1091 | # Hash modes | ||
| 1092 | # | ||
| 1055 | # CONFIG_CRYPTO_HMAC is not set | 1093 | # CONFIG_CRYPTO_HMAC is not set |
| 1056 | # CONFIG_CRYPTO_XCBC is not set | 1094 | # CONFIG_CRYPTO_XCBC is not set |
| 1057 | # CONFIG_CRYPTO_NULL is not set | 1095 | |
| 1096 | # | ||
| 1097 | # Digest | ||
| 1098 | # | ||
| 1099 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1058 | # CONFIG_CRYPTO_MD4 is not set | 1100 | # CONFIG_CRYPTO_MD4 is not set |
| 1059 | # CONFIG_CRYPTO_MD5 is not set | 1101 | # CONFIG_CRYPTO_MD5 is not set |
| 1102 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1060 | # CONFIG_CRYPTO_SHA1 is not set | 1103 | # CONFIG_CRYPTO_SHA1 is not set |
| 1061 | # CONFIG_CRYPTO_SHA256 is not set | 1104 | # CONFIG_CRYPTO_SHA256 is not set |
| 1062 | # CONFIG_CRYPTO_SHA512 is not set | 1105 | # CONFIG_CRYPTO_SHA512 is not set |
| 1063 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1064 | # CONFIG_CRYPTO_TGR192 is not set | 1106 | # CONFIG_CRYPTO_TGR192 is not set |
| 1065 | # CONFIG_CRYPTO_GF128MUL is not set | 1107 | # CONFIG_CRYPTO_WP512 is not set |
| 1066 | # CONFIG_CRYPTO_ECB is not set | 1108 | |
| 1067 | # CONFIG_CRYPTO_CBC is not set | 1109 | # |
| 1068 | # CONFIG_CRYPTO_PCBC is not set | 1110 | # Ciphers |
| 1069 | # CONFIG_CRYPTO_LRW is not set | 1111 | # |
| 1070 | # CONFIG_CRYPTO_XTS is not set | ||
| 1071 | # CONFIG_CRYPTO_CTR is not set | ||
| 1072 | # CONFIG_CRYPTO_GCM is not set | ||
| 1073 | # CONFIG_CRYPTO_CCM is not set | ||
| 1074 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1075 | # CONFIG_CRYPTO_DES is not set | ||
| 1076 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1077 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1078 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1079 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1080 | # CONFIG_CRYPTO_AES is not set | 1112 | # CONFIG_CRYPTO_AES is not set |
| 1113 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1114 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1115 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1116 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1081 | # CONFIG_CRYPTO_CAST5 is not set | 1117 | # CONFIG_CRYPTO_CAST5 is not set |
| 1082 | # CONFIG_CRYPTO_CAST6 is not set | 1118 | # CONFIG_CRYPTO_CAST6 is not set |
| 1083 | # CONFIG_CRYPTO_TEA is not set | 1119 | # CONFIG_CRYPTO_DES is not set |
| 1084 | # CONFIG_CRYPTO_ARC4 is not set | 1120 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1085 | # CONFIG_CRYPTO_KHAZAD is not set | 1121 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1086 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1087 | # CONFIG_CRYPTO_SEED is not set | ||
| 1088 | # CONFIG_CRYPTO_SALSA20 is not set | 1122 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1123 | # CONFIG_CRYPTO_SEED is not set | ||
| 1124 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1125 | # CONFIG_CRYPTO_TEA is not set | ||
| 1126 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1127 | |||
| 1128 | # | ||
| 1129 | # Compression | ||
| 1130 | # | ||
| 1089 | # CONFIG_CRYPTO_DEFLATE is not set | 1131 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1090 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1091 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1092 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1093 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1094 | # CONFIG_CRYPTO_LZO is not set | 1132 | # CONFIG_CRYPTO_LZO is not set |
| 1095 | CONFIG_CRYPTO_HW=y | 1133 | CONFIG_CRYPTO_HW=y |
| 1096 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1134 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1097 | # CONFIG_PPC_CLOCK is not set | 1135 | # CONFIG_PPC_CLOCK is not set |
| 1136 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/tqm8541_defconfig b/arch/powerpc/configs/85xx/tqm8541_defconfig index cbf6ad2d71da..6f9067b49e07 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:44 2008 | 4 | # Mon Jun 9 08:52:40 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -87,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 87 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 90 | # CONFIG_KALLSYMS is not set | 93 | # CONFIG_KALLSYMS is not set |
| 91 | # CONFIG_HOTPLUG is not set | 94 | # CONFIG_HOTPLUG is not set |
| 92 | CONFIG_PRINTK=y | 95 | CONFIG_PRINTK=y |
| @@ -111,6 +114,7 @@ CONFIG_SLUB=y | |||
| 111 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
| 112 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 118 | CONFIG_PROC_PAGE_MONITOR=y |
| 115 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
| 116 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
| @@ -151,6 +155,7 @@ CONFIG_MPC85xx=y | |||
| 151 | # CONFIG_MPC85xx_CDS is not set | 155 | # CONFIG_MPC85xx_CDS is not set |
| 152 | # CONFIG_MPC85xx_MDS is not set | 156 | # CONFIG_MPC85xx_MDS is not set |
| 153 | # CONFIG_MPC85xx_DS is not set | 157 | # CONFIG_MPC85xx_DS is not set |
| 158 | # CONFIG_KSI8560 is not set | ||
| 154 | # CONFIG_STX_GP3 is not set | 159 | # CONFIG_STX_GP3 is not set |
| 155 | # CONFIG_TQM8540 is not set | 160 | # CONFIG_TQM8540 is not set |
| 156 | CONFIG_TQM8541=y | 161 | CONFIG_TQM8541=y |
| @@ -209,11 +214,13 @@ CONFIG_FLATMEM=y | |||
| 209 | CONFIG_FLAT_NODE_MEM_MAP=y | 214 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 210 | # CONFIG_SPARSEMEM_STATIC is not set | 215 | # CONFIG_SPARSEMEM_STATIC is not set |
| 211 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 216 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 217 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 212 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 213 | # CONFIG_RESOURCES_64BIT is not set | 219 | # CONFIG_RESOURCES_64BIT is not set |
| 214 | CONFIG_ZONE_DMA_FLAG=1 | 220 | CONFIG_ZONE_DMA_FLAG=1 |
| 215 | CONFIG_BOUNCE=y | 221 | CONFIG_BOUNCE=y |
| 216 | CONFIG_VIRT_TO_BUS=y | 222 | CONFIG_VIRT_TO_BUS=y |
| 223 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 217 | # CONFIG_PROC_DEVICETREE is not set | 224 | # CONFIG_PROC_DEVICETREE is not set |
| 218 | # CONFIG_CMDLINE_BOOL is not set | 225 | # CONFIG_CMDLINE_BOOL is not set |
| 219 | # CONFIG_PM is not set | 226 | # CONFIG_PM is not set |
| @@ -234,6 +241,7 @@ CONFIG_PCI_SYSCALL=y | |||
| 234 | CONFIG_ARCH_SUPPORTS_MSI=y | 241 | CONFIG_ARCH_SUPPORTS_MSI=y |
| 235 | # CONFIG_PCI_MSI is not set | 242 | # CONFIG_PCI_MSI is not set |
| 236 | CONFIG_PCI_LEGACY=y | 243 | CONFIG_PCI_LEGACY=y |
| 244 | # CONFIG_HAS_RAPIDIO is not set | ||
| 237 | 245 | ||
| 238 | # | 246 | # |
| 239 | # Advanced setup | 247 | # Advanced setup |
| @@ -243,11 +251,12 @@ CONFIG_PCI_LEGACY=y | |||
| 243 | # | 251 | # |
| 244 | # Default settings for advanced configuration options are used | 252 | # Default settings for advanced configuration options are used |
| 245 | # | 253 | # |
| 246 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 247 | CONFIG_LOWMEM_SIZE=0x30000000 | 254 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 255 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 248 | CONFIG_KERNEL_START=0xc0000000 | 256 | CONFIG_KERNEL_START=0xc0000000 |
| 257 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 258 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 249 | CONFIG_TASK_SIZE=0xc0000000 | 259 | CONFIG_TASK_SIZE=0xc0000000 |
| 250 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 251 | 260 | ||
| 252 | # | 261 | # |
| 253 | # Networking | 262 | # Networking |
| @@ -295,8 +304,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 295 | CONFIG_DEFAULT_TCP_CONG="cubic" | 304 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 296 | # CONFIG_TCP_MD5SIG is not set | 305 | # CONFIG_TCP_MD5SIG is not set |
| 297 | # CONFIG_IPV6 is not set | 306 | # CONFIG_IPV6 is not set |
| 298 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 299 | # CONFIG_INET6_TUNNEL is not set | ||
| 300 | # CONFIG_NETWORK_SECMARK is not set | 307 | # CONFIG_NETWORK_SECMARK is not set |
| 301 | # CONFIG_NETFILTER is not set | 308 | # CONFIG_NETFILTER is not set |
| 302 | # CONFIG_IP_DCCP is not set | 309 | # CONFIG_IP_DCCP is not set |
| @@ -353,6 +360,7 @@ CONFIG_MTD_PARTITIONS=y | |||
| 353 | # CONFIG_MTD_REDBOOT_PARTS is not set | 360 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 354 | CONFIG_MTD_CMDLINE_PARTS=y | 361 | CONFIG_MTD_CMDLINE_PARTS=y |
| 355 | # CONFIG_MTD_OF_PARTS is not set | 362 | # CONFIG_MTD_OF_PARTS is not set |
| 363 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 356 | 364 | ||
| 357 | # | 365 | # |
| 358 | # User Modules And Translation Layers | 366 | # User Modules And Translation Layers |
| @@ -424,6 +432,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 424 | # | 432 | # |
| 425 | # CONFIG_MTD_UBI is not set | 433 | # CONFIG_MTD_UBI is not set |
| 426 | CONFIG_OF_DEVICE=y | 434 | CONFIG_OF_DEVICE=y |
| 435 | CONFIG_OF_I2C=y | ||
| 427 | # CONFIG_PARPORT is not set | 436 | # CONFIG_PARPORT is not set |
| 428 | CONFIG_BLK_DEV=y | 437 | CONFIG_BLK_DEV=y |
| 429 | # CONFIG_BLK_DEV_FD is not set | 438 | # CONFIG_BLK_DEV_FD is not set |
| @@ -507,7 +516,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 507 | CONFIG_BLK_DEV_VIA82CXXX=y | 516 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 508 | # CONFIG_BLK_DEV_TC86C001 is not set | 517 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 509 | CONFIG_BLK_DEV_IDEDMA=y | 518 | CONFIG_BLK_DEV_IDEDMA=y |
| 510 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 519 | # CONFIG_BLK_DEV_HD_ONLY is not set |
| 511 | # CONFIG_BLK_DEV_HD is not set | 520 | # CONFIG_BLK_DEV_HD is not set |
| 512 | 521 | ||
| 513 | # | 522 | # |
| @@ -602,7 +611,6 @@ CONFIG_NETDEV_1000=y | |||
| 602 | # CONFIG_SIS190 is not set | 611 | # CONFIG_SIS190 is not set |
| 603 | # CONFIG_SKGE is not set | 612 | # CONFIG_SKGE is not set |
| 604 | # CONFIG_SKY2 is not set | 613 | # CONFIG_SKY2 is not set |
| 605 | # CONFIG_SK98LIN is not set | ||
| 606 | # CONFIG_VIA_VELOCITY is not set | 614 | # CONFIG_VIA_VELOCITY is not set |
| 607 | # CONFIG_TIGON3 is not set | 615 | # CONFIG_TIGON3 is not set |
| 608 | # CONFIG_BNX2 is not set | 616 | # CONFIG_BNX2 is not set |
| @@ -622,6 +630,7 @@ CONFIG_NETDEV_10000=y | |||
| 622 | # CONFIG_MLX4_CORE is not set | 630 | # CONFIG_MLX4_CORE is not set |
| 623 | # CONFIG_TEHUTI is not set | 631 | # CONFIG_TEHUTI is not set |
| 624 | # CONFIG_BNX2X is not set | 632 | # CONFIG_BNX2X is not set |
| 633 | # CONFIG_SFC is not set | ||
| 625 | # CONFIG_TR is not set | 634 | # CONFIG_TR is not set |
| 626 | 635 | ||
| 627 | # | 636 | # |
| @@ -629,6 +638,7 @@ CONFIG_NETDEV_10000=y | |||
| 629 | # | 638 | # |
| 630 | # CONFIG_WLAN_PRE80211 is not set | 639 | # CONFIG_WLAN_PRE80211 is not set |
| 631 | # CONFIG_WLAN_80211 is not set | 640 | # CONFIG_WLAN_80211 is not set |
| 641 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 632 | # CONFIG_WAN is not set | 642 | # CONFIG_WAN is not set |
| 633 | # CONFIG_FDDI is not set | 643 | # CONFIG_FDDI is not set |
| 634 | # CONFIG_HIPPI is not set | 644 | # CONFIG_HIPPI is not set |
| @@ -675,6 +685,7 @@ CONFIG_INPUT=y | |||
| 675 | # Character devices | 685 | # Character devices |
| 676 | # | 686 | # |
| 677 | # CONFIG_VT is not set | 687 | # CONFIG_VT is not set |
| 688 | CONFIG_DEVKMEM=y | ||
| 678 | # CONFIG_SERIAL_NONSTANDARD is not set | 689 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 679 | # CONFIG_NOZOMI is not set | 690 | # CONFIG_NOZOMI is not set |
| 680 | 691 | ||
| @@ -723,13 +734,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 723 | CONFIG_I2C_CHARDEV=y | 734 | CONFIG_I2C_CHARDEV=y |
| 724 | 735 | ||
| 725 | # | 736 | # |
| 726 | # I2C Algorithms | ||
| 727 | # | ||
| 728 | # CONFIG_I2C_ALGOBIT is not set | ||
| 729 | # CONFIG_I2C_ALGOPCF is not set | ||
| 730 | # CONFIG_I2C_ALGOPCA is not set | ||
| 731 | |||
| 732 | # | ||
| 733 | # I2C Hardware Bus support | 737 | # I2C Hardware Bus support |
| 734 | # | 738 | # |
| 735 | # CONFIG_I2C_ALI1535 is not set | 739 | # CONFIG_I2C_ALI1535 is not set |
| @@ -754,6 +758,7 @@ CONFIG_I2C_MPC=y | |||
| 754 | # CONFIG_I2C_VIA is not set | 758 | # CONFIG_I2C_VIA is not set |
| 755 | # CONFIG_I2C_VIAPRO is not set | 759 | # CONFIG_I2C_VIAPRO is not set |
| 756 | # CONFIG_I2C_VOODOO3 is not set | 760 | # CONFIG_I2C_VOODOO3 is not set |
| 761 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 757 | 762 | ||
| 758 | # | 763 | # |
| 759 | # Miscellaneous I2C Chip support | 764 | # Miscellaneous I2C Chip support |
| @@ -763,19 +768,13 @@ CONFIG_I2C_MPC=y | |||
| 763 | # CONFIG_SENSORS_PCF8574 is not set | 768 | # CONFIG_SENSORS_PCF8574 is not set |
| 764 | # CONFIG_PCF8575 is not set | 769 | # CONFIG_PCF8575 is not set |
| 765 | # CONFIG_SENSORS_PCF8591 is not set | 770 | # CONFIG_SENSORS_PCF8591 is not set |
| 766 | # CONFIG_TPS65010 is not set | ||
| 767 | # CONFIG_SENSORS_MAX6875 is not set | 771 | # CONFIG_SENSORS_MAX6875 is not set |
| 768 | # CONFIG_SENSORS_TSL2550 is not set | 772 | # CONFIG_SENSORS_TSL2550 is not set |
| 769 | # CONFIG_I2C_DEBUG_CORE is not set | 773 | # CONFIG_I2C_DEBUG_CORE is not set |
| 770 | # CONFIG_I2C_DEBUG_ALGO is not set | 774 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 771 | # CONFIG_I2C_DEBUG_BUS is not set | 775 | # CONFIG_I2C_DEBUG_BUS is not set |
| 772 | # CONFIG_I2C_DEBUG_CHIP is not set | 776 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 773 | |||
| 774 | # | ||
| 775 | # SPI support | ||
| 776 | # | ||
| 777 | # CONFIG_SPI is not set | 777 | # CONFIG_SPI is not set |
| 778 | # CONFIG_SPI_MASTER is not set | ||
| 779 | # CONFIG_W1 is not set | 778 | # CONFIG_W1 is not set |
| 780 | # CONFIG_POWER_SUPPLY is not set | 779 | # CONFIG_POWER_SUPPLY is not set |
| 781 | CONFIG_HWMON=y | 780 | CONFIG_HWMON=y |
| @@ -845,12 +844,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 845 | # Multifunction device drivers | 844 | # Multifunction device drivers |
| 846 | # | 845 | # |
| 847 | # CONFIG_MFD_SM501 is not set | 846 | # CONFIG_MFD_SM501 is not set |
| 847 | # CONFIG_HTC_PASIC3 is not set | ||
| 848 | 848 | ||
| 849 | # | 849 | # |
| 850 | # Multimedia devices | 850 | # Multimedia devices |
| 851 | # | 851 | # |
| 852 | |||
| 853 | # | ||
| 854 | # Multimedia core support | ||
| 855 | # | ||
| 852 | # CONFIG_VIDEO_DEV is not set | 856 | # CONFIG_VIDEO_DEV is not set |
| 853 | # CONFIG_DVB_CORE is not set | 857 | # CONFIG_DVB_CORE is not set |
| 858 | # CONFIG_VIDEO_MEDIA is not set | ||
| 859 | |||
| 860 | # | ||
| 861 | # Multimedia drivers | ||
| 862 | # | ||
| 854 | CONFIG_DAB=y | 863 | CONFIG_DAB=y |
| 855 | 864 | ||
| 856 | # | 865 | # |
| @@ -881,6 +890,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 881 | CONFIG_USB_ARCH_HAS_OHCI=y | 890 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 882 | CONFIG_USB_ARCH_HAS_EHCI=y | 891 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 883 | # CONFIG_USB is not set | 892 | # CONFIG_USB is not set |
| 893 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 894 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 884 | 895 | ||
| 885 | # | 896 | # |
| 886 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 897 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -889,14 +900,11 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 889 | # CONFIG_MMC is not set | 900 | # CONFIG_MMC is not set |
| 890 | # CONFIG_MEMSTICK is not set | 901 | # CONFIG_MEMSTICK is not set |
| 891 | # CONFIG_NEW_LEDS is not set | 902 | # CONFIG_NEW_LEDS is not set |
| 903 | # CONFIG_ACCESSIBILITY is not set | ||
| 892 | # CONFIG_INFINIBAND is not set | 904 | # CONFIG_INFINIBAND is not set |
| 893 | # CONFIG_EDAC is not set | 905 | # CONFIG_EDAC is not set |
| 894 | # CONFIG_RTC_CLASS is not set | 906 | # CONFIG_RTC_CLASS is not set |
| 895 | # CONFIG_DMADEVICES is not set | 907 | # CONFIG_DMADEVICES is not set |
| 896 | |||
| 897 | # | ||
| 898 | # Userspace I/O | ||
| 899 | # | ||
| 900 | # CONFIG_UIO is not set | 908 | # CONFIG_UIO is not set |
| 901 | 909 | ||
| 902 | # | 910 | # |
| @@ -916,7 +924,6 @@ CONFIG_FS_MBCACHE=y | |||
| 916 | # CONFIG_JFS_FS is not set | 924 | # CONFIG_JFS_FS is not set |
| 917 | # CONFIG_FS_POSIX_ACL is not set | 925 | # CONFIG_FS_POSIX_ACL is not set |
| 918 | # CONFIG_XFS_FS is not set | 926 | # CONFIG_XFS_FS is not set |
| 919 | # CONFIG_GFS2_FS is not set | ||
| 920 | # CONFIG_OCFS2_FS is not set | 927 | # CONFIG_OCFS2_FS is not set |
| 921 | CONFIG_DNOTIFY=y | 928 | CONFIG_DNOTIFY=y |
| 922 | CONFIG_INOTIFY=y | 929 | CONFIG_INOTIFY=y |
| @@ -984,7 +991,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 984 | CONFIG_NFS_FS=y | 991 | CONFIG_NFS_FS=y |
| 985 | # CONFIG_NFS_V3 is not set | 992 | # CONFIG_NFS_V3 is not set |
| 986 | # CONFIG_NFS_V4 is not set | 993 | # CONFIG_NFS_V4 is not set |
| 987 | # CONFIG_NFS_DIRECTIO is not set | ||
| 988 | # CONFIG_NFSD is not set | 994 | # CONFIG_NFSD is not set |
| 989 | CONFIG_ROOT_NFS=y | 995 | CONFIG_ROOT_NFS=y |
| 990 | CONFIG_LOCKD=y | 996 | CONFIG_LOCKD=y |
| @@ -1023,6 +1029,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1023 | # Library routines | 1029 | # Library routines |
| 1024 | # | 1030 | # |
| 1025 | CONFIG_BITREVERSE=y | 1031 | CONFIG_BITREVERSE=y |
| 1032 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1026 | # CONFIG_CRC_CCITT is not set | 1033 | # CONFIG_CRC_CCITT is not set |
| 1027 | # CONFIG_CRC16 is not set | 1034 | # CONFIG_CRC16 is not set |
| 1028 | # CONFIG_CRC_ITU_T is not set | 1035 | # CONFIG_CRC_ITU_T is not set |
| @@ -1035,6 +1042,7 @@ CONFIG_PLIST=y | |||
| 1035 | CONFIG_HAS_IOMEM=y | 1042 | CONFIG_HAS_IOMEM=y |
| 1036 | CONFIG_HAS_IOPORT=y | 1043 | CONFIG_HAS_IOPORT=y |
| 1037 | CONFIG_HAS_DMA=y | 1044 | CONFIG_HAS_DMA=y |
| 1045 | CONFIG_HAVE_LMB=y | ||
| 1038 | 1046 | ||
| 1039 | # | 1047 | # |
| 1040 | # Kernel hacking | 1048 | # Kernel hacking |
| @@ -1042,6 +1050,7 @@ CONFIG_HAS_DMA=y | |||
| 1042 | # CONFIG_PRINTK_TIME is not set | 1050 | # CONFIG_PRINTK_TIME is not set |
| 1043 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1051 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1044 | CONFIG_ENABLE_MUST_CHECK=y | 1052 | CONFIG_ENABLE_MUST_CHECK=y |
| 1053 | CONFIG_FRAME_WARN=1024 | ||
| 1045 | # CONFIG_MAGIC_SYSRQ is not set | 1054 | # CONFIG_MAGIC_SYSRQ is not set |
| 1046 | # CONFIG_UNUSED_SYMBOLS is not set | 1055 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1047 | # CONFIG_DEBUG_FS is not set | 1056 | # CONFIG_DEBUG_FS is not set |
| @@ -1052,6 +1061,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1052 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1061 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1053 | # CONFIG_SAMPLES is not set | 1062 | # CONFIG_SAMPLES is not set |
| 1054 | # CONFIG_KGDB_CONSOLE is not set | 1063 | # CONFIG_KGDB_CONSOLE is not set |
| 1064 | # CONFIG_IRQSTACKS is not set | ||
| 1055 | # CONFIG_PPC_EARLY_DEBUG is not set | 1065 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1056 | 1066 | ||
| 1057 | # | 1067 | # |
| @@ -1061,49 +1071,79 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1061 | # CONFIG_SECURITY is not set | 1071 | # CONFIG_SECURITY is not set |
| 1062 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1072 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1063 | CONFIG_CRYPTO=y | 1073 | CONFIG_CRYPTO=y |
| 1064 | # CONFIG_CRYPTO_SEQIV is not set | 1074 | |
| 1075 | # | ||
| 1076 | # Crypto core or helper | ||
| 1077 | # | ||
| 1065 | # CONFIG_CRYPTO_MANAGER is not set | 1078 | # CONFIG_CRYPTO_MANAGER is not set |
| 1079 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1080 | # CONFIG_CRYPTO_NULL is not set | ||
| 1081 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1082 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1083 | |||
| 1084 | # | ||
| 1085 | # Authenticated Encryption with Associated Data | ||
| 1086 | # | ||
| 1087 | # CONFIG_CRYPTO_CCM is not set | ||
| 1088 | # CONFIG_CRYPTO_GCM is not set | ||
| 1089 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1090 | |||
| 1091 | # | ||
| 1092 | # Block modes | ||
| 1093 | # | ||
| 1094 | # CONFIG_CRYPTO_CBC is not set | ||
| 1095 | # CONFIG_CRYPTO_CTR is not set | ||
| 1096 | # CONFIG_CRYPTO_CTS is not set | ||
| 1097 | # CONFIG_CRYPTO_ECB is not set | ||
| 1098 | # CONFIG_CRYPTO_LRW is not set | ||
| 1099 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1100 | # CONFIG_CRYPTO_XTS is not set | ||
| 1101 | |||
| 1102 | # | ||
| 1103 | # Hash modes | ||
| 1104 | # | ||
| 1066 | # CONFIG_CRYPTO_HMAC is not set | 1105 | # CONFIG_CRYPTO_HMAC is not set |
| 1067 | # CONFIG_CRYPTO_XCBC is not set | 1106 | # CONFIG_CRYPTO_XCBC is not set |
| 1068 | # CONFIG_CRYPTO_NULL is not set | 1107 | |
| 1108 | # | ||
| 1109 | # Digest | ||
| 1110 | # | ||
| 1111 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1069 | # CONFIG_CRYPTO_MD4 is not set | 1112 | # CONFIG_CRYPTO_MD4 is not set |
| 1070 | # CONFIG_CRYPTO_MD5 is not set | 1113 | # CONFIG_CRYPTO_MD5 is not set |
| 1114 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1071 | # CONFIG_CRYPTO_SHA1 is not set | 1115 | # CONFIG_CRYPTO_SHA1 is not set |
| 1072 | # CONFIG_CRYPTO_SHA256 is not set | 1116 | # CONFIG_CRYPTO_SHA256 is not set |
| 1073 | # CONFIG_CRYPTO_SHA512 is not set | 1117 | # CONFIG_CRYPTO_SHA512 is not set |
| 1074 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1075 | # CONFIG_CRYPTO_TGR192 is not set | 1118 | # CONFIG_CRYPTO_TGR192 is not set |
| 1076 | # CONFIG_CRYPTO_GF128MUL is not set | 1119 | # CONFIG_CRYPTO_WP512 is not set |
| 1077 | # CONFIG_CRYPTO_ECB is not set | 1120 | |
| 1078 | # CONFIG_CRYPTO_CBC is not set | 1121 | # |
| 1079 | # CONFIG_CRYPTO_PCBC is not set | 1122 | # Ciphers |
| 1080 | # CONFIG_CRYPTO_LRW is not set | 1123 | # |
| 1081 | # CONFIG_CRYPTO_XTS is not set | ||
| 1082 | # CONFIG_CRYPTO_CTR is not set | ||
| 1083 | # CONFIG_CRYPTO_GCM is not set | ||
| 1084 | # CONFIG_CRYPTO_CCM is not set | ||
| 1085 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1086 | # CONFIG_CRYPTO_DES is not set | ||
| 1087 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1088 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1089 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1090 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1091 | # CONFIG_CRYPTO_AES is not set | 1124 | # CONFIG_CRYPTO_AES is not set |
| 1125 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1126 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1127 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1128 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1092 | # CONFIG_CRYPTO_CAST5 is not set | 1129 | # CONFIG_CRYPTO_CAST5 is not set |
| 1093 | # CONFIG_CRYPTO_CAST6 is not set | 1130 | # CONFIG_CRYPTO_CAST6 is not set |
| 1094 | # CONFIG_CRYPTO_TEA is not set | 1131 | # CONFIG_CRYPTO_DES is not set |
| 1095 | # CONFIG_CRYPTO_ARC4 is not set | 1132 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1096 | # CONFIG_CRYPTO_KHAZAD is not set | 1133 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1097 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1098 | # CONFIG_CRYPTO_SEED is not set | ||
| 1099 | # CONFIG_CRYPTO_SALSA20 is not set | 1134 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1135 | # CONFIG_CRYPTO_SEED is not set | ||
| 1136 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1137 | # CONFIG_CRYPTO_TEA is not set | ||
| 1138 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1139 | |||
| 1140 | # | ||
| 1141 | # Compression | ||
| 1142 | # | ||
| 1100 | # CONFIG_CRYPTO_DEFLATE is not set | 1143 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1101 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1102 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1103 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1104 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1105 | # CONFIG_CRYPTO_LZO is not set | 1144 | # CONFIG_CRYPTO_LZO is not set |
| 1106 | CONFIG_CRYPTO_HW=y | 1145 | CONFIG_CRYPTO_HW=y |
| 1107 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1146 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1108 | # CONFIG_PPC_CLOCK is not set | 1147 | # CONFIG_PPC_CLOCK is not set |
| 1109 | CONFIG_PPC_LIB_RHEAP=y | 1148 | CONFIG_PPC_LIB_RHEAP=y |
| 1149 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/tqm8555_defconfig b/arch/powerpc/configs/85xx/tqm8555_defconfig index bbff962c8472..03120b5b52fa 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:44 2008 | 4 | # Mon Jun 9 08:52:41 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -87,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 87 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 90 | # CONFIG_KALLSYMS is not set | 93 | # CONFIG_KALLSYMS is not set |
| 91 | # CONFIG_HOTPLUG is not set | 94 | # CONFIG_HOTPLUG is not set |
| 92 | CONFIG_PRINTK=y | 95 | CONFIG_PRINTK=y |
| @@ -111,6 +114,7 @@ CONFIG_SLUB=y | |||
| 111 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
| 112 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 118 | CONFIG_PROC_PAGE_MONITOR=y |
| 115 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
| 116 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
| @@ -151,6 +155,7 @@ CONFIG_MPC85xx=y | |||
| 151 | # CONFIG_MPC85xx_CDS is not set | 155 | # CONFIG_MPC85xx_CDS is not set |
| 152 | # CONFIG_MPC85xx_MDS is not set | 156 | # CONFIG_MPC85xx_MDS is not set |
| 153 | # CONFIG_MPC85xx_DS is not set | 157 | # CONFIG_MPC85xx_DS is not set |
| 158 | # CONFIG_KSI8560 is not set | ||
| 154 | # CONFIG_STX_GP3 is not set | 159 | # CONFIG_STX_GP3 is not set |
| 155 | # CONFIG_TQM8540 is not set | 160 | # CONFIG_TQM8540 is not set |
| 156 | # CONFIG_TQM8541 is not set | 161 | # CONFIG_TQM8541 is not set |
| @@ -209,11 +214,13 @@ CONFIG_FLATMEM=y | |||
| 209 | CONFIG_FLAT_NODE_MEM_MAP=y | 214 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 210 | # CONFIG_SPARSEMEM_STATIC is not set | 215 | # CONFIG_SPARSEMEM_STATIC is not set |
| 211 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 216 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 217 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 212 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 213 | # CONFIG_RESOURCES_64BIT is not set | 219 | # CONFIG_RESOURCES_64BIT is not set |
| 214 | CONFIG_ZONE_DMA_FLAG=1 | 220 | CONFIG_ZONE_DMA_FLAG=1 |
| 215 | CONFIG_BOUNCE=y | 221 | CONFIG_BOUNCE=y |
| 216 | CONFIG_VIRT_TO_BUS=y | 222 | CONFIG_VIRT_TO_BUS=y |
| 223 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 217 | # CONFIG_PROC_DEVICETREE is not set | 224 | # CONFIG_PROC_DEVICETREE is not set |
| 218 | # CONFIG_CMDLINE_BOOL is not set | 225 | # CONFIG_CMDLINE_BOOL is not set |
| 219 | # CONFIG_PM is not set | 226 | # CONFIG_PM is not set |
| @@ -234,6 +241,7 @@ CONFIG_PCI_SYSCALL=y | |||
| 234 | CONFIG_ARCH_SUPPORTS_MSI=y | 241 | CONFIG_ARCH_SUPPORTS_MSI=y |
| 235 | # CONFIG_PCI_MSI is not set | 242 | # CONFIG_PCI_MSI is not set |
| 236 | CONFIG_PCI_LEGACY=y | 243 | CONFIG_PCI_LEGACY=y |
| 244 | # CONFIG_HAS_RAPIDIO is not set | ||
| 237 | 245 | ||
| 238 | # | 246 | # |
| 239 | # Advanced setup | 247 | # Advanced setup |
| @@ -243,11 +251,12 @@ CONFIG_PCI_LEGACY=y | |||
| 243 | # | 251 | # |
| 244 | # Default settings for advanced configuration options are used | 252 | # Default settings for advanced configuration options are used |
| 245 | # | 253 | # |
| 246 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 247 | CONFIG_LOWMEM_SIZE=0x30000000 | 254 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 255 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 248 | CONFIG_KERNEL_START=0xc0000000 | 256 | CONFIG_KERNEL_START=0xc0000000 |
| 257 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 258 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 249 | CONFIG_TASK_SIZE=0xc0000000 | 259 | CONFIG_TASK_SIZE=0xc0000000 |
| 250 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 251 | 260 | ||
| 252 | # | 261 | # |
| 253 | # Networking | 262 | # Networking |
| @@ -295,8 +304,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 295 | CONFIG_DEFAULT_TCP_CONG="cubic" | 304 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 296 | # CONFIG_TCP_MD5SIG is not set | 305 | # CONFIG_TCP_MD5SIG is not set |
| 297 | # CONFIG_IPV6 is not set | 306 | # CONFIG_IPV6 is not set |
| 298 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 299 | # CONFIG_INET6_TUNNEL is not set | ||
| 300 | # CONFIG_NETWORK_SECMARK is not set | 307 | # CONFIG_NETWORK_SECMARK is not set |
| 301 | # CONFIG_NETFILTER is not set | 308 | # CONFIG_NETFILTER is not set |
| 302 | # CONFIG_IP_DCCP is not set | 309 | # CONFIG_IP_DCCP is not set |
| @@ -353,6 +360,7 @@ CONFIG_MTD_PARTITIONS=y | |||
| 353 | # CONFIG_MTD_REDBOOT_PARTS is not set | 360 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 354 | CONFIG_MTD_CMDLINE_PARTS=y | 361 | CONFIG_MTD_CMDLINE_PARTS=y |
| 355 | # CONFIG_MTD_OF_PARTS is not set | 362 | # CONFIG_MTD_OF_PARTS is not set |
| 363 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 356 | 364 | ||
| 357 | # | 365 | # |
| 358 | # User Modules And Translation Layers | 366 | # User Modules And Translation Layers |
| @@ -424,6 +432,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 424 | # | 432 | # |
| 425 | # CONFIG_MTD_UBI is not set | 433 | # CONFIG_MTD_UBI is not set |
| 426 | CONFIG_OF_DEVICE=y | 434 | CONFIG_OF_DEVICE=y |
| 435 | CONFIG_OF_I2C=y | ||
| 427 | # CONFIG_PARPORT is not set | 436 | # CONFIG_PARPORT is not set |
| 428 | CONFIG_BLK_DEV=y | 437 | CONFIG_BLK_DEV=y |
| 429 | # CONFIG_BLK_DEV_FD is not set | 438 | # CONFIG_BLK_DEV_FD is not set |
| @@ -507,7 +516,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 507 | CONFIG_BLK_DEV_VIA82CXXX=y | 516 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 508 | # CONFIG_BLK_DEV_TC86C001 is not set | 517 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 509 | CONFIG_BLK_DEV_IDEDMA=y | 518 | CONFIG_BLK_DEV_IDEDMA=y |
| 510 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 519 | # CONFIG_BLK_DEV_HD_ONLY is not set |
| 511 | # CONFIG_BLK_DEV_HD is not set | 520 | # CONFIG_BLK_DEV_HD is not set |
| 512 | 521 | ||
| 513 | # | 522 | # |
| @@ -602,7 +611,6 @@ CONFIG_NETDEV_1000=y | |||
| 602 | # CONFIG_SIS190 is not set | 611 | # CONFIG_SIS190 is not set |
| 603 | # CONFIG_SKGE is not set | 612 | # CONFIG_SKGE is not set |
| 604 | # CONFIG_SKY2 is not set | 613 | # CONFIG_SKY2 is not set |
| 605 | # CONFIG_SK98LIN is not set | ||
| 606 | # CONFIG_VIA_VELOCITY is not set | 614 | # CONFIG_VIA_VELOCITY is not set |
| 607 | # CONFIG_TIGON3 is not set | 615 | # CONFIG_TIGON3 is not set |
| 608 | # CONFIG_BNX2 is not set | 616 | # CONFIG_BNX2 is not set |
| @@ -622,6 +630,7 @@ CONFIG_NETDEV_10000=y | |||
| 622 | # CONFIG_MLX4_CORE is not set | 630 | # CONFIG_MLX4_CORE is not set |
| 623 | # CONFIG_TEHUTI is not set | 631 | # CONFIG_TEHUTI is not set |
| 624 | # CONFIG_BNX2X is not set | 632 | # CONFIG_BNX2X is not set |
| 633 | # CONFIG_SFC is not set | ||
| 625 | # CONFIG_TR is not set | 634 | # CONFIG_TR is not set |
| 626 | 635 | ||
| 627 | # | 636 | # |
| @@ -629,6 +638,7 @@ CONFIG_NETDEV_10000=y | |||
| 629 | # | 638 | # |
| 630 | # CONFIG_WLAN_PRE80211 is not set | 639 | # CONFIG_WLAN_PRE80211 is not set |
| 631 | # CONFIG_WLAN_80211 is not set | 640 | # CONFIG_WLAN_80211 is not set |
| 641 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 632 | # CONFIG_WAN is not set | 642 | # CONFIG_WAN is not set |
| 633 | # CONFIG_FDDI is not set | 643 | # CONFIG_FDDI is not set |
| 634 | # CONFIG_HIPPI is not set | 644 | # CONFIG_HIPPI is not set |
| @@ -675,6 +685,7 @@ CONFIG_INPUT=y | |||
| 675 | # Character devices | 685 | # Character devices |
| 676 | # | 686 | # |
| 677 | # CONFIG_VT is not set | 687 | # CONFIG_VT is not set |
| 688 | CONFIG_DEVKMEM=y | ||
| 678 | # CONFIG_SERIAL_NONSTANDARD is not set | 689 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 679 | # CONFIG_NOZOMI is not set | 690 | # CONFIG_NOZOMI is not set |
| 680 | 691 | ||
| @@ -723,13 +734,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 723 | CONFIG_I2C_CHARDEV=y | 734 | CONFIG_I2C_CHARDEV=y |
| 724 | 735 | ||
| 725 | # | 736 | # |
| 726 | # I2C Algorithms | ||
| 727 | # | ||
| 728 | # CONFIG_I2C_ALGOBIT is not set | ||
| 729 | # CONFIG_I2C_ALGOPCF is not set | ||
| 730 | # CONFIG_I2C_ALGOPCA is not set | ||
| 731 | |||
| 732 | # | ||
| 733 | # I2C Hardware Bus support | 737 | # I2C Hardware Bus support |
| 734 | # | 738 | # |
| 735 | # CONFIG_I2C_ALI1535 is not set | 739 | # CONFIG_I2C_ALI1535 is not set |
| @@ -754,6 +758,7 @@ CONFIG_I2C_MPC=y | |||
| 754 | # CONFIG_I2C_VIA is not set | 758 | # CONFIG_I2C_VIA is not set |
| 755 | # CONFIG_I2C_VIAPRO is not set | 759 | # CONFIG_I2C_VIAPRO is not set |
| 756 | # CONFIG_I2C_VOODOO3 is not set | 760 | # CONFIG_I2C_VOODOO3 is not set |
| 761 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 757 | 762 | ||
| 758 | # | 763 | # |
| 759 | # Miscellaneous I2C Chip support | 764 | # Miscellaneous I2C Chip support |
| @@ -763,19 +768,13 @@ CONFIG_I2C_MPC=y | |||
| 763 | # CONFIG_SENSORS_PCF8574 is not set | 768 | # CONFIG_SENSORS_PCF8574 is not set |
| 764 | # CONFIG_PCF8575 is not set | 769 | # CONFIG_PCF8575 is not set |
| 765 | # CONFIG_SENSORS_PCF8591 is not set | 770 | # CONFIG_SENSORS_PCF8591 is not set |
| 766 | # CONFIG_TPS65010 is not set | ||
| 767 | # CONFIG_SENSORS_MAX6875 is not set | 771 | # CONFIG_SENSORS_MAX6875 is not set |
| 768 | # CONFIG_SENSORS_TSL2550 is not set | 772 | # CONFIG_SENSORS_TSL2550 is not set |
| 769 | # CONFIG_I2C_DEBUG_CORE is not set | 773 | # CONFIG_I2C_DEBUG_CORE is not set |
| 770 | # CONFIG_I2C_DEBUG_ALGO is not set | 774 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 771 | # CONFIG_I2C_DEBUG_BUS is not set | 775 | # CONFIG_I2C_DEBUG_BUS is not set |
| 772 | # CONFIG_I2C_DEBUG_CHIP is not set | 776 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 773 | |||
| 774 | # | ||
| 775 | # SPI support | ||
| 776 | # | ||
| 777 | # CONFIG_SPI is not set | 777 | # CONFIG_SPI is not set |
| 778 | # CONFIG_SPI_MASTER is not set | ||
| 779 | # CONFIG_W1 is not set | 778 | # CONFIG_W1 is not set |
| 780 | # CONFIG_POWER_SUPPLY is not set | 779 | # CONFIG_POWER_SUPPLY is not set |
| 781 | CONFIG_HWMON=y | 780 | CONFIG_HWMON=y |
| @@ -845,12 +844,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 845 | # Multifunction device drivers | 844 | # Multifunction device drivers |
| 846 | # | 845 | # |
| 847 | # CONFIG_MFD_SM501 is not set | 846 | # CONFIG_MFD_SM501 is not set |
| 847 | # CONFIG_HTC_PASIC3 is not set | ||
| 848 | 848 | ||
| 849 | # | 849 | # |
| 850 | # Multimedia devices | 850 | # Multimedia devices |
| 851 | # | 851 | # |
| 852 | |||
| 853 | # | ||
| 854 | # Multimedia core support | ||
| 855 | # | ||
| 852 | # CONFIG_VIDEO_DEV is not set | 856 | # CONFIG_VIDEO_DEV is not set |
| 853 | # CONFIG_DVB_CORE is not set | 857 | # CONFIG_DVB_CORE is not set |
| 858 | # CONFIG_VIDEO_MEDIA is not set | ||
| 859 | |||
| 860 | # | ||
| 861 | # Multimedia drivers | ||
| 862 | # | ||
| 854 | CONFIG_DAB=y | 863 | CONFIG_DAB=y |
| 855 | 864 | ||
| 856 | # | 865 | # |
| @@ -881,6 +890,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 881 | CONFIG_USB_ARCH_HAS_OHCI=y | 890 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 882 | CONFIG_USB_ARCH_HAS_EHCI=y | 891 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 883 | # CONFIG_USB is not set | 892 | # CONFIG_USB is not set |
| 893 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 894 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 884 | 895 | ||
| 885 | # | 896 | # |
| 886 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 897 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -889,14 +900,11 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 889 | # CONFIG_MMC is not set | 900 | # CONFIG_MMC is not set |
| 890 | # CONFIG_MEMSTICK is not set | 901 | # CONFIG_MEMSTICK is not set |
| 891 | # CONFIG_NEW_LEDS is not set | 902 | # CONFIG_NEW_LEDS is not set |
| 903 | # CONFIG_ACCESSIBILITY is not set | ||
| 892 | # CONFIG_INFINIBAND is not set | 904 | # CONFIG_INFINIBAND is not set |
| 893 | # CONFIG_EDAC is not set | 905 | # CONFIG_EDAC is not set |
| 894 | # CONFIG_RTC_CLASS is not set | 906 | # CONFIG_RTC_CLASS is not set |
| 895 | # CONFIG_DMADEVICES is not set | 907 | # CONFIG_DMADEVICES is not set |
| 896 | |||
| 897 | # | ||
| 898 | # Userspace I/O | ||
| 899 | # | ||
| 900 | # CONFIG_UIO is not set | 908 | # CONFIG_UIO is not set |
| 901 | 909 | ||
| 902 | # | 910 | # |
| @@ -916,7 +924,6 @@ CONFIG_FS_MBCACHE=y | |||
| 916 | # CONFIG_JFS_FS is not set | 924 | # CONFIG_JFS_FS is not set |
| 917 | # CONFIG_FS_POSIX_ACL is not set | 925 | # CONFIG_FS_POSIX_ACL is not set |
| 918 | # CONFIG_XFS_FS is not set | 926 | # CONFIG_XFS_FS is not set |
| 919 | # CONFIG_GFS2_FS is not set | ||
| 920 | # CONFIG_OCFS2_FS is not set | 927 | # CONFIG_OCFS2_FS is not set |
| 921 | CONFIG_DNOTIFY=y | 928 | CONFIG_DNOTIFY=y |
| 922 | CONFIG_INOTIFY=y | 929 | CONFIG_INOTIFY=y |
| @@ -984,7 +991,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 984 | CONFIG_NFS_FS=y | 991 | CONFIG_NFS_FS=y |
| 985 | # CONFIG_NFS_V3 is not set | 992 | # CONFIG_NFS_V3 is not set |
| 986 | # CONFIG_NFS_V4 is not set | 993 | # CONFIG_NFS_V4 is not set |
| 987 | # CONFIG_NFS_DIRECTIO is not set | ||
| 988 | # CONFIG_NFSD is not set | 994 | # CONFIG_NFSD is not set |
| 989 | CONFIG_ROOT_NFS=y | 995 | CONFIG_ROOT_NFS=y |
| 990 | CONFIG_LOCKD=y | 996 | CONFIG_LOCKD=y |
| @@ -1023,6 +1029,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1023 | # Library routines | 1029 | # Library routines |
| 1024 | # | 1030 | # |
| 1025 | CONFIG_BITREVERSE=y | 1031 | CONFIG_BITREVERSE=y |
| 1032 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1026 | # CONFIG_CRC_CCITT is not set | 1033 | # CONFIG_CRC_CCITT is not set |
| 1027 | # CONFIG_CRC16 is not set | 1034 | # CONFIG_CRC16 is not set |
| 1028 | # CONFIG_CRC_ITU_T is not set | 1035 | # CONFIG_CRC_ITU_T is not set |
| @@ -1035,6 +1042,7 @@ CONFIG_PLIST=y | |||
| 1035 | CONFIG_HAS_IOMEM=y | 1042 | CONFIG_HAS_IOMEM=y |
| 1036 | CONFIG_HAS_IOPORT=y | 1043 | CONFIG_HAS_IOPORT=y |
| 1037 | CONFIG_HAS_DMA=y | 1044 | CONFIG_HAS_DMA=y |
| 1045 | CONFIG_HAVE_LMB=y | ||
| 1038 | 1046 | ||
| 1039 | # | 1047 | # |
| 1040 | # Kernel hacking | 1048 | # Kernel hacking |
| @@ -1042,6 +1050,7 @@ CONFIG_HAS_DMA=y | |||
| 1042 | # CONFIG_PRINTK_TIME is not set | 1050 | # CONFIG_PRINTK_TIME is not set |
| 1043 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1051 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1044 | CONFIG_ENABLE_MUST_CHECK=y | 1052 | CONFIG_ENABLE_MUST_CHECK=y |
| 1053 | CONFIG_FRAME_WARN=1024 | ||
| 1045 | # CONFIG_MAGIC_SYSRQ is not set | 1054 | # CONFIG_MAGIC_SYSRQ is not set |
| 1046 | # CONFIG_UNUSED_SYMBOLS is not set | 1055 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1047 | # CONFIG_DEBUG_FS is not set | 1056 | # CONFIG_DEBUG_FS is not set |
| @@ -1052,6 +1061,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1052 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1061 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1053 | # CONFIG_SAMPLES is not set | 1062 | # CONFIG_SAMPLES is not set |
| 1054 | # CONFIG_KGDB_CONSOLE is not set | 1063 | # CONFIG_KGDB_CONSOLE is not set |
| 1064 | # CONFIG_IRQSTACKS is not set | ||
| 1055 | # CONFIG_PPC_EARLY_DEBUG is not set | 1065 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1056 | 1066 | ||
| 1057 | # | 1067 | # |
| @@ -1061,49 +1071,79 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1061 | # CONFIG_SECURITY is not set | 1071 | # CONFIG_SECURITY is not set |
| 1062 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1072 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1063 | CONFIG_CRYPTO=y | 1073 | CONFIG_CRYPTO=y |
| 1064 | # CONFIG_CRYPTO_SEQIV is not set | 1074 | |
| 1075 | # | ||
| 1076 | # Crypto core or helper | ||
| 1077 | # | ||
| 1065 | # CONFIG_CRYPTO_MANAGER is not set | 1078 | # CONFIG_CRYPTO_MANAGER is not set |
| 1079 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1080 | # CONFIG_CRYPTO_NULL is not set | ||
| 1081 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1082 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1083 | |||
| 1084 | # | ||
| 1085 | # Authenticated Encryption with Associated Data | ||
| 1086 | # | ||
| 1087 | # CONFIG_CRYPTO_CCM is not set | ||
| 1088 | # CONFIG_CRYPTO_GCM is not set | ||
| 1089 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1090 | |||
| 1091 | # | ||
| 1092 | # Block modes | ||
| 1093 | # | ||
| 1094 | # CONFIG_CRYPTO_CBC is not set | ||
| 1095 | # CONFIG_CRYPTO_CTR is not set | ||
| 1096 | # CONFIG_CRYPTO_CTS is not set | ||
| 1097 | # CONFIG_CRYPTO_ECB is not set | ||
| 1098 | # CONFIG_CRYPTO_LRW is not set | ||
| 1099 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1100 | # CONFIG_CRYPTO_XTS is not set | ||
| 1101 | |||
| 1102 | # | ||
| 1103 | # Hash modes | ||
| 1104 | # | ||
| 1066 | # CONFIG_CRYPTO_HMAC is not set | 1105 | # CONFIG_CRYPTO_HMAC is not set |
| 1067 | # CONFIG_CRYPTO_XCBC is not set | 1106 | # CONFIG_CRYPTO_XCBC is not set |
| 1068 | # CONFIG_CRYPTO_NULL is not set | 1107 | |
| 1108 | # | ||
| 1109 | # Digest | ||
| 1110 | # | ||
| 1111 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1069 | # CONFIG_CRYPTO_MD4 is not set | 1112 | # CONFIG_CRYPTO_MD4 is not set |
| 1070 | # CONFIG_CRYPTO_MD5 is not set | 1113 | # CONFIG_CRYPTO_MD5 is not set |
| 1114 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1071 | # CONFIG_CRYPTO_SHA1 is not set | 1115 | # CONFIG_CRYPTO_SHA1 is not set |
| 1072 | # CONFIG_CRYPTO_SHA256 is not set | 1116 | # CONFIG_CRYPTO_SHA256 is not set |
| 1073 | # CONFIG_CRYPTO_SHA512 is not set | 1117 | # CONFIG_CRYPTO_SHA512 is not set |
| 1074 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1075 | # CONFIG_CRYPTO_TGR192 is not set | 1118 | # CONFIG_CRYPTO_TGR192 is not set |
| 1076 | # CONFIG_CRYPTO_GF128MUL is not set | 1119 | # CONFIG_CRYPTO_WP512 is not set |
| 1077 | # CONFIG_CRYPTO_ECB is not set | 1120 | |
| 1078 | # CONFIG_CRYPTO_CBC is not set | 1121 | # |
| 1079 | # CONFIG_CRYPTO_PCBC is not set | 1122 | # Ciphers |
| 1080 | # CONFIG_CRYPTO_LRW is not set | 1123 | # |
| 1081 | # CONFIG_CRYPTO_XTS is not set | ||
| 1082 | # CONFIG_CRYPTO_CTR is not set | ||
| 1083 | # CONFIG_CRYPTO_GCM is not set | ||
| 1084 | # CONFIG_CRYPTO_CCM is not set | ||
| 1085 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1086 | # CONFIG_CRYPTO_DES is not set | ||
| 1087 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1088 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1089 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1090 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1091 | # CONFIG_CRYPTO_AES is not set | 1124 | # CONFIG_CRYPTO_AES is not set |
| 1125 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1126 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1127 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1128 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1092 | # CONFIG_CRYPTO_CAST5 is not set | 1129 | # CONFIG_CRYPTO_CAST5 is not set |
| 1093 | # CONFIG_CRYPTO_CAST6 is not set | 1130 | # CONFIG_CRYPTO_CAST6 is not set |
| 1094 | # CONFIG_CRYPTO_TEA is not set | 1131 | # CONFIG_CRYPTO_DES is not set |
| 1095 | # CONFIG_CRYPTO_ARC4 is not set | 1132 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1096 | # CONFIG_CRYPTO_KHAZAD is not set | 1133 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1097 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1098 | # CONFIG_CRYPTO_SEED is not set | ||
| 1099 | # CONFIG_CRYPTO_SALSA20 is not set | 1134 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1135 | # CONFIG_CRYPTO_SEED is not set | ||
| 1136 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1137 | # CONFIG_CRYPTO_TEA is not set | ||
| 1138 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1139 | |||
| 1140 | # | ||
| 1141 | # Compression | ||
| 1142 | # | ||
| 1100 | # CONFIG_CRYPTO_DEFLATE is not set | 1143 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1101 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1102 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1103 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1104 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1105 | # CONFIG_CRYPTO_LZO is not set | 1144 | # CONFIG_CRYPTO_LZO is not set |
| 1106 | CONFIG_CRYPTO_HW=y | 1145 | CONFIG_CRYPTO_HW=y |
| 1107 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1146 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1108 | # CONFIG_PPC_CLOCK is not set | 1147 | # CONFIG_PPC_CLOCK is not set |
| 1109 | CONFIG_PPC_LIB_RHEAP=y | 1148 | CONFIG_PPC_LIB_RHEAP=y |
| 1149 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/tqm8560_defconfig b/arch/powerpc/configs/85xx/tqm8560_defconfig index 63c5ec8b6515..3113257edf5a 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:45 2008 | 4 | # Mon Jun 9 08:52:42 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -87,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 87 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 88 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 90 | # CONFIG_KALLSYMS is not set | 93 | # CONFIG_KALLSYMS is not set |
| 91 | # CONFIG_HOTPLUG is not set | 94 | # CONFIG_HOTPLUG is not set |
| 92 | CONFIG_PRINTK=y | 95 | CONFIG_PRINTK=y |
| @@ -111,6 +114,7 @@ CONFIG_SLUB=y | |||
| 111 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
| 112 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 118 | CONFIG_PROC_PAGE_MONITOR=y |
| 115 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
| 116 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
| @@ -151,6 +155,7 @@ CONFIG_MPC85xx=y | |||
| 151 | # CONFIG_MPC85xx_CDS is not set | 155 | # CONFIG_MPC85xx_CDS is not set |
| 152 | # CONFIG_MPC85xx_MDS is not set | 156 | # CONFIG_MPC85xx_MDS is not set |
| 153 | # CONFIG_MPC85xx_DS is not set | 157 | # CONFIG_MPC85xx_DS is not set |
| 158 | # CONFIG_KSI8560 is not set | ||
| 154 | # CONFIG_STX_GP3 is not set | 159 | # CONFIG_STX_GP3 is not set |
| 155 | # CONFIG_TQM8540 is not set | 160 | # CONFIG_TQM8540 is not set |
| 156 | # CONFIG_TQM8541 is not set | 161 | # CONFIG_TQM8541 is not set |
| @@ -209,11 +214,13 @@ CONFIG_FLATMEM=y | |||
| 209 | CONFIG_FLAT_NODE_MEM_MAP=y | 214 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 210 | # CONFIG_SPARSEMEM_STATIC is not set | 215 | # CONFIG_SPARSEMEM_STATIC is not set |
| 211 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 216 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 217 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 212 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 213 | # CONFIG_RESOURCES_64BIT is not set | 219 | # CONFIG_RESOURCES_64BIT is not set |
| 214 | CONFIG_ZONE_DMA_FLAG=1 | 220 | CONFIG_ZONE_DMA_FLAG=1 |
| 215 | CONFIG_BOUNCE=y | 221 | CONFIG_BOUNCE=y |
| 216 | CONFIG_VIRT_TO_BUS=y | 222 | CONFIG_VIRT_TO_BUS=y |
| 223 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 217 | # CONFIG_PROC_DEVICETREE is not set | 224 | # CONFIG_PROC_DEVICETREE is not set |
| 218 | # CONFIG_CMDLINE_BOOL is not set | 225 | # CONFIG_CMDLINE_BOOL is not set |
| 219 | # CONFIG_PM is not set | 226 | # CONFIG_PM is not set |
| @@ -234,6 +241,7 @@ CONFIG_PCI_SYSCALL=y | |||
| 234 | CONFIG_ARCH_SUPPORTS_MSI=y | 241 | CONFIG_ARCH_SUPPORTS_MSI=y |
| 235 | # CONFIG_PCI_MSI is not set | 242 | # CONFIG_PCI_MSI is not set |
| 236 | CONFIG_PCI_LEGACY=y | 243 | CONFIG_PCI_LEGACY=y |
| 244 | # CONFIG_HAS_RAPIDIO is not set | ||
| 237 | 245 | ||
| 238 | # | 246 | # |
| 239 | # Advanced setup | 247 | # Advanced setup |
| @@ -243,11 +251,12 @@ CONFIG_PCI_LEGACY=y | |||
| 243 | # | 251 | # |
| 244 | # Default settings for advanced configuration options are used | 252 | # Default settings for advanced configuration options are used |
| 245 | # | 253 | # |
| 246 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 247 | CONFIG_LOWMEM_SIZE=0x30000000 | 254 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 255 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 248 | CONFIG_KERNEL_START=0xc0000000 | 256 | CONFIG_KERNEL_START=0xc0000000 |
| 257 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 258 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 249 | CONFIG_TASK_SIZE=0xc0000000 | 259 | CONFIG_TASK_SIZE=0xc0000000 |
| 250 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 251 | 260 | ||
| 252 | # | 261 | # |
| 253 | # Networking | 262 | # Networking |
| @@ -295,8 +304,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 295 | CONFIG_DEFAULT_TCP_CONG="cubic" | 304 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 296 | # CONFIG_TCP_MD5SIG is not set | 305 | # CONFIG_TCP_MD5SIG is not set |
| 297 | # CONFIG_IPV6 is not set | 306 | # CONFIG_IPV6 is not set |
| 298 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 299 | # CONFIG_INET6_TUNNEL is not set | ||
| 300 | # CONFIG_NETWORK_SECMARK is not set | 307 | # CONFIG_NETWORK_SECMARK is not set |
| 301 | # CONFIG_NETFILTER is not set | 308 | # CONFIG_NETFILTER is not set |
| 302 | # CONFIG_IP_DCCP is not set | 309 | # CONFIG_IP_DCCP is not set |
| @@ -353,6 +360,7 @@ CONFIG_MTD_PARTITIONS=y | |||
| 353 | # CONFIG_MTD_REDBOOT_PARTS is not set | 360 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 354 | CONFIG_MTD_CMDLINE_PARTS=y | 361 | CONFIG_MTD_CMDLINE_PARTS=y |
| 355 | # CONFIG_MTD_OF_PARTS is not set | 362 | # CONFIG_MTD_OF_PARTS is not set |
| 363 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 356 | 364 | ||
| 357 | # | 365 | # |
| 358 | # User Modules And Translation Layers | 366 | # User Modules And Translation Layers |
| @@ -424,6 +432,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 424 | # | 432 | # |
| 425 | # CONFIG_MTD_UBI is not set | 433 | # CONFIG_MTD_UBI is not set |
| 426 | CONFIG_OF_DEVICE=y | 434 | CONFIG_OF_DEVICE=y |
| 435 | CONFIG_OF_I2C=y | ||
| 427 | # CONFIG_PARPORT is not set | 436 | # CONFIG_PARPORT is not set |
| 428 | CONFIG_BLK_DEV=y | 437 | CONFIG_BLK_DEV=y |
| 429 | # CONFIG_BLK_DEV_FD is not set | 438 | # CONFIG_BLK_DEV_FD is not set |
| @@ -507,7 +516,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 507 | CONFIG_BLK_DEV_VIA82CXXX=y | 516 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 508 | # CONFIG_BLK_DEV_TC86C001 is not set | 517 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 509 | CONFIG_BLK_DEV_IDEDMA=y | 518 | CONFIG_BLK_DEV_IDEDMA=y |
| 510 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 519 | # CONFIG_BLK_DEV_HD_ONLY is not set |
| 511 | # CONFIG_BLK_DEV_HD is not set | 520 | # CONFIG_BLK_DEV_HD is not set |
| 512 | 521 | ||
| 513 | # | 522 | # |
| @@ -602,7 +611,6 @@ CONFIG_NETDEV_1000=y | |||
| 602 | # CONFIG_SIS190 is not set | 611 | # CONFIG_SIS190 is not set |
| 603 | # CONFIG_SKGE is not set | 612 | # CONFIG_SKGE is not set |
| 604 | # CONFIG_SKY2 is not set | 613 | # CONFIG_SKY2 is not set |
| 605 | # CONFIG_SK98LIN is not set | ||
| 606 | # CONFIG_VIA_VELOCITY is not set | 614 | # CONFIG_VIA_VELOCITY is not set |
| 607 | # CONFIG_TIGON3 is not set | 615 | # CONFIG_TIGON3 is not set |
| 608 | # CONFIG_BNX2 is not set | 616 | # CONFIG_BNX2 is not set |
| @@ -622,6 +630,7 @@ CONFIG_NETDEV_10000=y | |||
| 622 | # CONFIG_MLX4_CORE is not set | 630 | # CONFIG_MLX4_CORE is not set |
| 623 | # CONFIG_TEHUTI is not set | 631 | # CONFIG_TEHUTI is not set |
| 624 | # CONFIG_BNX2X is not set | 632 | # CONFIG_BNX2X is not set |
| 633 | # CONFIG_SFC is not set | ||
| 625 | # CONFIG_TR is not set | 634 | # CONFIG_TR is not set |
| 626 | 635 | ||
| 627 | # | 636 | # |
| @@ -629,6 +638,7 @@ CONFIG_NETDEV_10000=y | |||
| 629 | # | 638 | # |
| 630 | # CONFIG_WLAN_PRE80211 is not set | 639 | # CONFIG_WLAN_PRE80211 is not set |
| 631 | # CONFIG_WLAN_80211 is not set | 640 | # CONFIG_WLAN_80211 is not set |
| 641 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 632 | # CONFIG_WAN is not set | 642 | # CONFIG_WAN is not set |
| 633 | # CONFIG_FDDI is not set | 643 | # CONFIG_FDDI is not set |
| 634 | # CONFIG_HIPPI is not set | 644 | # CONFIG_HIPPI is not set |
| @@ -675,6 +685,7 @@ CONFIG_INPUT=y | |||
| 675 | # Character devices | 685 | # Character devices |
| 676 | # | 686 | # |
| 677 | # CONFIG_VT is not set | 687 | # CONFIG_VT is not set |
| 688 | CONFIG_DEVKMEM=y | ||
| 678 | # CONFIG_SERIAL_NONSTANDARD is not set | 689 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 679 | # CONFIG_NOZOMI is not set | 690 | # CONFIG_NOZOMI is not set |
| 680 | 691 | ||
| @@ -723,13 +734,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 723 | CONFIG_I2C_CHARDEV=y | 734 | CONFIG_I2C_CHARDEV=y |
| 724 | 735 | ||
| 725 | # | 736 | # |
| 726 | # I2C Algorithms | ||
| 727 | # | ||
| 728 | # CONFIG_I2C_ALGOBIT is not set | ||
| 729 | # CONFIG_I2C_ALGOPCF is not set | ||
| 730 | # CONFIG_I2C_ALGOPCA is not set | ||
| 731 | |||
| 732 | # | ||
| 733 | # I2C Hardware Bus support | 737 | # I2C Hardware Bus support |
| 734 | # | 738 | # |
| 735 | # CONFIG_I2C_ALI1535 is not set | 739 | # CONFIG_I2C_ALI1535 is not set |
| @@ -754,6 +758,7 @@ CONFIG_I2C_MPC=y | |||
| 754 | # CONFIG_I2C_VIA is not set | 758 | # CONFIG_I2C_VIA is not set |
| 755 | # CONFIG_I2C_VIAPRO is not set | 759 | # CONFIG_I2C_VIAPRO is not set |
| 756 | # CONFIG_I2C_VOODOO3 is not set | 760 | # CONFIG_I2C_VOODOO3 is not set |
| 761 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 757 | 762 | ||
| 758 | # | 763 | # |
| 759 | # Miscellaneous I2C Chip support | 764 | # Miscellaneous I2C Chip support |
| @@ -763,19 +768,13 @@ CONFIG_I2C_MPC=y | |||
| 763 | # CONFIG_SENSORS_PCF8574 is not set | 768 | # CONFIG_SENSORS_PCF8574 is not set |
| 764 | # CONFIG_PCF8575 is not set | 769 | # CONFIG_PCF8575 is not set |
| 765 | # CONFIG_SENSORS_PCF8591 is not set | 770 | # CONFIG_SENSORS_PCF8591 is not set |
| 766 | # CONFIG_TPS65010 is not set | ||
| 767 | # CONFIG_SENSORS_MAX6875 is not set | 771 | # CONFIG_SENSORS_MAX6875 is not set |
| 768 | # CONFIG_SENSORS_TSL2550 is not set | 772 | # CONFIG_SENSORS_TSL2550 is not set |
| 769 | # CONFIG_I2C_DEBUG_CORE is not set | 773 | # CONFIG_I2C_DEBUG_CORE is not set |
| 770 | # CONFIG_I2C_DEBUG_ALGO is not set | 774 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 771 | # CONFIG_I2C_DEBUG_BUS is not set | 775 | # CONFIG_I2C_DEBUG_BUS is not set |
| 772 | # CONFIG_I2C_DEBUG_CHIP is not set | 776 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 773 | |||
| 774 | # | ||
| 775 | # SPI support | ||
| 776 | # | ||
| 777 | # CONFIG_SPI is not set | 777 | # CONFIG_SPI is not set |
| 778 | # CONFIG_SPI_MASTER is not set | ||
| 779 | # CONFIG_W1 is not set | 778 | # CONFIG_W1 is not set |
| 780 | # CONFIG_POWER_SUPPLY is not set | 779 | # CONFIG_POWER_SUPPLY is not set |
| 781 | CONFIG_HWMON=y | 780 | CONFIG_HWMON=y |
| @@ -845,12 +844,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 845 | # Multifunction device drivers | 844 | # Multifunction device drivers |
| 846 | # | 845 | # |
| 847 | # CONFIG_MFD_SM501 is not set | 846 | # CONFIG_MFD_SM501 is not set |
| 847 | # CONFIG_HTC_PASIC3 is not set | ||
| 848 | 848 | ||
| 849 | # | 849 | # |
| 850 | # Multimedia devices | 850 | # Multimedia devices |
| 851 | # | 851 | # |
| 852 | |||
| 853 | # | ||
| 854 | # Multimedia core support | ||
| 855 | # | ||
| 852 | # CONFIG_VIDEO_DEV is not set | 856 | # CONFIG_VIDEO_DEV is not set |
| 853 | # CONFIG_DVB_CORE is not set | 857 | # CONFIG_DVB_CORE is not set |
| 858 | # CONFIG_VIDEO_MEDIA is not set | ||
| 859 | |||
| 860 | # | ||
| 861 | # Multimedia drivers | ||
| 862 | # | ||
| 854 | CONFIG_DAB=y | 863 | CONFIG_DAB=y |
| 855 | 864 | ||
| 856 | # | 865 | # |
| @@ -881,6 +890,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 881 | CONFIG_USB_ARCH_HAS_OHCI=y | 890 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 882 | CONFIG_USB_ARCH_HAS_EHCI=y | 891 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 883 | # CONFIG_USB is not set | 892 | # CONFIG_USB is not set |
| 893 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 894 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 884 | 895 | ||
| 885 | # | 896 | # |
| 886 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 897 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -889,14 +900,11 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 889 | # CONFIG_MMC is not set | 900 | # CONFIG_MMC is not set |
| 890 | # CONFIG_MEMSTICK is not set | 901 | # CONFIG_MEMSTICK is not set |
| 891 | # CONFIG_NEW_LEDS is not set | 902 | # CONFIG_NEW_LEDS is not set |
| 903 | # CONFIG_ACCESSIBILITY is not set | ||
| 892 | # CONFIG_INFINIBAND is not set | 904 | # CONFIG_INFINIBAND is not set |
| 893 | # CONFIG_EDAC is not set | 905 | # CONFIG_EDAC is not set |
| 894 | # CONFIG_RTC_CLASS is not set | 906 | # CONFIG_RTC_CLASS is not set |
| 895 | # CONFIG_DMADEVICES is not set | 907 | # CONFIG_DMADEVICES is not set |
| 896 | |||
| 897 | # | ||
| 898 | # Userspace I/O | ||
| 899 | # | ||
| 900 | # CONFIG_UIO is not set | 908 | # CONFIG_UIO is not set |
| 901 | 909 | ||
| 902 | # | 910 | # |
| @@ -916,7 +924,6 @@ CONFIG_FS_MBCACHE=y | |||
| 916 | # CONFIG_JFS_FS is not set | 924 | # CONFIG_JFS_FS is not set |
| 917 | # CONFIG_FS_POSIX_ACL is not set | 925 | # CONFIG_FS_POSIX_ACL is not set |
| 918 | # CONFIG_XFS_FS is not set | 926 | # CONFIG_XFS_FS is not set |
| 919 | # CONFIG_GFS2_FS is not set | ||
| 920 | # CONFIG_OCFS2_FS is not set | 927 | # CONFIG_OCFS2_FS is not set |
| 921 | CONFIG_DNOTIFY=y | 928 | CONFIG_DNOTIFY=y |
| 922 | CONFIG_INOTIFY=y | 929 | CONFIG_INOTIFY=y |
| @@ -984,7 +991,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 984 | CONFIG_NFS_FS=y | 991 | CONFIG_NFS_FS=y |
| 985 | # CONFIG_NFS_V3 is not set | 992 | # CONFIG_NFS_V3 is not set |
| 986 | # CONFIG_NFS_V4 is not set | 993 | # CONFIG_NFS_V4 is not set |
| 987 | # CONFIG_NFS_DIRECTIO is not set | ||
| 988 | # CONFIG_NFSD is not set | 994 | # CONFIG_NFSD is not set |
| 989 | CONFIG_ROOT_NFS=y | 995 | CONFIG_ROOT_NFS=y |
| 990 | CONFIG_LOCKD=y | 996 | CONFIG_LOCKD=y |
| @@ -1023,6 +1029,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1023 | # Library routines | 1029 | # Library routines |
| 1024 | # | 1030 | # |
| 1025 | CONFIG_BITREVERSE=y | 1031 | CONFIG_BITREVERSE=y |
| 1032 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1026 | # CONFIG_CRC_CCITT is not set | 1033 | # CONFIG_CRC_CCITT is not set |
| 1027 | # CONFIG_CRC16 is not set | 1034 | # CONFIG_CRC16 is not set |
| 1028 | # CONFIG_CRC_ITU_T is not set | 1035 | # CONFIG_CRC_ITU_T is not set |
| @@ -1035,6 +1042,7 @@ CONFIG_PLIST=y | |||
| 1035 | CONFIG_HAS_IOMEM=y | 1042 | CONFIG_HAS_IOMEM=y |
| 1036 | CONFIG_HAS_IOPORT=y | 1043 | CONFIG_HAS_IOPORT=y |
| 1037 | CONFIG_HAS_DMA=y | 1044 | CONFIG_HAS_DMA=y |
| 1045 | CONFIG_HAVE_LMB=y | ||
| 1038 | 1046 | ||
| 1039 | # | 1047 | # |
| 1040 | # Kernel hacking | 1048 | # Kernel hacking |
| @@ -1042,6 +1050,7 @@ CONFIG_HAS_DMA=y | |||
| 1042 | # CONFIG_PRINTK_TIME is not set | 1050 | # CONFIG_PRINTK_TIME is not set |
| 1043 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1051 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1044 | CONFIG_ENABLE_MUST_CHECK=y | 1052 | CONFIG_ENABLE_MUST_CHECK=y |
| 1053 | CONFIG_FRAME_WARN=1024 | ||
| 1045 | # CONFIG_MAGIC_SYSRQ is not set | 1054 | # CONFIG_MAGIC_SYSRQ is not set |
| 1046 | # CONFIG_UNUSED_SYMBOLS is not set | 1055 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1047 | # CONFIG_DEBUG_FS is not set | 1056 | # CONFIG_DEBUG_FS is not set |
| @@ -1052,6 +1061,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1052 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1061 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1053 | # CONFIG_SAMPLES is not set | 1062 | # CONFIG_SAMPLES is not set |
| 1054 | # CONFIG_KGDB_CONSOLE is not set | 1063 | # CONFIG_KGDB_CONSOLE is not set |
| 1064 | # CONFIG_IRQSTACKS is not set | ||
| 1055 | # CONFIG_PPC_EARLY_DEBUG is not set | 1065 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1056 | 1066 | ||
| 1057 | # | 1067 | # |
| @@ -1061,49 +1071,79 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1061 | # CONFIG_SECURITY is not set | 1071 | # CONFIG_SECURITY is not set |
| 1062 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1072 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1063 | CONFIG_CRYPTO=y | 1073 | CONFIG_CRYPTO=y |
| 1064 | # CONFIG_CRYPTO_SEQIV is not set | 1074 | |
| 1075 | # | ||
| 1076 | # Crypto core or helper | ||
| 1077 | # | ||
| 1065 | # CONFIG_CRYPTO_MANAGER is not set | 1078 | # CONFIG_CRYPTO_MANAGER is not set |
| 1079 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1080 | # CONFIG_CRYPTO_NULL is not set | ||
| 1081 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1082 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1083 | |||
| 1084 | # | ||
| 1085 | # Authenticated Encryption with Associated Data | ||
| 1086 | # | ||
| 1087 | # CONFIG_CRYPTO_CCM is not set | ||
| 1088 | # CONFIG_CRYPTO_GCM is not set | ||
| 1089 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1090 | |||
| 1091 | # | ||
| 1092 | # Block modes | ||
| 1093 | # | ||
| 1094 | # CONFIG_CRYPTO_CBC is not set | ||
| 1095 | # CONFIG_CRYPTO_CTR is not set | ||
| 1096 | # CONFIG_CRYPTO_CTS is not set | ||
| 1097 | # CONFIG_CRYPTO_ECB is not set | ||
| 1098 | # CONFIG_CRYPTO_LRW is not set | ||
| 1099 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1100 | # CONFIG_CRYPTO_XTS is not set | ||
| 1101 | |||
| 1102 | # | ||
| 1103 | # Hash modes | ||
| 1104 | # | ||
| 1066 | # CONFIG_CRYPTO_HMAC is not set | 1105 | # CONFIG_CRYPTO_HMAC is not set |
| 1067 | # CONFIG_CRYPTO_XCBC is not set | 1106 | # CONFIG_CRYPTO_XCBC is not set |
| 1068 | # CONFIG_CRYPTO_NULL is not set | 1107 | |
| 1108 | # | ||
| 1109 | # Digest | ||
| 1110 | # | ||
| 1111 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1069 | # CONFIG_CRYPTO_MD4 is not set | 1112 | # CONFIG_CRYPTO_MD4 is not set |
| 1070 | # CONFIG_CRYPTO_MD5 is not set | 1113 | # CONFIG_CRYPTO_MD5 is not set |
| 1114 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1071 | # CONFIG_CRYPTO_SHA1 is not set | 1115 | # CONFIG_CRYPTO_SHA1 is not set |
| 1072 | # CONFIG_CRYPTO_SHA256 is not set | 1116 | # CONFIG_CRYPTO_SHA256 is not set |
| 1073 | # CONFIG_CRYPTO_SHA512 is not set | 1117 | # CONFIG_CRYPTO_SHA512 is not set |
| 1074 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1075 | # CONFIG_CRYPTO_TGR192 is not set | 1118 | # CONFIG_CRYPTO_TGR192 is not set |
| 1076 | # CONFIG_CRYPTO_GF128MUL is not set | 1119 | # CONFIG_CRYPTO_WP512 is not set |
| 1077 | # CONFIG_CRYPTO_ECB is not set | 1120 | |
| 1078 | # CONFIG_CRYPTO_CBC is not set | 1121 | # |
| 1079 | # CONFIG_CRYPTO_PCBC is not set | 1122 | # Ciphers |
| 1080 | # CONFIG_CRYPTO_LRW is not set | 1123 | # |
| 1081 | # CONFIG_CRYPTO_XTS is not set | ||
| 1082 | # CONFIG_CRYPTO_CTR is not set | ||
| 1083 | # CONFIG_CRYPTO_GCM is not set | ||
| 1084 | # CONFIG_CRYPTO_CCM is not set | ||
| 1085 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1086 | # CONFIG_CRYPTO_DES is not set | ||
| 1087 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1088 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1089 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1090 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1091 | # CONFIG_CRYPTO_AES is not set | 1124 | # CONFIG_CRYPTO_AES is not set |
| 1125 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1126 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1127 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1128 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1092 | # CONFIG_CRYPTO_CAST5 is not set | 1129 | # CONFIG_CRYPTO_CAST5 is not set |
| 1093 | # CONFIG_CRYPTO_CAST6 is not set | 1130 | # CONFIG_CRYPTO_CAST6 is not set |
| 1094 | # CONFIG_CRYPTO_TEA is not set | 1131 | # CONFIG_CRYPTO_DES is not set |
| 1095 | # CONFIG_CRYPTO_ARC4 is not set | 1132 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1096 | # CONFIG_CRYPTO_KHAZAD is not set | 1133 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1097 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1098 | # CONFIG_CRYPTO_SEED is not set | ||
| 1099 | # CONFIG_CRYPTO_SALSA20 is not set | 1134 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1135 | # CONFIG_CRYPTO_SEED is not set | ||
| 1136 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1137 | # CONFIG_CRYPTO_TEA is not set | ||
| 1138 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1139 | |||
| 1140 | # | ||
| 1141 | # Compression | ||
| 1142 | # | ||
| 1100 | # CONFIG_CRYPTO_DEFLATE is not set | 1143 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1101 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1102 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1103 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1104 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1105 | # CONFIG_CRYPTO_LZO is not set | 1144 | # CONFIG_CRYPTO_LZO is not set |
| 1106 | CONFIG_CRYPTO_HW=y | 1145 | CONFIG_CRYPTO_HW=y |
| 1107 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1146 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1108 | # CONFIG_PPC_CLOCK is not set | 1147 | # CONFIG_PPC_CLOCK is not set |
| 1109 | CONFIG_PPC_LIB_RHEAP=y | 1148 | CONFIG_PPC_LIB_RHEAP=y |
| 1149 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/adder875_defconfig b/arch/powerpc/configs/adder875_defconfig index a3cc94a2ff06..6740f2a3aa3d 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.25-rc2 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Wed Feb 20 12:26:07 2008 | 4 | # Mon Jun 9 08:52:08 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -28,6 +28,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 28 | CONFIG_GENERIC_HARDIRQS=y | 28 | CONFIG_GENERIC_HARDIRQS=y |
| 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 29 | # CONFIG_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 | ||
| 32 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 32 | CONFIG_ARCH_HAS_ILOG2_U32=y | 34 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 33 | CONFIG_GENERIC_HWEIGHT=y | 35 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -75,6 +77,7 @@ CONFIG_FAIR_GROUP_SCHED=y | |||
| 75 | CONFIG_USER_SCHED=y | 77 | CONFIG_USER_SCHED=y |
| 76 | # CONFIG_CGROUP_SCHED is not set | 78 | # CONFIG_CGROUP_SCHED is not set |
| 77 | CONFIG_SYSFS_DEPRECATED=y | 79 | CONFIG_SYSFS_DEPRECATED=y |
| 80 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
| 78 | # CONFIG_RELAY is not set | 81 | # CONFIG_RELAY is not set |
| 79 | # CONFIG_NAMESPACES is not set | 82 | # CONFIG_NAMESPACES is not set |
| 80 | # CONFIG_BLK_DEV_INITRD is not set | 83 | # CONFIG_BLK_DEV_INITRD is not set |
| @@ -107,6 +110,8 @@ CONFIG_SLUB=y | |||
| 107 | # CONFIG_MARKERS is not set | 110 | # CONFIG_MARKERS is not set |
| 108 | CONFIG_HAVE_OPROFILE=y | 111 | CONFIG_HAVE_OPROFILE=y |
| 109 | CONFIG_HAVE_KPROBES=y | 112 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | ||
| 114 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 110 | CONFIG_PROC_PAGE_MONITOR=y | 115 | CONFIG_PROC_PAGE_MONITOR=y |
| 111 | CONFIG_SLABINFO=y | 116 | CONFIG_SLABINFO=y |
| 112 | # CONFIG_TINY_SHMEM is not set | 117 | # CONFIG_TINY_SHMEM is not set |
| @@ -131,7 +136,6 @@ CONFIG_DEFAULT_DEADLINE=y | |||
| 131 | # CONFIG_DEFAULT_NOOP is not set | 136 | # CONFIG_DEFAULT_NOOP is not set |
| 132 | CONFIG_DEFAULT_IOSCHED="deadline" | 137 | CONFIG_DEFAULT_IOSCHED="deadline" |
| 133 | CONFIG_CLASSIC_RCU=y | 138 | CONFIG_CLASSIC_RCU=y |
| 134 | # CONFIG_PREEMPT_RCU is not set | ||
| 135 | 139 | ||
| 136 | # | 140 | # |
| 137 | # Platform support | 141 | # Platform support |
| @@ -194,7 +198,6 @@ CONFIG_HZ=1000 | |||
| 194 | CONFIG_PREEMPT_NONE=y | 198 | CONFIG_PREEMPT_NONE=y |
| 195 | # CONFIG_PREEMPT_VOLUNTARY is not set | 199 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 196 | # CONFIG_PREEMPT is not set | 200 | # CONFIG_PREEMPT is not set |
| 197 | CONFIG_RCU_TRACE=y | ||
| 198 | CONFIG_BINFMT_ELF=y | 201 | CONFIG_BINFMT_ELF=y |
| 199 | # CONFIG_BINFMT_MISC is not set | 202 | # CONFIG_BINFMT_MISC is not set |
| 200 | # CONFIG_MATH_EMULATION is not set | 203 | # CONFIG_MATH_EMULATION is not set |
| @@ -213,11 +216,13 @@ CONFIG_FLATMEM=y | |||
| 213 | CONFIG_FLAT_NODE_MEM_MAP=y | 216 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 214 | # CONFIG_SPARSEMEM_STATIC is not set | 217 | # CONFIG_SPARSEMEM_STATIC is not set |
| 215 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 218 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 219 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 216 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 220 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 217 | # CONFIG_RESOURCES_64BIT is not set | 221 | # CONFIG_RESOURCES_64BIT is not set |
| 218 | CONFIG_ZONE_DMA_FLAG=1 | 222 | CONFIG_ZONE_DMA_FLAG=1 |
| 219 | CONFIG_BOUNCE=y | 223 | CONFIG_BOUNCE=y |
| 220 | CONFIG_VIRT_TO_BUS=y | 224 | CONFIG_VIRT_TO_BUS=y |
| 225 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 221 | # CONFIG_PROC_DEVICETREE is not set | 226 | # CONFIG_PROC_DEVICETREE is not set |
| 222 | # CONFIG_CMDLINE_BOOL is not set | 227 | # CONFIG_CMDLINE_BOOL is not set |
| 223 | # CONFIG_PM is not set | 228 | # CONFIG_PM is not set |
| @@ -235,6 +240,7 @@ CONFIG_FSL_SOC=y | |||
| 235 | # CONFIG_PCI_QSPAN is not set | 240 | # CONFIG_PCI_QSPAN is not set |
| 236 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 241 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 237 | # CONFIG_PCCARD is not set | 242 | # CONFIG_PCCARD is not set |
| 243 | # CONFIG_HAS_RAPIDIO is not set | ||
| 238 | 244 | ||
| 239 | # | 245 | # |
| 240 | # Advanced setup | 246 | # Advanced setup |
| @@ -244,13 +250,13 @@ CONFIG_FSL_SOC=y | |||
| 244 | # | 250 | # |
| 245 | # Default settings for advanced configuration options are used | 251 | # Default settings for advanced configuration options are used |
| 246 | # | 252 | # |
| 247 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 248 | CONFIG_LOWMEM_SIZE=0x30000000 | 253 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 254 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 249 | CONFIG_KERNEL_START=0xc0000000 | 255 | CONFIG_KERNEL_START=0xc0000000 |
| 256 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 250 | CONFIG_TASK_SIZE=0x80000000 | 257 | CONFIG_TASK_SIZE=0x80000000 |
| 251 | CONFIG_CONSISTENT_START=0xfd000000 | 258 | CONFIG_CONSISTENT_START=0xfd000000 |
| 252 | CONFIG_CONSISTENT_SIZE=0x00200000 | 259 | CONFIG_CONSISTENT_SIZE=0x00200000 |
| 253 | CONFIG_BOOT_LOAD=0x00400000 | ||
| 254 | 260 | ||
| 255 | # | 261 | # |
| 256 | # Networking | 262 | # Networking |
| @@ -293,8 +299,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 293 | CONFIG_DEFAULT_TCP_CONG="cubic" | 299 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 294 | # CONFIG_TCP_MD5SIG is not set | 300 | # CONFIG_TCP_MD5SIG is not set |
| 295 | # CONFIG_IPV6 is not set | 301 | # CONFIG_IPV6 is not set |
| 296 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 297 | # CONFIG_INET6_TUNNEL is not set | ||
| 298 | # CONFIG_NETWORK_SECMARK is not set | 302 | # CONFIG_NETWORK_SECMARK is not set |
| 299 | # CONFIG_NETFILTER is not set | 303 | # CONFIG_NETFILTER is not set |
| 300 | # CONFIG_IP_DCCP is not set | 304 | # CONFIG_IP_DCCP is not set |
| @@ -482,6 +486,7 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
| 482 | # | 486 | # |
| 483 | # CONFIG_WLAN_PRE80211 is not set | 487 | # CONFIG_WLAN_PRE80211 is not set |
| 484 | # CONFIG_WLAN_80211 is not set | 488 | # CONFIG_WLAN_80211 is not set |
| 489 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 485 | # CONFIG_WAN is not set | 490 | # CONFIG_WAN is not set |
| 486 | # CONFIG_PPP is not set | 491 | # CONFIG_PPP is not set |
| 487 | # CONFIG_SLIP is not set | 492 | # CONFIG_SLIP is not set |
| @@ -548,6 +553,7 @@ CONFIG_SERIO_LIBPS2=y | |||
| 548 | # Character devices | 553 | # Character devices |
| 549 | # | 554 | # |
| 550 | # CONFIG_VT is not set | 555 | # CONFIG_VT is not set |
| 556 | CONFIG_DEVKMEM=y | ||
| 551 | # CONFIG_SERIAL_NONSTANDARD is not set | 557 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 552 | 558 | ||
| 553 | # | 559 | # |
| @@ -580,12 +586,7 @@ CONFIG_GEN_RTC=y | |||
| 580 | # CONFIG_RAW_DRIVER is not set | 586 | # CONFIG_RAW_DRIVER is not set |
| 581 | # CONFIG_TCG_TPM is not set | 587 | # CONFIG_TCG_TPM is not set |
| 582 | # CONFIG_I2C is not set | 588 | # CONFIG_I2C is not set |
| 583 | |||
| 584 | # | ||
| 585 | # SPI support | ||
| 586 | # | ||
| 587 | # CONFIG_SPI is not set | 589 | # CONFIG_SPI is not set |
| 588 | # CONFIG_SPI_MASTER is not set | ||
| 589 | # CONFIG_W1 is not set | 590 | # CONFIG_W1 is not set |
| 590 | # CONFIG_POWER_SUPPLY is not set | 591 | # CONFIG_POWER_SUPPLY is not set |
| 591 | # CONFIG_HWMON is not set | 592 | # CONFIG_HWMON is not set |
| @@ -602,12 +603,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 602 | # Multifunction device drivers | 603 | # Multifunction device drivers |
| 603 | # | 604 | # |
| 604 | # CONFIG_MFD_SM501 is not set | 605 | # CONFIG_MFD_SM501 is not set |
| 606 | # CONFIG_HTC_PASIC3 is not set | ||
| 605 | 607 | ||
| 606 | # | 608 | # |
| 607 | # Multimedia devices | 609 | # Multimedia devices |
| 608 | # | 610 | # |
| 611 | |||
| 612 | # | ||
| 613 | # Multimedia core support | ||
| 614 | # | ||
| 609 | # CONFIG_VIDEO_DEV is not set | 615 | # CONFIG_VIDEO_DEV is not set |
| 610 | # CONFIG_DVB_CORE is not set | 616 | # CONFIG_DVB_CORE is not set |
| 617 | # CONFIG_VIDEO_MEDIA is not set | ||
| 618 | |||
| 619 | # | ||
| 620 | # Multimedia drivers | ||
| 621 | # | ||
| 611 | CONFIG_DAB=y | 622 | CONFIG_DAB=y |
| 612 | 623 | ||
| 613 | # | 624 | # |
| @@ -632,12 +643,10 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 632 | # CONFIG_MMC is not set | 643 | # CONFIG_MMC is not set |
| 633 | # CONFIG_MEMSTICK is not set | 644 | # CONFIG_MEMSTICK is not set |
| 634 | # CONFIG_NEW_LEDS is not set | 645 | # CONFIG_NEW_LEDS is not set |
| 646 | # CONFIG_ACCESSIBILITY is not set | ||
| 635 | # CONFIG_EDAC is not set | 647 | # CONFIG_EDAC is not set |
| 636 | # CONFIG_RTC_CLASS is not set | 648 | # CONFIG_RTC_CLASS is not set |
| 637 | 649 | # CONFIG_DMADEVICES is not set | |
| 638 | # | ||
| 639 | # Userspace I/O | ||
| 640 | # | ||
| 641 | # CONFIG_UIO is not set | 650 | # CONFIG_UIO is not set |
| 642 | 651 | ||
| 643 | # | 652 | # |
| @@ -650,7 +659,6 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 650 | # CONFIG_JFS_FS is not set | 659 | # CONFIG_JFS_FS is not set |
| 651 | # CONFIG_FS_POSIX_ACL is not set | 660 | # CONFIG_FS_POSIX_ACL is not set |
| 652 | # CONFIG_XFS_FS is not set | 661 | # CONFIG_XFS_FS is not set |
| 653 | # CONFIG_GFS2_FS is not set | ||
| 654 | # CONFIG_OCFS2_FS is not set | 662 | # CONFIG_OCFS2_FS is not set |
| 655 | # CONFIG_DNOTIFY is not set | 663 | # CONFIG_DNOTIFY is not set |
| 656 | # CONFIG_INOTIFY is not set | 664 | # CONFIG_INOTIFY is not set |
| @@ -708,7 +716,6 @@ CONFIG_NFS_FS=y | |||
| 708 | CONFIG_NFS_V3=y | 716 | CONFIG_NFS_V3=y |
| 709 | # CONFIG_NFS_V3_ACL is not set | 717 | # CONFIG_NFS_V3_ACL is not set |
| 710 | # CONFIG_NFS_V4 is not set | 718 | # CONFIG_NFS_V4 is not set |
| 711 | # CONFIG_NFS_DIRECTIO is not set | ||
| 712 | # CONFIG_NFSD is not set | 719 | # CONFIG_NFSD is not set |
| 713 | CONFIG_ROOT_NFS=y | 720 | CONFIG_ROOT_NFS=y |
| 714 | CONFIG_LOCKD=y | 721 | CONFIG_LOCKD=y |
| @@ -751,6 +758,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 751 | # | 758 | # |
| 752 | # Library routines | 759 | # Library routines |
| 753 | # | 760 | # |
| 761 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 754 | # CONFIG_CRC_CCITT is not set | 762 | # CONFIG_CRC_CCITT is not set |
| 755 | # CONFIG_CRC16 is not set | 763 | # CONFIG_CRC16 is not set |
| 756 | # CONFIG_CRC_ITU_T is not set | 764 | # CONFIG_CRC_ITU_T is not set |
| @@ -761,6 +769,7 @@ CONFIG_ZLIB_INFLATE=y | |||
| 761 | CONFIG_HAS_IOMEM=y | 769 | CONFIG_HAS_IOMEM=y |
| 762 | CONFIG_HAS_IOPORT=y | 770 | CONFIG_HAS_IOPORT=y |
| 763 | CONFIG_HAS_DMA=y | 771 | CONFIG_HAS_DMA=y |
| 772 | CONFIG_HAVE_LMB=y | ||
| 764 | 773 | ||
| 765 | # | 774 | # |
| 766 | # Kernel hacking | 775 | # Kernel hacking |
| @@ -768,6 +777,7 @@ CONFIG_HAS_DMA=y | |||
| 768 | # CONFIG_PRINTK_TIME is not set | 777 | # CONFIG_PRINTK_TIME is not set |
| 769 | CONFIG_ENABLE_WARN_DEPRECATED=y | 778 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 770 | CONFIG_ENABLE_MUST_CHECK=y | 779 | CONFIG_ENABLE_MUST_CHECK=y |
| 780 | CONFIG_FRAME_WARN=1024 | ||
| 771 | CONFIG_MAGIC_SYSRQ=y | 781 | CONFIG_MAGIC_SYSRQ=y |
| 772 | # CONFIG_UNUSED_SYMBOLS is not set | 782 | # CONFIG_UNUSED_SYMBOLS is not set |
| 773 | CONFIG_DEBUG_FS=y | 783 | CONFIG_DEBUG_FS=y |
| @@ -778,6 +788,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 778 | CONFIG_SCHED_DEBUG=y | 788 | CONFIG_SCHED_DEBUG=y |
| 779 | # CONFIG_SCHEDSTATS is not set | 789 | # CONFIG_SCHEDSTATS is not set |
| 780 | # CONFIG_TIMER_STATS is not set | 790 | # CONFIG_TIMER_STATS is not set |
| 791 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 781 | # CONFIG_SLUB_DEBUG_ON is not set | 792 | # CONFIG_SLUB_DEBUG_ON is not set |
| 782 | # CONFIG_SLUB_STATS is not set | 793 | # CONFIG_SLUB_STATS is not set |
| 783 | # CONFIG_DEBUG_SPINLOCK is not set | 794 | # CONFIG_DEBUG_SPINLOCK is not set |
| @@ -788,6 +799,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 788 | CONFIG_DEBUG_BUGVERBOSE=y | 799 | CONFIG_DEBUG_BUGVERBOSE=y |
| 789 | CONFIG_DEBUG_INFO=y | 800 | CONFIG_DEBUG_INFO=y |
| 790 | # CONFIG_DEBUG_VM is not set | 801 | # CONFIG_DEBUG_VM is not set |
| 802 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 791 | # CONFIG_DEBUG_LIST is not set | 803 | # CONFIG_DEBUG_LIST is not set |
| 792 | # CONFIG_DEBUG_SG is not set | 804 | # CONFIG_DEBUG_SG is not set |
| 793 | # CONFIG_BOOT_PRINTK_DELAY is not set | 805 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -798,6 +810,7 @@ CONFIG_DEBUG_INFO=y | |||
| 798 | # CONFIG_DEBUG_STACK_USAGE is not set | 810 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 799 | # CONFIG_DEBUG_PAGEALLOC is not set | 811 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 800 | # CONFIG_DEBUGGER is not set | 812 | # CONFIG_DEBUGGER is not set |
| 813 | # CONFIG_IRQSTACKS is not set | ||
| 801 | # CONFIG_VIRQ_DEBUG is not set | 814 | # CONFIG_VIRQ_DEBUG is not set |
| 802 | # CONFIG_BDI_SWITCH is not set | 815 | # CONFIG_BDI_SWITCH is not set |
| 803 | # CONFIG_PPC_EARLY_DEBUG is not set | 816 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -811,3 +824,4 @@ CONFIG_DEBUG_INFO=y | |||
| 811 | # CONFIG_CRYPTO is not set | 824 | # CONFIG_CRYPTO is not set |
| 812 | # CONFIG_PPC_CLOCK is not set | 825 | # CONFIG_PPC_CLOCK is not set |
| 813 | CONFIG_PPC_LIB_RHEAP=y | 826 | CONFIG_PPC_LIB_RHEAP=y |
| 827 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/ep8248e_defconfig b/arch/powerpc/configs/ep8248e_defconfig index 2b1504e0a111..ba2a463b9305 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:09 2008 | 4 | # Mon Jun 9 08:52:09 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -30,6 +30,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 30 | CONFIG_GENERIC_HARDIRQS=y | 30 | CONFIG_GENERIC_HARDIRQS=y |
| 31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 32 | CONFIG_IRQ_PER_CPU=y | 32 | CONFIG_IRQ_PER_CPU=y |
| 33 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 34 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 35 | CONFIG_GENERIC_HWEIGHT=y | 37 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -70,18 +72,16 @@ CONFIG_IKCONFIG=y | |||
| 70 | CONFIG_IKCONFIG_PROC=y | 72 | CONFIG_IKCONFIG_PROC=y |
| 71 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
| 72 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
| 73 | CONFIG_GROUP_SCHED=y | ||
| 74 | CONFIG_FAIR_GROUP_SCHED=y | ||
| 75 | CONFIG_USER_SCHED=y | ||
| 76 | # CONFIG_CGROUP_SCHED is not set | ||
| 77 | CONFIG_SYSFS_DEPRECATED=y | 75 | CONFIG_SYSFS_DEPRECATED=y |
| 78 | CONFIG_SYSFS_DEPRECATED_V2=y | 76 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 79 | # CONFIG_RELAY is not set | 77 | # CONFIG_RELAY is not set |
| 80 | # CONFIG_NAMESPACES is not set | 78 | # CONFIG_NAMESPACES is not set |
| 81 | # CONFIG_BLK_DEV_INITRD is not set | 79 | # CONFIG_BLK_DEV_INITRD is not set |
| 80 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 82 | CONFIG_SYSCTL=y | 81 | CONFIG_SYSCTL=y |
| 83 | CONFIG_EMBEDDED=y | 82 | CONFIG_EMBEDDED=y |
| 84 | CONFIG_SYSCTL_SYSCALL=y | 83 | CONFIG_SYSCTL_SYSCALL=y |
| 84 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 85 | CONFIG_KALLSYMS=y | 85 | CONFIG_KALLSYMS=y |
| 86 | CONFIG_KALLSYMS_ALL=y | 86 | CONFIG_KALLSYMS_ALL=y |
| 87 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 87 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -107,6 +107,7 @@ CONFIG_SLAB=y | |||
| 107 | CONFIG_HAVE_OPROFILE=y | 107 | CONFIG_HAVE_OPROFILE=y |
| 108 | CONFIG_HAVE_KPROBES=y | 108 | CONFIG_HAVE_KPROBES=y |
| 109 | CONFIG_HAVE_KRETPROBES=y | 109 | CONFIG_HAVE_KRETPROBES=y |
| 110 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 110 | CONFIG_PROC_PAGE_MONITOR=y | 111 | CONFIG_PROC_PAGE_MONITOR=y |
| 111 | CONFIG_SLABINFO=y | 112 | CONFIG_SLABINFO=y |
| 112 | CONFIG_RT_MUTEXES=y | 113 | CONFIG_RT_MUTEXES=y |
| @@ -194,11 +195,13 @@ CONFIG_FLATMEM=y | |||
| 194 | CONFIG_FLAT_NODE_MEM_MAP=y | 195 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 195 | # CONFIG_SPARSEMEM_STATIC is not set | 196 | # CONFIG_SPARSEMEM_STATIC is not set |
| 196 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 197 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 198 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 197 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 199 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 198 | # CONFIG_RESOURCES_64BIT is not set | 200 | # CONFIG_RESOURCES_64BIT is not set |
| 199 | CONFIG_ZONE_DMA_FLAG=1 | 201 | CONFIG_ZONE_DMA_FLAG=1 |
| 200 | CONFIG_BOUNCE=y | 202 | CONFIG_BOUNCE=y |
| 201 | CONFIG_VIRT_TO_BUS=y | 203 | CONFIG_VIRT_TO_BUS=y |
| 204 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 202 | CONFIG_PROC_DEVICETREE=y | 205 | CONFIG_PROC_DEVICETREE=y |
| 203 | # CONFIG_CMDLINE_BOOL is not set | 206 | # CONFIG_CMDLINE_BOOL is not set |
| 204 | # CONFIG_PM is not set | 207 | # CONFIG_PM is not set |
| @@ -215,6 +218,7 @@ CONFIG_FSL_SOC=y | |||
| 215 | # CONFIG_PCI_SYSCALL is not set | 218 | # CONFIG_PCI_SYSCALL is not set |
| 216 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 219 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 217 | # CONFIG_PCCARD is not set | 220 | # CONFIG_PCCARD is not set |
| 221 | # CONFIG_HAS_RAPIDIO is not set | ||
| 218 | 222 | ||
| 219 | # | 223 | # |
| 220 | # Advanced setup | 224 | # Advanced setup |
| @@ -224,11 +228,11 @@ CONFIG_FSL_SOC=y | |||
| 224 | # | 228 | # |
| 225 | # Default settings for advanced configuration options are used | 229 | # Default settings for advanced configuration options are used |
| 226 | # | 230 | # |
| 227 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 228 | CONFIG_LOWMEM_SIZE=0x30000000 | 231 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 232 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 229 | CONFIG_KERNEL_START=0xc0000000 | 233 | CONFIG_KERNEL_START=0xc0000000 |
| 234 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 230 | CONFIG_TASK_SIZE=0xc0000000 | 235 | CONFIG_TASK_SIZE=0xc0000000 |
| 231 | CONFIG_BOOT_LOAD=0x00400000 | ||
| 232 | 236 | ||
| 233 | # | 237 | # |
| 234 | # Networking | 238 | # Networking |
| @@ -283,6 +287,7 @@ CONFIG_INET6_XFRM_MODE_TRANSPORT=y | |||
| 283 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | 287 | CONFIG_INET6_XFRM_MODE_TUNNEL=y |
| 284 | CONFIG_INET6_XFRM_MODE_BEET=y | 288 | CONFIG_INET6_XFRM_MODE_BEET=y |
| 285 | CONFIG_IPV6_SIT=y | 289 | CONFIG_IPV6_SIT=y |
| 290 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
| 286 | # CONFIG_IPV6_TUNNEL is not set | 291 | # CONFIG_IPV6_TUNNEL is not set |
| 287 | # CONFIG_NETWORK_SECMARK is not set | 292 | # CONFIG_NETWORK_SECMARK is not set |
| 288 | CONFIG_NETFILTER=y | 293 | CONFIG_NETFILTER=y |
| @@ -498,6 +503,7 @@ CONFIG_NETDEV_10000=y | |||
| 498 | # | 503 | # |
| 499 | # CONFIG_WLAN_PRE80211 is not set | 504 | # CONFIG_WLAN_PRE80211 is not set |
| 500 | # CONFIG_WLAN_80211 is not set | 505 | # CONFIG_WLAN_80211 is not set |
| 506 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 501 | # CONFIG_WAN is not set | 507 | # CONFIG_WAN is not set |
| 502 | # CONFIG_PPP is not set | 508 | # CONFIG_PPP is not set |
| 503 | # CONFIG_SLIP is not set | 509 | # CONFIG_SLIP is not set |
| @@ -521,6 +527,7 @@ CONFIG_NETDEV_10000=y | |||
| 521 | # Character devices | 527 | # Character devices |
| 522 | # | 528 | # |
| 523 | # CONFIG_VT is not set | 529 | # CONFIG_VT is not set |
| 530 | CONFIG_DEVKMEM=y | ||
| 524 | # CONFIG_SERIAL_NONSTANDARD is not set | 531 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 525 | 532 | ||
| 526 | # | 533 | # |
| @@ -552,12 +559,7 @@ CONFIG_HW_RANDOM=y | |||
| 552 | # CONFIG_R3964 is not set | 559 | # CONFIG_R3964 is not set |
| 553 | # CONFIG_RAW_DRIVER is not set | 560 | # CONFIG_RAW_DRIVER is not set |
| 554 | # CONFIG_I2C is not set | 561 | # CONFIG_I2C is not set |
| 555 | |||
| 556 | # | ||
| 557 | # SPI support | ||
| 558 | # | ||
| 559 | # CONFIG_SPI is not set | 562 | # CONFIG_SPI is not set |
| 560 | # CONFIG_SPI_MASTER is not set | ||
| 561 | # CONFIG_W1 is not set | 563 | # CONFIG_W1 is not set |
| 562 | # CONFIG_POWER_SUPPLY is not set | 564 | # CONFIG_POWER_SUPPLY is not set |
| 563 | # CONFIG_HWMON is not set | 565 | # CONFIG_HWMON is not set |
| @@ -574,12 +576,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 574 | # Multifunction device drivers | 576 | # Multifunction device drivers |
| 575 | # | 577 | # |
| 576 | # CONFIG_MFD_SM501 is not set | 578 | # CONFIG_MFD_SM501 is not set |
| 579 | # CONFIG_HTC_PASIC3 is not set | ||
| 577 | 580 | ||
| 578 | # | 581 | # |
| 579 | # Multimedia devices | 582 | # Multimedia devices |
| 580 | # | 583 | # |
| 584 | |||
| 585 | # | ||
| 586 | # Multimedia core support | ||
| 587 | # | ||
| 581 | # CONFIG_VIDEO_DEV is not set | 588 | # CONFIG_VIDEO_DEV is not set |
| 582 | # CONFIG_DVB_CORE is not set | 589 | # CONFIG_DVB_CORE is not set |
| 590 | # CONFIG_VIDEO_MEDIA is not set | ||
| 591 | |||
| 592 | # | ||
| 593 | # Multimedia drivers | ||
| 594 | # | ||
| 583 | CONFIG_DAB=y | 595 | CONFIG_DAB=y |
| 584 | 596 | ||
| 585 | # | 597 | # |
| @@ -603,12 +615,9 @@ CONFIG_DAB=y | |||
| 603 | # CONFIG_MMC is not set | 615 | # CONFIG_MMC is not set |
| 604 | # CONFIG_MEMSTICK is not set | 616 | # CONFIG_MEMSTICK is not set |
| 605 | # CONFIG_NEW_LEDS is not set | 617 | # CONFIG_NEW_LEDS is not set |
| 618 | # CONFIG_ACCESSIBILITY is not set | ||
| 606 | # CONFIG_RTC_CLASS is not set | 619 | # CONFIG_RTC_CLASS is not set |
| 607 | # CONFIG_DMADEVICES is not set | 620 | # CONFIG_DMADEVICES is not set |
| 608 | |||
| 609 | # | ||
| 610 | # Userspace I/O | ||
| 611 | # | ||
| 612 | # CONFIG_UIO is not set | 621 | # CONFIG_UIO is not set |
| 613 | 622 | ||
| 614 | # | 623 | # |
| @@ -675,7 +684,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 675 | CONFIG_NFS_FS=y | 684 | CONFIG_NFS_FS=y |
| 676 | CONFIG_NFS_V3=y | 685 | CONFIG_NFS_V3=y |
| 677 | # CONFIG_NFS_V3_ACL is not set | 686 | # CONFIG_NFS_V3_ACL is not set |
| 678 | # CONFIG_NFS_DIRECTIO is not set | ||
| 679 | # CONFIG_NFSD is not set | 687 | # CONFIG_NFSD is not set |
| 680 | CONFIG_ROOT_NFS=y | 688 | CONFIG_ROOT_NFS=y |
| 681 | CONFIG_LOCKD=y | 689 | CONFIG_LOCKD=y |
| @@ -752,6 +760,7 @@ CONFIG_NLS_UTF8=y | |||
| 752 | # | 760 | # |
| 753 | # Library routines | 761 | # Library routines |
| 754 | # | 762 | # |
| 763 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 755 | # CONFIG_CRC_CCITT is not set | 764 | # CONFIG_CRC_CCITT is not set |
| 756 | # CONFIG_CRC16 is not set | 765 | # CONFIG_CRC16 is not set |
| 757 | # CONFIG_CRC_ITU_T is not set | 766 | # CONFIG_CRC_ITU_T is not set |
| @@ -763,6 +772,7 @@ CONFIG_PLIST=y | |||
| 763 | CONFIG_HAS_IOMEM=y | 772 | CONFIG_HAS_IOMEM=y |
| 764 | CONFIG_HAS_IOPORT=y | 773 | CONFIG_HAS_IOPORT=y |
| 765 | CONFIG_HAS_DMA=y | 774 | CONFIG_HAS_DMA=y |
| 775 | CONFIG_HAVE_LMB=y | ||
| 766 | 776 | ||
| 767 | # | 777 | # |
| 768 | # Kernel hacking | 778 | # Kernel hacking |
| @@ -770,6 +780,7 @@ CONFIG_HAS_DMA=y | |||
| 770 | # CONFIG_PRINTK_TIME is not set | 780 | # CONFIG_PRINTK_TIME is not set |
| 771 | CONFIG_ENABLE_WARN_DEPRECATED=y | 781 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 772 | CONFIG_ENABLE_MUST_CHECK=y | 782 | CONFIG_ENABLE_MUST_CHECK=y |
| 783 | CONFIG_FRAME_WARN=1024 | ||
| 773 | CONFIG_MAGIC_SYSRQ=y | 784 | CONFIG_MAGIC_SYSRQ=y |
| 774 | # CONFIG_UNUSED_SYMBOLS is not set | 785 | # CONFIG_UNUSED_SYMBOLS is not set |
| 775 | # CONFIG_DEBUG_FS is not set | 786 | # CONFIG_DEBUG_FS is not set |
| @@ -780,6 +791,7 @@ CONFIG_DEBUG_KERNEL=y | |||
| 780 | # CONFIG_SCHED_DEBUG is not set | 791 | # CONFIG_SCHED_DEBUG is not set |
| 781 | # CONFIG_SCHEDSTATS is not set | 792 | # CONFIG_SCHEDSTATS is not set |
| 782 | # CONFIG_TIMER_STATS is not set | 793 | # CONFIG_TIMER_STATS is not set |
| 794 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 783 | # CONFIG_DEBUG_SLAB is not set | 795 | # CONFIG_DEBUG_SLAB is not set |
| 784 | # CONFIG_DEBUG_RT_MUTEXES is not set | 796 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| 785 | # CONFIG_RT_MUTEX_TESTER is not set | 797 | # CONFIG_RT_MUTEX_TESTER is not set |
| @@ -791,6 +803,7 @@ CONFIG_DEBUG_KERNEL=y | |||
| 791 | CONFIG_DEBUG_BUGVERBOSE=y | 803 | CONFIG_DEBUG_BUGVERBOSE=y |
| 792 | CONFIG_DEBUG_INFO=y | 804 | CONFIG_DEBUG_INFO=y |
| 793 | # CONFIG_DEBUG_VM is not set | 805 | # CONFIG_DEBUG_VM is not set |
| 806 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 794 | # CONFIG_DEBUG_LIST is not set | 807 | # CONFIG_DEBUG_LIST is not set |
| 795 | # CONFIG_DEBUG_SG is not set | 808 | # CONFIG_DEBUG_SG is not set |
| 796 | # CONFIG_BOOT_PRINTK_DELAY is not set | 809 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -802,6 +815,7 @@ CONFIG_DEBUG_INFO=y | |||
| 802 | # CONFIG_DEBUG_PAGEALLOC is not set | 815 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 803 | # CONFIG_DEBUGGER is not set | 816 | # CONFIG_DEBUGGER is not set |
| 804 | # CONFIG_KGDB_CONSOLE is not set | 817 | # CONFIG_KGDB_CONSOLE is not set |
| 818 | # CONFIG_IRQSTACKS is not set | ||
| 805 | CONFIG_BDI_SWITCH=y | 819 | CONFIG_BDI_SWITCH=y |
| 806 | # CONFIG_PPC_EARLY_DEBUG is not set | 820 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 807 | 821 | ||
| @@ -811,45 +825,75 @@ CONFIG_BDI_SWITCH=y | |||
| 811 | # CONFIG_KEYS is not set | 825 | # CONFIG_KEYS is not set |
| 812 | # CONFIG_SECURITY is not set | 826 | # CONFIG_SECURITY is not set |
| 813 | CONFIG_CRYPTO=y | 827 | CONFIG_CRYPTO=y |
| 828 | |||
| 829 | # | ||
| 830 | # Crypto core or helper | ||
| 831 | # | ||
| 814 | CONFIG_CRYPTO_ALGAPI=y | 832 | CONFIG_CRYPTO_ALGAPI=y |
| 815 | CONFIG_CRYPTO_BLKCIPHER=y | 833 | CONFIG_CRYPTO_BLKCIPHER=y |
| 816 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 817 | CONFIG_CRYPTO_MANAGER=y | 834 | CONFIG_CRYPTO_MANAGER=y |
| 818 | # CONFIG_CRYPTO_HMAC is not set | ||
| 819 | # CONFIG_CRYPTO_NULL is not set | 835 | # CONFIG_CRYPTO_NULL is not set |
| 836 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 837 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 838 | |||
| 839 | # | ||
| 840 | # Authenticated Encryption with Associated Data | ||
| 841 | # | ||
| 842 | # CONFIG_CRYPTO_CCM is not set | ||
| 843 | # CONFIG_CRYPTO_GCM is not set | ||
| 844 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 845 | |||
| 846 | # | ||
| 847 | # Block modes | ||
| 848 | # | ||
| 849 | CONFIG_CRYPTO_CBC=y | ||
| 850 | # CONFIG_CRYPTO_CTR is not set | ||
| 851 | # CONFIG_CRYPTO_CTS is not set | ||
| 852 | CONFIG_CRYPTO_ECB=y | ||
| 853 | CONFIG_CRYPTO_PCBC=y | ||
| 854 | |||
| 855 | # | ||
| 856 | # Hash modes | ||
| 857 | # | ||
| 858 | # CONFIG_CRYPTO_HMAC is not set | ||
| 859 | |||
| 860 | # | ||
| 861 | # Digest | ||
| 862 | # | ||
| 863 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 820 | # CONFIG_CRYPTO_MD4 is not set | 864 | # CONFIG_CRYPTO_MD4 is not set |
| 821 | CONFIG_CRYPTO_MD5=y | 865 | CONFIG_CRYPTO_MD5=y |
| 866 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 822 | # CONFIG_CRYPTO_SHA1 is not set | 867 | # CONFIG_CRYPTO_SHA1 is not set |
| 823 | # CONFIG_CRYPTO_SHA256 is not set | 868 | # CONFIG_CRYPTO_SHA256 is not set |
| 824 | # CONFIG_CRYPTO_SHA512 is not set | 869 | # CONFIG_CRYPTO_SHA512 is not set |
| 825 | # CONFIG_CRYPTO_WP512 is not set | ||
| 826 | # CONFIG_CRYPTO_TGR192 is not set | 870 | # CONFIG_CRYPTO_TGR192 is not set |
| 827 | CONFIG_CRYPTO_ECB=y | 871 | # CONFIG_CRYPTO_WP512 is not set |
| 828 | CONFIG_CRYPTO_CBC=y | 872 | |
| 829 | CONFIG_CRYPTO_PCBC=y | 873 | # |
| 830 | # CONFIG_CRYPTO_CTR is not set | 874 | # Ciphers |
| 831 | # CONFIG_CRYPTO_GCM is not set | 875 | # |
| 832 | # CONFIG_CRYPTO_CCM is not set | ||
| 833 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 834 | CONFIG_CRYPTO_DES=y | ||
| 835 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 836 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 837 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 838 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 839 | # CONFIG_CRYPTO_AES is not set | 876 | # CONFIG_CRYPTO_AES is not set |
| 877 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 878 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 879 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 880 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 840 | # CONFIG_CRYPTO_CAST5 is not set | 881 | # CONFIG_CRYPTO_CAST5 is not set |
| 841 | # CONFIG_CRYPTO_CAST6 is not set | 882 | # CONFIG_CRYPTO_CAST6 is not set |
| 842 | # CONFIG_CRYPTO_TEA is not set | 883 | CONFIG_CRYPTO_DES=y |
| 843 | # CONFIG_CRYPTO_ARC4 is not set | 884 | # CONFIG_CRYPTO_FCRYPT is not set |
| 844 | # CONFIG_CRYPTO_KHAZAD is not set | 885 | # CONFIG_CRYPTO_KHAZAD is not set |
| 845 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 846 | # CONFIG_CRYPTO_SEED is not set | 886 | # CONFIG_CRYPTO_SEED is not set |
| 887 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 888 | # CONFIG_CRYPTO_TEA is not set | ||
| 889 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 890 | |||
| 891 | # | ||
| 892 | # Compression | ||
| 893 | # | ||
| 847 | # CONFIG_CRYPTO_DEFLATE is not set | 894 | # CONFIG_CRYPTO_DEFLATE is not set |
| 848 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 849 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 850 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 851 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 852 | # CONFIG_CRYPTO_LZO is not set | 895 | # CONFIG_CRYPTO_LZO is not set |
| 853 | # CONFIG_CRYPTO_HW is not set | 896 | # CONFIG_CRYPTO_HW is not set |
| 854 | # CONFIG_PPC_CLOCK is not set | 897 | # CONFIG_PPC_CLOCK is not set |
| 855 | CONFIG_PPC_LIB_RHEAP=y | 898 | CONFIG_PPC_LIB_RHEAP=y |
| 899 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/ep88xc_defconfig b/arch/powerpc/configs/ep88xc_defconfig index 125b4764aadd..ac72b48542dc 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:10 2008 | 4 | # Mon Jun 9 08:52:09 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -28,6 +28,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 28 | CONFIG_GENERIC_HARDIRQS=y | 28 | CONFIG_GENERIC_HARDIRQS=y |
| 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 29 | # CONFIG_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 | ||
| 32 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 32 | CONFIG_ARCH_HAS_ILOG2_U32=y | 34 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 33 | CONFIG_GENERIC_HWEIGHT=y | 35 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -108,6 +110,7 @@ CONFIG_SLUB=y | |||
| 108 | CONFIG_HAVE_OPROFILE=y | 110 | CONFIG_HAVE_OPROFILE=y |
| 109 | CONFIG_HAVE_KPROBES=y | 111 | CONFIG_HAVE_KPROBES=y |
| 110 | CONFIG_HAVE_KRETPROBES=y | 112 | CONFIG_HAVE_KRETPROBES=y |
| 113 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 111 | CONFIG_PROC_PAGE_MONITOR=y | 114 | CONFIG_PROC_PAGE_MONITOR=y |
| 112 | CONFIG_SLABINFO=y | 115 | CONFIG_SLABINFO=y |
| 113 | # CONFIG_TINY_SHMEM is not set | 116 | # CONFIG_TINY_SHMEM is not set |
| @@ -212,11 +215,13 @@ CONFIG_FLATMEM=y | |||
| 212 | CONFIG_FLAT_NODE_MEM_MAP=y | 215 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 213 | # CONFIG_SPARSEMEM_STATIC is not set | 216 | # CONFIG_SPARSEMEM_STATIC is not set |
| 214 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 218 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 215 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 219 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 216 | # CONFIG_RESOURCES_64BIT is not set | 220 | # CONFIG_RESOURCES_64BIT is not set |
| 217 | CONFIG_ZONE_DMA_FLAG=1 | 221 | CONFIG_ZONE_DMA_FLAG=1 |
| 218 | CONFIG_BOUNCE=y | 222 | CONFIG_BOUNCE=y |
| 219 | CONFIG_VIRT_TO_BUS=y | 223 | CONFIG_VIRT_TO_BUS=y |
| 224 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 220 | CONFIG_PROC_DEVICETREE=y | 225 | CONFIG_PROC_DEVICETREE=y |
| 221 | # CONFIG_CMDLINE_BOOL is not set | 226 | # CONFIG_CMDLINE_BOOL is not set |
| 222 | # CONFIG_PM is not set | 227 | # CONFIG_PM is not set |
| @@ -234,6 +239,7 @@ CONFIG_FSL_SOC=y | |||
| 234 | # CONFIG_PCI_QSPAN is not set | 239 | # CONFIG_PCI_QSPAN is not set |
| 235 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 240 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 236 | # CONFIG_PCCARD is not set | 241 | # CONFIG_PCCARD is not set |
| 242 | # CONFIG_HAS_RAPIDIO is not set | ||
| 237 | 243 | ||
| 238 | # | 244 | # |
| 239 | # Advanced setup | 245 | # Advanced setup |
| @@ -243,13 +249,13 @@ CONFIG_FSL_SOC=y | |||
| 243 | # | 249 | # |
| 244 | # Default settings for advanced configuration options are used | 250 | # Default settings for advanced configuration options are used |
| 245 | # | 251 | # |
| 246 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 247 | CONFIG_LOWMEM_SIZE=0x30000000 | 252 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 253 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 248 | CONFIG_KERNEL_START=0xc0000000 | 254 | CONFIG_KERNEL_START=0xc0000000 |
| 255 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 249 | CONFIG_TASK_SIZE=0x80000000 | 256 | CONFIG_TASK_SIZE=0x80000000 |
| 250 | CONFIG_CONSISTENT_START=0xfd000000 | 257 | CONFIG_CONSISTENT_START=0xfd000000 |
| 251 | CONFIG_CONSISTENT_SIZE=0x00200000 | 258 | CONFIG_CONSISTENT_SIZE=0x00200000 |
| 252 | CONFIG_BOOT_LOAD=0x00400000 | ||
| 253 | 259 | ||
| 254 | # | 260 | # |
| 255 | # Networking | 261 | # Networking |
| @@ -292,8 +298,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 292 | CONFIG_DEFAULT_TCP_CONG="cubic" | 298 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 293 | # CONFIG_TCP_MD5SIG is not set | 299 | # CONFIG_TCP_MD5SIG is not set |
| 294 | # CONFIG_IPV6 is not set | 300 | # CONFIG_IPV6 is not set |
| 295 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 296 | # CONFIG_INET6_TUNNEL is not set | ||
| 297 | # CONFIG_NETWORK_SECMARK is not set | 301 | # CONFIG_NETWORK_SECMARK is not set |
| 298 | # CONFIG_NETFILTER is not set | 302 | # CONFIG_NETFILTER is not set |
| 299 | # CONFIG_IP_DCCP is not set | 303 | # CONFIG_IP_DCCP is not set |
| @@ -481,6 +485,7 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
| 481 | # | 485 | # |
| 482 | # CONFIG_WLAN_PRE80211 is not set | 486 | # CONFIG_WLAN_PRE80211 is not set |
| 483 | # CONFIG_WLAN_80211 is not set | 487 | # CONFIG_WLAN_80211 is not set |
| 488 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 484 | # CONFIG_WAN is not set | 489 | # CONFIG_WAN is not set |
| 485 | # CONFIG_PPP is not set | 490 | # CONFIG_PPP is not set |
| 486 | # CONFIG_SLIP is not set | 491 | # CONFIG_SLIP is not set |
| @@ -505,6 +510,7 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
| 505 | # Character devices | 510 | # Character devices |
| 506 | # | 511 | # |
| 507 | # CONFIG_VT is not set | 512 | # CONFIG_VT is not set |
| 513 | CONFIG_DEVKMEM=y | ||
| 508 | # CONFIG_SERIAL_NONSTANDARD is not set | 514 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 509 | 515 | ||
| 510 | # | 516 | # |
| @@ -537,12 +543,7 @@ CONFIG_GEN_RTC=y | |||
| 537 | # CONFIG_RAW_DRIVER is not set | 543 | # CONFIG_RAW_DRIVER is not set |
| 538 | # CONFIG_TCG_TPM is not set | 544 | # CONFIG_TCG_TPM is not set |
| 539 | # CONFIG_I2C is not set | 545 | # CONFIG_I2C is not set |
| 540 | |||
| 541 | # | ||
| 542 | # SPI support | ||
| 543 | # | ||
| 544 | # CONFIG_SPI is not set | 546 | # CONFIG_SPI is not set |
| 545 | # CONFIG_SPI_MASTER is not set | ||
| 546 | # CONFIG_W1 is not set | 547 | # CONFIG_W1 is not set |
| 547 | # CONFIG_POWER_SUPPLY is not set | 548 | # CONFIG_POWER_SUPPLY is not set |
| 548 | # CONFIG_HWMON is not set | 549 | # CONFIG_HWMON is not set |
| @@ -559,12 +560,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 559 | # Multifunction device drivers | 560 | # Multifunction device drivers |
| 560 | # | 561 | # |
| 561 | # CONFIG_MFD_SM501 is not set | 562 | # CONFIG_MFD_SM501 is not set |
| 563 | # CONFIG_HTC_PASIC3 is not set | ||
| 562 | 564 | ||
| 563 | # | 565 | # |
| 564 | # Multimedia devices | 566 | # Multimedia devices |
| 565 | # | 567 | # |
| 568 | |||
| 569 | # | ||
| 570 | # Multimedia core support | ||
| 571 | # | ||
| 566 | # CONFIG_VIDEO_DEV is not set | 572 | # CONFIG_VIDEO_DEV is not set |
| 567 | # CONFIG_DVB_CORE is not set | 573 | # CONFIG_DVB_CORE is not set |
| 574 | # CONFIG_VIDEO_MEDIA is not set | ||
| 575 | |||
| 576 | # | ||
| 577 | # Multimedia drivers | ||
| 578 | # | ||
| 568 | CONFIG_DAB=y | 579 | CONFIG_DAB=y |
| 569 | 580 | ||
| 570 | # | 581 | # |
| @@ -588,13 +599,10 @@ CONFIG_DAB=y | |||
| 588 | # CONFIG_MMC is not set | 599 | # CONFIG_MMC is not set |
| 589 | # CONFIG_MEMSTICK is not set | 600 | # CONFIG_MEMSTICK is not set |
| 590 | # CONFIG_NEW_LEDS is not set | 601 | # CONFIG_NEW_LEDS is not set |
| 602 | # CONFIG_ACCESSIBILITY is not set | ||
| 591 | # CONFIG_EDAC is not set | 603 | # CONFIG_EDAC is not set |
| 592 | # CONFIG_RTC_CLASS is not set | 604 | # CONFIG_RTC_CLASS is not set |
| 593 | # CONFIG_DMADEVICES is not set | 605 | # CONFIG_DMADEVICES is not set |
| 594 | |||
| 595 | # | ||
| 596 | # Userspace I/O | ||
| 597 | # | ||
| 598 | # CONFIG_UIO is not set | 606 | # CONFIG_UIO is not set |
| 599 | 607 | ||
| 600 | # | 608 | # |
| @@ -607,7 +615,6 @@ CONFIG_DAB=y | |||
| 607 | # CONFIG_JFS_FS is not set | 615 | # CONFIG_JFS_FS is not set |
| 608 | # CONFIG_FS_POSIX_ACL is not set | 616 | # CONFIG_FS_POSIX_ACL is not set |
| 609 | # CONFIG_XFS_FS is not set | 617 | # CONFIG_XFS_FS is not set |
| 610 | # CONFIG_GFS2_FS is not set | ||
| 611 | # CONFIG_OCFS2_FS is not set | 618 | # CONFIG_OCFS2_FS is not set |
| 612 | # CONFIG_DNOTIFY is not set | 619 | # CONFIG_DNOTIFY is not set |
| 613 | # CONFIG_INOTIFY is not set | 620 | # CONFIG_INOTIFY is not set |
| @@ -665,7 +672,6 @@ CONFIG_NFS_FS=y | |||
| 665 | CONFIG_NFS_V3=y | 672 | CONFIG_NFS_V3=y |
| 666 | # CONFIG_NFS_V3_ACL is not set | 673 | # CONFIG_NFS_V3_ACL is not set |
| 667 | # CONFIG_NFS_V4 is not set | 674 | # CONFIG_NFS_V4 is not set |
| 668 | # CONFIG_NFS_DIRECTIO is not set | ||
| 669 | # CONFIG_NFSD is not set | 675 | # CONFIG_NFSD is not set |
| 670 | CONFIG_ROOT_NFS=y | 676 | CONFIG_ROOT_NFS=y |
| 671 | CONFIG_LOCKD=y | 677 | CONFIG_LOCKD=y |
| @@ -708,6 +714,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 708 | # | 714 | # |
| 709 | # Library routines | 715 | # Library routines |
| 710 | # | 716 | # |
| 717 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 711 | # CONFIG_CRC_CCITT is not set | 718 | # CONFIG_CRC_CCITT is not set |
| 712 | # CONFIG_CRC16 is not set | 719 | # CONFIG_CRC16 is not set |
| 713 | # CONFIG_CRC_ITU_T is not set | 720 | # CONFIG_CRC_ITU_T is not set |
| @@ -718,6 +725,7 @@ CONFIG_ZLIB_INFLATE=y | |||
| 718 | CONFIG_HAS_IOMEM=y | 725 | CONFIG_HAS_IOMEM=y |
| 719 | CONFIG_HAS_IOPORT=y | 726 | CONFIG_HAS_IOPORT=y |
| 720 | CONFIG_HAS_DMA=y | 727 | CONFIG_HAS_DMA=y |
| 728 | CONFIG_HAVE_LMB=y | ||
| 721 | 729 | ||
| 722 | # | 730 | # |
| 723 | # Kernel hacking | 731 | # Kernel hacking |
| @@ -725,6 +733,7 @@ CONFIG_HAS_DMA=y | |||
| 725 | # CONFIG_PRINTK_TIME is not set | 733 | # CONFIG_PRINTK_TIME is not set |
| 726 | CONFIG_ENABLE_WARN_DEPRECATED=y | 734 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 727 | CONFIG_ENABLE_MUST_CHECK=y | 735 | CONFIG_ENABLE_MUST_CHECK=y |
| 736 | CONFIG_FRAME_WARN=1024 | ||
| 728 | CONFIG_MAGIC_SYSRQ=y | 737 | CONFIG_MAGIC_SYSRQ=y |
| 729 | # CONFIG_UNUSED_SYMBOLS is not set | 738 | # CONFIG_UNUSED_SYMBOLS is not set |
| 730 | # CONFIG_DEBUG_FS is not set | 739 | # CONFIG_DEBUG_FS is not set |
| @@ -735,6 +744,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 735 | CONFIG_SCHED_DEBUG=y | 744 | CONFIG_SCHED_DEBUG=y |
| 736 | # CONFIG_SCHEDSTATS is not set | 745 | # CONFIG_SCHEDSTATS is not set |
| 737 | # CONFIG_TIMER_STATS is not set | 746 | # CONFIG_TIMER_STATS is not set |
| 747 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 738 | # CONFIG_SLUB_DEBUG_ON is not set | 748 | # CONFIG_SLUB_DEBUG_ON is not set |
| 739 | # CONFIG_SLUB_STATS is not set | 749 | # CONFIG_SLUB_STATS is not set |
| 740 | # CONFIG_DEBUG_SPINLOCK is not set | 750 | # CONFIG_DEBUG_SPINLOCK is not set |
| @@ -745,6 +755,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 745 | CONFIG_DEBUG_BUGVERBOSE=y | 755 | CONFIG_DEBUG_BUGVERBOSE=y |
| 746 | CONFIG_DEBUG_INFO=y | 756 | CONFIG_DEBUG_INFO=y |
| 747 | # CONFIG_DEBUG_VM is not set | 757 | # CONFIG_DEBUG_VM is not set |
| 758 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 748 | # CONFIG_DEBUG_LIST is not set | 759 | # CONFIG_DEBUG_LIST is not set |
| 749 | # CONFIG_DEBUG_SG is not set | 760 | # CONFIG_DEBUG_SG is not set |
| 750 | # CONFIG_BOOT_PRINTK_DELAY is not set | 761 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -755,6 +766,7 @@ CONFIG_DEBUG_INFO=y | |||
| 755 | # CONFIG_DEBUG_STACK_USAGE is not set | 766 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 756 | # CONFIG_DEBUG_PAGEALLOC is not set | 767 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 757 | # CONFIG_DEBUGGER is not set | 768 | # CONFIG_DEBUGGER is not set |
| 769 | # CONFIG_IRQSTACKS is not set | ||
| 758 | # CONFIG_BDI_SWITCH is not set | 770 | # CONFIG_BDI_SWITCH is not set |
| 759 | # CONFIG_PPC_EARLY_DEBUG is not set | 771 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 760 | 772 | ||
| @@ -767,3 +779,4 @@ CONFIG_DEBUG_INFO=y | |||
| 767 | # CONFIG_CRYPTO is not set | 779 | # CONFIG_CRYPTO is not set |
| 768 | # CONFIG_PPC_CLOCK is not set | 780 | # CONFIG_PPC_CLOCK is not set |
| 769 | CONFIG_PPC_LIB_RHEAP=y | 781 | CONFIG_PPC_LIB_RHEAP=y |
| 782 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/g5_defconfig b/arch/powerpc/configs/g5_defconfig index db34909831a2..0ccc6e493dcb 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-rc3 | 3 | # Linux kernel version: 2.6.26-rc6 |
| 4 | # Tue May 20 20:01:18 2008 | 4 | # Mon Jun 16 21:08:31 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
| 7 | 7 | ||
| @@ -597,7 +597,61 @@ CONFIG_ATA=y | |||
| 597 | CONFIG_SATA_PMP=y | 597 | CONFIG_SATA_PMP=y |
| 598 | # CONFIG_SATA_AHCI is not set | 598 | # CONFIG_SATA_AHCI is not set |
| 599 | # CONFIG_SATA_SIL24 is not set | 599 | # CONFIG_SATA_SIL24 is not set |
| 600 | # CONFIG_ATA_SFF is not set | 600 | CONFIG_ATA_SFF=y |
| 601 | CONFIG_SATA_SVW=y | ||
| 602 | # CONFIG_ATA_PIIX is not set | ||
| 603 | # CONFIG_SATA_MV is not set | ||
| 604 | # CONFIG_SATA_NV is not set | ||
| 605 | # CONFIG_PDC_ADMA is not set | ||
| 606 | # CONFIG_SATA_QSTOR is not set | ||
| 607 | # CONFIG_SATA_PROMISE is not set | ||
| 608 | # CONFIG_SATA_SX4 is not set | ||
| 609 | # CONFIG_SATA_SIL is not set | ||
| 610 | # CONFIG_SATA_SIS is not set | ||
| 611 | # CONFIG_SATA_ULI is not set | ||
| 612 | # CONFIG_SATA_VIA is not set | ||
| 613 | # CONFIG_SATA_VITESSE is not set | ||
| 614 | # CONFIG_SATA_INIC162X is not set | ||
| 615 | # CONFIG_PATA_ALI is not set | ||
| 616 | # CONFIG_PATA_AMD is not set | ||
| 617 | # CONFIG_PATA_ARTOP is not set | ||
| 618 | # CONFIG_PATA_ATIIXP is not set | ||
| 619 | # CONFIG_PATA_CMD640_PCI is not set | ||
| 620 | # CONFIG_PATA_CMD64X is not set | ||
| 621 | # CONFIG_PATA_CS5520 is not set | ||
| 622 | # CONFIG_PATA_CS5530 is not set | ||
| 623 | # CONFIG_PATA_CYPRESS is not set | ||
| 624 | # CONFIG_PATA_EFAR is not set | ||
| 625 | # CONFIG_ATA_GENERIC is not set | ||
| 626 | # CONFIG_PATA_HPT366 is not set | ||
| 627 | # CONFIG_PATA_HPT37X is not set | ||
| 628 | # CONFIG_PATA_HPT3X2N is not set | ||
| 629 | # CONFIG_PATA_HPT3X3 is not set | ||
| 630 | # CONFIG_PATA_IT821X is not set | ||
| 631 | # CONFIG_PATA_IT8213 is not set | ||
| 632 | # CONFIG_PATA_JMICRON is not set | ||
| 633 | # CONFIG_PATA_TRIFLEX is not set | ||
| 634 | # CONFIG_PATA_MARVELL is not set | ||
| 635 | # CONFIG_PATA_MPIIX is not set | ||
| 636 | # CONFIG_PATA_OLDPIIX is not set | ||
| 637 | # CONFIG_PATA_NETCELL is not set | ||
| 638 | # CONFIG_PATA_NINJA32 is not set | ||
| 639 | # CONFIG_PATA_NS87410 is not set | ||
| 640 | # CONFIG_PATA_NS87415 is not set | ||
| 641 | # CONFIG_PATA_OPTI is not set | ||
| 642 | # CONFIG_PATA_OPTIDMA is not set | ||
| 643 | # CONFIG_PATA_PDC_OLD is not set | ||
| 644 | # CONFIG_PATA_RADISYS is not set | ||
| 645 | # CONFIG_PATA_RZ1000 is not set | ||
| 646 | # CONFIG_PATA_SC1200 is not set | ||
| 647 | # CONFIG_PATA_SERVERWORKS is not set | ||
| 648 | # CONFIG_PATA_PDC2027X is not set | ||
| 649 | # CONFIG_PATA_SIL680 is not set | ||
| 650 | # CONFIG_PATA_SIS is not set | ||
| 651 | # CONFIG_PATA_VIA is not set | ||
| 652 | # CONFIG_PATA_WINBOND is not set | ||
| 653 | # CONFIG_PATA_PLATFORM is not set | ||
| 654 | # CONFIG_PATA_SCH is not set | ||
| 601 | CONFIG_MD=y | 655 | CONFIG_MD=y |
| 602 | CONFIG_BLK_DEV_MD=y | 656 | CONFIG_BLK_DEV_MD=y |
| 603 | CONFIG_MD_LINEAR=y | 657 | CONFIG_MD_LINEAR=y |
| @@ -1230,6 +1284,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1230 | # | 1284 | # |
| 1231 | CONFIG_USB_ACM=m | 1285 | CONFIG_USB_ACM=m |
| 1232 | CONFIG_USB_PRINTER=y | 1286 | CONFIG_USB_PRINTER=y |
| 1287 | # CONFIG_USB_WDM is not set | ||
| 1233 | 1288 | ||
| 1234 | # | 1289 | # |
| 1235 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1290 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1345,6 +1400,7 @@ CONFIG_USB_APPLEDISPLAY=m | |||
| 1345 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1400 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1346 | # CONFIG_USB_IOWARRIOR is not set | 1401 | # CONFIG_USB_IOWARRIOR is not set |
| 1347 | # CONFIG_USB_TEST is not set | 1402 | # CONFIG_USB_TEST is not set |
| 1403 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1348 | # CONFIG_USB_GADGET is not set | 1404 | # CONFIG_USB_GADGET is not set |
| 1349 | # CONFIG_MMC is not set | 1405 | # CONFIG_MMC is not set |
| 1350 | # CONFIG_MEMSTICK is not set | 1406 | # CONFIG_MEMSTICK is not set |
diff --git a/arch/powerpc/configs/linkstation_defconfig b/arch/powerpc/configs/linkstation_defconfig index 22a943afc3c0..48434c2c7628 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:10 2008 | 4 | # Mon Jun 9 08:52:10 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -91,6 +93,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 91 | CONFIG_SYSCTL=y | 93 | CONFIG_SYSCTL=y |
| 92 | # CONFIG_EMBEDDED is not set | 94 | # CONFIG_EMBEDDED is not set |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 95 | CONFIG_SYSCTL_SYSCALL=y |
| 96 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 94 | CONFIG_KALLSYMS=y | 97 | CONFIG_KALLSYMS=y |
| 95 | # CONFIG_KALLSYMS_ALL is not set | 98 | # CONFIG_KALLSYMS_ALL is not set |
| 96 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -118,12 +121,14 @@ CONFIG_HAVE_OPROFILE=y | |||
| 118 | # CONFIG_KPROBES is not set | 121 | # CONFIG_KPROBES is not set |
| 119 | CONFIG_HAVE_KPROBES=y | 122 | CONFIG_HAVE_KPROBES=y |
| 120 | CONFIG_HAVE_KRETPROBES=y | 123 | CONFIG_HAVE_KRETPROBES=y |
| 124 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 121 | CONFIG_PROC_PAGE_MONITOR=y | 125 | CONFIG_PROC_PAGE_MONITOR=y |
| 122 | CONFIG_SLABINFO=y | 126 | CONFIG_SLABINFO=y |
| 123 | CONFIG_RT_MUTEXES=y | 127 | CONFIG_RT_MUTEXES=y |
| 124 | # CONFIG_TINY_SHMEM is not set | 128 | # CONFIG_TINY_SHMEM is not set |
| 125 | CONFIG_BASE_SMALL=0 | 129 | CONFIG_BASE_SMALL=0 |
| 126 | CONFIG_MODULES=y | 130 | CONFIG_MODULES=y |
| 131 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 127 | CONFIG_MODULE_UNLOAD=y | 132 | CONFIG_MODULE_UNLOAD=y |
| 128 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 133 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 129 | # CONFIG_MODVERSIONS is not set | 134 | # CONFIG_MODVERSIONS is not set |
| @@ -223,11 +228,13 @@ CONFIG_FLATMEM=y | |||
| 223 | CONFIG_FLAT_NODE_MEM_MAP=y | 228 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 224 | # CONFIG_SPARSEMEM_STATIC is not set | 229 | # CONFIG_SPARSEMEM_STATIC is not set |
| 225 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 230 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 231 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 226 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 232 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 227 | # CONFIG_RESOURCES_64BIT is not set | 233 | # CONFIG_RESOURCES_64BIT is not set |
| 228 | CONFIG_ZONE_DMA_FLAG=1 | 234 | CONFIG_ZONE_DMA_FLAG=1 |
| 229 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
| 230 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
| 237 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 231 | CONFIG_PROC_DEVICETREE=y | 238 | CONFIG_PROC_DEVICETREE=y |
| 232 | # CONFIG_CMDLINE_BOOL is not set | 239 | # CONFIG_CMDLINE_BOOL is not set |
| 233 | # CONFIG_PM is not set | 240 | # CONFIG_PM is not set |
| @@ -251,6 +258,7 @@ CONFIG_PCI_LEGACY=y | |||
| 251 | # CONFIG_PCI_DEBUG is not set | 258 | # CONFIG_PCI_DEBUG is not set |
| 252 | # CONFIG_PCCARD is not set | 259 | # CONFIG_PCCARD is not set |
| 253 | # CONFIG_HOTPLUG_PCI is not set | 260 | # CONFIG_HOTPLUG_PCI is not set |
| 261 | # CONFIG_HAS_RAPIDIO is not set | ||
| 254 | 262 | ||
| 255 | # | 263 | # |
| 256 | # Advanced setup | 264 | # Advanced setup |
| @@ -260,11 +268,11 @@ CONFIG_PCI_LEGACY=y | |||
| 260 | # | 268 | # |
| 261 | # Default settings for advanced configuration options are used | 269 | # Default settings for advanced configuration options are used |
| 262 | # | 270 | # |
| 263 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 264 | CONFIG_LOWMEM_SIZE=0x30000000 | 271 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 272 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 265 | CONFIG_KERNEL_START=0xc0000000 | 273 | CONFIG_KERNEL_START=0xc0000000 |
| 274 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 266 | CONFIG_TASK_SIZE=0xc0000000 | 275 | CONFIG_TASK_SIZE=0xc0000000 |
| 267 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 268 | 276 | ||
| 269 | # | 277 | # |
| 270 | # Networking | 278 | # Networking |
| @@ -313,8 +321,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 313 | # CONFIG_TCP_MD5SIG is not set | 321 | # CONFIG_TCP_MD5SIG is not set |
| 314 | # CONFIG_IP_VS is not set | 322 | # CONFIG_IP_VS is not set |
| 315 | # CONFIG_IPV6 is not set | 323 | # CONFIG_IPV6 is not set |
| 316 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 317 | # CONFIG_INET6_TUNNEL is not set | ||
| 318 | # CONFIG_NETWORK_SECMARK is not set | 324 | # CONFIG_NETWORK_SECMARK is not set |
| 319 | CONFIG_NETFILTER=y | 325 | CONFIG_NETFILTER=y |
| 320 | # CONFIG_NETFILTER_DEBUG is not set | 326 | # CONFIG_NETFILTER_DEBUG is not set |
| @@ -329,6 +335,7 @@ CONFIG_NF_CONNTRACK=m | |||
| 329 | # CONFIG_NF_CT_ACCT is not set | 335 | # CONFIG_NF_CT_ACCT is not set |
| 330 | # CONFIG_NF_CONNTRACK_MARK is not set | 336 | # CONFIG_NF_CONNTRACK_MARK is not set |
| 331 | # CONFIG_NF_CONNTRACK_EVENTS is not set | 337 | # CONFIG_NF_CONNTRACK_EVENTS is not set |
| 338 | # CONFIG_NF_CT_PROTO_DCCP is not set | ||
| 332 | CONFIG_NF_CT_PROTO_GRE=m | 339 | CONFIG_NF_CT_PROTO_GRE=m |
| 333 | CONFIG_NF_CT_PROTO_SCTP=m | 340 | CONFIG_NF_CT_PROTO_SCTP=m |
| 334 | # CONFIG_NF_CT_PROTO_UDPLITE is not set | 341 | # CONFIG_NF_CT_PROTO_UDPLITE is not set |
| @@ -407,6 +414,7 @@ CONFIG_IP_NF_TARGET_REDIRECT=m | |||
| 407 | # CONFIG_IP_NF_TARGET_NETMAP is not set | 414 | # CONFIG_IP_NF_TARGET_NETMAP is not set |
| 408 | # CONFIG_NF_NAT_SNMP_BASIC is not set | 415 | # CONFIG_NF_NAT_SNMP_BASIC is not set |
| 409 | CONFIG_NF_NAT_PROTO_GRE=m | 416 | CONFIG_NF_NAT_PROTO_GRE=m |
| 417 | CONFIG_NF_NAT_PROTO_SCTP=m | ||
| 410 | CONFIG_NF_NAT_FTP=m | 418 | CONFIG_NF_NAT_FTP=m |
| 411 | CONFIG_NF_NAT_IRC=m | 419 | CONFIG_NF_NAT_IRC=m |
| 412 | CONFIG_NF_NAT_TFTP=m | 420 | CONFIG_NF_NAT_TFTP=m |
| @@ -459,8 +467,6 @@ CONFIG_IEEE80211_DEBUG=y | |||
| 459 | CONFIG_IEEE80211_CRYPT_WEP=m | 467 | CONFIG_IEEE80211_CRYPT_WEP=m |
| 460 | CONFIG_IEEE80211_CRYPT_CCMP=m | 468 | CONFIG_IEEE80211_CRYPT_CCMP=m |
| 461 | CONFIG_IEEE80211_CRYPT_TKIP=m | 469 | CONFIG_IEEE80211_CRYPT_TKIP=m |
| 462 | CONFIG_IEEE80211_SOFTMAC=m | ||
| 463 | CONFIG_IEEE80211_SOFTMAC_DEBUG=y | ||
| 464 | # CONFIG_RFKILL is not set | 470 | # CONFIG_RFKILL is not set |
| 465 | # CONFIG_NET_9P is not set | 471 | # CONFIG_NET_9P is not set |
| 466 | 472 | ||
| @@ -486,6 +492,7 @@ CONFIG_MTD_PARTITIONS=y | |||
| 486 | # CONFIG_MTD_REDBOOT_PARTS is not set | 492 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 487 | # CONFIG_MTD_CMDLINE_PARTS is not set | 493 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 488 | # CONFIG_MTD_OF_PARTS is not set | 494 | # CONFIG_MTD_OF_PARTS is not set |
| 495 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 489 | 496 | ||
| 490 | # | 497 | # |
| 491 | # User Modules And Translation Layers | 498 | # User Modules And Translation Layers |
| @@ -565,6 +572,7 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | |||
| 565 | # | 572 | # |
| 566 | # CONFIG_MTD_UBI is not set | 573 | # CONFIG_MTD_UBI is not set |
| 567 | CONFIG_OF_DEVICE=y | 574 | CONFIG_OF_DEVICE=y |
| 575 | CONFIG_OF_I2C=y | ||
| 568 | # CONFIG_PARPORT is not set | 576 | # CONFIG_PARPORT is not set |
| 569 | CONFIG_BLK_DEV=y | 577 | CONFIG_BLK_DEV=y |
| 570 | # CONFIG_BLK_DEV_FD is not set | 578 | # CONFIG_BLK_DEV_FD is not set |
| @@ -670,7 +678,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 670 | # CONFIG_SCSI_SRP is not set | 678 | # CONFIG_SCSI_SRP is not set |
| 671 | CONFIG_ATA=y | 679 | CONFIG_ATA=y |
| 672 | # CONFIG_ATA_NONSTANDARD is not set | 680 | # CONFIG_ATA_NONSTANDARD is not set |
| 681 | CONFIG_SATA_PMP=y | ||
| 673 | # CONFIG_SATA_AHCI is not set | 682 | # CONFIG_SATA_AHCI is not set |
| 683 | # CONFIG_SATA_SIL24 is not set | ||
| 684 | # CONFIG_SATA_FSL is not set | ||
| 685 | CONFIG_ATA_SFF=y | ||
| 674 | # CONFIG_SATA_SVW is not set | 686 | # CONFIG_SATA_SVW is not set |
| 675 | # CONFIG_ATA_PIIX is not set | 687 | # CONFIG_ATA_PIIX is not set |
| 676 | # CONFIG_SATA_MV is not set | 688 | # CONFIG_SATA_MV is not set |
| @@ -680,13 +692,11 @@ CONFIG_ATA=y | |||
| 680 | # CONFIG_SATA_PROMISE is not set | 692 | # CONFIG_SATA_PROMISE is not set |
| 681 | # CONFIG_SATA_SX4 is not set | 693 | # CONFIG_SATA_SX4 is not set |
| 682 | # CONFIG_SATA_SIL is not set | 694 | # CONFIG_SATA_SIL is not set |
| 683 | # CONFIG_SATA_SIL24 is not set | ||
| 684 | # CONFIG_SATA_SIS is not set | 695 | # CONFIG_SATA_SIS is not set |
| 685 | # CONFIG_SATA_ULI is not set | 696 | # CONFIG_SATA_ULI is not set |
| 686 | # CONFIG_SATA_VIA is not set | 697 | # CONFIG_SATA_VIA is not set |
| 687 | # CONFIG_SATA_VITESSE is not set | 698 | # CONFIG_SATA_VITESSE is not set |
| 688 | # CONFIG_SATA_INIC162X is not set | 699 | # CONFIG_SATA_INIC162X is not set |
| 689 | # CONFIG_SATA_FSL is not set | ||
| 690 | # CONFIG_PATA_ALI is not set | 700 | # CONFIG_PATA_ALI is not set |
| 691 | # CONFIG_PATA_AMD is not set | 701 | # CONFIG_PATA_AMD is not set |
| 692 | # CONFIG_PATA_ARTOP is not set | 702 | # CONFIG_PATA_ARTOP is not set |
| @@ -726,6 +736,7 @@ CONFIG_PATA_SIL680=y | |||
| 726 | # CONFIG_PATA_VIA is not set | 736 | # CONFIG_PATA_VIA is not set |
| 727 | # CONFIG_PATA_WINBOND is not set | 737 | # CONFIG_PATA_WINBOND is not set |
| 728 | # CONFIG_PATA_PLATFORM is not set | 738 | # CONFIG_PATA_PLATFORM is not set |
| 739 | # CONFIG_PATA_SCH is not set | ||
| 729 | # CONFIG_MD is not set | 740 | # CONFIG_MD is not set |
| 730 | # CONFIG_FUSION is not set | 741 | # CONFIG_FUSION is not set |
| 731 | 742 | ||
| @@ -785,7 +796,6 @@ CONFIG_R8169=y | |||
| 785 | # CONFIG_SIS190 is not set | 796 | # CONFIG_SIS190 is not set |
| 786 | # CONFIG_SKGE is not set | 797 | # CONFIG_SKGE is not set |
| 787 | # CONFIG_SKY2 is not set | 798 | # CONFIG_SKY2 is not set |
| 788 | # CONFIG_SK98LIN is not set | ||
| 789 | # CONFIG_VIA_VELOCITY is not set | 799 | # CONFIG_VIA_VELOCITY is not set |
| 790 | # CONFIG_TIGON3 is not set | 800 | # CONFIG_TIGON3 is not set |
| 791 | # CONFIG_BNX2 is not set | 801 | # CONFIG_BNX2 is not set |
| @@ -805,6 +815,7 @@ CONFIG_NETDEV_10000=y | |||
| 805 | # CONFIG_MLX4_CORE is not set | 815 | # CONFIG_MLX4_CORE is not set |
| 806 | # CONFIG_TEHUTI is not set | 816 | # CONFIG_TEHUTI is not set |
| 807 | # CONFIG_BNX2X is not set | 817 | # CONFIG_BNX2X is not set |
| 818 | # CONFIG_SFC is not set | ||
| 808 | # CONFIG_TR is not set | 819 | # CONFIG_TR is not set |
| 809 | 820 | ||
| 810 | # | 821 | # |
| @@ -812,6 +823,7 @@ CONFIG_NETDEV_10000=y | |||
| 812 | # | 823 | # |
| 813 | # CONFIG_WLAN_PRE80211 is not set | 824 | # CONFIG_WLAN_PRE80211 is not set |
| 814 | # CONFIG_WLAN_80211 is not set | 825 | # CONFIG_WLAN_80211 is not set |
| 826 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 815 | 827 | ||
| 816 | # | 828 | # |
| 817 | # USB Network Adapters | 829 | # USB Network Adapters |
| @@ -886,6 +898,7 @@ CONFIG_VT=y | |||
| 886 | CONFIG_VT_CONSOLE=y | 898 | CONFIG_VT_CONSOLE=y |
| 887 | CONFIG_HW_CONSOLE=y | 899 | CONFIG_HW_CONSOLE=y |
| 888 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 900 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 901 | CONFIG_DEVKMEM=y | ||
| 889 | # CONFIG_SERIAL_NONSTANDARD is not set | 902 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 890 | # CONFIG_NOZOMI is not set | 903 | # CONFIG_NOZOMI is not set |
| 891 | 904 | ||
| @@ -913,7 +926,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 913 | # CONFIG_IPMI_HANDLER is not set | 926 | # CONFIG_IPMI_HANDLER is not set |
| 914 | CONFIG_HW_RANDOM=y | 927 | CONFIG_HW_RANDOM=y |
| 915 | # CONFIG_NVRAM is not set | 928 | # CONFIG_NVRAM is not set |
| 916 | # CONFIG_GEN_RTC is not set | ||
| 917 | # CONFIG_R3964 is not set | 929 | # CONFIG_R3964 is not set |
| 918 | # CONFIG_APPLICOM is not set | 930 | # CONFIG_APPLICOM is not set |
| 919 | # CONFIG_RAW_DRIVER is not set | 931 | # CONFIG_RAW_DRIVER is not set |
| @@ -924,13 +936,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 924 | CONFIG_I2C_CHARDEV=y | 936 | CONFIG_I2C_CHARDEV=y |
| 925 | 937 | ||
| 926 | # | 938 | # |
| 927 | # I2C Algorithms | ||
| 928 | # | ||
| 929 | # CONFIG_I2C_ALGOBIT is not set | ||
| 930 | # CONFIG_I2C_ALGOPCF is not set | ||
| 931 | # CONFIG_I2C_ALGOPCA is not set | ||
| 932 | |||
| 933 | # | ||
| 934 | # I2C Hardware Bus support | 939 | # I2C Hardware Bus support |
| 935 | # | 940 | # |
| 936 | # CONFIG_I2C_ALI1535 is not set | 941 | # CONFIG_I2C_ALI1535 is not set |
| @@ -957,6 +962,7 @@ CONFIG_I2C_MPC=y | |||
| 957 | # CONFIG_I2C_VIA is not set | 962 | # CONFIG_I2C_VIA is not set |
| 958 | # CONFIG_I2C_VIAPRO is not set | 963 | # CONFIG_I2C_VIAPRO is not set |
| 959 | # CONFIG_I2C_VOODOO3 is not set | 964 | # CONFIG_I2C_VOODOO3 is not set |
| 965 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 960 | 966 | ||
| 961 | # | 967 | # |
| 962 | # Miscellaneous I2C Chip support | 968 | # Miscellaneous I2C Chip support |
| @@ -966,19 +972,13 @@ CONFIG_SENSORS_EEPROM=m | |||
| 966 | # CONFIG_SENSORS_PCF8574 is not set | 972 | # CONFIG_SENSORS_PCF8574 is not set |
| 967 | # CONFIG_PCF8575 is not set | 973 | # CONFIG_PCF8575 is not set |
| 968 | # CONFIG_SENSORS_PCF8591 is not set | 974 | # CONFIG_SENSORS_PCF8591 is not set |
| 969 | # CONFIG_TPS65010 is not set | ||
| 970 | # CONFIG_SENSORS_MAX6875 is not set | 975 | # CONFIG_SENSORS_MAX6875 is not set |
| 971 | # CONFIG_SENSORS_TSL2550 is not set | 976 | # CONFIG_SENSORS_TSL2550 is not set |
| 972 | # CONFIG_I2C_DEBUG_CORE is not set | 977 | # CONFIG_I2C_DEBUG_CORE is not set |
| 973 | # CONFIG_I2C_DEBUG_ALGO is not set | 978 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 974 | # CONFIG_I2C_DEBUG_BUS is not set | 979 | # CONFIG_I2C_DEBUG_BUS is not set |
| 975 | # CONFIG_I2C_DEBUG_CHIP is not set | 980 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 976 | |||
| 977 | # | ||
| 978 | # SPI support | ||
| 979 | # | ||
| 980 | # CONFIG_SPI is not set | 981 | # CONFIG_SPI is not set |
| 981 | # CONFIG_SPI_MASTER is not set | ||
| 982 | # CONFIG_W1 is not set | 982 | # CONFIG_W1 is not set |
| 983 | # CONFIG_POWER_SUPPLY is not set | 983 | # CONFIG_POWER_SUPPLY is not set |
| 984 | CONFIG_HWMON=y | 984 | CONFIG_HWMON=y |
| @@ -1048,12 +1048,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 1048 | # Multifunction device drivers | 1048 | # Multifunction device drivers |
| 1049 | # | 1049 | # |
| 1050 | # CONFIG_MFD_SM501 is not set | 1050 | # CONFIG_MFD_SM501 is not set |
| 1051 | # CONFIG_HTC_PASIC3 is not set | ||
| 1051 | 1052 | ||
| 1052 | # | 1053 | # |
| 1053 | # Multimedia devices | 1054 | # Multimedia devices |
| 1054 | # | 1055 | # |
| 1056 | |||
| 1057 | # | ||
| 1058 | # Multimedia core support | ||
| 1059 | # | ||
| 1055 | # CONFIG_VIDEO_DEV is not set | 1060 | # CONFIG_VIDEO_DEV is not set |
| 1056 | # CONFIG_DVB_CORE is not set | 1061 | # CONFIG_DVB_CORE is not set |
| 1062 | # CONFIG_VIDEO_MEDIA is not set | ||
| 1063 | |||
| 1064 | # | ||
| 1065 | # Multimedia drivers | ||
| 1066 | # | ||
| 1057 | # CONFIG_DAB is not set | 1067 | # CONFIG_DAB is not set |
| 1058 | 1068 | ||
| 1059 | # | 1069 | # |
| @@ -1115,12 +1125,14 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 1115 | # | 1125 | # |
| 1116 | # USB Host Controller Drivers | 1126 | # USB Host Controller Drivers |
| 1117 | # | 1127 | # |
| 1128 | # CONFIG_USB_C67X00_HCD is not set | ||
| 1118 | CONFIG_USB_EHCI_HCD=y | 1129 | CONFIG_USB_EHCI_HCD=y |
| 1119 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1130 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 1120 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1131 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1121 | # CONFIG_USB_EHCI_FSL is not set | 1132 | # CONFIG_USB_EHCI_FSL is not set |
| 1122 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1133 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 1123 | # CONFIG_USB_ISP116X_HCD is not set | 1134 | # CONFIG_USB_ISP116X_HCD is not set |
| 1135 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 1124 | CONFIG_USB_OHCI_HCD=y | 1136 | CONFIG_USB_OHCI_HCD=y |
| 1125 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1137 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
| 1126 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | 1138 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y |
| @@ -1138,6 +1150,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1138 | # | 1150 | # |
| 1139 | # CONFIG_USB_ACM is not set | 1151 | # CONFIG_USB_ACM is not set |
| 1140 | CONFIG_USB_PRINTER=m | 1152 | CONFIG_USB_PRINTER=m |
| 1153 | # CONFIG_USB_WDM is not set | ||
| 1141 | 1154 | ||
| 1142 | # | 1155 | # |
| 1143 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1156 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1159,6 +1172,7 @@ CONFIG_USB_STORAGE=m | |||
| 1159 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1172 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1160 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1173 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1161 | # CONFIG_USB_STORAGE_KARMA is not set | 1174 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1175 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 1162 | # CONFIG_USB_LIBUSUAL is not set | 1176 | # CONFIG_USB_LIBUSUAL is not set |
| 1163 | 1177 | ||
| 1164 | # | 1178 | # |
| @@ -1202,9 +1216,11 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
| 1202 | # CONFIG_USB_SERIAL_MCT_U232 is not set | 1216 | # CONFIG_USB_SERIAL_MCT_U232 is not set |
| 1203 | # CONFIG_USB_SERIAL_MOS7720 is not set | 1217 | # CONFIG_USB_SERIAL_MOS7720 is not set |
| 1204 | # CONFIG_USB_SERIAL_MOS7840 is not set | 1218 | # CONFIG_USB_SERIAL_MOS7840 is not set |
| 1219 | # CONFIG_USB_SERIAL_MOTOROLA is not set | ||
| 1205 | # CONFIG_USB_SERIAL_NAVMAN is not set | 1220 | # CONFIG_USB_SERIAL_NAVMAN is not set |
| 1206 | # CONFIG_USB_SERIAL_PL2303 is not set | 1221 | # CONFIG_USB_SERIAL_PL2303 is not set |
| 1207 | # CONFIG_USB_SERIAL_OTI6858 is not set | 1222 | # CONFIG_USB_SERIAL_OTI6858 is not set |
| 1223 | # CONFIG_USB_SERIAL_SPCP8X5 is not set | ||
| 1208 | # CONFIG_USB_SERIAL_HP4X is not set | 1224 | # CONFIG_USB_SERIAL_HP4X is not set |
| 1209 | # CONFIG_USB_SERIAL_SAFE is not set | 1225 | # CONFIG_USB_SERIAL_SAFE is not set |
| 1210 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1226 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
| @@ -1238,10 +1254,12 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
| 1238 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1254 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1239 | # CONFIG_USB_IOWARRIOR is not set | 1255 | # CONFIG_USB_IOWARRIOR is not set |
| 1240 | # CONFIG_USB_TEST is not set | 1256 | # CONFIG_USB_TEST is not set |
| 1257 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1241 | # CONFIG_USB_GADGET is not set | 1258 | # CONFIG_USB_GADGET is not set |
| 1242 | # CONFIG_MMC is not set | 1259 | # CONFIG_MMC is not set |
| 1243 | # CONFIG_MEMSTICK is not set | 1260 | # CONFIG_MEMSTICK is not set |
| 1244 | # CONFIG_NEW_LEDS is not set | 1261 | # CONFIG_NEW_LEDS is not set |
| 1262 | # CONFIG_ACCESSIBILITY is not set | ||
| 1245 | # CONFIG_INFINIBAND is not set | 1263 | # CONFIG_INFINIBAND is not set |
| 1246 | # CONFIG_EDAC is not set | 1264 | # CONFIG_EDAC is not set |
| 1247 | CONFIG_RTC_LIB=y | 1265 | CONFIG_RTC_LIB=y |
| @@ -1293,11 +1311,8 @@ CONFIG_RTC_DRV_RS5C372=y | |||
| 1293 | # | 1311 | # |
| 1294 | # on-CPU RTC drivers | 1312 | # on-CPU RTC drivers |
| 1295 | # | 1313 | # |
| 1314 | # CONFIG_RTC_DRV_PPC is not set | ||
| 1296 | # CONFIG_DMADEVICES is not set | 1315 | # CONFIG_DMADEVICES is not set |
| 1297 | |||
| 1298 | # | ||
| 1299 | # Userspace I/O | ||
| 1300 | # | ||
| 1301 | # CONFIG_UIO is not set | 1316 | # CONFIG_UIO is not set |
| 1302 | 1317 | ||
| 1303 | # | 1318 | # |
| @@ -1318,10 +1333,9 @@ CONFIG_FS_MBCACHE=y | |||
| 1318 | CONFIG_FS_POSIX_ACL=y | 1333 | CONFIG_FS_POSIX_ACL=y |
| 1319 | CONFIG_XFS_FS=m | 1334 | CONFIG_XFS_FS=m |
| 1320 | # CONFIG_XFS_QUOTA is not set | 1335 | # CONFIG_XFS_QUOTA is not set |
| 1321 | # CONFIG_XFS_SECURITY is not set | ||
| 1322 | # CONFIG_XFS_POSIX_ACL is not set | 1336 | # CONFIG_XFS_POSIX_ACL is not set |
| 1323 | # CONFIG_XFS_RT is not set | 1337 | # CONFIG_XFS_RT is not set |
| 1324 | # CONFIG_GFS2_FS is not set | 1338 | # CONFIG_XFS_DEBUG is not set |
| 1325 | # CONFIG_OCFS2_FS is not set | 1339 | # CONFIG_OCFS2_FS is not set |
| 1326 | CONFIG_DNOTIFY=y | 1340 | CONFIG_DNOTIFY=y |
| 1327 | CONFIG_INOTIFY=y | 1341 | CONFIG_INOTIFY=y |
| @@ -1388,12 +1402,10 @@ CONFIG_NFS_FS=y | |||
| 1388 | CONFIG_NFS_V3=y | 1402 | CONFIG_NFS_V3=y |
| 1389 | CONFIG_NFS_V3_ACL=y | 1403 | CONFIG_NFS_V3_ACL=y |
| 1390 | CONFIG_NFS_V4=y | 1404 | CONFIG_NFS_V4=y |
| 1391 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1392 | CONFIG_NFSD=m | 1405 | CONFIG_NFSD=m |
| 1393 | CONFIG_NFSD_V3=y | 1406 | CONFIG_NFSD_V3=y |
| 1394 | # CONFIG_NFSD_V3_ACL is not set | 1407 | # CONFIG_NFSD_V3_ACL is not set |
| 1395 | # CONFIG_NFSD_V4 is not set | 1408 | # CONFIG_NFSD_V4 is not set |
| 1396 | CONFIG_NFSD_TCP=y | ||
| 1397 | CONFIG_ROOT_NFS=y | 1409 | CONFIG_ROOT_NFS=y |
| 1398 | CONFIG_LOCKD=y | 1410 | CONFIG_LOCKD=y |
| 1399 | CONFIG_LOCKD_V4=y | 1411 | CONFIG_LOCKD_V4=y |
| @@ -1467,9 +1479,10 @@ CONFIG_NLS_UTF8=m | |||
| 1467 | # Library routines | 1479 | # Library routines |
| 1468 | # | 1480 | # |
| 1469 | CONFIG_BITREVERSE=y | 1481 | CONFIG_BITREVERSE=y |
| 1482 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1470 | CONFIG_CRC_CCITT=m | 1483 | CONFIG_CRC_CCITT=m |
| 1471 | # CONFIG_CRC16 is not set | 1484 | # CONFIG_CRC16 is not set |
| 1472 | # CONFIG_CRC_ITU_T is not set | 1485 | CONFIG_CRC_ITU_T=m |
| 1473 | CONFIG_CRC32=y | 1486 | CONFIG_CRC32=y |
| 1474 | # CONFIG_CRC7 is not set | 1487 | # CONFIG_CRC7 is not set |
| 1475 | CONFIG_LIBCRC32C=m | 1488 | CONFIG_LIBCRC32C=m |
| @@ -1481,6 +1494,7 @@ CONFIG_PLIST=y | |||
| 1481 | CONFIG_HAS_IOMEM=y | 1494 | CONFIG_HAS_IOMEM=y |
| 1482 | CONFIG_HAS_IOPORT=y | 1495 | CONFIG_HAS_IOPORT=y |
| 1483 | CONFIG_HAS_DMA=y | 1496 | CONFIG_HAS_DMA=y |
| 1497 | CONFIG_HAVE_LMB=y | ||
| 1484 | 1498 | ||
| 1485 | # | 1499 | # |
| 1486 | # Kernel hacking | 1500 | # Kernel hacking |
| @@ -1488,6 +1502,7 @@ CONFIG_HAS_DMA=y | |||
| 1488 | # CONFIG_PRINTK_TIME is not set | 1502 | # CONFIG_PRINTK_TIME is not set |
| 1489 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1503 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1490 | CONFIG_ENABLE_MUST_CHECK=y | 1504 | CONFIG_ENABLE_MUST_CHECK=y |
| 1505 | CONFIG_FRAME_WARN=1024 | ||
| 1491 | CONFIG_MAGIC_SYSRQ=y | 1506 | CONFIG_MAGIC_SYSRQ=y |
| 1492 | # CONFIG_UNUSED_SYMBOLS is not set | 1507 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1493 | # CONFIG_DEBUG_FS is not set | 1508 | # CONFIG_DEBUG_FS is not set |
| @@ -1498,6 +1513,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1498 | CONFIG_SCHED_DEBUG=y | 1513 | CONFIG_SCHED_DEBUG=y |
| 1499 | # CONFIG_SCHEDSTATS is not set | 1514 | # CONFIG_SCHEDSTATS is not set |
| 1500 | # CONFIG_TIMER_STATS is not set | 1515 | # CONFIG_TIMER_STATS is not set |
| 1516 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1501 | # CONFIG_SLUB_DEBUG_ON is not set | 1517 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1502 | # CONFIG_SLUB_STATS is not set | 1518 | # CONFIG_SLUB_STATS is not set |
| 1503 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1519 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -1510,6 +1526,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1510 | CONFIG_DEBUG_BUGVERBOSE=y | 1526 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1511 | # CONFIG_DEBUG_INFO is not set | 1527 | # CONFIG_DEBUG_INFO is not set |
| 1512 | # CONFIG_DEBUG_VM is not set | 1528 | # CONFIG_DEBUG_VM is not set |
| 1529 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1513 | # CONFIG_DEBUG_LIST is not set | 1530 | # CONFIG_DEBUG_LIST is not set |
| 1514 | # CONFIG_DEBUG_SG is not set | 1531 | # CONFIG_DEBUG_SG is not set |
| 1515 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1532 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1521,6 +1538,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 1521 | # CONFIG_DEBUG_STACK_USAGE is not set | 1538 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1522 | # CONFIG_DEBUG_PAGEALLOC is not set | 1539 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1523 | # CONFIG_DEBUGGER is not set | 1540 | # CONFIG_DEBUGGER is not set |
| 1541 | # CONFIG_IRQSTACKS is not set | ||
| 1524 | # CONFIG_BDI_SWITCH is not set | 1542 | # CONFIG_BDI_SWITCH is not set |
| 1525 | # CONFIG_BOOTX_TEXT is not set | 1543 | # CONFIG_BOOTX_TEXT is not set |
| 1526 | # CONFIG_PPC_EARLY_DEBUG is not set | 1544 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -1532,52 +1550,82 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 1532 | # CONFIG_SECURITY is not set | 1550 | # CONFIG_SECURITY is not set |
| 1533 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1551 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1534 | CONFIG_CRYPTO=y | 1552 | CONFIG_CRYPTO=y |
| 1553 | |||
| 1554 | # | ||
| 1555 | # Crypto core or helper | ||
| 1556 | # | ||
| 1535 | CONFIG_CRYPTO_ALGAPI=y | 1557 | CONFIG_CRYPTO_ALGAPI=y |
| 1536 | CONFIG_CRYPTO_BLKCIPHER=y | 1558 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1537 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1538 | CONFIG_CRYPTO_MANAGER=y | 1559 | CONFIG_CRYPTO_MANAGER=y |
| 1560 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1561 | # CONFIG_CRYPTO_NULL is not set | ||
| 1562 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1563 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1564 | # CONFIG_CRYPTO_TEST is not set | ||
| 1565 | |||
| 1566 | # | ||
| 1567 | # Authenticated Encryption with Associated Data | ||
| 1568 | # | ||
| 1569 | # CONFIG_CRYPTO_CCM is not set | ||
| 1570 | # CONFIG_CRYPTO_GCM is not set | ||
| 1571 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1572 | |||
| 1573 | # | ||
| 1574 | # Block modes | ||
| 1575 | # | ||
| 1576 | CONFIG_CRYPTO_CBC=y | ||
| 1577 | # CONFIG_CRYPTO_CTR is not set | ||
| 1578 | # CONFIG_CRYPTO_CTS is not set | ||
| 1579 | CONFIG_CRYPTO_ECB=m | ||
| 1580 | # CONFIG_CRYPTO_LRW is not set | ||
| 1581 | CONFIG_CRYPTO_PCBC=m | ||
| 1582 | # CONFIG_CRYPTO_XTS is not set | ||
| 1583 | |||
| 1584 | # | ||
| 1585 | # Hash modes | ||
| 1586 | # | ||
| 1539 | # CONFIG_CRYPTO_HMAC is not set | 1587 | # CONFIG_CRYPTO_HMAC is not set |
| 1540 | # CONFIG_CRYPTO_XCBC is not set | 1588 | # CONFIG_CRYPTO_XCBC is not set |
| 1541 | # CONFIG_CRYPTO_NULL is not set | 1589 | |
| 1590 | # | ||
| 1591 | # Digest | ||
| 1592 | # | ||
| 1593 | CONFIG_CRYPTO_CRC32C=m | ||
| 1542 | CONFIG_CRYPTO_MD4=m | 1594 | CONFIG_CRYPTO_MD4=m |
| 1543 | CONFIG_CRYPTO_MD5=y | 1595 | CONFIG_CRYPTO_MD5=y |
| 1596 | CONFIG_CRYPTO_MICHAEL_MIC=m | ||
| 1544 | CONFIG_CRYPTO_SHA1=m | 1597 | CONFIG_CRYPTO_SHA1=m |
| 1545 | # CONFIG_CRYPTO_SHA256 is not set | 1598 | # CONFIG_CRYPTO_SHA256 is not set |
| 1546 | # CONFIG_CRYPTO_SHA512 is not set | 1599 | # CONFIG_CRYPTO_SHA512 is not set |
| 1547 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1548 | # CONFIG_CRYPTO_TGR192 is not set | 1600 | # CONFIG_CRYPTO_TGR192 is not set |
| 1549 | # CONFIG_CRYPTO_GF128MUL is not set | 1601 | # CONFIG_CRYPTO_WP512 is not set |
| 1550 | CONFIG_CRYPTO_ECB=m | 1602 | |
| 1551 | CONFIG_CRYPTO_CBC=y | 1603 | # |
| 1552 | CONFIG_CRYPTO_PCBC=m | 1604 | # Ciphers |
| 1553 | # CONFIG_CRYPTO_LRW is not set | 1605 | # |
| 1554 | # CONFIG_CRYPTO_XTS is not set | ||
| 1555 | # CONFIG_CRYPTO_CTR is not set | ||
| 1556 | # CONFIG_CRYPTO_GCM is not set | ||
| 1557 | # CONFIG_CRYPTO_CCM is not set | ||
| 1558 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1559 | CONFIG_CRYPTO_DES=y | ||
| 1560 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1561 | CONFIG_CRYPTO_BLOWFISH=m | ||
| 1562 | CONFIG_CRYPTO_TWOFISH=m | ||
| 1563 | CONFIG_CRYPTO_TWOFISH_COMMON=m | ||
| 1564 | CONFIG_CRYPTO_SERPENT=m | ||
| 1565 | CONFIG_CRYPTO_AES=m | 1606 | CONFIG_CRYPTO_AES=m |
| 1607 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1608 | CONFIG_CRYPTO_ARC4=m | ||
| 1609 | CONFIG_CRYPTO_BLOWFISH=m | ||
| 1610 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1566 | # CONFIG_CRYPTO_CAST5 is not set | 1611 | # CONFIG_CRYPTO_CAST5 is not set |
| 1567 | # CONFIG_CRYPTO_CAST6 is not set | 1612 | # CONFIG_CRYPTO_CAST6 is not set |
| 1568 | # CONFIG_CRYPTO_TEA is not set | 1613 | CONFIG_CRYPTO_DES=y |
| 1569 | CONFIG_CRYPTO_ARC4=m | 1614 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1570 | # CONFIG_CRYPTO_KHAZAD is not set | 1615 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1571 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1572 | # CONFIG_CRYPTO_SEED is not set | ||
| 1573 | # CONFIG_CRYPTO_SALSA20 is not set | 1616 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1617 | # CONFIG_CRYPTO_SEED is not set | ||
| 1618 | CONFIG_CRYPTO_SERPENT=m | ||
| 1619 | # CONFIG_CRYPTO_TEA is not set | ||
| 1620 | CONFIG_CRYPTO_TWOFISH=m | ||
| 1621 | CONFIG_CRYPTO_TWOFISH_COMMON=m | ||
| 1622 | |||
| 1623 | # | ||
| 1624 | # Compression | ||
| 1625 | # | ||
| 1574 | CONFIG_CRYPTO_DEFLATE=m | 1626 | CONFIG_CRYPTO_DEFLATE=m |
| 1575 | CONFIG_CRYPTO_MICHAEL_MIC=m | ||
| 1576 | CONFIG_CRYPTO_CRC32C=m | ||
| 1577 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1578 | # CONFIG_CRYPTO_TEST is not set | ||
| 1579 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1580 | # CONFIG_CRYPTO_LZO is not set | 1627 | # CONFIG_CRYPTO_LZO is not set |
| 1581 | CONFIG_CRYPTO_HW=y | 1628 | CONFIG_CRYPTO_HW=y |
| 1582 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1629 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1583 | # CONFIG_PPC_CLOCK is not set | 1630 | # CONFIG_PPC_CLOCK is not set |
| 1631 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/mpc7448_hpc2_defconfig b/arch/powerpc/configs/mpc7448_hpc2_defconfig index a3d52e3f2ded..066c583c1f8a 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:11 2008 | 4 | # Mon Jun 9 08:52:11 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | CONFIG_KALLSYMS=y | 92 | CONFIG_KALLSYMS=y |
| 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 91 | CONFIG_HOTPLUG=y | 94 | CONFIG_HOTPLUG=y |
| @@ -111,6 +114,7 @@ CONFIG_SLUB=y | |||
| 111 | CONFIG_HAVE_OPROFILE=y | 114 | CONFIG_HAVE_OPROFILE=y |
| 112 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 118 | CONFIG_PROC_PAGE_MONITOR=y |
| 115 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
| 116 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
| @@ -209,11 +213,13 @@ CONFIG_FLATMEM=y | |||
| 209 | CONFIG_FLAT_NODE_MEM_MAP=y | 213 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 210 | # CONFIG_SPARSEMEM_STATIC is not set | 214 | # CONFIG_SPARSEMEM_STATIC is not set |
| 211 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 215 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 216 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 212 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 217 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 213 | # CONFIG_RESOURCES_64BIT is not set | 218 | # CONFIG_RESOURCES_64BIT is not set |
| 214 | CONFIG_ZONE_DMA_FLAG=1 | 219 | CONFIG_ZONE_DMA_FLAG=1 |
| 215 | CONFIG_BOUNCE=y | 220 | CONFIG_BOUNCE=y |
| 216 | CONFIG_VIRT_TO_BUS=y | 221 | CONFIG_VIRT_TO_BUS=y |
| 222 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 217 | CONFIG_PROC_DEVICETREE=y | 223 | CONFIG_PROC_DEVICETREE=y |
| 218 | # CONFIG_CMDLINE_BOOL is not set | 224 | # CONFIG_CMDLINE_BOOL is not set |
| 219 | # CONFIG_PM is not set | 225 | # CONFIG_PM is not set |
| @@ -235,6 +241,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 235 | CONFIG_PCI_LEGACY=y | 241 | CONFIG_PCI_LEGACY=y |
| 236 | # CONFIG_PCCARD is not set | 242 | # CONFIG_PCCARD is not set |
| 237 | # CONFIG_HOTPLUG_PCI is not set | 243 | # CONFIG_HOTPLUG_PCI is not set |
| 244 | # CONFIG_HAS_RAPIDIO is not set | ||
| 238 | 245 | ||
| 239 | # | 246 | # |
| 240 | # Advanced setup | 247 | # Advanced setup |
| @@ -244,11 +251,11 @@ CONFIG_PCI_LEGACY=y | |||
| 244 | # | 251 | # |
| 245 | # Default settings for advanced configuration options are used | 252 | # Default settings for advanced configuration options are used |
| 246 | # | 253 | # |
| 247 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 248 | CONFIG_LOWMEM_SIZE=0x30000000 | 254 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 255 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 249 | CONFIG_KERNEL_START=0xc0000000 | 256 | CONFIG_KERNEL_START=0xc0000000 |
| 257 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 250 | CONFIG_TASK_SIZE=0xc0000000 | 258 | CONFIG_TASK_SIZE=0xc0000000 |
| 251 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 252 | 259 | ||
| 253 | # | 260 | # |
| 254 | # Networking | 261 | # Networking |
| @@ -296,8 +303,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 296 | CONFIG_DEFAULT_TCP_CONG="cubic" | 303 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 297 | # CONFIG_TCP_MD5SIG is not set | 304 | # CONFIG_TCP_MD5SIG is not set |
| 298 | # CONFIG_IPV6 is not set | 305 | # CONFIG_IPV6 is not set |
| 299 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 300 | # CONFIG_INET6_TUNNEL is not set | ||
| 301 | # CONFIG_NETWORK_SECMARK is not set | 306 | # CONFIG_NETWORK_SECMARK is not set |
| 302 | # CONFIG_NETFILTER is not set | 307 | # CONFIG_NETFILTER is not set |
| 303 | # CONFIG_IP_DCCP is not set | 308 | # CONFIG_IP_DCCP is not set |
| @@ -454,7 +459,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 454 | # CONFIG_SCSI_SRP is not set | 459 | # CONFIG_SCSI_SRP is not set |
| 455 | CONFIG_ATA=y | 460 | CONFIG_ATA=y |
| 456 | # CONFIG_ATA_NONSTANDARD is not set | 461 | # CONFIG_ATA_NONSTANDARD is not set |
| 462 | CONFIG_SATA_PMP=y | ||
| 457 | # CONFIG_SATA_AHCI is not set | 463 | # CONFIG_SATA_AHCI is not set |
| 464 | # CONFIG_SATA_SIL24 is not set | ||
| 465 | CONFIG_ATA_SFF=y | ||
| 458 | # CONFIG_SATA_SVW is not set | 466 | # CONFIG_SATA_SVW is not set |
| 459 | # CONFIG_ATA_PIIX is not set | 467 | # CONFIG_ATA_PIIX is not set |
| 460 | CONFIG_SATA_MV=y | 468 | CONFIG_SATA_MV=y |
| @@ -464,7 +472,6 @@ CONFIG_SATA_MV=y | |||
| 464 | # CONFIG_SATA_PROMISE is not set | 472 | # CONFIG_SATA_PROMISE is not set |
| 465 | # CONFIG_SATA_SX4 is not set | 473 | # CONFIG_SATA_SX4 is not set |
| 466 | # CONFIG_SATA_SIL is not set | 474 | # CONFIG_SATA_SIL is not set |
| 467 | # CONFIG_SATA_SIL24 is not set | ||
| 468 | # CONFIG_SATA_SIS is not set | 475 | # CONFIG_SATA_SIS is not set |
| 469 | # CONFIG_SATA_ULI is not set | 476 | # CONFIG_SATA_ULI is not set |
| 470 | # CONFIG_SATA_VIA is not set | 477 | # CONFIG_SATA_VIA is not set |
| @@ -509,6 +516,7 @@ CONFIG_SATA_MV=y | |||
| 509 | # CONFIG_PATA_VIA is not set | 516 | # CONFIG_PATA_VIA is not set |
| 510 | # CONFIG_PATA_WINBOND is not set | 517 | # CONFIG_PATA_WINBOND is not set |
| 511 | # CONFIG_PATA_PLATFORM is not set | 518 | # CONFIG_PATA_PLATFORM is not set |
| 519 | # CONFIG_PATA_SCH is not set | ||
| 512 | # CONFIG_MD is not set | 520 | # CONFIG_MD is not set |
| 513 | # CONFIG_FUSION is not set | 521 | # CONFIG_FUSION is not set |
| 514 | 522 | ||
| @@ -596,7 +604,6 @@ CONFIG_NETDEV_1000=y | |||
| 596 | # CONFIG_SIS190 is not set | 604 | # CONFIG_SIS190 is not set |
| 597 | # CONFIG_SKGE is not set | 605 | # CONFIG_SKGE is not set |
| 598 | # CONFIG_SKY2 is not set | 606 | # CONFIG_SKY2 is not set |
| 599 | # CONFIG_SK98LIN is not set | ||
| 600 | # CONFIG_VIA_VELOCITY is not set | 607 | # CONFIG_VIA_VELOCITY is not set |
| 601 | # CONFIG_TIGON3 is not set | 608 | # CONFIG_TIGON3 is not set |
| 602 | # CONFIG_BNX2 is not set | 609 | # CONFIG_BNX2 is not set |
| @@ -616,6 +623,7 @@ CONFIG_NETDEV_10000=y | |||
| 616 | # CONFIG_MLX4_CORE is not set | 623 | # CONFIG_MLX4_CORE is not set |
| 617 | # CONFIG_TEHUTI is not set | 624 | # CONFIG_TEHUTI is not set |
| 618 | # CONFIG_BNX2X is not set | 625 | # CONFIG_BNX2X is not set |
| 626 | # CONFIG_SFC is not set | ||
| 619 | # CONFIG_TR is not set | 627 | # CONFIG_TR is not set |
| 620 | 628 | ||
| 621 | # | 629 | # |
| @@ -623,6 +631,7 @@ CONFIG_NETDEV_10000=y | |||
| 623 | # | 631 | # |
| 624 | # CONFIG_WLAN_PRE80211 is not set | 632 | # CONFIG_WLAN_PRE80211 is not set |
| 625 | # CONFIG_WLAN_80211 is not set | 633 | # CONFIG_WLAN_80211 is not set |
| 634 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 626 | # CONFIG_WAN is not set | 635 | # CONFIG_WAN is not set |
| 627 | # CONFIG_FDDI is not set | 636 | # CONFIG_FDDI is not set |
| 628 | # CONFIG_HIPPI is not set | 637 | # CONFIG_HIPPI is not set |
| @@ -670,6 +679,7 @@ CONFIG_INPUT=y | |||
| 670 | # Character devices | 679 | # Character devices |
| 671 | # | 680 | # |
| 672 | # CONFIG_VT is not set | 681 | # CONFIG_VT is not set |
| 682 | CONFIG_DEVKMEM=y | ||
| 673 | # CONFIG_SERIAL_NONSTANDARD is not set | 683 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 674 | # CONFIG_NOZOMI is not set | 684 | # CONFIG_NOZOMI is not set |
| 675 | 685 | ||
| @@ -705,12 +715,7 @@ CONFIG_GEN_RTC=y | |||
| 705 | # CONFIG_TCG_TPM is not set | 715 | # CONFIG_TCG_TPM is not set |
| 706 | CONFIG_DEVPORT=y | 716 | CONFIG_DEVPORT=y |
| 707 | # CONFIG_I2C is not set | 717 | # CONFIG_I2C is not set |
| 708 | |||
| 709 | # | ||
| 710 | # SPI support | ||
| 711 | # | ||
| 712 | # CONFIG_SPI is not set | 718 | # CONFIG_SPI is not set |
| 713 | # CONFIG_SPI_MASTER is not set | ||
| 714 | # CONFIG_W1 is not set | 719 | # CONFIG_W1 is not set |
| 715 | # CONFIG_POWER_SUPPLY is not set | 720 | # CONFIG_POWER_SUPPLY is not set |
| 716 | CONFIG_HWMON=y | 721 | CONFIG_HWMON=y |
| @@ -743,12 +748,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 743 | # Multifunction device drivers | 748 | # Multifunction device drivers |
| 744 | # | 749 | # |
| 745 | # CONFIG_MFD_SM501 is not set | 750 | # CONFIG_MFD_SM501 is not set |
| 751 | # CONFIG_HTC_PASIC3 is not set | ||
| 746 | 752 | ||
| 747 | # | 753 | # |
| 748 | # Multimedia devices | 754 | # Multimedia devices |
| 749 | # | 755 | # |
| 756 | |||
| 757 | # | ||
| 758 | # Multimedia core support | ||
| 759 | # | ||
| 750 | # CONFIG_VIDEO_DEV is not set | 760 | # CONFIG_VIDEO_DEV is not set |
| 751 | # CONFIG_DVB_CORE is not set | 761 | # CONFIG_DVB_CORE is not set |
| 762 | # CONFIG_VIDEO_MEDIA is not set | ||
| 763 | |||
| 764 | # | ||
| 765 | # Multimedia drivers | ||
| 766 | # | ||
| 752 | CONFIG_DAB=y | 767 | CONFIG_DAB=y |
| 753 | 768 | ||
| 754 | # | 769 | # |
| @@ -779,6 +794,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 779 | CONFIG_USB_ARCH_HAS_OHCI=y | 794 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 780 | CONFIG_USB_ARCH_HAS_EHCI=y | 795 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 781 | # CONFIG_USB is not set | 796 | # CONFIG_USB is not set |
| 797 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 798 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 782 | 799 | ||
| 783 | # | 800 | # |
| 784 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 801 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -787,14 +804,11 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 787 | # CONFIG_MMC is not set | 804 | # CONFIG_MMC is not set |
| 788 | # CONFIG_MEMSTICK is not set | 805 | # CONFIG_MEMSTICK is not set |
| 789 | # CONFIG_NEW_LEDS is not set | 806 | # CONFIG_NEW_LEDS is not set |
| 807 | # CONFIG_ACCESSIBILITY is not set | ||
| 790 | # CONFIG_INFINIBAND is not set | 808 | # CONFIG_INFINIBAND is not set |
| 791 | # CONFIG_EDAC is not set | 809 | # CONFIG_EDAC is not set |
| 792 | # CONFIG_RTC_CLASS is not set | 810 | # CONFIG_RTC_CLASS is not set |
| 793 | # CONFIG_DMADEVICES is not set | 811 | # CONFIG_DMADEVICES is not set |
| 794 | |||
| 795 | # | ||
| 796 | # Userspace I/O | ||
| 797 | # | ||
| 798 | # CONFIG_UIO is not set | 812 | # CONFIG_UIO is not set |
| 799 | 813 | ||
| 800 | # | 814 | # |
| @@ -814,7 +828,6 @@ CONFIG_FS_MBCACHE=y | |||
| 814 | # CONFIG_JFS_FS is not set | 828 | # CONFIG_JFS_FS is not set |
| 815 | # CONFIG_FS_POSIX_ACL is not set | 829 | # CONFIG_FS_POSIX_ACL is not set |
| 816 | # CONFIG_XFS_FS is not set | 830 | # CONFIG_XFS_FS is not set |
| 817 | # CONFIG_GFS2_FS is not set | ||
| 818 | # CONFIG_OCFS2_FS is not set | 831 | # CONFIG_OCFS2_FS is not set |
| 819 | CONFIG_DNOTIFY=y | 832 | CONFIG_DNOTIFY=y |
| 820 | CONFIG_INOTIFY=y | 833 | CONFIG_INOTIFY=y |
| @@ -871,7 +884,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 871 | CONFIG_NFS_FS=y | 884 | CONFIG_NFS_FS=y |
| 872 | # CONFIG_NFS_V3 is not set | 885 | # CONFIG_NFS_V3 is not set |
| 873 | # CONFIG_NFS_V4 is not set | 886 | # CONFIG_NFS_V4 is not set |
| 874 | # CONFIG_NFS_DIRECTIO is not set | ||
| 875 | # CONFIG_NFSD is not set | 887 | # CONFIG_NFSD is not set |
| 876 | CONFIG_ROOT_NFS=y | 888 | CONFIG_ROOT_NFS=y |
| 877 | CONFIG_LOCKD=y | 889 | CONFIG_LOCKD=y |
| @@ -914,6 +926,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 914 | # Library routines | 926 | # Library routines |
| 915 | # | 927 | # |
| 916 | CONFIG_BITREVERSE=y | 928 | CONFIG_BITREVERSE=y |
| 929 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 917 | # CONFIG_CRC_CCITT is not set | 930 | # CONFIG_CRC_CCITT is not set |
| 918 | # CONFIG_CRC16 is not set | 931 | # CONFIG_CRC16 is not set |
| 919 | # CONFIG_CRC_ITU_T is not set | 932 | # CONFIG_CRC_ITU_T is not set |
| @@ -924,6 +937,7 @@ CONFIG_PLIST=y | |||
| 924 | CONFIG_HAS_IOMEM=y | 937 | CONFIG_HAS_IOMEM=y |
| 925 | CONFIG_HAS_IOPORT=y | 938 | CONFIG_HAS_IOPORT=y |
| 926 | CONFIG_HAS_DMA=y | 939 | CONFIG_HAS_DMA=y |
| 940 | CONFIG_HAVE_LMB=y | ||
| 927 | 941 | ||
| 928 | # | 942 | # |
| 929 | # Kernel hacking | 943 | # Kernel hacking |
| @@ -931,6 +945,7 @@ CONFIG_HAS_DMA=y | |||
| 931 | # CONFIG_PRINTK_TIME is not set | 945 | # CONFIG_PRINTK_TIME is not set |
| 932 | CONFIG_ENABLE_WARN_DEPRECATED=y | 946 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 933 | CONFIG_ENABLE_MUST_CHECK=y | 947 | CONFIG_ENABLE_MUST_CHECK=y |
| 948 | CONFIG_FRAME_WARN=1024 | ||
| 934 | # CONFIG_MAGIC_SYSRQ is not set | 949 | # CONFIG_MAGIC_SYSRQ is not set |
| 935 | # CONFIG_UNUSED_SYMBOLS is not set | 950 | # CONFIG_UNUSED_SYMBOLS is not set |
| 936 | # CONFIG_DEBUG_FS is not set | 951 | # CONFIG_DEBUG_FS is not set |
| @@ -940,6 +955,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 940 | # CONFIG_SLUB_STATS is not set | 955 | # CONFIG_SLUB_STATS is not set |
| 941 | # CONFIG_DEBUG_BUGVERBOSE is not set | 956 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 942 | # CONFIG_SAMPLES is not set | 957 | # CONFIG_SAMPLES is not set |
| 958 | # CONFIG_IRQSTACKS is not set | ||
| 943 | # CONFIG_BOOTX_TEXT is not set | 959 | # CONFIG_BOOTX_TEXT is not set |
| 944 | # CONFIG_PPC_EARLY_DEBUG is not set | 960 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 945 | 961 | ||
| @@ -950,48 +966,78 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 950 | # CONFIG_SECURITY is not set | 966 | # CONFIG_SECURITY is not set |
| 951 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 967 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 952 | CONFIG_CRYPTO=y | 968 | CONFIG_CRYPTO=y |
| 953 | # CONFIG_CRYPTO_SEQIV is not set | 969 | |
| 970 | # | ||
| 971 | # Crypto core or helper | ||
| 972 | # | ||
| 954 | # CONFIG_CRYPTO_MANAGER is not set | 973 | # CONFIG_CRYPTO_MANAGER is not set |
| 974 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 975 | # CONFIG_CRYPTO_NULL is not set | ||
| 976 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 977 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 978 | |||
| 979 | # | ||
| 980 | # Authenticated Encryption with Associated Data | ||
| 981 | # | ||
| 982 | # CONFIG_CRYPTO_CCM is not set | ||
| 983 | # CONFIG_CRYPTO_GCM is not set | ||
| 984 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 985 | |||
| 986 | # | ||
| 987 | # Block modes | ||
| 988 | # | ||
| 989 | # CONFIG_CRYPTO_CBC is not set | ||
| 990 | # CONFIG_CRYPTO_CTR is not set | ||
| 991 | # CONFIG_CRYPTO_CTS is not set | ||
| 992 | # CONFIG_CRYPTO_ECB is not set | ||
| 993 | # CONFIG_CRYPTO_LRW is not set | ||
| 994 | # CONFIG_CRYPTO_PCBC is not set | ||
| 995 | # CONFIG_CRYPTO_XTS is not set | ||
| 996 | |||
| 997 | # | ||
| 998 | # Hash modes | ||
| 999 | # | ||
| 955 | # CONFIG_CRYPTO_HMAC is not set | 1000 | # CONFIG_CRYPTO_HMAC is not set |
| 956 | # CONFIG_CRYPTO_XCBC is not set | 1001 | # CONFIG_CRYPTO_XCBC is not set |
| 957 | # CONFIG_CRYPTO_NULL is not set | 1002 | |
| 1003 | # | ||
| 1004 | # Digest | ||
| 1005 | # | ||
| 1006 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 958 | # CONFIG_CRYPTO_MD4 is not set | 1007 | # CONFIG_CRYPTO_MD4 is not set |
| 959 | # CONFIG_CRYPTO_MD5 is not set | 1008 | # CONFIG_CRYPTO_MD5 is not set |
| 1009 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 960 | # CONFIG_CRYPTO_SHA1 is not set | 1010 | # CONFIG_CRYPTO_SHA1 is not set |
| 961 | # CONFIG_CRYPTO_SHA256 is not set | 1011 | # CONFIG_CRYPTO_SHA256 is not set |
| 962 | # CONFIG_CRYPTO_SHA512 is not set | 1012 | # CONFIG_CRYPTO_SHA512 is not set |
| 963 | # CONFIG_CRYPTO_WP512 is not set | ||
| 964 | # CONFIG_CRYPTO_TGR192 is not set | 1013 | # CONFIG_CRYPTO_TGR192 is not set |
| 965 | # CONFIG_CRYPTO_GF128MUL is not set | 1014 | # CONFIG_CRYPTO_WP512 is not set |
| 966 | # CONFIG_CRYPTO_ECB is not set | 1015 | |
| 967 | # CONFIG_CRYPTO_CBC is not set | 1016 | # |
| 968 | # CONFIG_CRYPTO_PCBC is not set | 1017 | # Ciphers |
| 969 | # CONFIG_CRYPTO_LRW is not set | 1018 | # |
| 970 | # CONFIG_CRYPTO_XTS is not set | ||
| 971 | # CONFIG_CRYPTO_CTR is not set | ||
| 972 | # CONFIG_CRYPTO_GCM is not set | ||
| 973 | # CONFIG_CRYPTO_CCM is not set | ||
| 974 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 975 | # CONFIG_CRYPTO_DES is not set | ||
| 976 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 977 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 978 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 979 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 980 | # CONFIG_CRYPTO_AES is not set | 1019 | # CONFIG_CRYPTO_AES is not set |
| 1020 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1021 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1022 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1023 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 981 | # CONFIG_CRYPTO_CAST5 is not set | 1024 | # CONFIG_CRYPTO_CAST5 is not set |
| 982 | # CONFIG_CRYPTO_CAST6 is not set | 1025 | # CONFIG_CRYPTO_CAST6 is not set |
| 983 | # CONFIG_CRYPTO_TEA is not set | 1026 | # CONFIG_CRYPTO_DES is not set |
| 984 | # CONFIG_CRYPTO_ARC4 is not set | 1027 | # CONFIG_CRYPTO_FCRYPT is not set |
| 985 | # CONFIG_CRYPTO_KHAZAD is not set | 1028 | # CONFIG_CRYPTO_KHAZAD is not set |
| 986 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 987 | # CONFIG_CRYPTO_SEED is not set | ||
| 988 | # CONFIG_CRYPTO_SALSA20 is not set | 1029 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1030 | # CONFIG_CRYPTO_SEED is not set | ||
| 1031 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1032 | # CONFIG_CRYPTO_TEA is not set | ||
| 1033 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1034 | |||
| 1035 | # | ||
| 1036 | # Compression | ||
| 1037 | # | ||
| 989 | # CONFIG_CRYPTO_DEFLATE is not set | 1038 | # CONFIG_CRYPTO_DEFLATE is not set |
| 990 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 991 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 992 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 993 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 994 | # CONFIG_CRYPTO_LZO is not set | 1039 | # CONFIG_CRYPTO_LZO is not set |
| 995 | CONFIG_CRYPTO_HW=y | 1040 | CONFIG_CRYPTO_HW=y |
| 996 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1041 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 997 | # CONFIG_PPC_CLOCK is not set | 1042 | # CONFIG_PPC_CLOCK is not set |
| 1043 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/mpc8272_ads_defconfig b/arch/powerpc/configs/mpc8272_ads_defconfig index 0264c5757f78..30d7834b7db1 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:13 2008 | 4 | # Mon Jun 9 08:52:12 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -30,6 +30,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 30 | CONFIG_GENERIC_HARDIRQS=y | 30 | CONFIG_GENERIC_HARDIRQS=y |
| 31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 32 | CONFIG_IRQ_PER_CPU=y | 32 | CONFIG_IRQ_PER_CPU=y |
| 33 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 34 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 35 | CONFIG_GENERIC_HWEIGHT=y | 37 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -70,18 +72,16 @@ CONFIG_IKCONFIG=y | |||
| 70 | CONFIG_IKCONFIG_PROC=y | 72 | CONFIG_IKCONFIG_PROC=y |
| 71 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
| 72 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
| 73 | CONFIG_GROUP_SCHED=y | ||
| 74 | # CONFIG_FAIR_GROUP_SCHED is not set | ||
| 75 | CONFIG_USER_SCHED=y | ||
| 76 | # CONFIG_CGROUP_SCHED is not set | ||
| 77 | CONFIG_SYSFS_DEPRECATED=y | 75 | CONFIG_SYSFS_DEPRECATED=y |
| 78 | CONFIG_SYSFS_DEPRECATED_V2=y | 76 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 79 | # CONFIG_RELAY is not set | 77 | # CONFIG_RELAY is not set |
| 80 | # CONFIG_NAMESPACES is not set | 78 | # CONFIG_NAMESPACES is not set |
| 81 | # CONFIG_BLK_DEV_INITRD is not set | 79 | # CONFIG_BLK_DEV_INITRD is not set |
| 80 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 82 | CONFIG_SYSCTL=y | 81 | CONFIG_SYSCTL=y |
| 83 | CONFIG_EMBEDDED=y | 82 | CONFIG_EMBEDDED=y |
| 84 | CONFIG_SYSCTL_SYSCALL=y | 83 | CONFIG_SYSCTL_SYSCALL=y |
| 84 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 85 | CONFIG_KALLSYMS=y | 85 | CONFIG_KALLSYMS=y |
| 86 | CONFIG_KALLSYMS_ALL=y | 86 | CONFIG_KALLSYMS_ALL=y |
| 87 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 87 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -108,6 +108,7 @@ CONFIG_SLUB=y | |||
| 108 | CONFIG_HAVE_OPROFILE=y | 108 | CONFIG_HAVE_OPROFILE=y |
| 109 | CONFIG_HAVE_KPROBES=y | 109 | CONFIG_HAVE_KPROBES=y |
| 110 | CONFIG_HAVE_KRETPROBES=y | 110 | CONFIG_HAVE_KRETPROBES=y |
| 111 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 111 | CONFIG_PROC_PAGE_MONITOR=y | 112 | CONFIG_PROC_PAGE_MONITOR=y |
| 112 | CONFIG_SLABINFO=y | 113 | CONFIG_SLABINFO=y |
| 113 | CONFIG_RT_MUTEXES=y | 114 | CONFIG_RT_MUTEXES=y |
| @@ -196,11 +197,13 @@ CONFIG_FLATMEM=y | |||
| 196 | CONFIG_FLAT_NODE_MEM_MAP=y | 197 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 197 | # CONFIG_SPARSEMEM_STATIC is not set | 198 | # CONFIG_SPARSEMEM_STATIC is not set |
| 198 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 199 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 200 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 199 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 201 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 200 | # CONFIG_RESOURCES_64BIT is not set | 202 | # CONFIG_RESOURCES_64BIT is not set |
| 201 | CONFIG_ZONE_DMA_FLAG=1 | 203 | CONFIG_ZONE_DMA_FLAG=1 |
| 202 | CONFIG_BOUNCE=y | 204 | CONFIG_BOUNCE=y |
| 203 | CONFIG_VIRT_TO_BUS=y | 205 | CONFIG_VIRT_TO_BUS=y |
| 206 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 204 | CONFIG_PROC_DEVICETREE=y | 207 | CONFIG_PROC_DEVICETREE=y |
| 205 | # CONFIG_CMDLINE_BOOL is not set | 208 | # CONFIG_CMDLINE_BOOL is not set |
| 206 | # CONFIG_PM is not set | 209 | # CONFIG_PM is not set |
| @@ -224,6 +227,7 @@ CONFIG_PCI_LEGACY=y | |||
| 224 | # CONFIG_PCI_DEBUG is not set | 227 | # CONFIG_PCI_DEBUG is not set |
| 225 | # CONFIG_PCCARD is not set | 228 | # CONFIG_PCCARD is not set |
| 226 | # CONFIG_HOTPLUG_PCI is not set | 229 | # CONFIG_HOTPLUG_PCI is not set |
| 230 | # CONFIG_HAS_RAPIDIO is not set | ||
| 227 | 231 | ||
| 228 | # | 232 | # |
| 229 | # Advanced setup | 233 | # Advanced setup |
| @@ -233,11 +237,11 @@ CONFIG_PCI_LEGACY=y | |||
| 233 | # | 237 | # |
| 234 | # Default settings for advanced configuration options are used | 238 | # Default settings for advanced configuration options are used |
| 235 | # | 239 | # |
| 236 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 237 | CONFIG_LOWMEM_SIZE=0x30000000 | 240 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 241 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 238 | CONFIG_KERNEL_START=0xc0000000 | 242 | CONFIG_KERNEL_START=0xc0000000 |
| 243 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 239 | CONFIG_TASK_SIZE=0xc0000000 | 244 | CONFIG_TASK_SIZE=0xc0000000 |
| 240 | CONFIG_BOOT_LOAD=0x00400000 | ||
| 241 | 245 | ||
| 242 | # | 246 | # |
| 243 | # Networking | 247 | # Networking |
| @@ -292,6 +296,7 @@ CONFIG_INET6_XFRM_MODE_TRANSPORT=y | |||
| 292 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | 296 | CONFIG_INET6_XFRM_MODE_TUNNEL=y |
| 293 | CONFIG_INET6_XFRM_MODE_BEET=y | 297 | CONFIG_INET6_XFRM_MODE_BEET=y |
| 294 | CONFIG_IPV6_SIT=y | 298 | CONFIG_IPV6_SIT=y |
| 299 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
| 295 | # CONFIG_IPV6_TUNNEL is not set | 300 | # CONFIG_IPV6_TUNNEL is not set |
| 296 | # CONFIG_NETWORK_SECMARK is not set | 301 | # CONFIG_NETWORK_SECMARK is not set |
| 297 | CONFIG_NETFILTER=y | 302 | CONFIG_NETFILTER=y |
| @@ -536,7 +541,6 @@ CONFIG_NETDEV_1000=y | |||
| 536 | # CONFIG_SIS190 is not set | 541 | # CONFIG_SIS190 is not set |
| 537 | # CONFIG_SKGE is not set | 542 | # CONFIG_SKGE is not set |
| 538 | # CONFIG_SKY2 is not set | 543 | # CONFIG_SKY2 is not set |
| 539 | # CONFIG_SK98LIN is not set | ||
| 540 | # CONFIG_VIA_VELOCITY is not set | 544 | # CONFIG_VIA_VELOCITY is not set |
| 541 | # CONFIG_TIGON3 is not set | 545 | # CONFIG_TIGON3 is not set |
| 542 | # CONFIG_BNX2 is not set | 546 | # CONFIG_BNX2 is not set |
| @@ -554,6 +558,7 @@ CONFIG_NETDEV_10000=y | |||
| 554 | # CONFIG_MLX4_CORE is not set | 558 | # CONFIG_MLX4_CORE is not set |
| 555 | # CONFIG_TEHUTI is not set | 559 | # CONFIG_TEHUTI is not set |
| 556 | # CONFIG_BNX2X is not set | 560 | # CONFIG_BNX2X is not set |
| 561 | # CONFIG_SFC is not set | ||
| 557 | # CONFIG_TR is not set | 562 | # CONFIG_TR is not set |
| 558 | 563 | ||
| 559 | # | 564 | # |
| @@ -561,6 +566,7 @@ CONFIG_NETDEV_10000=y | |||
| 561 | # | 566 | # |
| 562 | # CONFIG_WLAN_PRE80211 is not set | 567 | # CONFIG_WLAN_PRE80211 is not set |
| 563 | # CONFIG_WLAN_80211 is not set | 568 | # CONFIG_WLAN_80211 is not set |
| 569 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 564 | # CONFIG_WAN is not set | 570 | # CONFIG_WAN is not set |
| 565 | # CONFIG_FDDI is not set | 571 | # CONFIG_FDDI is not set |
| 566 | CONFIG_PPP=y | 572 | CONFIG_PPP=y |
| @@ -634,6 +640,7 @@ CONFIG_SERIO_LIBPS2=y | |||
| 634 | # Character devices | 640 | # Character devices |
| 635 | # | 641 | # |
| 636 | # CONFIG_VT is not set | 642 | # CONFIG_VT is not set |
| 643 | CONFIG_DEVKMEM=y | ||
| 637 | # CONFIG_SERIAL_NONSTANDARD is not set | 644 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 638 | 645 | ||
| 639 | # | 646 | # |
| @@ -668,12 +675,7 @@ CONFIG_HW_RANDOM=y | |||
| 668 | # CONFIG_RAW_DRIVER is not set | 675 | # CONFIG_RAW_DRIVER is not set |
| 669 | CONFIG_DEVPORT=y | 676 | CONFIG_DEVPORT=y |
| 670 | # CONFIG_I2C is not set | 677 | # CONFIG_I2C is not set |
| 671 | |||
| 672 | # | ||
| 673 | # SPI support | ||
| 674 | # | ||
| 675 | # CONFIG_SPI is not set | 678 | # CONFIG_SPI is not set |
| 676 | # CONFIG_SPI_MASTER is not set | ||
| 677 | # CONFIG_W1 is not set | 679 | # CONFIG_W1 is not set |
| 678 | # CONFIG_POWER_SUPPLY is not set | 680 | # CONFIG_POWER_SUPPLY is not set |
| 679 | # CONFIG_HWMON is not set | 681 | # CONFIG_HWMON is not set |
| @@ -690,12 +692,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 690 | # Multifunction device drivers | 692 | # Multifunction device drivers |
| 691 | # | 693 | # |
| 692 | # CONFIG_MFD_SM501 is not set | 694 | # CONFIG_MFD_SM501 is not set |
| 695 | # CONFIG_HTC_PASIC3 is not set | ||
| 693 | 696 | ||
| 694 | # | 697 | # |
| 695 | # Multimedia devices | 698 | # Multimedia devices |
| 696 | # | 699 | # |
| 700 | |||
| 701 | # | ||
| 702 | # Multimedia core support | ||
| 703 | # | ||
| 697 | # CONFIG_VIDEO_DEV is not set | 704 | # CONFIG_VIDEO_DEV is not set |
| 698 | # CONFIG_DVB_CORE is not set | 705 | # CONFIG_DVB_CORE is not set |
| 706 | # CONFIG_VIDEO_MEDIA is not set | ||
| 707 | |||
| 708 | # | ||
| 709 | # Multimedia drivers | ||
| 710 | # | ||
| 699 | CONFIG_DAB=y | 711 | CONFIG_DAB=y |
| 700 | 712 | ||
| 701 | # | 713 | # |
| @@ -722,13 +734,10 @@ CONFIG_DAB=y | |||
| 722 | # CONFIG_MMC is not set | 734 | # CONFIG_MMC is not set |
| 723 | # CONFIG_MEMSTICK is not set | 735 | # CONFIG_MEMSTICK is not set |
| 724 | # CONFIG_NEW_LEDS is not set | 736 | # CONFIG_NEW_LEDS is not set |
| 737 | # CONFIG_ACCESSIBILITY is not set | ||
| 725 | # CONFIG_INFINIBAND is not set | 738 | # CONFIG_INFINIBAND is not set |
| 726 | # CONFIG_RTC_CLASS is not set | 739 | # CONFIG_RTC_CLASS is not set |
| 727 | # CONFIG_DMADEVICES is not set | 740 | # CONFIG_DMADEVICES is not set |
| 728 | |||
| 729 | # | ||
| 730 | # Userspace I/O | ||
| 731 | # | ||
| 732 | # CONFIG_UIO is not set | 741 | # CONFIG_UIO is not set |
| 733 | 742 | ||
| 734 | # | 743 | # |
| @@ -798,7 +807,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 798 | CONFIG_NFS_FS=y | 807 | CONFIG_NFS_FS=y |
| 799 | CONFIG_NFS_V3=y | 808 | CONFIG_NFS_V3=y |
| 800 | CONFIG_NFS_V3_ACL=y | 809 | CONFIG_NFS_V3_ACL=y |
| 801 | # CONFIG_NFS_DIRECTIO is not set | ||
| 802 | # CONFIG_NFSD is not set | 810 | # CONFIG_NFSD is not set |
| 803 | CONFIG_ROOT_NFS=y | 811 | CONFIG_ROOT_NFS=y |
| 804 | CONFIG_LOCKD=y | 812 | CONFIG_LOCKD=y |
| @@ -877,6 +885,7 @@ CONFIG_NLS_UTF8=y | |||
| 877 | # Library routines | 885 | # Library routines |
| 878 | # | 886 | # |
| 879 | CONFIG_BITREVERSE=y | 887 | CONFIG_BITREVERSE=y |
| 888 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 880 | CONFIG_CRC_CCITT=y | 889 | CONFIG_CRC_CCITT=y |
| 881 | # CONFIG_CRC16 is not set | 890 | # CONFIG_CRC16 is not set |
| 882 | # CONFIG_CRC_ITU_T is not set | 891 | # CONFIG_CRC_ITU_T is not set |
| @@ -889,6 +898,7 @@ CONFIG_PLIST=y | |||
| 889 | CONFIG_HAS_IOMEM=y | 898 | CONFIG_HAS_IOMEM=y |
| 890 | CONFIG_HAS_IOPORT=y | 899 | CONFIG_HAS_IOPORT=y |
| 891 | CONFIG_HAS_DMA=y | 900 | CONFIG_HAS_DMA=y |
| 901 | CONFIG_HAVE_LMB=y | ||
| 892 | 902 | ||
| 893 | # | 903 | # |
| 894 | # Kernel hacking | 904 | # Kernel hacking |
| @@ -896,6 +906,7 @@ CONFIG_HAS_DMA=y | |||
| 896 | # CONFIG_PRINTK_TIME is not set | 906 | # CONFIG_PRINTK_TIME is not set |
| 897 | CONFIG_ENABLE_WARN_DEPRECATED=y | 907 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 898 | CONFIG_ENABLE_MUST_CHECK=y | 908 | CONFIG_ENABLE_MUST_CHECK=y |
| 909 | CONFIG_FRAME_WARN=1024 | ||
| 899 | CONFIG_MAGIC_SYSRQ=y | 910 | CONFIG_MAGIC_SYSRQ=y |
| 900 | # CONFIG_UNUSED_SYMBOLS is not set | 911 | # CONFIG_UNUSED_SYMBOLS is not set |
| 901 | # CONFIG_DEBUG_FS is not set | 912 | # CONFIG_DEBUG_FS is not set |
| @@ -906,6 +917,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 906 | CONFIG_SCHED_DEBUG=y | 917 | CONFIG_SCHED_DEBUG=y |
| 907 | # CONFIG_SCHEDSTATS is not set | 918 | # CONFIG_SCHEDSTATS is not set |
| 908 | # CONFIG_TIMER_STATS is not set | 919 | # CONFIG_TIMER_STATS is not set |
| 920 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 909 | # CONFIG_SLUB_DEBUG_ON is not set | 921 | # CONFIG_SLUB_DEBUG_ON is not set |
| 910 | # CONFIG_SLUB_STATS is not set | 922 | # CONFIG_SLUB_STATS is not set |
| 911 | # CONFIG_DEBUG_RT_MUTEXES is not set | 923 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -918,6 +930,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 918 | CONFIG_DEBUG_BUGVERBOSE=y | 930 | CONFIG_DEBUG_BUGVERBOSE=y |
| 919 | CONFIG_DEBUG_INFO=y | 931 | CONFIG_DEBUG_INFO=y |
| 920 | # CONFIG_DEBUG_VM is not set | 932 | # CONFIG_DEBUG_VM is not set |
| 933 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 921 | # CONFIG_DEBUG_LIST is not set | 934 | # CONFIG_DEBUG_LIST is not set |
| 922 | # CONFIG_DEBUG_SG is not set | 935 | # CONFIG_DEBUG_SG is not set |
| 923 | # CONFIG_BOOT_PRINTK_DELAY is not set | 936 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -929,6 +942,7 @@ CONFIG_DEBUG_INFO=y | |||
| 929 | # CONFIG_DEBUG_PAGEALLOC is not set | 942 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 930 | # CONFIG_DEBUGGER is not set | 943 | # CONFIG_DEBUGGER is not set |
| 931 | # CONFIG_KGDB_CONSOLE is not set | 944 | # CONFIG_KGDB_CONSOLE is not set |
| 945 | # CONFIG_IRQSTACKS is not set | ||
| 932 | CONFIG_BDI_SWITCH=y | 946 | CONFIG_BDI_SWITCH=y |
| 933 | # CONFIG_PPC_EARLY_DEBUG is not set | 947 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 934 | 948 | ||
| @@ -938,45 +952,75 @@ CONFIG_BDI_SWITCH=y | |||
| 938 | # CONFIG_KEYS is not set | 952 | # CONFIG_KEYS is not set |
| 939 | # CONFIG_SECURITY is not set | 953 | # CONFIG_SECURITY is not set |
| 940 | CONFIG_CRYPTO=y | 954 | CONFIG_CRYPTO=y |
| 955 | |||
| 956 | # | ||
| 957 | # Crypto core or helper | ||
| 958 | # | ||
| 941 | CONFIG_CRYPTO_ALGAPI=y | 959 | CONFIG_CRYPTO_ALGAPI=y |
| 942 | CONFIG_CRYPTO_BLKCIPHER=y | 960 | CONFIG_CRYPTO_BLKCIPHER=y |
| 943 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 944 | CONFIG_CRYPTO_MANAGER=y | 961 | CONFIG_CRYPTO_MANAGER=y |
| 945 | # CONFIG_CRYPTO_HMAC is not set | ||
| 946 | # CONFIG_CRYPTO_NULL is not set | 962 | # CONFIG_CRYPTO_NULL is not set |
| 963 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 964 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 965 | |||
| 966 | # | ||
| 967 | # Authenticated Encryption with Associated Data | ||
| 968 | # | ||
| 969 | # CONFIG_CRYPTO_CCM is not set | ||
| 970 | # CONFIG_CRYPTO_GCM is not set | ||
| 971 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 972 | |||
| 973 | # | ||
| 974 | # Block modes | ||
| 975 | # | ||
| 976 | CONFIG_CRYPTO_CBC=y | ||
| 977 | # CONFIG_CRYPTO_CTR is not set | ||
| 978 | # CONFIG_CRYPTO_CTS is not set | ||
| 979 | CONFIG_CRYPTO_ECB=y | ||
| 980 | CONFIG_CRYPTO_PCBC=y | ||
| 981 | |||
| 982 | # | ||
| 983 | # Hash modes | ||
| 984 | # | ||
| 985 | # CONFIG_CRYPTO_HMAC is not set | ||
| 986 | |||
| 987 | # | ||
| 988 | # Digest | ||
| 989 | # | ||
| 990 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 947 | # CONFIG_CRYPTO_MD4 is not set | 991 | # CONFIG_CRYPTO_MD4 is not set |
| 948 | CONFIG_CRYPTO_MD5=y | 992 | CONFIG_CRYPTO_MD5=y |
| 993 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 949 | # CONFIG_CRYPTO_SHA1 is not set | 994 | # CONFIG_CRYPTO_SHA1 is not set |
| 950 | # CONFIG_CRYPTO_SHA256 is not set | 995 | # CONFIG_CRYPTO_SHA256 is not set |
| 951 | # CONFIG_CRYPTO_SHA512 is not set | 996 | # CONFIG_CRYPTO_SHA512 is not set |
| 952 | # CONFIG_CRYPTO_WP512 is not set | ||
| 953 | # CONFIG_CRYPTO_TGR192 is not set | 997 | # CONFIG_CRYPTO_TGR192 is not set |
| 954 | CONFIG_CRYPTO_ECB=y | 998 | # CONFIG_CRYPTO_WP512 is not set |
| 955 | CONFIG_CRYPTO_CBC=y | 999 | |
| 956 | CONFIG_CRYPTO_PCBC=y | 1000 | # |
| 957 | # CONFIG_CRYPTO_CTR is not set | 1001 | # Ciphers |
| 958 | # CONFIG_CRYPTO_GCM is not set | 1002 | # |
| 959 | # CONFIG_CRYPTO_CCM is not set | ||
| 960 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 961 | CONFIG_CRYPTO_DES=y | ||
| 962 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 963 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 964 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 965 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 966 | # CONFIG_CRYPTO_AES is not set | 1003 | # CONFIG_CRYPTO_AES is not set |
| 1004 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1005 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1006 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1007 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 967 | # CONFIG_CRYPTO_CAST5 is not set | 1008 | # CONFIG_CRYPTO_CAST5 is not set |
| 968 | # CONFIG_CRYPTO_CAST6 is not set | 1009 | # CONFIG_CRYPTO_CAST6 is not set |
| 969 | # CONFIG_CRYPTO_TEA is not set | 1010 | CONFIG_CRYPTO_DES=y |
| 970 | # CONFIG_CRYPTO_ARC4 is not set | 1011 | # CONFIG_CRYPTO_FCRYPT is not set |
| 971 | # CONFIG_CRYPTO_KHAZAD is not set | 1012 | # CONFIG_CRYPTO_KHAZAD is not set |
| 972 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 973 | # CONFIG_CRYPTO_SEED is not set | 1013 | # CONFIG_CRYPTO_SEED is not set |
| 1014 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1015 | # CONFIG_CRYPTO_TEA is not set | ||
| 1016 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1017 | |||
| 1018 | # | ||
| 1019 | # Compression | ||
| 1020 | # | ||
| 974 | # CONFIG_CRYPTO_DEFLATE is not set | 1021 | # CONFIG_CRYPTO_DEFLATE is not set |
| 975 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 976 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 977 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 978 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 979 | # CONFIG_CRYPTO_LZO is not set | 1022 | # CONFIG_CRYPTO_LZO is not set |
| 980 | # CONFIG_CRYPTO_HW is not set | 1023 | # CONFIG_CRYPTO_HW is not set |
| 981 | # CONFIG_PPC_CLOCK is not set | 1024 | # CONFIG_PPC_CLOCK is not set |
| 982 | CONFIG_PPC_LIB_RHEAP=y | 1025 | CONFIG_PPC_LIB_RHEAP=y |
| 1026 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/mpc83xx_defconfig b/arch/powerpc/configs/mpc83xx_defconfig index 9e0dd8201691..4293c8be06e1 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.25-rc9 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Tue Apr 15 18:07:36 2008 | 4 | # Mon Jun 9 08:52:14 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -86,6 +88,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 88 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 89 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 90 | CONFIG_SYSCTL_SYSCALL=y |
| 91 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | CONFIG_KALLSYMS=y | 92 | CONFIG_KALLSYMS=y |
| 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 91 | CONFIG_HOTPLUG=y | 94 | CONFIG_HOTPLUG=y |
| @@ -111,12 +114,14 @@ CONFIG_HAVE_OPROFILE=y | |||
| 111 | # CONFIG_KPROBES is not set | 114 | # CONFIG_KPROBES is not set |
| 112 | CONFIG_HAVE_KPROBES=y | 115 | CONFIG_HAVE_KPROBES=y |
| 113 | CONFIG_HAVE_KRETPROBES=y | 116 | CONFIG_HAVE_KRETPROBES=y |
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 114 | CONFIG_PROC_PAGE_MONITOR=y | 118 | CONFIG_PROC_PAGE_MONITOR=y |
| 115 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
| 116 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
| 117 | # CONFIG_TINY_SHMEM is not set | 121 | # CONFIG_TINY_SHMEM is not set |
| 118 | CONFIG_BASE_SMALL=0 | 122 | CONFIG_BASE_SMALL=0 |
| 119 | CONFIG_MODULES=y | 123 | CONFIG_MODULES=y |
| 124 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 120 | CONFIG_MODULE_UNLOAD=y | 125 | CONFIG_MODULE_UNLOAD=y |
| 121 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 122 | # CONFIG_MODVERSIONS is not set | 127 | # CONFIG_MODVERSIONS is not set |
| @@ -201,7 +206,6 @@ CONFIG_PREEMPT_NONE=y | |||
| 201 | # CONFIG_PREEMPT is not set | 206 | # CONFIG_PREEMPT is not set |
| 202 | CONFIG_BINFMT_ELF=y | 207 | CONFIG_BINFMT_ELF=y |
| 203 | # CONFIG_BINFMT_MISC is not set | 208 | # CONFIG_BINFMT_MISC is not set |
| 204 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 205 | CONFIG_MATH_EMULATION=y | 209 | CONFIG_MATH_EMULATION=y |
| 206 | # CONFIG_IOMMU_HELPER is not set | 210 | # CONFIG_IOMMU_HELPER is not set |
| 207 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 211 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| @@ -217,11 +221,13 @@ CONFIG_FLATMEM=y | |||
| 217 | CONFIG_FLAT_NODE_MEM_MAP=y | 221 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 218 | # CONFIG_SPARSEMEM_STATIC is not set | 222 | # CONFIG_SPARSEMEM_STATIC is not set |
| 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 223 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 224 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 220 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 225 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 221 | # CONFIG_RESOURCES_64BIT is not set | 226 | # CONFIG_RESOURCES_64BIT is not set |
| 222 | CONFIG_ZONE_DMA_FLAG=1 | 227 | CONFIG_ZONE_DMA_FLAG=1 |
| 223 | CONFIG_BOUNCE=y | 228 | CONFIG_BOUNCE=y |
| 224 | CONFIG_VIRT_TO_BUS=y | 229 | CONFIG_VIRT_TO_BUS=y |
| 230 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 225 | CONFIG_PROC_DEVICETREE=y | 231 | CONFIG_PROC_DEVICETREE=y |
| 226 | # CONFIG_CMDLINE_BOOL is not set | 232 | # CONFIG_CMDLINE_BOOL is not set |
| 227 | # CONFIG_PM is not set | 233 | # CONFIG_PM is not set |
| @@ -240,6 +246,7 @@ CONFIG_FSL_SOC=y | |||
| 240 | # CONFIG_PCI_SYSCALL is not set | 246 | # CONFIG_PCI_SYSCALL is not set |
| 241 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 247 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 242 | # CONFIG_PCCARD is not set | 248 | # CONFIG_PCCARD is not set |
| 249 | # CONFIG_HAS_RAPIDIO is not set | ||
| 243 | 250 | ||
| 244 | # | 251 | # |
| 245 | # Advanced setup | 252 | # Advanced setup |
| @@ -249,11 +256,11 @@ CONFIG_FSL_SOC=y | |||
| 249 | # | 256 | # |
| 250 | # Default settings for advanced configuration options are used | 257 | # Default settings for advanced configuration options are used |
| 251 | # | 258 | # |
| 252 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 253 | CONFIG_LOWMEM_SIZE=0x30000000 | 259 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 260 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 254 | CONFIG_KERNEL_START=0xc0000000 | 261 | CONFIG_KERNEL_START=0xc0000000 |
| 262 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 255 | CONFIG_TASK_SIZE=0xc0000000 | 263 | CONFIG_TASK_SIZE=0xc0000000 |
| 256 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 257 | 264 | ||
| 258 | # | 265 | # |
| 259 | # Networking | 266 | # Networking |
| @@ -301,8 +308,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 301 | CONFIG_DEFAULT_TCP_CONG="cubic" | 308 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 302 | # CONFIG_TCP_MD5SIG is not set | 309 | # CONFIG_TCP_MD5SIG is not set |
| 303 | # CONFIG_IPV6 is not set | 310 | # CONFIG_IPV6 is not set |
| 304 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 305 | # CONFIG_INET6_TUNNEL is not set | ||
| 306 | # CONFIG_NETWORK_SECMARK is not set | 311 | # CONFIG_NETWORK_SECMARK is not set |
| 307 | # CONFIG_NETFILTER is not set | 312 | # CONFIG_NETFILTER is not set |
| 308 | # CONFIG_IP_DCCP is not set | 313 | # CONFIG_IP_DCCP is not set |
| @@ -361,6 +366,7 @@ CONFIG_MTD_PARTITIONS=y | |||
| 361 | # CONFIG_MTD_REDBOOT_PARTS is not set | 366 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 362 | # CONFIG_MTD_CMDLINE_PARTS is not set | 367 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 363 | CONFIG_MTD_OF_PARTS=y | 368 | CONFIG_MTD_OF_PARTS=y |
| 369 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 364 | 370 | ||
| 365 | # | 371 | # |
| 366 | # User Modules And Translation Layers | 372 | # User Modules And Translation Layers |
| @@ -439,6 +445,7 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
| 439 | # | 445 | # |
| 440 | # CONFIG_MTD_UBI is not set | 446 | # CONFIG_MTD_UBI is not set |
| 441 | CONFIG_OF_DEVICE=y | 447 | CONFIG_OF_DEVICE=y |
| 448 | CONFIG_OF_I2C=y | ||
| 442 | # CONFIG_PARPORT is not set | 449 | # CONFIG_PARPORT is not set |
| 443 | CONFIG_BLK_DEV=y | 450 | CONFIG_BLK_DEV=y |
| 444 | # CONFIG_BLK_DEV_FD is not set | 451 | # CONFIG_BLK_DEV_FD is not set |
| @@ -501,8 +508,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 501 | # CONFIG_SCSI_DEBUG is not set | 508 | # CONFIG_SCSI_DEBUG is not set |
| 502 | CONFIG_ATA=y | 509 | CONFIG_ATA=y |
| 503 | # CONFIG_ATA_NONSTANDARD is not set | 510 | # CONFIG_ATA_NONSTANDARD is not set |
| 504 | # CONFIG_SATA_MV is not set | 511 | CONFIG_SATA_PMP=y |
| 505 | CONFIG_SATA_FSL=y | 512 | CONFIG_SATA_FSL=y |
| 513 | CONFIG_ATA_SFF=y | ||
| 514 | # CONFIG_SATA_MV is not set | ||
| 506 | # CONFIG_PATA_PLATFORM is not set | 515 | # CONFIG_PATA_PLATFORM is not set |
| 507 | # CONFIG_MD is not set | 516 | # CONFIG_MD is not set |
| 508 | # CONFIG_MACINTOSH_DRIVERS is not set | 517 | # CONFIG_MACINTOSH_DRIVERS is not set |
| @@ -554,6 +563,7 @@ CONFIG_NETDEV_10000=y | |||
| 554 | # | 563 | # |
| 555 | # CONFIG_WLAN_PRE80211 is not set | 564 | # CONFIG_WLAN_PRE80211 is not set |
| 556 | # CONFIG_WLAN_80211 is not set | 565 | # CONFIG_WLAN_80211 is not set |
| 566 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 557 | 567 | ||
| 558 | # | 568 | # |
| 559 | # USB Network Adapters | 569 | # USB Network Adapters |
| @@ -607,6 +617,7 @@ CONFIG_INPUT=y | |||
| 607 | # Character devices | 617 | # Character devices |
| 608 | # | 618 | # |
| 609 | # CONFIG_VT is not set | 619 | # CONFIG_VT is not set |
| 620 | CONFIG_DEVKMEM=y | ||
| 610 | # CONFIG_SERIAL_NONSTANDARD is not set | 621 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 611 | 622 | ||
| 612 | # | 623 | # |
| @@ -642,13 +653,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 642 | CONFIG_I2C_CHARDEV=y | 653 | CONFIG_I2C_CHARDEV=y |
| 643 | 654 | ||
| 644 | # | 655 | # |
| 645 | # I2C Algorithms | ||
| 646 | # | ||
| 647 | # CONFIG_I2C_ALGOBIT is not set | ||
| 648 | # CONFIG_I2C_ALGOPCF is not set | ||
| 649 | # CONFIG_I2C_ALGOPCA is not set | ||
| 650 | |||
| 651 | # | ||
| 652 | # I2C Hardware Bus support | 656 | # I2C Hardware Bus support |
| 653 | # | 657 | # |
| 654 | CONFIG_I2C_MPC=y | 658 | CONFIG_I2C_MPC=y |
| @@ -658,6 +662,7 @@ CONFIG_I2C_MPC=y | |||
| 658 | # CONFIG_I2C_TAOS_EVM is not set | 662 | # CONFIG_I2C_TAOS_EVM is not set |
| 659 | # CONFIG_I2C_STUB is not set | 663 | # CONFIG_I2C_STUB is not set |
| 660 | # CONFIG_I2C_TINY_USB is not set | 664 | # CONFIG_I2C_TINY_USB is not set |
| 665 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 661 | 666 | ||
| 662 | # | 667 | # |
| 663 | # Miscellaneous I2C Chip support | 668 | # Miscellaneous I2C Chip support |
| @@ -667,19 +672,13 @@ CONFIG_I2C_MPC=y | |||
| 667 | # CONFIG_SENSORS_PCF8574 is not set | 672 | # CONFIG_SENSORS_PCF8574 is not set |
| 668 | # CONFIG_PCF8575 is not set | 673 | # CONFIG_PCF8575 is not set |
| 669 | # CONFIG_SENSORS_PCF8591 is not set | 674 | # CONFIG_SENSORS_PCF8591 is not set |
| 670 | # CONFIG_TPS65010 is not set | ||
| 671 | # CONFIG_SENSORS_MAX6875 is not set | 675 | # CONFIG_SENSORS_MAX6875 is not set |
| 672 | # CONFIG_SENSORS_TSL2550 is not set | 676 | # CONFIG_SENSORS_TSL2550 is not set |
| 673 | # CONFIG_I2C_DEBUG_CORE is not set | 677 | # CONFIG_I2C_DEBUG_CORE is not set |
| 674 | # CONFIG_I2C_DEBUG_ALGO is not set | 678 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 675 | # CONFIG_I2C_DEBUG_BUS is not set | 679 | # CONFIG_I2C_DEBUG_BUS is not set |
| 676 | # CONFIG_I2C_DEBUG_CHIP is not set | 680 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 677 | |||
| 678 | # | ||
| 679 | # SPI support | ||
| 680 | # | ||
| 681 | # CONFIG_SPI is not set | 681 | # CONFIG_SPI is not set |
| 682 | # CONFIG_SPI_MASTER is not set | ||
| 683 | # CONFIG_W1 is not set | 682 | # CONFIG_W1 is not set |
| 684 | # CONFIG_POWER_SUPPLY is not set | 683 | # CONFIG_POWER_SUPPLY is not set |
| 685 | CONFIG_HWMON=y | 684 | CONFIG_HWMON=y |
| @@ -757,12 +756,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 757 | # Multifunction device drivers | 756 | # Multifunction device drivers |
| 758 | # | 757 | # |
| 759 | # CONFIG_MFD_SM501 is not set | 758 | # CONFIG_MFD_SM501 is not set |
| 759 | # CONFIG_HTC_PASIC3 is not set | ||
| 760 | 760 | ||
| 761 | # | 761 | # |
| 762 | # Multimedia devices | 762 | # Multimedia devices |
| 763 | # | 763 | # |
| 764 | |||
| 765 | # | ||
| 766 | # Multimedia core support | ||
| 767 | # | ||
| 764 | # CONFIG_VIDEO_DEV is not set | 768 | # CONFIG_VIDEO_DEV is not set |
| 765 | # CONFIG_DVB_CORE is not set | 769 | # CONFIG_DVB_CORE is not set |
| 770 | # CONFIG_VIDEO_MEDIA is not set | ||
| 771 | |||
| 772 | # | ||
| 773 | # Multimedia drivers | ||
| 774 | # | ||
| 766 | CONFIG_DAB=y | 775 | CONFIG_DAB=y |
| 767 | # CONFIG_USB_DABUSB is not set | 776 | # CONFIG_USB_DABUSB is not set |
| 768 | 777 | ||
| @@ -810,16 +819,20 @@ CONFIG_USB=y | |||
| 810 | CONFIG_USB_DEVICE_CLASS=y | 819 | CONFIG_USB_DEVICE_CLASS=y |
| 811 | # CONFIG_USB_DYNAMIC_MINORS is not set | 820 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 812 | # CONFIG_USB_OTG is not set | 821 | # CONFIG_USB_OTG is not set |
| 822 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 823 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 813 | 824 | ||
| 814 | # | 825 | # |
| 815 | # USB Host Controller Drivers | 826 | # USB Host Controller Drivers |
| 816 | # | 827 | # |
| 828 | # CONFIG_USB_C67X00_HCD is not set | ||
| 817 | CONFIG_USB_EHCI_HCD=y | 829 | CONFIG_USB_EHCI_HCD=y |
| 818 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 830 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 819 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 831 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 820 | CONFIG_USB_EHCI_FSL=y | 832 | CONFIG_USB_EHCI_FSL=y |
| 821 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 833 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 822 | # CONFIG_USB_ISP116X_HCD is not set | 834 | # CONFIG_USB_ISP116X_HCD is not set |
| 835 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 823 | # CONFIG_USB_SL811_HCD is not set | 836 | # CONFIG_USB_SL811_HCD is not set |
| 824 | # CONFIG_USB_R8A66597_HCD is not set | 837 | # CONFIG_USB_R8A66597_HCD is not set |
| 825 | 838 | ||
| @@ -828,6 +841,7 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 828 | # | 841 | # |
| 829 | # CONFIG_USB_ACM is not set | 842 | # CONFIG_USB_ACM is not set |
| 830 | # CONFIG_USB_PRINTER is not set | 843 | # CONFIG_USB_PRINTER is not set |
| 844 | # CONFIG_USB_WDM is not set | ||
| 831 | 845 | ||
| 832 | # | 846 | # |
| 833 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 847 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -873,17 +887,15 @@ CONFIG_USB_MON=y | |||
| 873 | # CONFIG_USB_LD is not set | 887 | # CONFIG_USB_LD is not set |
| 874 | # CONFIG_USB_TRANCEVIBRATOR is not set | 888 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 875 | # CONFIG_USB_IOWARRIOR is not set | 889 | # CONFIG_USB_IOWARRIOR is not set |
| 890 | # CONFIG_USB_ISIGHTFW is not set | ||
| 876 | # CONFIG_USB_GADGET is not set | 891 | # CONFIG_USB_GADGET is not set |
| 877 | # CONFIG_MMC is not set | 892 | # CONFIG_MMC is not set |
| 878 | # CONFIG_MEMSTICK is not set | 893 | # CONFIG_MEMSTICK is not set |
| 879 | # CONFIG_NEW_LEDS is not set | 894 | # CONFIG_NEW_LEDS is not set |
| 895 | # CONFIG_ACCESSIBILITY is not set | ||
| 880 | # CONFIG_EDAC is not set | 896 | # CONFIG_EDAC is not set |
| 881 | # CONFIG_RTC_CLASS is not set | 897 | # CONFIG_RTC_CLASS is not set |
| 882 | # CONFIG_DMADEVICES is not set | 898 | # CONFIG_DMADEVICES is not set |
| 883 | |||
| 884 | # | ||
| 885 | # Userspace I/O | ||
| 886 | # | ||
| 887 | # CONFIG_UIO is not set | 899 | # CONFIG_UIO is not set |
| 888 | 900 | ||
| 889 | # | 901 | # |
| @@ -903,7 +915,6 @@ CONFIG_FS_MBCACHE=y | |||
| 903 | # CONFIG_JFS_FS is not set | 915 | # CONFIG_JFS_FS is not set |
| 904 | # CONFIG_FS_POSIX_ACL is not set | 916 | # CONFIG_FS_POSIX_ACL is not set |
| 905 | # CONFIG_XFS_FS is not set | 917 | # CONFIG_XFS_FS is not set |
| 906 | # CONFIG_GFS2_FS is not set | ||
| 907 | # CONFIG_OCFS2_FS is not set | 918 | # CONFIG_OCFS2_FS is not set |
| 908 | CONFIG_DNOTIFY=y | 919 | CONFIG_DNOTIFY=y |
| 909 | CONFIG_INOTIFY=y | 920 | CONFIG_INOTIFY=y |
| @@ -962,7 +973,6 @@ CONFIG_NFS_FS=y | |||
| 962 | CONFIG_NFS_V3=y | 973 | CONFIG_NFS_V3=y |
| 963 | # CONFIG_NFS_V3_ACL is not set | 974 | # CONFIG_NFS_V3_ACL is not set |
| 964 | CONFIG_NFS_V4=y | 975 | CONFIG_NFS_V4=y |
| 965 | # CONFIG_NFS_DIRECTIO is not set | ||
| 966 | # CONFIG_NFSD is not set | 976 | # CONFIG_NFSD is not set |
| 967 | CONFIG_ROOT_NFS=y | 977 | CONFIG_ROOT_NFS=y |
| 968 | CONFIG_LOCKD=y | 978 | CONFIG_LOCKD=y |
| @@ -1009,6 +1019,7 @@ CONFIG_UCC=y | |||
| 1009 | # Library routines | 1019 | # Library routines |
| 1010 | # | 1020 | # |
| 1011 | CONFIG_BITREVERSE=y | 1021 | CONFIG_BITREVERSE=y |
| 1022 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1012 | # CONFIG_CRC_CCITT is not set | 1023 | # CONFIG_CRC_CCITT is not set |
| 1013 | # CONFIG_CRC16 is not set | 1024 | # CONFIG_CRC16 is not set |
| 1014 | # CONFIG_CRC_ITU_T is not set | 1025 | # CONFIG_CRC_ITU_T is not set |
| @@ -1027,6 +1038,7 @@ CONFIG_HAVE_LMB=y | |||
| 1027 | # CONFIG_PRINTK_TIME is not set | 1038 | # CONFIG_PRINTK_TIME is not set |
| 1028 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1039 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1029 | CONFIG_ENABLE_MUST_CHECK=y | 1040 | CONFIG_ENABLE_MUST_CHECK=y |
| 1041 | CONFIG_FRAME_WARN=1024 | ||
| 1030 | # CONFIG_MAGIC_SYSRQ is not set | 1042 | # CONFIG_MAGIC_SYSRQ is not set |
| 1031 | # CONFIG_UNUSED_SYMBOLS is not set | 1043 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1032 | # CONFIG_DEBUG_FS is not set | 1044 | # CONFIG_DEBUG_FS is not set |
| @@ -1034,6 +1046,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1034 | # CONFIG_DEBUG_KERNEL is not set | 1046 | # CONFIG_DEBUG_KERNEL is not set |
| 1035 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1047 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1036 | # CONFIG_SAMPLES is not set | 1048 | # CONFIG_SAMPLES is not set |
| 1049 | # CONFIG_IRQSTACKS is not set | ||
| 1037 | # CONFIG_PPC_EARLY_DEBUG is not set | 1050 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1038 | 1051 | ||
| 1039 | # | 1052 | # |
| @@ -1043,51 +1056,81 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1043 | # CONFIG_SECURITY is not set | 1056 | # CONFIG_SECURITY is not set |
| 1044 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1057 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1045 | CONFIG_CRYPTO=y | 1058 | CONFIG_CRYPTO=y |
| 1059 | |||
| 1060 | # | ||
| 1061 | # Crypto core or helper | ||
| 1062 | # | ||
| 1046 | CONFIG_CRYPTO_ALGAPI=y | 1063 | CONFIG_CRYPTO_ALGAPI=y |
| 1047 | CONFIG_CRYPTO_BLKCIPHER=y | 1064 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1048 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1049 | CONFIG_CRYPTO_MANAGER=y | 1065 | CONFIG_CRYPTO_MANAGER=y |
| 1066 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1067 | # CONFIG_CRYPTO_NULL is not set | ||
| 1068 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1069 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1070 | # CONFIG_CRYPTO_TEST is not set | ||
| 1071 | |||
| 1072 | # | ||
| 1073 | # Authenticated Encryption with Associated Data | ||
| 1074 | # | ||
| 1075 | # CONFIG_CRYPTO_CCM is not set | ||
| 1076 | # CONFIG_CRYPTO_GCM is not set | ||
| 1077 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1078 | |||
| 1079 | # | ||
| 1080 | # Block modes | ||
| 1081 | # | ||
| 1082 | CONFIG_CRYPTO_CBC=y | ||
| 1083 | # CONFIG_CRYPTO_CTR is not set | ||
| 1084 | # CONFIG_CRYPTO_CTS is not set | ||
| 1085 | CONFIG_CRYPTO_ECB=m | ||
| 1086 | # CONFIG_CRYPTO_LRW is not set | ||
| 1087 | CONFIG_CRYPTO_PCBC=m | ||
| 1088 | # CONFIG_CRYPTO_XTS is not set | ||
| 1089 | |||
| 1090 | # | ||
| 1091 | # Hash modes | ||
| 1092 | # | ||
| 1050 | # CONFIG_CRYPTO_HMAC is not set | 1093 | # CONFIG_CRYPTO_HMAC is not set |
| 1051 | # CONFIG_CRYPTO_XCBC is not set | 1094 | # CONFIG_CRYPTO_XCBC is not set |
| 1052 | # CONFIG_CRYPTO_NULL is not set | 1095 | |
| 1096 | # | ||
| 1097 | # Digest | ||
| 1098 | # | ||
| 1099 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1053 | # CONFIG_CRYPTO_MD4 is not set | 1100 | # CONFIG_CRYPTO_MD4 is not set |
| 1054 | CONFIG_CRYPTO_MD5=y | 1101 | CONFIG_CRYPTO_MD5=y |
| 1102 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1055 | # CONFIG_CRYPTO_SHA1 is not set | 1103 | # CONFIG_CRYPTO_SHA1 is not set |
| 1056 | # CONFIG_CRYPTO_SHA256 is not set | 1104 | # CONFIG_CRYPTO_SHA256 is not set |
| 1057 | # CONFIG_CRYPTO_SHA512 is not set | 1105 | # CONFIG_CRYPTO_SHA512 is not set |
| 1058 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1059 | # CONFIG_CRYPTO_TGR192 is not set | 1106 | # CONFIG_CRYPTO_TGR192 is not set |
| 1060 | # CONFIG_CRYPTO_GF128MUL is not set | 1107 | # CONFIG_CRYPTO_WP512 is not set |
| 1061 | CONFIG_CRYPTO_ECB=m | 1108 | |
| 1062 | CONFIG_CRYPTO_CBC=y | 1109 | # |
| 1063 | CONFIG_CRYPTO_PCBC=m | 1110 | # Ciphers |
| 1064 | # CONFIG_CRYPTO_LRW is not set | 1111 | # |
| 1065 | # CONFIG_CRYPTO_XTS is not set | ||
| 1066 | # CONFIG_CRYPTO_CTR is not set | ||
| 1067 | # CONFIG_CRYPTO_GCM is not set | ||
| 1068 | # CONFIG_CRYPTO_CCM is not set | ||
| 1069 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1070 | CONFIG_CRYPTO_DES=y | ||
| 1071 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1072 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1073 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1074 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1075 | # CONFIG_CRYPTO_AES is not set | 1112 | # CONFIG_CRYPTO_AES is not set |
| 1113 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1114 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1115 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1116 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1076 | # CONFIG_CRYPTO_CAST5 is not set | 1117 | # CONFIG_CRYPTO_CAST5 is not set |
| 1077 | # CONFIG_CRYPTO_CAST6 is not set | 1118 | # CONFIG_CRYPTO_CAST6 is not set |
| 1078 | # CONFIG_CRYPTO_TEA is not set | 1119 | CONFIG_CRYPTO_DES=y |
| 1079 | # CONFIG_CRYPTO_ARC4 is not set | 1120 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1080 | # CONFIG_CRYPTO_KHAZAD is not set | 1121 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1081 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1082 | # CONFIG_CRYPTO_SEED is not set | ||
| 1083 | # CONFIG_CRYPTO_SALSA20 is not set | 1122 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1123 | # CONFIG_CRYPTO_SEED is not set | ||
| 1124 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1125 | # CONFIG_CRYPTO_TEA is not set | ||
| 1126 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1127 | |||
| 1128 | # | ||
| 1129 | # Compression | ||
| 1130 | # | ||
| 1084 | # CONFIG_CRYPTO_DEFLATE is not set | 1131 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1085 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1086 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1087 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1088 | # CONFIG_CRYPTO_TEST is not set | ||
| 1089 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1090 | # CONFIG_CRYPTO_LZO is not set | 1132 | # CONFIG_CRYPTO_LZO is not set |
| 1091 | CONFIG_CRYPTO_HW=y | 1133 | CONFIG_CRYPTO_HW=y |
| 1092 | # CONFIG_PPC_CLOCK is not set | 1134 | # CONFIG_PPC_CLOCK is not set |
| 1093 | CONFIG_PPC_LIB_RHEAP=y | 1135 | CONFIG_PPC_LIB_RHEAP=y |
| 1136 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/mpc85xx_defconfig b/arch/powerpc/configs/mpc85xx_defconfig index 2075722911bb..3efab71a603b 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.25-rc7 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 31 11:37:08 2008 | 4 | # Mon Jun 9 09:03:46 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -90,6 +92,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 90 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 91 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 92 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
| 94 | CONFIG_KALLSYMS_ALL=y | 97 | CONFIG_KALLSYMS_ALL=y |
| 95 | CONFIG_KALLSYMS_EXTRA_PASS=y | 98 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -117,12 +120,14 @@ CONFIG_HAVE_OPROFILE=y | |||
| 117 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
| 118 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 119 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 120 | CONFIG_PROC_PAGE_MONITOR=y | 124 | CONFIG_PROC_PAGE_MONITOR=y |
| 121 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
| 122 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
| 123 | # CONFIG_TINY_SHMEM is not set | 127 | # CONFIG_TINY_SHMEM is not set |
| 124 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
| 125 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
| 130 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 126 | CONFIG_MODULE_UNLOAD=y | 131 | CONFIG_MODULE_UNLOAD=y |
| 127 | CONFIG_MODULE_FORCE_UNLOAD=y | 132 | CONFIG_MODULE_FORCE_UNLOAD=y |
| 128 | CONFIG_MODVERSIONS=y | 133 | CONFIG_MODVERSIONS=y |
| @@ -162,6 +167,7 @@ CONFIG_MPC8560_ADS=y | |||
| 162 | CONFIG_MPC85xx_CDS=y | 167 | CONFIG_MPC85xx_CDS=y |
| 163 | CONFIG_MPC85xx_MDS=y | 168 | CONFIG_MPC85xx_MDS=y |
| 164 | CONFIG_MPC85xx_DS=y | 169 | CONFIG_MPC85xx_DS=y |
| 170 | CONFIG_KSI8560=y | ||
| 165 | # CONFIG_STX_GP3 is not set | 171 | # CONFIG_STX_GP3 is not set |
| 166 | CONFIG_TQM8540=y | 172 | CONFIG_TQM8540=y |
| 167 | CONFIG_TQM8541=y | 173 | CONFIG_TQM8541=y |
| @@ -221,11 +227,13 @@ CONFIG_FLATMEM=y | |||
| 221 | CONFIG_FLAT_NODE_MEM_MAP=y | 227 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 222 | # CONFIG_SPARSEMEM_STATIC is not set | 228 | # CONFIG_SPARSEMEM_STATIC is not set |
| 223 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 229 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 230 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 224 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 231 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 225 | # CONFIG_RESOURCES_64BIT is not set | 232 | # CONFIG_RESOURCES_64BIT is not set |
| 226 | CONFIG_ZONE_DMA_FLAG=1 | 233 | CONFIG_ZONE_DMA_FLAG=1 |
| 227 | CONFIG_BOUNCE=y | 234 | CONFIG_BOUNCE=y |
| 228 | CONFIG_VIRT_TO_BUS=y | 235 | CONFIG_VIRT_TO_BUS=y |
| 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 |
| 231 | # CONFIG_PM is not set | 239 | # CONFIG_PM is not set |
| @@ -250,6 +258,7 @@ CONFIG_PCI_LEGACY=y | |||
| 250 | # CONFIG_PCI_DEBUG is not set | 258 | # CONFIG_PCI_DEBUG is not set |
| 251 | # CONFIG_PCCARD is not set | 259 | # CONFIG_PCCARD is not set |
| 252 | # CONFIG_HOTPLUG_PCI is not set | 260 | # CONFIG_HOTPLUG_PCI is not set |
| 261 | # CONFIG_HAS_RAPIDIO is not set | ||
| 253 | 262 | ||
| 254 | # | 263 | # |
| 255 | # Advanced setup | 264 | # Advanced setup |
| @@ -259,11 +268,12 @@ CONFIG_PCI_LEGACY=y | |||
| 259 | # | 268 | # |
| 260 | # Default settings for advanced configuration options are used | 269 | # Default settings for advanced configuration options are used |
| 261 | # | 270 | # |
| 262 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 263 | CONFIG_LOWMEM_SIZE=0x30000000 | 271 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 272 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 264 | CONFIG_KERNEL_START=0xc0000000 | 273 | CONFIG_KERNEL_START=0xc0000000 |
| 274 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 275 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
| 265 | CONFIG_TASK_SIZE=0xc0000000 | 276 | CONFIG_TASK_SIZE=0xc0000000 |
| 266 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 267 | 277 | ||
| 268 | # | 278 | # |
| 269 | # Networking | 279 | # Networking |
| @@ -334,8 +344,10 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=y | |||
| 334 | CONFIG_INET6_XFRM_MODE_BEET=y | 344 | CONFIG_INET6_XFRM_MODE_BEET=y |
| 335 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 345 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set |
| 336 | CONFIG_IPV6_SIT=y | 346 | CONFIG_IPV6_SIT=y |
| 347 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
| 337 | # CONFIG_IPV6_TUNNEL is not set | 348 | # CONFIG_IPV6_TUNNEL is not set |
| 338 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | 349 | # CONFIG_IPV6_MULTIPLE_TABLES is not set |
| 350 | # CONFIG_IPV6_MROUTE is not set | ||
| 339 | # CONFIG_NETWORK_SECMARK is not set | 351 | # CONFIG_NETWORK_SECMARK is not set |
| 340 | # CONFIG_NETFILTER is not set | 352 | # CONFIG_NETFILTER is not set |
| 341 | # CONFIG_IP_DCCP is not set | 353 | # CONFIG_IP_DCCP is not set |
| @@ -397,6 +409,7 @@ CONFIG_FW_LOADER=y | |||
| 397 | # CONFIG_CONNECTOR is not set | 409 | # CONFIG_CONNECTOR is not set |
| 398 | # CONFIG_MTD is not set | 410 | # CONFIG_MTD is not set |
| 399 | CONFIG_OF_DEVICE=y | 411 | CONFIG_OF_DEVICE=y |
| 412 | CONFIG_OF_I2C=y | ||
| 400 | # CONFIG_PARPORT is not set | 413 | # CONFIG_PARPORT is not set |
| 401 | CONFIG_BLK_DEV=y | 414 | CONFIG_BLK_DEV=y |
| 402 | # CONFIG_BLK_DEV_FD is not set | 415 | # CONFIG_BLK_DEV_FD is not set |
| @@ -503,7 +516,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 503 | # CONFIG_SCSI_SRP is not set | 516 | # CONFIG_SCSI_SRP is not set |
| 504 | CONFIG_ATA=y | 517 | CONFIG_ATA=y |
| 505 | # CONFIG_ATA_NONSTANDARD is not set | 518 | # CONFIG_ATA_NONSTANDARD is not set |
| 519 | CONFIG_SATA_PMP=y | ||
| 506 | CONFIG_SATA_AHCI=y | 520 | CONFIG_SATA_AHCI=y |
| 521 | # CONFIG_SATA_SIL24 is not set | ||
| 522 | CONFIG_SATA_FSL=y | ||
| 523 | CONFIG_ATA_SFF=y | ||
| 507 | # CONFIG_SATA_SVW is not set | 524 | # CONFIG_SATA_SVW is not set |
| 508 | # CONFIG_ATA_PIIX is not set | 525 | # CONFIG_ATA_PIIX is not set |
| 509 | # CONFIG_SATA_MV is not set | 526 | # CONFIG_SATA_MV is not set |
| @@ -513,13 +530,11 @@ CONFIG_SATA_AHCI=y | |||
| 513 | # CONFIG_SATA_PROMISE is not set | 530 | # CONFIG_SATA_PROMISE is not set |
| 514 | # CONFIG_SATA_SX4 is not set | 531 | # CONFIG_SATA_SX4 is not set |
| 515 | # CONFIG_SATA_SIL is not set | 532 | # CONFIG_SATA_SIL is not set |
| 516 | # CONFIG_SATA_SIL24 is not set | ||
| 517 | # CONFIG_SATA_SIS is not set | 533 | # CONFIG_SATA_SIS is not set |
| 518 | # CONFIG_SATA_ULI is not set | 534 | # CONFIG_SATA_ULI is not set |
| 519 | # CONFIG_SATA_VIA is not set | 535 | # CONFIG_SATA_VIA is not set |
| 520 | # CONFIG_SATA_VITESSE is not set | 536 | # CONFIG_SATA_VITESSE is not set |
| 521 | # CONFIG_SATA_INIC162X is not set | 537 | # CONFIG_SATA_INIC162X is not set |
| 522 | # CONFIG_SATA_FSL is not set | ||
| 523 | CONFIG_PATA_ALI=y | 538 | CONFIG_PATA_ALI=y |
| 524 | # CONFIG_PATA_AMD is not set | 539 | # CONFIG_PATA_AMD is not set |
| 525 | # CONFIG_PATA_ARTOP is not set | 540 | # CONFIG_PATA_ARTOP is not set |
| @@ -559,6 +574,7 @@ CONFIG_PATA_ALI=y | |||
| 559 | # CONFIG_PATA_VIA is not set | 574 | # CONFIG_PATA_VIA is not set |
| 560 | # CONFIG_PATA_WINBOND is not set | 575 | # CONFIG_PATA_WINBOND is not set |
| 561 | # CONFIG_PATA_PLATFORM is not set | 576 | # CONFIG_PATA_PLATFORM is not set |
| 577 | # CONFIG_PATA_SCH is not set | ||
| 562 | # CONFIG_MD is not set | 578 | # CONFIG_MD is not set |
| 563 | # CONFIG_FUSION is not set | 579 | # CONFIG_FUSION is not set |
| 564 | 580 | ||
| @@ -625,7 +641,6 @@ CONFIG_NETDEV_1000=y | |||
| 625 | # CONFIG_SIS190 is not set | 641 | # CONFIG_SIS190 is not set |
| 626 | # CONFIG_SKGE is not set | 642 | # CONFIG_SKGE is not set |
| 627 | # CONFIG_SKY2 is not set | 643 | # CONFIG_SKY2 is not set |
| 628 | # CONFIG_SK98LIN is not set | ||
| 629 | # CONFIG_VIA_VELOCITY is not set | 644 | # CONFIG_VIA_VELOCITY is not set |
| 630 | # CONFIG_TIGON3 is not set | 645 | # CONFIG_TIGON3 is not set |
| 631 | # CONFIG_BNX2 is not set | 646 | # CONFIG_BNX2 is not set |
| @@ -646,6 +661,7 @@ CONFIG_NETDEV_10000=y | |||
| 646 | # CONFIG_MLX4_CORE is not set | 661 | # CONFIG_MLX4_CORE is not set |
| 647 | # CONFIG_TEHUTI is not set | 662 | # CONFIG_TEHUTI is not set |
| 648 | # CONFIG_BNX2X is not set | 663 | # CONFIG_BNX2X is not set |
| 664 | # CONFIG_SFC is not set | ||
| 649 | # CONFIG_TR is not set | 665 | # CONFIG_TR is not set |
| 650 | 666 | ||
| 651 | # | 667 | # |
| @@ -653,6 +669,7 @@ CONFIG_NETDEV_10000=y | |||
| 653 | # | 669 | # |
| 654 | # CONFIG_WLAN_PRE80211 is not set | 670 | # CONFIG_WLAN_PRE80211 is not set |
| 655 | # CONFIG_WLAN_80211 is not set | 671 | # CONFIG_WLAN_80211 is not set |
| 672 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 656 | 673 | ||
| 657 | # | 674 | # |
| 658 | # USB Network Adapters | 675 | # USB Network Adapters |
| @@ -717,6 +734,7 @@ CONFIG_VT=y | |||
| 717 | CONFIG_VT_CONSOLE=y | 734 | CONFIG_VT_CONSOLE=y |
| 718 | CONFIG_HW_CONSOLE=y | 735 | CONFIG_HW_CONSOLE=y |
| 719 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 736 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 737 | CONFIG_DEVKMEM=y | ||
| 720 | # CONFIG_SERIAL_NONSTANDARD is not set | 738 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 721 | # CONFIG_NOZOMI is not set | 739 | # CONFIG_NOZOMI is not set |
| 722 | 740 | ||
| @@ -750,7 +768,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 750 | # CONFIG_IPMI_HANDLER is not set | 768 | # CONFIG_IPMI_HANDLER is not set |
| 751 | # CONFIG_HW_RANDOM is not set | 769 | # CONFIG_HW_RANDOM is not set |
| 752 | CONFIG_NVRAM=y | 770 | CONFIG_NVRAM=y |
| 753 | # CONFIG_GEN_RTC is not set | ||
| 754 | # CONFIG_R3964 is not set | 771 | # CONFIG_R3964 is not set |
| 755 | # CONFIG_APPLICOM is not set | 772 | # CONFIG_APPLICOM is not set |
| 756 | # CONFIG_RAW_DRIVER is not set | 773 | # CONFIG_RAW_DRIVER is not set |
| @@ -761,13 +778,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 761 | # CONFIG_I2C_CHARDEV is not set | 778 | # CONFIG_I2C_CHARDEV is not set |
| 762 | 779 | ||
| 763 | # | 780 | # |
| 764 | # I2C Algorithms | ||
| 765 | # | ||
| 766 | # CONFIG_I2C_ALGOBIT is not set | ||
| 767 | # CONFIG_I2C_ALGOPCF is not set | ||
| 768 | # CONFIG_I2C_ALGOPCA is not set | ||
| 769 | |||
| 770 | # | ||
| 771 | # I2C Hardware Bus support | 781 | # I2C Hardware Bus support |
| 772 | # | 782 | # |
| 773 | # CONFIG_I2C_ALI1535 is not set | 783 | # CONFIG_I2C_ALI1535 is not set |
| @@ -794,6 +804,7 @@ CONFIG_I2C_MPC=y | |||
| 794 | # CONFIG_I2C_VIA is not set | 804 | # CONFIG_I2C_VIA is not set |
| 795 | # CONFIG_I2C_VIAPRO is not set | 805 | # CONFIG_I2C_VIAPRO is not set |
| 796 | # CONFIG_I2C_VOODOO3 is not set | 806 | # CONFIG_I2C_VOODOO3 is not set |
| 807 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 797 | 808 | ||
| 798 | # | 809 | # |
| 799 | # Miscellaneous I2C Chip support | 810 | # Miscellaneous I2C Chip support |
| @@ -803,19 +814,13 @@ CONFIG_SENSORS_EEPROM=y | |||
| 803 | # CONFIG_SENSORS_PCF8574 is not set | 814 | # CONFIG_SENSORS_PCF8574 is not set |
| 804 | # CONFIG_PCF8575 is not set | 815 | # CONFIG_PCF8575 is not set |
| 805 | # CONFIG_SENSORS_PCF8591 is not set | 816 | # CONFIG_SENSORS_PCF8591 is not set |
| 806 | # CONFIG_TPS65010 is not set | ||
| 807 | # CONFIG_SENSORS_MAX6875 is not set | 817 | # CONFIG_SENSORS_MAX6875 is not set |
| 808 | # CONFIG_SENSORS_TSL2550 is not set | 818 | # CONFIG_SENSORS_TSL2550 is not set |
| 809 | # CONFIG_I2C_DEBUG_CORE is not set | 819 | # CONFIG_I2C_DEBUG_CORE is not set |
| 810 | # CONFIG_I2C_DEBUG_ALGO is not set | 820 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 811 | # CONFIG_I2C_DEBUG_BUS is not set | 821 | # CONFIG_I2C_DEBUG_BUS is not set |
| 812 | # CONFIG_I2C_DEBUG_CHIP is not set | 822 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 813 | |||
| 814 | # | ||
| 815 | # SPI support | ||
| 816 | # | ||
| 817 | # CONFIG_SPI is not set | 823 | # CONFIG_SPI is not set |
| 818 | # CONFIG_SPI_MASTER is not set | ||
| 819 | # CONFIG_W1 is not set | 824 | # CONFIG_W1 is not set |
| 820 | # CONFIG_POWER_SUPPLY is not set | 825 | # CONFIG_POWER_SUPPLY is not set |
| 821 | # CONFIG_HWMON is not set | 826 | # CONFIG_HWMON is not set |
| @@ -832,13 +837,33 @@ CONFIG_SSB_POSSIBLE=y | |||
| 832 | # Multifunction device drivers | 837 | # Multifunction device drivers |
| 833 | # | 838 | # |
| 834 | # CONFIG_MFD_SM501 is not set | 839 | # CONFIG_MFD_SM501 is not set |
| 840 | # CONFIG_HTC_PASIC3 is not set | ||
| 835 | 841 | ||
| 836 | # | 842 | # |
| 837 | # Multimedia devices | 843 | # Multimedia devices |
| 838 | # | 844 | # |
| 845 | |||
| 846 | # | ||
| 847 | # Multimedia core support | ||
| 848 | # | ||
| 839 | # CONFIG_VIDEO_DEV is not set | 849 | # CONFIG_VIDEO_DEV is not set |
| 840 | CONFIG_DVB_CORE=m | 850 | CONFIG_DVB_CORE=m |
| 841 | # CONFIG_DVB_CORE_ATTACH is not set | 851 | CONFIG_VIDEO_MEDIA=m |
| 852 | |||
| 853 | # | ||
| 854 | # Multimedia drivers | ||
| 855 | # | ||
| 856 | # CONFIG_MEDIA_ATTACH is not set | ||
| 857 | CONFIG_MEDIA_TUNER=m | ||
| 858 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | ||
| 859 | CONFIG_MEDIA_TUNER_SIMPLE=m | ||
| 860 | CONFIG_MEDIA_TUNER_TDA8290=m | ||
| 861 | CONFIG_MEDIA_TUNER_TDA9887=m | ||
| 862 | CONFIG_MEDIA_TUNER_TEA5761=m | ||
| 863 | CONFIG_MEDIA_TUNER_TEA5767=m | ||
| 864 | CONFIG_MEDIA_TUNER_MT20XX=m | ||
| 865 | CONFIG_MEDIA_TUNER_XC2028=m | ||
| 866 | CONFIG_MEDIA_TUNER_XC5000=m | ||
| 842 | CONFIG_DVB_CAPTURE_DRIVERS=y | 867 | CONFIG_DVB_CAPTURE_DRIVERS=y |
| 843 | 868 | ||
| 844 | # | 869 | # |
| @@ -881,14 +906,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 881 | # | 906 | # |
| 882 | # DVB-S (satellite) frontends | 907 | # DVB-S (satellite) frontends |
| 883 | # | 908 | # |
| 884 | # CONFIG_DVB_STV0299 is not set | ||
| 885 | # CONFIG_DVB_CX24110 is not set | 909 | # CONFIG_DVB_CX24110 is not set |
| 886 | # CONFIG_DVB_CX24123 is not set | 910 | # CONFIG_DVB_CX24123 is not set |
| 887 | # CONFIG_DVB_TDA8083 is not set | ||
| 888 | # CONFIG_DVB_MT312 is not set | 911 | # CONFIG_DVB_MT312 is not set |
| 889 | # CONFIG_DVB_VES1X93 is not set | ||
| 890 | # CONFIG_DVB_S5H1420 is not set | 912 | # CONFIG_DVB_S5H1420 is not set |
| 913 | # CONFIG_DVB_STV0299 is not set | ||
| 914 | # CONFIG_DVB_TDA8083 is not set | ||
| 891 | # CONFIG_DVB_TDA10086 is not set | 915 | # CONFIG_DVB_TDA10086 is not set |
| 916 | # CONFIG_DVB_VES1X93 is not set | ||
| 917 | # CONFIG_DVB_TUNER_ITD1000 is not set | ||
| 918 | # CONFIG_DVB_TDA826X is not set | ||
| 919 | # CONFIG_DVB_TUA6100 is not set | ||
| 892 | 920 | ||
| 893 | # | 921 | # |
| 894 | # DVB-T (terrestrial) frontends | 922 | # DVB-T (terrestrial) frontends |
| @@ -906,6 +934,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 906 | # CONFIG_DVB_DIB3000MC is not set | 934 | # CONFIG_DVB_DIB3000MC is not set |
| 907 | # CONFIG_DVB_DIB7000M is not set | 935 | # CONFIG_DVB_DIB7000M is not set |
| 908 | # CONFIG_DVB_DIB7000P is not set | 936 | # CONFIG_DVB_DIB7000P is not set |
| 937 | # CONFIG_DVB_TDA10048 is not set | ||
| 909 | 938 | ||
| 910 | # | 939 | # |
| 911 | # DVB-C (cable) frontends | 940 | # DVB-C (cable) frontends |
| @@ -924,27 +953,21 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 924 | # CONFIG_DVB_BCM3510 is not set | 953 | # CONFIG_DVB_BCM3510 is not set |
| 925 | # CONFIG_DVB_LGDT330X is not set | 954 | # CONFIG_DVB_LGDT330X is not set |
| 926 | # CONFIG_DVB_S5H1409 is not set | 955 | # CONFIG_DVB_S5H1409 is not set |
| 956 | # CONFIG_DVB_AU8522 is not set | ||
| 957 | # CONFIG_DVB_S5H1411 is not set | ||
| 927 | 958 | ||
| 928 | # | 959 | # |
| 929 | # Tuners/PLL support | 960 | # Digital terrestrial only tuners/PLL |
| 930 | # | 961 | # |
| 931 | # CONFIG_DVB_PLL is not set | 962 | # CONFIG_DVB_PLL is not set |
| 932 | # CONFIG_DVB_TDA826X is not set | ||
| 933 | # CONFIG_DVB_TDA827X is not set | ||
| 934 | # CONFIG_DVB_TDA18271 is not set | ||
| 935 | # CONFIG_DVB_TUNER_QT1010 is not set | ||
| 936 | # CONFIG_DVB_TUNER_MT2060 is not set | ||
| 937 | # CONFIG_DVB_TUNER_MT2266 is not set | ||
| 938 | # CONFIG_DVB_TUNER_MT2131 is not set | ||
| 939 | # CONFIG_DVB_TUNER_DIB0070 is not set | 963 | # CONFIG_DVB_TUNER_DIB0070 is not set |
| 940 | # CONFIG_DVB_TUNER_XC5000 is not set | ||
| 941 | 964 | ||
| 942 | # | 965 | # |
| 943 | # Miscellaneous devices | 966 | # SEC control devices for DVB-S |
| 944 | # | 967 | # |
| 945 | # CONFIG_DVB_LNBP21 is not set | 968 | # CONFIG_DVB_LNBP21 is not set |
| 969 | # CONFIG_DVB_ISL6405 is not set | ||
| 946 | # CONFIG_DVB_ISL6421 is not set | 970 | # CONFIG_DVB_ISL6421 is not set |
| 947 | # CONFIG_DVB_TUA6100 is not set | ||
| 948 | CONFIG_DAB=y | 971 | CONFIG_DAB=y |
| 949 | # CONFIG_USB_DABUSB is not set | 972 | # CONFIG_USB_DABUSB is not set |
| 950 | 973 | ||
| @@ -1011,6 +1034,7 @@ CONFIG_SND_AC97_CODEC=y | |||
| 1011 | # CONFIG_SND_AU8810 is not set | 1034 | # CONFIG_SND_AU8810 is not set |
| 1012 | # CONFIG_SND_AU8820 is not set | 1035 | # CONFIG_SND_AU8820 is not set |
| 1013 | # CONFIG_SND_AU8830 is not set | 1036 | # CONFIG_SND_AU8830 is not set |
| 1037 | # CONFIG_SND_AW2 is not set | ||
| 1014 | # CONFIG_SND_AZT3328 is not set | 1038 | # CONFIG_SND_AZT3328 is not set |
| 1015 | # CONFIG_SND_BT87X is not set | 1039 | # CONFIG_SND_BT87X is not set |
| 1016 | # CONFIG_SND_CA0106 is not set | 1040 | # CONFIG_SND_CA0106 is not set |
| @@ -1085,11 +1109,11 @@ CONFIG_SND_INTEL8X0=y | |||
| 1085 | # CONFIG_SND_SOC is not set | 1109 | # CONFIG_SND_SOC is not set |
| 1086 | 1110 | ||
| 1087 | # | 1111 | # |
| 1088 | # SoC Audio support for SuperH | 1112 | # ALSA SoC audio for Freescale SOCs |
| 1089 | # | 1113 | # |
| 1090 | 1114 | ||
| 1091 | # | 1115 | # |
| 1092 | # ALSA SoC audio for Freescale SOCs | 1116 | # SoC Audio for the Texas Instruments OMAP |
| 1093 | # | 1117 | # |
| 1094 | 1118 | ||
| 1095 | # | 1119 | # |
| @@ -1124,16 +1148,20 @@ CONFIG_USB_DEVICEFS=y | |||
| 1124 | CONFIG_USB_DEVICE_CLASS=y | 1148 | CONFIG_USB_DEVICE_CLASS=y |
| 1125 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1149 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1126 | # CONFIG_USB_OTG is not set | 1150 | # CONFIG_USB_OTG is not set |
| 1151 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 1152 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 1127 | 1153 | ||
| 1128 | # | 1154 | # |
| 1129 | # USB Host Controller Drivers | 1155 | # USB Host Controller Drivers |
| 1130 | # | 1156 | # |
| 1157 | # CONFIG_USB_C67X00_HCD is not set | ||
| 1131 | CONFIG_USB_EHCI_HCD=y | 1158 | CONFIG_USB_EHCI_HCD=y |
| 1132 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1159 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 1133 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1160 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1134 | # CONFIG_USB_EHCI_FSL is not set | 1161 | CONFIG_USB_EHCI_FSL=y |
| 1135 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1162 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 1136 | # CONFIG_USB_ISP116X_HCD is not set | 1163 | # CONFIG_USB_ISP116X_HCD is not set |
| 1164 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 1137 | CONFIG_USB_OHCI_HCD=y | 1165 | CONFIG_USB_OHCI_HCD=y |
| 1138 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1166 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
| 1139 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | 1167 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y |
| @@ -1151,6 +1179,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1151 | # | 1179 | # |
| 1152 | # CONFIG_USB_ACM is not set | 1180 | # CONFIG_USB_ACM is not set |
| 1153 | # CONFIG_USB_PRINTER is not set | 1181 | # CONFIG_USB_PRINTER is not set |
| 1182 | # CONFIG_USB_WDM is not set | ||
| 1154 | 1183 | ||
| 1155 | # | 1184 | # |
| 1156 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1185 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1170,7 +1199,9 @@ CONFIG_USB_STORAGE=y | |||
| 1170 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1199 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 1171 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 1200 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 1172 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1201 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1202 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
| 1173 | # CONFIG_USB_STORAGE_KARMA is not set | 1203 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1204 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 1174 | # CONFIG_USB_LIBUSUAL is not set | 1205 | # CONFIG_USB_LIBUSUAL is not set |
| 1175 | 1206 | ||
| 1176 | # | 1207 | # |
| @@ -1208,12 +1239,21 @@ CONFIG_USB_MON=y | |||
| 1208 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1239 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1209 | # CONFIG_USB_IOWARRIOR is not set | 1240 | # CONFIG_USB_IOWARRIOR is not set |
| 1210 | # CONFIG_USB_TEST is not set | 1241 | # CONFIG_USB_TEST is not set |
| 1242 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1211 | # CONFIG_USB_GADGET is not set | 1243 | # CONFIG_USB_GADGET is not set |
| 1212 | # CONFIG_MMC is not set | 1244 | # CONFIG_MMC is not set |
| 1213 | # CONFIG_MEMSTICK is not set | 1245 | # CONFIG_MEMSTICK is not set |
| 1214 | # CONFIG_NEW_LEDS is not set | 1246 | # CONFIG_NEW_LEDS is not set |
| 1247 | # CONFIG_ACCESSIBILITY is not set | ||
| 1215 | # CONFIG_INFINIBAND is not set | 1248 | # CONFIG_INFINIBAND is not set |
| 1216 | # CONFIG_EDAC is not set | 1249 | CONFIG_EDAC=y |
| 1250 | |||
| 1251 | # | ||
| 1252 | # Reporting subsystems | ||
| 1253 | # | ||
| 1254 | # CONFIG_EDAC_DEBUG is not set | ||
| 1255 | CONFIG_EDAC_MM_EDAC=y | ||
| 1256 | CONFIG_EDAC_MPC85XX=y | ||
| 1217 | CONFIG_RTC_LIB=y | 1257 | CONFIG_RTC_LIB=y |
| 1218 | CONFIG_RTC_CLASS=y | 1258 | CONFIG_RTC_CLASS=y |
| 1219 | CONFIG_RTC_HCTOSYS=y | 1259 | CONFIG_RTC_HCTOSYS=y |
| @@ -1263,11 +1303,19 @@ CONFIG_RTC_DRV_CMOS=y | |||
| 1263 | # | 1303 | # |
| 1264 | # on-CPU RTC drivers | 1304 | # on-CPU RTC drivers |
| 1265 | # | 1305 | # |
| 1266 | # CONFIG_DMADEVICES is not set | 1306 | # CONFIG_RTC_DRV_PPC is not set |
| 1307 | CONFIG_DMADEVICES=y | ||
| 1267 | 1308 | ||
| 1268 | # | 1309 | # |
| 1269 | # Userspace I/O | 1310 | # DMA Devices |
| 1270 | # | 1311 | # |
| 1312 | CONFIG_FSL_DMA=y | ||
| 1313 | CONFIG_DMA_ENGINE=y | ||
| 1314 | |||
| 1315 | # | ||
| 1316 | # DMA Clients | ||
| 1317 | # | ||
| 1318 | # CONFIG_NET_DMA is not set | ||
| 1271 | # CONFIG_UIO is not set | 1319 | # CONFIG_UIO is not set |
| 1272 | 1320 | ||
| 1273 | # | 1321 | # |
| @@ -1287,7 +1335,6 @@ CONFIG_FS_MBCACHE=y | |||
| 1287 | # CONFIG_JFS_FS is not set | 1335 | # CONFIG_JFS_FS is not set |
| 1288 | # CONFIG_FS_POSIX_ACL is not set | 1336 | # CONFIG_FS_POSIX_ACL is not set |
| 1289 | # CONFIG_XFS_FS is not set | 1337 | # CONFIG_XFS_FS is not set |
| 1290 | # CONFIG_GFS2_FS is not set | ||
| 1291 | # CONFIG_OCFS2_FS is not set | 1338 | # CONFIG_OCFS2_FS is not set |
| 1292 | CONFIG_DNOTIFY=y | 1339 | CONFIG_DNOTIFY=y |
| 1293 | CONFIG_INOTIFY=y | 1340 | CONFIG_INOTIFY=y |
| @@ -1357,10 +1404,9 @@ CONFIG_NFS_FS=y | |||
| 1357 | CONFIG_NFS_V3=y | 1404 | CONFIG_NFS_V3=y |
| 1358 | # CONFIG_NFS_V3_ACL is not set | 1405 | # CONFIG_NFS_V3_ACL is not set |
| 1359 | CONFIG_NFS_V4=y | 1406 | CONFIG_NFS_V4=y |
| 1360 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1361 | CONFIG_NFSD=y | 1407 | CONFIG_NFSD=y |
| 1362 | # CONFIG_NFSD_V3 is not set | 1408 | # CONFIG_NFSD_V3 is not set |
| 1363 | CONFIG_NFSD_TCP=y | 1409 | # CONFIG_NFSD_V4 is not set |
| 1364 | CONFIG_ROOT_NFS=y | 1410 | CONFIG_ROOT_NFS=y |
| 1365 | CONFIG_LOCKD=y | 1411 | CONFIG_LOCKD=y |
| 1366 | CONFIG_LOCKD_V4=y | 1412 | CONFIG_LOCKD_V4=y |
| @@ -1444,9 +1490,10 @@ CONFIG_NLS_UTF8=m | |||
| 1444 | # Library routines | 1490 | # Library routines |
| 1445 | # | 1491 | # |
| 1446 | CONFIG_BITREVERSE=y | 1492 | CONFIG_BITREVERSE=y |
| 1493 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1447 | # CONFIG_CRC_CCITT is not set | 1494 | # CONFIG_CRC_CCITT is not set |
| 1448 | # CONFIG_CRC16 is not set | 1495 | # CONFIG_CRC16 is not set |
| 1449 | # CONFIG_CRC_ITU_T is not set | 1496 | CONFIG_CRC_ITU_T=m |
| 1450 | CONFIG_CRC32=y | 1497 | CONFIG_CRC32=y |
| 1451 | # CONFIG_CRC7 is not set | 1498 | # CONFIG_CRC7 is not set |
| 1452 | CONFIG_LIBCRC32C=m | 1499 | CONFIG_LIBCRC32C=m |
| @@ -1455,6 +1502,7 @@ CONFIG_PLIST=y | |||
| 1455 | CONFIG_HAS_IOMEM=y | 1502 | CONFIG_HAS_IOMEM=y |
| 1456 | CONFIG_HAS_IOPORT=y | 1503 | CONFIG_HAS_IOPORT=y |
| 1457 | CONFIG_HAS_DMA=y | 1504 | CONFIG_HAS_DMA=y |
| 1505 | CONFIG_HAVE_LMB=y | ||
| 1458 | 1506 | ||
| 1459 | # | 1507 | # |
| 1460 | # Kernel hacking | 1508 | # Kernel hacking |
| @@ -1462,6 +1510,7 @@ CONFIG_HAS_DMA=y | |||
| 1462 | # CONFIG_PRINTK_TIME is not set | 1510 | # CONFIG_PRINTK_TIME is not set |
| 1463 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1511 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1464 | CONFIG_ENABLE_MUST_CHECK=y | 1512 | CONFIG_ENABLE_MUST_CHECK=y |
| 1513 | CONFIG_FRAME_WARN=1024 | ||
| 1465 | # CONFIG_MAGIC_SYSRQ is not set | 1514 | # CONFIG_MAGIC_SYSRQ is not set |
| 1466 | # CONFIG_UNUSED_SYMBOLS is not set | 1515 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1467 | # CONFIG_DEBUG_FS is not set | 1516 | # CONFIG_DEBUG_FS is not set |
| @@ -1472,6 +1521,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1472 | CONFIG_SCHED_DEBUG=y | 1521 | CONFIG_SCHED_DEBUG=y |
| 1473 | # CONFIG_SCHEDSTATS is not set | 1522 | # CONFIG_SCHEDSTATS is not set |
| 1474 | # CONFIG_TIMER_STATS is not set | 1523 | # CONFIG_TIMER_STATS is not set |
| 1524 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1475 | # CONFIG_SLUB_DEBUG_ON is not set | 1525 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1476 | # CONFIG_SLUB_STATS is not set | 1526 | # CONFIG_SLUB_STATS is not set |
| 1477 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1527 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -1485,6 +1535,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1485 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1535 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1486 | CONFIG_DEBUG_INFO=y | 1536 | CONFIG_DEBUG_INFO=y |
| 1487 | # CONFIG_DEBUG_VM is not set | 1537 | # CONFIG_DEBUG_VM is not set |
| 1538 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1488 | # CONFIG_DEBUG_LIST is not set | 1539 | # CONFIG_DEBUG_LIST is not set |
| 1489 | # CONFIG_DEBUG_SG is not set | 1540 | # CONFIG_DEBUG_SG is not set |
| 1490 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1541 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1497,6 +1548,7 @@ CONFIG_DEBUG_INFO=y | |||
| 1497 | # CONFIG_DEBUG_PAGEALLOC is not set | 1548 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1498 | # CONFIG_DEBUGGER is not set | 1549 | # CONFIG_DEBUGGER is not set |
| 1499 | # CONFIG_KGDB_CONSOLE is not set | 1550 | # CONFIG_KGDB_CONSOLE is not set |
| 1551 | # CONFIG_IRQSTACKS is not set | ||
| 1500 | # CONFIG_BDI_SWITCH is not set | 1552 | # CONFIG_BDI_SWITCH is not set |
| 1501 | # CONFIG_PPC_EARLY_DEBUG is not set | 1553 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1502 | 1554 | ||
| @@ -1507,53 +1559,83 @@ CONFIG_DEBUG_INFO=y | |||
| 1507 | # CONFIG_SECURITY is not set | 1559 | # CONFIG_SECURITY is not set |
| 1508 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1560 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1509 | CONFIG_CRYPTO=y | 1561 | CONFIG_CRYPTO=y |
| 1562 | |||
| 1563 | # | ||
| 1564 | # Crypto core or helper | ||
| 1565 | # | ||
| 1510 | CONFIG_CRYPTO_ALGAPI=y | 1566 | CONFIG_CRYPTO_ALGAPI=y |
| 1511 | CONFIG_CRYPTO_BLKCIPHER=y | 1567 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1512 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1513 | CONFIG_CRYPTO_HASH=y | 1568 | CONFIG_CRYPTO_HASH=y |
| 1514 | CONFIG_CRYPTO_MANAGER=y | 1569 | CONFIG_CRYPTO_MANAGER=y |
| 1570 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1571 | # CONFIG_CRYPTO_NULL is not set | ||
| 1572 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1573 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1574 | # CONFIG_CRYPTO_TEST is not set | ||
| 1575 | |||
| 1576 | # | ||
| 1577 | # Authenticated Encryption with Associated Data | ||
| 1578 | # | ||
| 1579 | # CONFIG_CRYPTO_CCM is not set | ||
| 1580 | # CONFIG_CRYPTO_GCM is not set | ||
| 1581 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1582 | |||
| 1583 | # | ||
| 1584 | # Block modes | ||
| 1585 | # | ||
| 1586 | CONFIG_CRYPTO_CBC=y | ||
| 1587 | # CONFIG_CRYPTO_CTR is not set | ||
| 1588 | # CONFIG_CRYPTO_CTS is not set | ||
| 1589 | # CONFIG_CRYPTO_ECB is not set | ||
| 1590 | # CONFIG_CRYPTO_LRW is not set | ||
| 1591 | CONFIG_CRYPTO_PCBC=m | ||
| 1592 | # CONFIG_CRYPTO_XTS is not set | ||
| 1593 | |||
| 1594 | # | ||
| 1595 | # Hash modes | ||
| 1596 | # | ||
| 1515 | CONFIG_CRYPTO_HMAC=y | 1597 | CONFIG_CRYPTO_HMAC=y |
| 1516 | # CONFIG_CRYPTO_XCBC is not set | 1598 | # CONFIG_CRYPTO_XCBC is not set |
| 1517 | # CONFIG_CRYPTO_NULL is not set | 1599 | |
| 1600 | # | ||
| 1601 | # Digest | ||
| 1602 | # | ||
| 1603 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1518 | # CONFIG_CRYPTO_MD4 is not set | 1604 | # CONFIG_CRYPTO_MD4 is not set |
| 1519 | CONFIG_CRYPTO_MD5=y | 1605 | CONFIG_CRYPTO_MD5=y |
| 1606 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1520 | CONFIG_CRYPTO_SHA1=m | 1607 | CONFIG_CRYPTO_SHA1=m |
| 1521 | # CONFIG_CRYPTO_SHA256 is not set | 1608 | # CONFIG_CRYPTO_SHA256 is not set |
| 1522 | # CONFIG_CRYPTO_SHA512 is not set | 1609 | # CONFIG_CRYPTO_SHA512 is not set |
| 1523 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1524 | # CONFIG_CRYPTO_TGR192 is not set | 1610 | # CONFIG_CRYPTO_TGR192 is not set |
| 1525 | # CONFIG_CRYPTO_GF128MUL is not set | 1611 | # CONFIG_CRYPTO_WP512 is not set |
| 1526 | # CONFIG_CRYPTO_ECB is not set | 1612 | |
| 1527 | CONFIG_CRYPTO_CBC=y | 1613 | # |
| 1528 | CONFIG_CRYPTO_PCBC=m | 1614 | # Ciphers |
| 1529 | # CONFIG_CRYPTO_LRW is not set | 1615 | # |
| 1530 | # CONFIG_CRYPTO_XTS is not set | ||
| 1531 | # CONFIG_CRYPTO_CTR is not set | ||
| 1532 | # CONFIG_CRYPTO_GCM is not set | ||
| 1533 | # CONFIG_CRYPTO_CCM is not set | ||
| 1534 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1535 | CONFIG_CRYPTO_DES=y | ||
| 1536 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1537 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1538 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1539 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1540 | # CONFIG_CRYPTO_AES is not set | 1616 | # CONFIG_CRYPTO_AES is not set |
| 1617 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1618 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1619 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1620 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1541 | # CONFIG_CRYPTO_CAST5 is not set | 1621 | # CONFIG_CRYPTO_CAST5 is not set |
| 1542 | # CONFIG_CRYPTO_CAST6 is not set | 1622 | # CONFIG_CRYPTO_CAST6 is not set |
| 1543 | # CONFIG_CRYPTO_TEA is not set | 1623 | CONFIG_CRYPTO_DES=y |
| 1544 | # CONFIG_CRYPTO_ARC4 is not set | 1624 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1545 | # CONFIG_CRYPTO_KHAZAD is not set | 1625 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1546 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1547 | # CONFIG_CRYPTO_SEED is not set | ||
| 1548 | # CONFIG_CRYPTO_SALSA20 is not set | 1626 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1627 | # CONFIG_CRYPTO_SEED is not set | ||
| 1628 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1629 | # CONFIG_CRYPTO_TEA is not set | ||
| 1630 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1631 | |||
| 1632 | # | ||
| 1633 | # Compression | ||
| 1634 | # | ||
| 1549 | # CONFIG_CRYPTO_DEFLATE is not set | 1635 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1550 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1551 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1552 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1553 | # CONFIG_CRYPTO_TEST is not set | ||
| 1554 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1555 | # CONFIG_CRYPTO_LZO is not set | 1636 | # CONFIG_CRYPTO_LZO is not set |
| 1556 | CONFIG_CRYPTO_HW=y | 1637 | CONFIG_CRYPTO_HW=y |
| 1557 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1638 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1558 | # CONFIG_PPC_CLOCK is not set | 1639 | # CONFIG_PPC_CLOCK is not set |
| 1559 | CONFIG_PPC_LIB_RHEAP=y | 1640 | CONFIG_PPC_LIB_RHEAP=y |
| 1641 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/mpc8610_hpcd_defconfig b/arch/powerpc/configs/mpc8610_hpcd_defconfig index 7e5b9ce58d89..5612d40d0463 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:33 2008 | 4 | # Mon Jun 9 08:50:24 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -60,9 +62,10 @@ CONFIG_EXPERIMENTAL=y | |||
| 60 | CONFIG_BROKEN_ON_SMP=y | 62 | CONFIG_BROKEN_ON_SMP=y |
| 61 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 63 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
| 62 | CONFIG_LOCALVERSION="" | 64 | CONFIG_LOCALVERSION="" |
| 63 | # CONFIG_LOCALVERSION_AUTO is not set | 65 | CONFIG_LOCALVERSION_AUTO=y |
| 64 | # CONFIG_SWAP is not set | 66 | # CONFIG_SWAP is not set |
| 65 | # CONFIG_SYSVIPC is not set | 67 | CONFIG_SYSVIPC=y |
| 68 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 66 | # CONFIG_POSIX_MQUEUE is not set | 69 | # CONFIG_POSIX_MQUEUE is not set |
| 67 | # CONFIG_BSD_PROCESS_ACCT is not set | 70 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 68 | # CONFIG_TASKSTATS is not set | 71 | # CONFIG_TASKSTATS is not set |
| @@ -86,6 +89,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 86 | CONFIG_SYSCTL=y | 89 | CONFIG_SYSCTL=y |
| 87 | CONFIG_EMBEDDED=y | 90 | CONFIG_EMBEDDED=y |
| 88 | CONFIG_SYSCTL_SYSCALL=y | 91 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 89 | CONFIG_KALLSYMS=y | 93 | CONFIG_KALLSYMS=y |
| 90 | # CONFIG_KALLSYMS_ALL is not set | 94 | # CONFIG_KALLSYMS_ALL is not set |
| 91 | CONFIG_KALLSYMS_EXTRA_PASS=y | 95 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -110,14 +114,22 @@ CONFIG_SLUB=y | |||
| 110 | # CONFIG_PROFILING is not set | 114 | # CONFIG_PROFILING is not set |
| 111 | # CONFIG_MARKERS is not set | 115 | # CONFIG_MARKERS is not set |
| 112 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
| 117 | # CONFIG_KPROBES is not set | ||
| 113 | CONFIG_HAVE_KPROBES=y | 118 | CONFIG_HAVE_KPROBES=y |
| 114 | CONFIG_HAVE_KRETPROBES=y | 119 | CONFIG_HAVE_KRETPROBES=y |
| 120 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 115 | CONFIG_PROC_PAGE_MONITOR=y | 121 | CONFIG_PROC_PAGE_MONITOR=y |
| 116 | CONFIG_SLABINFO=y | 122 | CONFIG_SLABINFO=y |
| 117 | CONFIG_RT_MUTEXES=y | 123 | CONFIG_RT_MUTEXES=y |
| 118 | # CONFIG_TINY_SHMEM is not set | 124 | # CONFIG_TINY_SHMEM is not set |
| 119 | CONFIG_BASE_SMALL=0 | 125 | CONFIG_BASE_SMALL=0 |
| 120 | # CONFIG_MODULES is not set | 126 | CONFIG_MODULES=y |
| 127 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 128 | CONFIG_MODULE_UNLOAD=y | ||
| 129 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 130 | # CONFIG_MODVERSIONS is not set | ||
| 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 132 | CONFIG_KMOD=y | ||
| 121 | CONFIG_BLOCK=y | 133 | CONFIG_BLOCK=y |
| 122 | # CONFIG_LBD is not set | 134 | # CONFIG_LBD is not set |
| 123 | # CONFIG_BLK_DEV_IO_TRACE is not set | 135 | # CONFIG_BLK_DEV_IO_TRACE is not set |
| @@ -151,6 +163,7 @@ CONFIG_PPC_86xx=y | |||
| 151 | # CONFIG_PPC_CELL_NATIVE is not set | 163 | # CONFIG_PPC_CELL_NATIVE is not set |
| 152 | # CONFIG_PQ2ADS is not set | 164 | # CONFIG_PQ2ADS is not set |
| 153 | # CONFIG_MPC8641_HPCN is not set | 165 | # CONFIG_MPC8641_HPCN is not set |
| 166 | # CONFIG_SBC8641D is not set | ||
| 154 | CONFIG_MPC8610_HPCD=y | 167 | CONFIG_MPC8610_HPCD=y |
| 155 | CONFIG_MPC8610=y | 168 | CONFIG_MPC8610=y |
| 156 | # CONFIG_IPIC is not set | 169 | # CONFIG_IPIC is not set |
| @@ -199,11 +212,13 @@ CONFIG_FLATMEM=y | |||
| 199 | CONFIG_FLAT_NODE_MEM_MAP=y | 212 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 200 | # CONFIG_SPARSEMEM_STATIC is not set | 213 | # CONFIG_SPARSEMEM_STATIC is not set |
| 201 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 214 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 215 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 202 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 216 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 203 | # CONFIG_RESOURCES_64BIT is not set | 217 | # CONFIG_RESOURCES_64BIT is not set |
| 204 | CONFIG_ZONE_DMA_FLAG=1 | 218 | CONFIG_ZONE_DMA_FLAG=1 |
| 205 | CONFIG_BOUNCE=y | 219 | CONFIG_BOUNCE=y |
| 206 | CONFIG_VIRT_TO_BUS=y | 220 | CONFIG_VIRT_TO_BUS=y |
| 221 | CONFIG_FORCE_MAX_ZONEORDER=12 | ||
| 207 | CONFIG_PROC_DEVICETREE=y | 222 | CONFIG_PROC_DEVICETREE=y |
| 208 | # CONFIG_CMDLINE_BOOL is not set | 223 | # CONFIG_CMDLINE_BOOL is not set |
| 209 | # CONFIG_PM is not set | 224 | # CONFIG_PM is not set |
| @@ -223,12 +238,14 @@ CONFIG_PCI_DOMAINS=y | |||
| 223 | CONFIG_PCI_SYSCALL=y | 238 | CONFIG_PCI_SYSCALL=y |
| 224 | CONFIG_PCIEPORTBUS=y | 239 | CONFIG_PCIEPORTBUS=y |
| 225 | CONFIG_PCIEAER=y | 240 | CONFIG_PCIEAER=y |
| 241 | # CONFIG_PCIEASPM is not set | ||
| 226 | CONFIG_ARCH_SUPPORTS_MSI=y | 242 | CONFIG_ARCH_SUPPORTS_MSI=y |
| 227 | # CONFIG_PCI_MSI is not set | 243 | # CONFIG_PCI_MSI is not set |
| 228 | CONFIG_PCI_LEGACY=y | 244 | CONFIG_PCI_LEGACY=y |
| 229 | CONFIG_PCI_DEBUG=y | 245 | CONFIG_PCI_DEBUG=y |
| 230 | # CONFIG_PCCARD is not set | 246 | # CONFIG_PCCARD is not set |
| 231 | # CONFIG_HOTPLUG_PCI is not set | 247 | # CONFIG_HOTPLUG_PCI is not set |
| 248 | # CONFIG_HAS_RAPIDIO is not set | ||
| 232 | 249 | ||
| 233 | # | 250 | # |
| 234 | # Advanced setup | 251 | # Advanced setup |
| @@ -238,11 +255,11 @@ CONFIG_PCI_DEBUG=y | |||
| 238 | # | 255 | # |
| 239 | # Default settings for advanced configuration options are used | 256 | # Default settings for advanced configuration options are used |
| 240 | # | 257 | # |
| 241 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 242 | CONFIG_LOWMEM_SIZE=0x30000000 | 258 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 259 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 243 | CONFIG_KERNEL_START=0xc0000000 | 260 | CONFIG_KERNEL_START=0xc0000000 |
| 261 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 244 | CONFIG_TASK_SIZE=0xc0000000 | 262 | CONFIG_TASK_SIZE=0xc0000000 |
| 245 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 246 | 263 | ||
| 247 | # | 264 | # |
| 248 | # Networking | 265 | # Networking |
| @@ -303,8 +320,10 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=y | |||
| 303 | CONFIG_INET6_XFRM_MODE_BEET=y | 320 | CONFIG_INET6_XFRM_MODE_BEET=y |
| 304 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 321 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set |
| 305 | CONFIG_IPV6_SIT=y | 322 | CONFIG_IPV6_SIT=y |
| 323 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
| 306 | # CONFIG_IPV6_TUNNEL is not set | 324 | # CONFIG_IPV6_TUNNEL is not set |
| 307 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | 325 | # CONFIG_IPV6_MULTIPLE_TABLES is not set |
| 326 | # CONFIG_IPV6_MROUTE is not set | ||
| 308 | # CONFIG_NETWORK_SECMARK is not set | 327 | # CONFIG_NETWORK_SECMARK is not set |
| 309 | # CONFIG_NETFILTER is not set | 328 | # CONFIG_NETFILTER is not set |
| 310 | # CONFIG_IP_DCCP is not set | 329 | # CONFIG_IP_DCCP is not set |
| @@ -446,6 +465,7 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
| 446 | # | 465 | # |
| 447 | # CONFIG_MTD_UBI is not set | 466 | # CONFIG_MTD_UBI is not set |
| 448 | CONFIG_OF_DEVICE=y | 467 | CONFIG_OF_DEVICE=y |
| 468 | CONFIG_OF_I2C=y | ||
| 449 | # CONFIG_PARPORT is not set | 469 | # CONFIG_PARPORT is not set |
| 450 | CONFIG_BLK_DEV=y | 470 | CONFIG_BLK_DEV=y |
| 451 | # CONFIG_BLK_DEV_FD is not set | 471 | # CONFIG_BLK_DEV_FD is not set |
| @@ -504,6 +524,7 @@ CONFIG_CHR_DEV_SG=y | |||
| 504 | # CONFIG_SCSI_CONSTANTS is not set | 524 | # CONFIG_SCSI_CONSTANTS is not set |
| 505 | # CONFIG_SCSI_LOGGING is not set | 525 | # CONFIG_SCSI_LOGGING is not set |
| 506 | # CONFIG_SCSI_SCAN_ASYNC is not set | 526 | # CONFIG_SCSI_SCAN_ASYNC is not set |
| 527 | CONFIG_SCSI_WAIT_SCAN=m | ||
| 507 | 528 | ||
| 508 | # | 529 | # |
| 509 | # SCSI Transports | 530 | # SCSI Transports |
| @@ -553,7 +574,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 553 | # CONFIG_SCSI_SRP is not set | 574 | # CONFIG_SCSI_SRP is not set |
| 554 | CONFIG_ATA=y | 575 | CONFIG_ATA=y |
| 555 | # CONFIG_ATA_NONSTANDARD is not set | 576 | # CONFIG_ATA_NONSTANDARD is not set |
| 577 | CONFIG_SATA_PMP=y | ||
| 556 | CONFIG_SATA_AHCI=y | 578 | CONFIG_SATA_AHCI=y |
| 579 | # CONFIG_SATA_SIL24 is not set | ||
| 580 | # CONFIG_SATA_FSL is not set | ||
| 581 | CONFIG_ATA_SFF=y | ||
| 557 | # CONFIG_SATA_SVW is not set | 582 | # CONFIG_SATA_SVW is not set |
| 558 | # CONFIG_ATA_PIIX is not set | 583 | # CONFIG_ATA_PIIX is not set |
| 559 | # CONFIG_SATA_MV is not set | 584 | # CONFIG_SATA_MV is not set |
| @@ -563,13 +588,11 @@ CONFIG_SATA_AHCI=y | |||
| 563 | # CONFIG_SATA_PROMISE is not set | 588 | # CONFIG_SATA_PROMISE is not set |
| 564 | # CONFIG_SATA_SX4 is not set | 589 | # CONFIG_SATA_SX4 is not set |
| 565 | # CONFIG_SATA_SIL is not set | 590 | # CONFIG_SATA_SIL is not set |
| 566 | # CONFIG_SATA_SIL24 is not set | ||
| 567 | # CONFIG_SATA_SIS is not set | 591 | # CONFIG_SATA_SIS is not set |
| 568 | # CONFIG_SATA_ULI is not set | 592 | # CONFIG_SATA_ULI is not set |
| 569 | # CONFIG_SATA_VIA is not set | 593 | # CONFIG_SATA_VIA is not set |
| 570 | # CONFIG_SATA_VITESSE is not set | 594 | # CONFIG_SATA_VITESSE is not set |
| 571 | # CONFIG_SATA_INIC162X is not set | 595 | # CONFIG_SATA_INIC162X is not set |
| 572 | # CONFIG_SATA_FSL is not set | ||
| 573 | CONFIG_PATA_ALI=y | 596 | CONFIG_PATA_ALI=y |
| 574 | # CONFIG_PATA_AMD is not set | 597 | # CONFIG_PATA_AMD is not set |
| 575 | # CONFIG_PATA_ARTOP is not set | 598 | # CONFIG_PATA_ARTOP is not set |
| @@ -609,6 +632,7 @@ CONFIG_PATA_ALI=y | |||
| 609 | # CONFIG_PATA_VIA is not set | 632 | # CONFIG_PATA_VIA is not set |
| 610 | # CONFIG_PATA_WINBOND is not set | 633 | # CONFIG_PATA_WINBOND is not set |
| 611 | # CONFIG_PATA_PLATFORM is not set | 634 | # CONFIG_PATA_PLATFORM is not set |
| 635 | # CONFIG_PATA_SCH is not set | ||
| 612 | # CONFIG_MD is not set | 636 | # CONFIG_MD is not set |
| 613 | # CONFIG_FUSION is not set | 637 | # CONFIG_FUSION is not set |
| 614 | 638 | ||
| @@ -628,25 +652,9 @@ CONFIG_DUMMY=y | |||
| 628 | # CONFIG_TUN is not set | 652 | # CONFIG_TUN is not set |
| 629 | # CONFIG_VETH is not set | 653 | # CONFIG_VETH is not set |
| 630 | # CONFIG_ARCNET is not set | 654 | # CONFIG_ARCNET is not set |
| 631 | CONFIG_PHYLIB=y | 655 | # CONFIG_PHYLIB is not set |
| 632 | |||
| 633 | # | ||
| 634 | # MII PHY device drivers | ||
| 635 | # | ||
| 636 | # CONFIG_MARVELL_PHY is not set | ||
| 637 | # CONFIG_DAVICOM_PHY is not set | ||
| 638 | # CONFIG_QSEMI_PHY is not set | ||
| 639 | # CONFIG_LXT_PHY is not set | ||
| 640 | # CONFIG_CICADA_PHY is not set | ||
| 641 | # CONFIG_VITESSE_PHY is not set | ||
| 642 | # CONFIG_SMSC_PHY is not set | ||
| 643 | # CONFIG_BROADCOM_PHY is not set | ||
| 644 | # CONFIG_ICPLUS_PHY is not set | ||
| 645 | # CONFIG_REALTEK_PHY is not set | ||
| 646 | # CONFIG_FIXED_PHY is not set | ||
| 647 | # CONFIG_MDIO_BITBANG is not set | ||
| 648 | CONFIG_NET_ETHERNET=y | 656 | CONFIG_NET_ETHERNET=y |
| 649 | CONFIG_MII=y | 657 | # CONFIG_MII is not set |
| 650 | # CONFIG_HAPPYMEAL is not set | 658 | # CONFIG_HAPPYMEAL is not set |
| 651 | # CONFIG_SUNGEM is not set | 659 | # CONFIG_SUNGEM is not set |
| 652 | # CONFIG_CASSINI is not set | 660 | # CONFIG_CASSINI is not set |
| @@ -663,64 +671,10 @@ CONFIG_ULI526X=y | |||
| 663 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 671 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 664 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 672 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| 665 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 673 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 666 | CONFIG_NET_PCI=y | 674 | # CONFIG_NET_PCI is not set |
| 667 | # CONFIG_PCNET32 is not set | ||
| 668 | # CONFIG_AMD8111_ETH is not set | ||
| 669 | # CONFIG_ADAPTEC_STARFIRE is not set | ||
| 670 | # CONFIG_B44 is not set | 675 | # CONFIG_B44 is not set |
| 671 | # CONFIG_FORCEDETH is not set | 676 | # CONFIG_NETDEV_1000 is not set |
| 672 | # CONFIG_EEPRO100 is not set | 677 | # CONFIG_NETDEV_10000 is not set |
| 673 | # CONFIG_E100 is not set | ||
| 674 | # CONFIG_FEALNX is not set | ||
| 675 | # CONFIG_NATSEMI is not set | ||
| 676 | # CONFIG_NE2K_PCI is not set | ||
| 677 | # CONFIG_8139CP is not set | ||
| 678 | CONFIG_8139TOO=y | ||
| 679 | CONFIG_8139TOO_PIO=y | ||
| 680 | # CONFIG_8139TOO_TUNE_TWISTER is not set | ||
| 681 | # CONFIG_8139TOO_8129 is not set | ||
| 682 | # CONFIG_8139_OLD_RX_RESET is not set | ||
| 683 | # CONFIG_R6040 is not set | ||
| 684 | # CONFIG_SIS900 is not set | ||
| 685 | # CONFIG_EPIC100 is not set | ||
| 686 | # CONFIG_SUNDANCE is not set | ||
| 687 | # CONFIG_TLAN is not set | ||
| 688 | # CONFIG_VIA_RHINE is not set | ||
| 689 | # CONFIG_SC92031 is not set | ||
| 690 | CONFIG_NETDEV_1000=y | ||
| 691 | # CONFIG_ACENIC is not set | ||
| 692 | # CONFIG_DL2K is not set | ||
| 693 | # CONFIG_E1000 is not set | ||
| 694 | # CONFIG_E1000E is not set | ||
| 695 | # CONFIG_E1000E_ENABLED is not set | ||
| 696 | # CONFIG_IP1000 is not set | ||
| 697 | # CONFIG_IGB is not set | ||
| 698 | # CONFIG_NS83820 is not set | ||
| 699 | # CONFIG_HAMACHI is not set | ||
| 700 | # CONFIG_YELLOWFIN is not set | ||
| 701 | # CONFIG_R8169 is not set | ||
| 702 | # CONFIG_SIS190 is not set | ||
| 703 | # CONFIG_SKGE is not set | ||
| 704 | # CONFIG_SKY2 is not set | ||
| 705 | # CONFIG_SK98LIN is not set | ||
| 706 | # CONFIG_VIA_VELOCITY is not set | ||
| 707 | # CONFIG_TIGON3 is not set | ||
| 708 | # CONFIG_BNX2 is not set | ||
| 709 | # CONFIG_GIANFAR is not set | ||
| 710 | # CONFIG_QLA3XXX is not set | ||
| 711 | # CONFIG_ATL1 is not set | ||
| 712 | CONFIG_NETDEV_10000=y | ||
| 713 | # CONFIG_CHELSIO_T1 is not set | ||
| 714 | # CONFIG_CHELSIO_T3 is not set | ||
| 715 | # CONFIG_IXGBE is not set | ||
| 716 | # CONFIG_IXGB is not set | ||
| 717 | # CONFIG_S2IO is not set | ||
| 718 | # CONFIG_MYRI10GE is not set | ||
| 719 | # CONFIG_NETXEN_NIC is not set | ||
| 720 | # CONFIG_NIU is not set | ||
| 721 | # CONFIG_MLX4_CORE is not set | ||
| 722 | # CONFIG_TEHUTI is not set | ||
| 723 | # CONFIG_BNX2X is not set | ||
| 724 | # CONFIG_TR is not set | 678 | # CONFIG_TR is not set |
| 725 | 679 | ||
| 726 | # | 680 | # |
| @@ -728,6 +682,7 @@ CONFIG_NETDEV_10000=y | |||
| 728 | # | 682 | # |
| 729 | # CONFIG_WLAN_PRE80211 is not set | 683 | # CONFIG_WLAN_PRE80211 is not set |
| 730 | # CONFIG_WLAN_80211 is not set | 684 | # CONFIG_WLAN_80211 is not set |
| 685 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 731 | # CONFIG_WAN is not set | 686 | # CONFIG_WAN is not set |
| 732 | # CONFIG_FDDI is not set | 687 | # CONFIG_FDDI is not set |
| 733 | # CONFIG_HIPPI is not set | 688 | # CONFIG_HIPPI is not set |
| @@ -783,6 +738,7 @@ CONFIG_VT=y | |||
| 783 | CONFIG_VT_CONSOLE=y | 738 | CONFIG_VT_CONSOLE=y |
| 784 | CONFIG_HW_CONSOLE=y | 739 | CONFIG_HW_CONSOLE=y |
| 785 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 740 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 741 | CONFIG_DEVKMEM=y | ||
| 786 | # CONFIG_SERIAL_NONSTANDARD is not set | 742 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 787 | # CONFIG_NOZOMI is not set | 743 | # CONFIG_NOZOMI is not set |
| 788 | 744 | ||
| @@ -824,13 +780,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 824 | # CONFIG_I2C_CHARDEV is not set | 780 | # CONFIG_I2C_CHARDEV is not set |
| 825 | 781 | ||
| 826 | # | 782 | # |
| 827 | # I2C Algorithms | ||
| 828 | # | ||
| 829 | # CONFIG_I2C_ALGOBIT is not set | ||
| 830 | # CONFIG_I2C_ALGOPCF is not set | ||
| 831 | # CONFIG_I2C_ALGOPCA is not set | ||
| 832 | |||
| 833 | # | ||
| 834 | # I2C Hardware Bus support | 783 | # I2C Hardware Bus support |
| 835 | # | 784 | # |
| 836 | # CONFIG_I2C_ALI1535 is not set | 785 | # CONFIG_I2C_ALI1535 is not set |
| @@ -852,9 +801,11 @@ CONFIG_I2C_MPC=y | |||
| 852 | # CONFIG_I2C_SIS630 is not set | 801 | # CONFIG_I2C_SIS630 is not set |
| 853 | # CONFIG_I2C_SIS96X is not set | 802 | # CONFIG_I2C_SIS96X is not set |
| 854 | # CONFIG_I2C_TAOS_EVM is not set | 803 | # CONFIG_I2C_TAOS_EVM is not set |
| 804 | # CONFIG_I2C_STUB is not set | ||
| 855 | # CONFIG_I2C_VIA is not set | 805 | # CONFIG_I2C_VIA is not set |
| 856 | # CONFIG_I2C_VIAPRO is not set | 806 | # CONFIG_I2C_VIAPRO is not set |
| 857 | # CONFIG_I2C_VOODOO3 is not set | 807 | # CONFIG_I2C_VOODOO3 is not set |
| 808 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 858 | 809 | ||
| 859 | # | 810 | # |
| 860 | # Miscellaneous I2C Chip support | 811 | # Miscellaneous I2C Chip support |
| @@ -864,19 +815,13 @@ CONFIG_I2C_MPC=y | |||
| 864 | # CONFIG_SENSORS_PCF8574 is not set | 815 | # CONFIG_SENSORS_PCF8574 is not set |
| 865 | # CONFIG_PCF8575 is not set | 816 | # CONFIG_PCF8575 is not set |
| 866 | # CONFIG_SENSORS_PCF8591 is not set | 817 | # CONFIG_SENSORS_PCF8591 is not set |
| 867 | # CONFIG_TPS65010 is not set | ||
| 868 | # CONFIG_SENSORS_MAX6875 is not set | 818 | # CONFIG_SENSORS_MAX6875 is not set |
| 869 | # CONFIG_SENSORS_TSL2550 is not set | 819 | # CONFIG_SENSORS_TSL2550 is not set |
| 870 | # CONFIG_I2C_DEBUG_CORE is not set | 820 | # CONFIG_I2C_DEBUG_CORE is not set |
| 871 | # CONFIG_I2C_DEBUG_ALGO is not set | 821 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 872 | # CONFIG_I2C_DEBUG_BUS is not set | 822 | # CONFIG_I2C_DEBUG_BUS is not set |
| 873 | # CONFIG_I2C_DEBUG_CHIP is not set | 823 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 874 | |||
| 875 | # | ||
| 876 | # SPI support | ||
| 877 | # | ||
| 878 | # CONFIG_SPI is not set | 824 | # CONFIG_SPI is not set |
| 879 | # CONFIG_SPI_MASTER is not set | ||
| 880 | # CONFIG_W1 is not set | 825 | # CONFIG_W1 is not set |
| 881 | # CONFIG_POWER_SUPPLY is not set | 826 | # CONFIG_POWER_SUPPLY is not set |
| 882 | # CONFIG_HWMON is not set | 827 | # CONFIG_HWMON is not set |
| @@ -893,12 +838,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 893 | # Multifunction device drivers | 838 | # Multifunction device drivers |
| 894 | # | 839 | # |
| 895 | # CONFIG_MFD_SM501 is not set | 840 | # CONFIG_MFD_SM501 is not set |
| 841 | # CONFIG_HTC_PASIC3 is not set | ||
| 896 | 842 | ||
| 897 | # | 843 | # |
| 898 | # Multimedia devices | 844 | # Multimedia devices |
| 899 | # | 845 | # |
| 846 | |||
| 847 | # | ||
| 848 | # Multimedia core support | ||
| 849 | # | ||
| 900 | # CONFIG_VIDEO_DEV is not set | 850 | # CONFIG_VIDEO_DEV is not set |
| 901 | # CONFIG_DVB_CORE is not set | 851 | # CONFIG_DVB_CORE is not set |
| 852 | # CONFIG_VIDEO_MEDIA is not set | ||
| 853 | |||
| 854 | # | ||
| 855 | # Multimedia drivers | ||
| 856 | # | ||
| 902 | CONFIG_DAB=y | 857 | CONFIG_DAB=y |
| 903 | 858 | ||
| 904 | # | 859 | # |
| @@ -908,7 +863,56 @@ CONFIG_DAB=y | |||
| 908 | # CONFIG_DRM is not set | 863 | # CONFIG_DRM is not set |
| 909 | # CONFIG_VGASTATE is not set | 864 | # CONFIG_VGASTATE is not set |
| 910 | CONFIG_VIDEO_OUTPUT_CONTROL=y | 865 | CONFIG_VIDEO_OUTPUT_CONTROL=y |
| 911 | # CONFIG_FB is not set | 866 | CONFIG_FB=y |
| 867 | # CONFIG_FIRMWARE_EDID is not set | ||
| 868 | # CONFIG_FB_DDC is not set | ||
| 869 | CONFIG_FB_CFB_FILLRECT=y | ||
| 870 | CONFIG_FB_CFB_COPYAREA=y | ||
| 871 | CONFIG_FB_CFB_IMAGEBLIT=y | ||
| 872 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | ||
| 873 | # CONFIG_FB_SYS_FILLRECT is not set | ||
| 874 | # CONFIG_FB_SYS_COPYAREA is not set | ||
| 875 | # CONFIG_FB_SYS_IMAGEBLIT is not set | ||
| 876 | # CONFIG_FB_FOREIGN_ENDIAN is not set | ||
| 877 | # CONFIG_FB_SYS_FOPS is not set | ||
| 878 | # CONFIG_FB_SVGALIB is not set | ||
| 879 | # CONFIG_FB_MACMODES is not set | ||
| 880 | # CONFIG_FB_BACKLIGHT is not set | ||
| 881 | # CONFIG_FB_MODE_HELPERS is not set | ||
| 882 | # CONFIG_FB_TILEBLITTING is not set | ||
| 883 | |||
| 884 | # | ||
| 885 | # Frame buffer hardware drivers | ||
| 886 | # | ||
| 887 | # CONFIG_FB_CIRRUS is not set | ||
| 888 | # CONFIG_FB_PM2 is not set | ||
| 889 | # CONFIG_FB_CYBER2000 is not set | ||
| 890 | # CONFIG_FB_OF is not set | ||
| 891 | # CONFIG_FB_CT65550 is not set | ||
| 892 | # CONFIG_FB_ASILIANT is not set | ||
| 893 | # CONFIG_FB_IMSTT is not set | ||
| 894 | # CONFIG_FB_VGA16 is not set | ||
| 895 | # CONFIG_FB_S1D13XXX is not set | ||
| 896 | # CONFIG_FB_NVIDIA is not set | ||
| 897 | # CONFIG_FB_RIVA is not set | ||
| 898 | # CONFIG_FB_MATROX is not set | ||
| 899 | # CONFIG_FB_RADEON is not set | ||
| 900 | # CONFIG_FB_ATY128 is not set | ||
| 901 | # CONFIG_FB_ATY is not set | ||
| 902 | # CONFIG_FB_S3 is not set | ||
| 903 | # CONFIG_FB_SAVAGE is not set | ||
| 904 | # CONFIG_FB_SIS is not set | ||
| 905 | # CONFIG_FB_NEOMAGIC is not set | ||
| 906 | # CONFIG_FB_KYRO is not set | ||
| 907 | # CONFIG_FB_3DFX is not set | ||
| 908 | # CONFIG_FB_VOODOO1 is not set | ||
| 909 | # CONFIG_FB_VT8623 is not set | ||
| 910 | # CONFIG_FB_TRIDENT is not set | ||
| 911 | # CONFIG_FB_ARK is not set | ||
| 912 | # CONFIG_FB_PM3 is not set | ||
| 913 | CONFIG_FB_FSL_DIU=y | ||
| 914 | # CONFIG_FB_IBM_GXT4500 is not set | ||
| 915 | # CONFIG_FB_VIRTUAL is not set | ||
| 912 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 916 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 913 | 917 | ||
| 914 | # | 918 | # |
| @@ -922,6 +926,8 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 922 | CONFIG_VGA_CONSOLE=y | 926 | CONFIG_VGA_CONSOLE=y |
| 923 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | 927 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set |
| 924 | CONFIG_DUMMY_CONSOLE=y | 928 | CONFIG_DUMMY_CONSOLE=y |
| 929 | # CONFIG_FRAMEBUFFER_CONSOLE is not set | ||
| 930 | # CONFIG_LOGO is not set | ||
| 925 | 931 | ||
| 926 | # | 932 | # |
| 927 | # Sound | 933 | # Sound |
| @@ -938,7 +944,7 @@ CONFIG_SND_PCM=y | |||
| 938 | CONFIG_SND_OSSEMUL=y | 944 | CONFIG_SND_OSSEMUL=y |
| 939 | CONFIG_SND_MIXER_OSS=y | 945 | CONFIG_SND_MIXER_OSS=y |
| 940 | CONFIG_SND_PCM_OSS=y | 946 | CONFIG_SND_PCM_OSS=y |
| 941 | # CONFIG_SND_PCM_OSS_PLUGINS is not set | 947 | CONFIG_SND_PCM_OSS_PLUGINS=y |
| 942 | # CONFIG_SND_DYNAMIC_MINORS is not set | 948 | # CONFIG_SND_DYNAMIC_MINORS is not set |
| 943 | # CONFIG_SND_SUPPORT_OLD_API is not set | 949 | # CONFIG_SND_SUPPORT_OLD_API is not set |
| 944 | CONFIG_SND_VERBOSE_PROCFS=y | 950 | CONFIG_SND_VERBOSE_PROCFS=y |
| @@ -965,6 +971,7 @@ CONFIG_SND_VERBOSE_PROCFS=y | |||
| 965 | # CONFIG_SND_AU8810 is not set | 971 | # CONFIG_SND_AU8810 is not set |
| 966 | # CONFIG_SND_AU8820 is not set | 972 | # CONFIG_SND_AU8820 is not set |
| 967 | # CONFIG_SND_AU8830 is not set | 973 | # CONFIG_SND_AU8830 is not set |
| 974 | # CONFIG_SND_AW2 is not set | ||
| 968 | # CONFIG_SND_AZT3328 is not set | 975 | # CONFIG_SND_AZT3328 is not set |
| 969 | # CONFIG_SND_BT87X is not set | 976 | # CONFIG_SND_BT87X is not set |
| 970 | # CONFIG_SND_CA0106 is not set | 977 | # CONFIG_SND_CA0106 is not set |
| @@ -1031,14 +1038,14 @@ CONFIG_SND_VERBOSE_PROCFS=y | |||
| 1031 | CONFIG_SND_SOC=y | 1038 | CONFIG_SND_SOC=y |
| 1032 | 1039 | ||
| 1033 | # | 1040 | # |
| 1034 | # SoC Audio support for SuperH | ||
| 1035 | # | ||
| 1036 | |||
| 1037 | # | ||
| 1038 | # ALSA SoC audio for Freescale SOCs | 1041 | # ALSA SoC audio for Freescale SOCs |
| 1039 | # | 1042 | # |
| 1040 | CONFIG_SND_SOC_MPC8610=y | 1043 | CONFIG_SND_SOC_MPC8610=y |
| 1041 | CONFIG_SND_SOC_MPC8610_HPCD=y | 1044 | CONFIG_SND_SOC_MPC8610_HPCD=y |
| 1045 | |||
| 1046 | # | ||
| 1047 | # SoC Audio for the Texas Instruments OMAP | ||
| 1048 | # | ||
| 1042 | CONFIG_SND_SOC_CS4270=y | 1049 | CONFIG_SND_SOC_CS4270=y |
| 1043 | CONFIG_SND_SOC_CS4270_VD33_ERRATA=y | 1050 | CONFIG_SND_SOC_CS4270_VD33_ERRATA=y |
| 1044 | 1051 | ||
| @@ -1055,6 +1062,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 1055 | CONFIG_USB_ARCH_HAS_OHCI=y | 1062 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 1056 | CONFIG_USB_ARCH_HAS_EHCI=y | 1063 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 1057 | # CONFIG_USB is not set | 1064 | # CONFIG_USB is not set |
| 1065 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 1066 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 1058 | 1067 | ||
| 1059 | # | 1068 | # |
| 1060 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1069 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1063,14 +1072,11 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1063 | # CONFIG_MMC is not set | 1072 | # CONFIG_MMC is not set |
| 1064 | # CONFIG_MEMSTICK is not set | 1073 | # CONFIG_MEMSTICK is not set |
| 1065 | # CONFIG_NEW_LEDS is not set | 1074 | # CONFIG_NEW_LEDS is not set |
| 1075 | # CONFIG_ACCESSIBILITY is not set | ||
| 1066 | # CONFIG_INFINIBAND is not set | 1076 | # CONFIG_INFINIBAND is not set |
| 1067 | # CONFIG_EDAC is not set | 1077 | # CONFIG_EDAC is not set |
| 1068 | # CONFIG_RTC_CLASS is not set | 1078 | # CONFIG_RTC_CLASS is not set |
| 1069 | # CONFIG_DMADEVICES is not set | 1079 | # CONFIG_DMADEVICES is not set |
| 1070 | |||
| 1071 | # | ||
| 1072 | # Userspace I/O | ||
| 1073 | # | ||
| 1074 | # CONFIG_UIO is not set | 1080 | # CONFIG_UIO is not set |
| 1075 | 1081 | ||
| 1076 | # | 1082 | # |
| @@ -1090,7 +1096,6 @@ CONFIG_FS_MBCACHE=y | |||
| 1090 | # CONFIG_JFS_FS is not set | 1096 | # CONFIG_JFS_FS is not set |
| 1091 | # CONFIG_FS_POSIX_ACL is not set | 1097 | # CONFIG_FS_POSIX_ACL is not set |
| 1092 | # CONFIG_XFS_FS is not set | 1098 | # CONFIG_XFS_FS is not set |
| 1093 | # CONFIG_GFS2_FS is not set | ||
| 1094 | # CONFIG_OCFS2_FS is not set | 1099 | # CONFIG_OCFS2_FS is not set |
| 1095 | # CONFIG_DNOTIFY is not set | 1100 | # CONFIG_DNOTIFY is not set |
| 1096 | # CONFIG_INOTIFY is not set | 1101 | # CONFIG_INOTIFY is not set |
| @@ -1134,6 +1139,7 @@ CONFIG_TMPFS=y | |||
| 1134 | # CONFIG_BEFS_FS is not set | 1139 | # CONFIG_BEFS_FS is not set |
| 1135 | # CONFIG_BFS_FS is not set | 1140 | # CONFIG_BFS_FS is not set |
| 1136 | # CONFIG_EFS_FS is not set | 1141 | # CONFIG_EFS_FS is not set |
| 1142 | # CONFIG_JFFS2_FS is not set | ||
| 1137 | # CONFIG_CRAMFS is not set | 1143 | # CONFIG_CRAMFS is not set |
| 1138 | # CONFIG_VXFS_FS is not set | 1144 | # CONFIG_VXFS_FS is not set |
| 1139 | # CONFIG_MINIX_FS is not set | 1145 | # CONFIG_MINIX_FS is not set |
| @@ -1147,10 +1153,9 @@ CONFIG_NFS_FS=y | |||
| 1147 | CONFIG_NFS_V3=y | 1153 | CONFIG_NFS_V3=y |
| 1148 | # CONFIG_NFS_V3_ACL is not set | 1154 | # CONFIG_NFS_V3_ACL is not set |
| 1149 | # CONFIG_NFS_V4 is not set | 1155 | # CONFIG_NFS_V4 is not set |
| 1150 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1151 | CONFIG_NFSD=y | 1156 | CONFIG_NFSD=y |
| 1152 | # CONFIG_NFSD_V3 is not set | 1157 | # CONFIG_NFSD_V3 is not set |
| 1153 | CONFIG_NFSD_TCP=y | 1158 | # CONFIG_NFSD_V4 is not set |
| 1154 | CONFIG_ROOT_NFS=y | 1159 | CONFIG_ROOT_NFS=y |
| 1155 | CONFIG_LOCKD=y | 1160 | CONFIG_LOCKD=y |
| 1156 | CONFIG_LOCKD_V4=y | 1161 | CONFIG_LOCKD_V4=y |
| @@ -1234,6 +1239,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1234 | # Library routines | 1239 | # Library routines |
| 1235 | # | 1240 | # |
| 1236 | CONFIG_BITREVERSE=y | 1241 | CONFIG_BITREVERSE=y |
| 1242 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1237 | # CONFIG_CRC_CCITT is not set | 1243 | # CONFIG_CRC_CCITT is not set |
| 1238 | # CONFIG_CRC16 is not set | 1244 | # CONFIG_CRC16 is not set |
| 1239 | # CONFIG_CRC_ITU_T is not set | 1245 | # CONFIG_CRC_ITU_T is not set |
| @@ -1244,6 +1250,7 @@ CONFIG_PLIST=y | |||
| 1244 | CONFIG_HAS_IOMEM=y | 1250 | CONFIG_HAS_IOMEM=y |
| 1245 | CONFIG_HAS_IOPORT=y | 1251 | CONFIG_HAS_IOPORT=y |
| 1246 | CONFIG_HAS_DMA=y | 1252 | CONFIG_HAS_DMA=y |
| 1253 | CONFIG_HAVE_LMB=y | ||
| 1247 | 1254 | ||
| 1248 | # | 1255 | # |
| 1249 | # Kernel hacking | 1256 | # Kernel hacking |
| @@ -1251,6 +1258,7 @@ CONFIG_HAS_DMA=y | |||
| 1251 | # CONFIG_PRINTK_TIME is not set | 1258 | # CONFIG_PRINTK_TIME is not set |
| 1252 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1259 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1253 | CONFIG_ENABLE_MUST_CHECK=y | 1260 | CONFIG_ENABLE_MUST_CHECK=y |
| 1261 | CONFIG_FRAME_WARN=1024 | ||
| 1254 | # CONFIG_MAGIC_SYSRQ is not set | 1262 | # CONFIG_MAGIC_SYSRQ is not set |
| 1255 | # CONFIG_UNUSED_SYMBOLS is not set | 1263 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1256 | # CONFIG_DEBUG_FS is not set | 1264 | # CONFIG_DEBUG_FS is not set |
| @@ -1261,6 +1269,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1261 | CONFIG_SCHED_DEBUG=y | 1269 | CONFIG_SCHED_DEBUG=y |
| 1262 | # CONFIG_SCHEDSTATS is not set | 1270 | # CONFIG_SCHEDSTATS is not set |
| 1263 | # CONFIG_TIMER_STATS is not set | 1271 | # CONFIG_TIMER_STATS is not set |
| 1272 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1264 | # CONFIG_SLUB_DEBUG_ON is not set | 1273 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1265 | # CONFIG_SLUB_STATS is not set | 1274 | # CONFIG_SLUB_STATS is not set |
| 1266 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1275 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -1274,9 +1283,11 @@ CONFIG_SCHED_DEBUG=y | |||
| 1274 | CONFIG_DEBUG_BUGVERBOSE=y | 1283 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1275 | CONFIG_DEBUG_INFO=y | 1284 | CONFIG_DEBUG_INFO=y |
| 1276 | # CONFIG_DEBUG_VM is not set | 1285 | # CONFIG_DEBUG_VM is not set |
| 1286 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1277 | # CONFIG_DEBUG_LIST is not set | 1287 | # CONFIG_DEBUG_LIST is not set |
| 1278 | # CONFIG_DEBUG_SG is not set | 1288 | # CONFIG_DEBUG_SG is not set |
| 1279 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1289 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 1290 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1280 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1291 | # CONFIG_BACKTRACE_SELF_TEST is not set |
| 1281 | # CONFIG_FAULT_INJECTION is not set | 1292 | # CONFIG_FAULT_INJECTION is not set |
| 1282 | # CONFIG_SAMPLES is not set | 1293 | # CONFIG_SAMPLES is not set |
| @@ -1284,6 +1295,7 @@ CONFIG_DEBUG_INFO=y | |||
| 1284 | # CONFIG_DEBUG_STACK_USAGE is not set | 1295 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1285 | # CONFIG_DEBUG_PAGEALLOC is not set | 1296 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1286 | # CONFIG_DEBUGGER is not set | 1297 | # CONFIG_DEBUGGER is not set |
| 1298 | # CONFIG_IRQSTACKS is not set | ||
| 1287 | # CONFIG_BDI_SWITCH is not set | 1299 | # CONFIG_BDI_SWITCH is not set |
| 1288 | # CONFIG_PPC_EARLY_DEBUG is not set | 1300 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1289 | 1301 | ||
| @@ -1294,48 +1306,80 @@ CONFIG_DEBUG_INFO=y | |||
| 1294 | # CONFIG_SECURITY is not set | 1306 | # CONFIG_SECURITY is not set |
| 1295 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1307 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1296 | CONFIG_CRYPTO=y | 1308 | CONFIG_CRYPTO=y |
| 1297 | # CONFIG_CRYPTO_SEQIV is not set | 1309 | |
| 1310 | # | ||
| 1311 | # Crypto core or helper | ||
| 1312 | # | ||
| 1298 | # CONFIG_CRYPTO_MANAGER is not set | 1313 | # CONFIG_CRYPTO_MANAGER is not set |
| 1314 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1315 | # CONFIG_CRYPTO_NULL is not set | ||
| 1316 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1317 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1318 | # CONFIG_CRYPTO_TEST is not set | ||
| 1319 | |||
| 1320 | # | ||
| 1321 | # Authenticated Encryption with Associated Data | ||
| 1322 | # | ||
| 1323 | # CONFIG_CRYPTO_CCM is not set | ||
| 1324 | # CONFIG_CRYPTO_GCM is not set | ||
| 1325 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1326 | |||
| 1327 | # | ||
| 1328 | # Block modes | ||
| 1329 | # | ||
| 1330 | # CONFIG_CRYPTO_CBC is not set | ||
| 1331 | # CONFIG_CRYPTO_CTR is not set | ||
| 1332 | # CONFIG_CRYPTO_CTS is not set | ||
| 1333 | # CONFIG_CRYPTO_ECB is not set | ||
| 1334 | # CONFIG_CRYPTO_LRW is not set | ||
| 1335 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1336 | # CONFIG_CRYPTO_XTS is not set | ||
| 1337 | |||
| 1338 | # | ||
| 1339 | # Hash modes | ||
| 1340 | # | ||
| 1299 | # CONFIG_CRYPTO_HMAC is not set | 1341 | # CONFIG_CRYPTO_HMAC is not set |
| 1300 | # CONFIG_CRYPTO_XCBC is not set | 1342 | # CONFIG_CRYPTO_XCBC is not set |
| 1301 | # CONFIG_CRYPTO_NULL is not set | 1343 | |
| 1344 | # | ||
| 1345 | # Digest | ||
| 1346 | # | ||
| 1347 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1302 | # CONFIG_CRYPTO_MD4 is not set | 1348 | # CONFIG_CRYPTO_MD4 is not set |
| 1303 | # CONFIG_CRYPTO_MD5 is not set | 1349 | # CONFIG_CRYPTO_MD5 is not set |
| 1350 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1304 | # CONFIG_CRYPTO_SHA1 is not set | 1351 | # CONFIG_CRYPTO_SHA1 is not set |
| 1305 | # CONFIG_CRYPTO_SHA256 is not set | 1352 | # CONFIG_CRYPTO_SHA256 is not set |
| 1306 | # CONFIG_CRYPTO_SHA512 is not set | 1353 | # CONFIG_CRYPTO_SHA512 is not set |
| 1307 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1308 | # CONFIG_CRYPTO_TGR192 is not set | 1354 | # CONFIG_CRYPTO_TGR192 is not set |
| 1309 | # CONFIG_CRYPTO_GF128MUL is not set | 1355 | # CONFIG_CRYPTO_WP512 is not set |
| 1310 | # CONFIG_CRYPTO_ECB is not set | 1356 | |
| 1311 | # CONFIG_CRYPTO_CBC is not set | 1357 | # |
| 1312 | # CONFIG_CRYPTO_PCBC is not set | 1358 | # Ciphers |
| 1313 | # CONFIG_CRYPTO_LRW is not set | 1359 | # |
| 1314 | # CONFIG_CRYPTO_XTS is not set | ||
| 1315 | # CONFIG_CRYPTO_CTR is not set | ||
| 1316 | # CONFIG_CRYPTO_GCM is not set | ||
| 1317 | # CONFIG_CRYPTO_CCM is not set | ||
| 1318 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1319 | # CONFIG_CRYPTO_DES is not set | ||
| 1320 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1321 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1322 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1323 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1324 | # CONFIG_CRYPTO_AES is not set | 1360 | # CONFIG_CRYPTO_AES is not set |
| 1361 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1362 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1363 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1364 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1325 | # CONFIG_CRYPTO_CAST5 is not set | 1365 | # CONFIG_CRYPTO_CAST5 is not set |
| 1326 | # CONFIG_CRYPTO_CAST6 is not set | 1366 | # CONFIG_CRYPTO_CAST6 is not set |
| 1327 | # CONFIG_CRYPTO_TEA is not set | 1367 | # CONFIG_CRYPTO_DES is not set |
| 1328 | # CONFIG_CRYPTO_ARC4 is not set | 1368 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1329 | # CONFIG_CRYPTO_KHAZAD is not set | 1369 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1330 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1331 | # CONFIG_CRYPTO_SEED is not set | ||
| 1332 | # CONFIG_CRYPTO_SALSA20 is not set | 1370 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1371 | # CONFIG_CRYPTO_SEED is not set | ||
| 1372 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1373 | # CONFIG_CRYPTO_TEA is not set | ||
| 1374 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1375 | |||
| 1376 | # | ||
| 1377 | # Compression | ||
| 1378 | # | ||
| 1333 | # CONFIG_CRYPTO_DEFLATE is not set | 1379 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1334 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1335 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1336 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1337 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1338 | # CONFIG_CRYPTO_LZO is not set | 1380 | # CONFIG_CRYPTO_LZO is not set |
| 1339 | CONFIG_CRYPTO_HW=y | 1381 | CONFIG_CRYPTO_HW=y |
| 1340 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1382 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1341 | # CONFIG_PPC_CLOCK is not set | 1383 | # CONFIG_PPC_CLOCK is not set |
| 1384 | CONFIG_PPC_LIB_RHEAP=y | ||
| 1385 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/mpc8641_hpcn_defconfig b/arch/powerpc/configs/mpc8641_hpcn_defconfig index d01dcdb70bd7..4a8171507391 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.25-rc7 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 31 11:37:11 2008 | 4 | # Mon Jun 9 08:52:15 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 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 |
| @@ -90,6 +92,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 90 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 91 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 92 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
| 94 | CONFIG_KALLSYMS_ALL=y | 97 | CONFIG_KALLSYMS_ALL=y |
| 95 | CONFIG_KALLSYMS_EXTRA_PASS=y | 98 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| @@ -117,12 +120,14 @@ CONFIG_HAVE_OPROFILE=y | |||
| 117 | # CONFIG_KPROBES is not set | 120 | # CONFIG_KPROBES is not set |
| 118 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 119 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 120 | CONFIG_PROC_PAGE_MONITOR=y | 124 | CONFIG_PROC_PAGE_MONITOR=y |
| 121 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
| 122 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
| 123 | # CONFIG_TINY_SHMEM is not set | 127 | # CONFIG_TINY_SHMEM is not set |
| 124 | CONFIG_BASE_SMALL=0 | 128 | CONFIG_BASE_SMALL=0 |
| 125 | CONFIG_MODULES=y | 129 | CONFIG_MODULES=y |
| 130 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 126 | CONFIG_MODULE_UNLOAD=y | 131 | CONFIG_MODULE_UNLOAD=y |
| 127 | CONFIG_MODULE_FORCE_UNLOAD=y | 132 | CONFIG_MODULE_FORCE_UNLOAD=y |
| 128 | CONFIG_MODVERSIONS=y | 133 | CONFIG_MODVERSIONS=y |
| @@ -162,6 +167,7 @@ CONFIG_PPC_86xx=y | |||
| 162 | # CONFIG_PPC_CELL_NATIVE is not set | 167 | # CONFIG_PPC_CELL_NATIVE is not set |
| 163 | # CONFIG_PQ2ADS is not set | 168 | # CONFIG_PQ2ADS is not set |
| 164 | CONFIG_MPC8641_HPCN=y | 169 | CONFIG_MPC8641_HPCN=y |
| 170 | # CONFIG_SBC8641D is not set | ||
| 165 | # CONFIG_MPC8610_HPCD is not set | 171 | # CONFIG_MPC8610_HPCD is not set |
| 166 | CONFIG_MPC8641=y | 172 | CONFIG_MPC8641=y |
| 167 | # CONFIG_IPIC is not set | 173 | # CONFIG_IPIC is not set |
| @@ -211,11 +217,13 @@ CONFIG_FLATMEM=y | |||
| 211 | CONFIG_FLAT_NODE_MEM_MAP=y | 217 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 212 | # CONFIG_SPARSEMEM_STATIC is not set | 218 | # CONFIG_SPARSEMEM_STATIC is not set |
| 213 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 220 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 214 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 215 | # CONFIG_RESOURCES_64BIT is not set | 222 | # CONFIG_RESOURCES_64BIT is not set |
| 216 | CONFIG_ZONE_DMA_FLAG=1 | 223 | CONFIG_ZONE_DMA_FLAG=1 |
| 217 | CONFIG_BOUNCE=y | 224 | CONFIG_BOUNCE=y |
| 218 | CONFIG_VIRT_TO_BUS=y | 225 | CONFIG_VIRT_TO_BUS=y |
| 226 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 219 | CONFIG_PROC_DEVICETREE=y | 227 | CONFIG_PROC_DEVICETREE=y |
| 220 | # CONFIG_CMDLINE_BOOL is not set | 228 | # CONFIG_CMDLINE_BOOL is not set |
| 221 | # CONFIG_PM is not set | 229 | # CONFIG_PM is not set |
| @@ -240,6 +248,8 @@ CONFIG_PCI_LEGACY=y | |||
| 240 | # CONFIG_PCI_DEBUG is not set | 248 | # CONFIG_PCI_DEBUG is not set |
| 241 | # CONFIG_PCCARD is not set | 249 | # CONFIG_PCCARD is not set |
| 242 | # CONFIG_HOTPLUG_PCI is not set | 250 | # CONFIG_HOTPLUG_PCI is not set |
| 251 | CONFIG_HAS_RAPIDIO=y | ||
| 252 | # CONFIG_RAPIDIO is not set | ||
| 243 | 253 | ||
| 244 | # | 254 | # |
| 245 | # Advanced setup | 255 | # Advanced setup |
| @@ -249,11 +259,11 @@ CONFIG_PCI_LEGACY=y | |||
| 249 | # | 259 | # |
| 250 | # Default settings for advanced configuration options are used | 260 | # Default settings for advanced configuration options are used |
| 251 | # | 261 | # |
| 252 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 253 | CONFIG_LOWMEM_SIZE=0x30000000 | 262 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 263 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 254 | CONFIG_KERNEL_START=0xc0000000 | 264 | CONFIG_KERNEL_START=0xc0000000 |
| 265 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 255 | CONFIG_TASK_SIZE=0xc0000000 | 266 | CONFIG_TASK_SIZE=0xc0000000 |
| 256 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 257 | 267 | ||
| 258 | # | 268 | # |
| 259 | # Networking | 269 | # Networking |
| @@ -324,8 +334,10 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=y | |||
| 324 | CONFIG_INET6_XFRM_MODE_BEET=y | 334 | CONFIG_INET6_XFRM_MODE_BEET=y |
| 325 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 335 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set |
| 326 | CONFIG_IPV6_SIT=y | 336 | CONFIG_IPV6_SIT=y |
| 337 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
| 327 | # CONFIG_IPV6_TUNNEL is not set | 338 | # CONFIG_IPV6_TUNNEL is not set |
| 328 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | 339 | # CONFIG_IPV6_MULTIPLE_TABLES is not set |
| 340 | # CONFIG_IPV6_MROUTE is not set | ||
| 329 | # CONFIG_NETWORK_SECMARK is not set | 341 | # CONFIG_NETWORK_SECMARK is not set |
| 330 | # CONFIG_NETFILTER is not set | 342 | # CONFIG_NETFILTER is not set |
| 331 | # CONFIG_IP_DCCP is not set | 343 | # CONFIG_IP_DCCP is not set |
| @@ -387,6 +399,7 @@ CONFIG_FW_LOADER=y | |||
| 387 | # CONFIG_CONNECTOR is not set | 399 | # CONFIG_CONNECTOR is not set |
| 388 | # CONFIG_MTD is not set | 400 | # CONFIG_MTD is not set |
| 389 | CONFIG_OF_DEVICE=y | 401 | CONFIG_OF_DEVICE=y |
| 402 | CONFIG_OF_I2C=y | ||
| 390 | # CONFIG_PARPORT is not set | 403 | # CONFIG_PARPORT is not set |
| 391 | CONFIG_BLK_DEV=y | 404 | CONFIG_BLK_DEV=y |
| 392 | # CONFIG_BLK_DEV_FD is not set | 405 | # CONFIG_BLK_DEV_FD is not set |
| @@ -493,7 +506,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 493 | # CONFIG_SCSI_SRP is not set | 506 | # CONFIG_SCSI_SRP is not set |
| 494 | CONFIG_ATA=y | 507 | CONFIG_ATA=y |
| 495 | # CONFIG_ATA_NONSTANDARD is not set | 508 | # CONFIG_ATA_NONSTANDARD is not set |
| 509 | CONFIG_SATA_PMP=y | ||
| 496 | CONFIG_SATA_AHCI=y | 510 | CONFIG_SATA_AHCI=y |
| 511 | # CONFIG_SATA_SIL24 is not set | ||
| 512 | # CONFIG_SATA_FSL is not set | ||
| 513 | CONFIG_ATA_SFF=y | ||
| 497 | # CONFIG_SATA_SVW is not set | 514 | # CONFIG_SATA_SVW is not set |
| 498 | # CONFIG_ATA_PIIX is not set | 515 | # CONFIG_ATA_PIIX is not set |
| 499 | # CONFIG_SATA_MV is not set | 516 | # CONFIG_SATA_MV is not set |
| @@ -503,13 +520,11 @@ CONFIG_SATA_AHCI=y | |||
| 503 | # CONFIG_SATA_PROMISE is not set | 520 | # CONFIG_SATA_PROMISE is not set |
| 504 | # CONFIG_SATA_SX4 is not set | 521 | # CONFIG_SATA_SX4 is not set |
| 505 | # CONFIG_SATA_SIL is not set | 522 | # CONFIG_SATA_SIL is not set |
| 506 | # CONFIG_SATA_SIL24 is not set | ||
| 507 | # CONFIG_SATA_SIS is not set | 523 | # CONFIG_SATA_SIS is not set |
| 508 | # CONFIG_SATA_ULI is not set | 524 | # CONFIG_SATA_ULI is not set |
| 509 | # CONFIG_SATA_VIA is not set | 525 | # CONFIG_SATA_VIA is not set |
| 510 | # CONFIG_SATA_VITESSE is not set | 526 | # CONFIG_SATA_VITESSE is not set |
| 511 | # CONFIG_SATA_INIC162X is not set | 527 | # CONFIG_SATA_INIC162X is not set |
| 512 | # CONFIG_SATA_FSL is not set | ||
| 513 | CONFIG_PATA_ALI=y | 528 | CONFIG_PATA_ALI=y |
| 514 | # CONFIG_PATA_AMD is not set | 529 | # CONFIG_PATA_AMD is not set |
| 515 | # CONFIG_PATA_ARTOP is not set | 530 | # CONFIG_PATA_ARTOP is not set |
| @@ -549,6 +564,7 @@ CONFIG_PATA_ALI=y | |||
| 549 | # CONFIG_PATA_VIA is not set | 564 | # CONFIG_PATA_VIA is not set |
| 550 | # CONFIG_PATA_WINBOND is not set | 565 | # CONFIG_PATA_WINBOND is not set |
| 551 | # CONFIG_PATA_PLATFORM is not set | 566 | # CONFIG_PATA_PLATFORM is not set |
| 567 | # CONFIG_PATA_SCH is not set | ||
| 552 | # CONFIG_MD is not set | 568 | # CONFIG_MD is not set |
| 553 | # CONFIG_FUSION is not set | 569 | # CONFIG_FUSION is not set |
| 554 | 570 | ||
| @@ -614,7 +630,6 @@ CONFIG_NETDEV_1000=y | |||
| 614 | # CONFIG_SIS190 is not set | 630 | # CONFIG_SIS190 is not set |
| 615 | # CONFIG_SKGE is not set | 631 | # CONFIG_SKGE is not set |
| 616 | # CONFIG_SKY2 is not set | 632 | # CONFIG_SKY2 is not set |
| 617 | # CONFIG_SK98LIN is not set | ||
| 618 | # CONFIG_VIA_VELOCITY is not set | 633 | # CONFIG_VIA_VELOCITY is not set |
| 619 | # CONFIG_TIGON3 is not set | 634 | # CONFIG_TIGON3 is not set |
| 620 | # CONFIG_BNX2 is not set | 635 | # CONFIG_BNX2 is not set |
| @@ -634,6 +649,7 @@ CONFIG_NETDEV_10000=y | |||
| 634 | # CONFIG_MLX4_CORE is not set | 649 | # CONFIG_MLX4_CORE is not set |
| 635 | # CONFIG_TEHUTI is not set | 650 | # CONFIG_TEHUTI is not set |
| 636 | # CONFIG_BNX2X is not set | 651 | # CONFIG_BNX2X is not set |
| 652 | # CONFIG_SFC is not set | ||
| 637 | # CONFIG_TR is not set | 653 | # CONFIG_TR is not set |
| 638 | 654 | ||
| 639 | # | 655 | # |
| @@ -641,6 +657,7 @@ CONFIG_NETDEV_10000=y | |||
| 641 | # | 657 | # |
| 642 | # CONFIG_WLAN_PRE80211 is not set | 658 | # CONFIG_WLAN_PRE80211 is not set |
| 643 | # CONFIG_WLAN_80211 is not set | 659 | # CONFIG_WLAN_80211 is not set |
| 660 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 644 | 661 | ||
| 645 | # | 662 | # |
| 646 | # USB Network Adapters | 663 | # USB Network Adapters |
| @@ -705,6 +722,7 @@ CONFIG_VT=y | |||
| 705 | CONFIG_VT_CONSOLE=y | 722 | CONFIG_VT_CONSOLE=y |
| 706 | CONFIG_HW_CONSOLE=y | 723 | CONFIG_HW_CONSOLE=y |
| 707 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 724 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 725 | CONFIG_DEVKMEM=y | ||
| 708 | # CONFIG_SERIAL_NONSTANDARD is not set | 726 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 709 | # CONFIG_NOZOMI is not set | 727 | # CONFIG_NOZOMI is not set |
| 710 | 728 | ||
| @@ -736,7 +754,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 736 | # CONFIG_IPMI_HANDLER is not set | 754 | # CONFIG_IPMI_HANDLER is not set |
| 737 | # CONFIG_HW_RANDOM is not set | 755 | # CONFIG_HW_RANDOM is not set |
| 738 | CONFIG_NVRAM=y | 756 | CONFIG_NVRAM=y |
| 739 | # CONFIG_GEN_RTC is not set | ||
| 740 | # CONFIG_R3964 is not set | 757 | # CONFIG_R3964 is not set |
| 741 | # CONFIG_APPLICOM is not set | 758 | # CONFIG_APPLICOM is not set |
| 742 | # CONFIG_RAW_DRIVER is not set | 759 | # CONFIG_RAW_DRIVER is not set |
| @@ -747,13 +764,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 747 | # CONFIG_I2C_CHARDEV is not set | 764 | # CONFIG_I2C_CHARDEV is not set |
| 748 | 765 | ||
| 749 | # | 766 | # |
| 750 | # I2C Algorithms | ||
| 751 | # | ||
| 752 | # CONFIG_I2C_ALGOBIT is not set | ||
| 753 | # CONFIG_I2C_ALGOPCF is not set | ||
| 754 | # CONFIG_I2C_ALGOPCA is not set | ||
| 755 | |||
| 756 | # | ||
| 757 | # I2C Hardware Bus support | 767 | # I2C Hardware Bus support |
| 758 | # | 768 | # |
| 759 | # CONFIG_I2C_ALI1535 is not set | 769 | # CONFIG_I2C_ALI1535 is not set |
| @@ -780,6 +790,7 @@ CONFIG_I2C_MPC=y | |||
| 780 | # CONFIG_I2C_VIA is not set | 790 | # CONFIG_I2C_VIA is not set |
| 781 | # CONFIG_I2C_VIAPRO is not set | 791 | # CONFIG_I2C_VIAPRO is not set |
| 782 | # CONFIG_I2C_VOODOO3 is not set | 792 | # CONFIG_I2C_VOODOO3 is not set |
| 793 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 783 | 794 | ||
| 784 | # | 795 | # |
| 785 | # Miscellaneous I2C Chip support | 796 | # Miscellaneous I2C Chip support |
| @@ -789,19 +800,13 @@ CONFIG_SENSORS_EEPROM=y | |||
| 789 | # CONFIG_SENSORS_PCF8574 is not set | 800 | # CONFIG_SENSORS_PCF8574 is not set |
| 790 | # CONFIG_PCF8575 is not set | 801 | # CONFIG_PCF8575 is not set |
| 791 | # CONFIG_SENSORS_PCF8591 is not set | 802 | # CONFIG_SENSORS_PCF8591 is not set |
| 792 | # CONFIG_TPS65010 is not set | ||
| 793 | # CONFIG_SENSORS_MAX6875 is not set | 803 | # CONFIG_SENSORS_MAX6875 is not set |
| 794 | # CONFIG_SENSORS_TSL2550 is not set | 804 | # CONFIG_SENSORS_TSL2550 is not set |
| 795 | # CONFIG_I2C_DEBUG_CORE is not set | 805 | # CONFIG_I2C_DEBUG_CORE is not set |
| 796 | # CONFIG_I2C_DEBUG_ALGO is not set | 806 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 797 | # CONFIG_I2C_DEBUG_BUS is not set | 807 | # CONFIG_I2C_DEBUG_BUS is not set |
| 798 | # CONFIG_I2C_DEBUG_CHIP is not set | 808 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 799 | |||
| 800 | # | ||
| 801 | # SPI support | ||
| 802 | # | ||
| 803 | # CONFIG_SPI is not set | 809 | # CONFIG_SPI is not set |
| 804 | # CONFIG_SPI_MASTER is not set | ||
| 805 | # CONFIG_W1 is not set | 810 | # CONFIG_W1 is not set |
| 806 | # CONFIG_POWER_SUPPLY is not set | 811 | # CONFIG_POWER_SUPPLY is not set |
| 807 | # CONFIG_HWMON is not set | 812 | # CONFIG_HWMON is not set |
| @@ -818,13 +823,33 @@ CONFIG_SSB_POSSIBLE=y | |||
| 818 | # Multifunction device drivers | 823 | # Multifunction device drivers |
| 819 | # | 824 | # |
| 820 | # CONFIG_MFD_SM501 is not set | 825 | # CONFIG_MFD_SM501 is not set |
| 826 | # CONFIG_HTC_PASIC3 is not set | ||
| 821 | 827 | ||
| 822 | # | 828 | # |
| 823 | # Multimedia devices | 829 | # Multimedia devices |
| 824 | # | 830 | # |
| 831 | |||
| 832 | # | ||
| 833 | # Multimedia core support | ||
| 834 | # | ||
| 825 | # CONFIG_VIDEO_DEV is not set | 835 | # CONFIG_VIDEO_DEV is not set |
| 826 | CONFIG_DVB_CORE=m | 836 | CONFIG_DVB_CORE=m |
| 827 | # CONFIG_DVB_CORE_ATTACH is not set | 837 | CONFIG_VIDEO_MEDIA=m |
| 838 | |||
| 839 | # | ||
| 840 | # Multimedia drivers | ||
| 841 | # | ||
| 842 | # CONFIG_MEDIA_ATTACH is not set | ||
| 843 | CONFIG_MEDIA_TUNER=m | ||
| 844 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | ||
| 845 | CONFIG_MEDIA_TUNER_SIMPLE=m | ||
| 846 | CONFIG_MEDIA_TUNER_TDA8290=m | ||
| 847 | CONFIG_MEDIA_TUNER_TDA9887=m | ||
| 848 | CONFIG_MEDIA_TUNER_TEA5761=m | ||
| 849 | CONFIG_MEDIA_TUNER_TEA5767=m | ||
| 850 | CONFIG_MEDIA_TUNER_MT20XX=m | ||
| 851 | CONFIG_MEDIA_TUNER_XC2028=m | ||
| 852 | CONFIG_MEDIA_TUNER_XC5000=m | ||
| 828 | CONFIG_DVB_CAPTURE_DRIVERS=y | 853 | CONFIG_DVB_CAPTURE_DRIVERS=y |
| 829 | 854 | ||
| 830 | # | 855 | # |
| @@ -867,14 +892,17 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 867 | # | 892 | # |
| 868 | # DVB-S (satellite) frontends | 893 | # DVB-S (satellite) frontends |
| 869 | # | 894 | # |
| 870 | # CONFIG_DVB_STV0299 is not set | ||
| 871 | # CONFIG_DVB_CX24110 is not set | 895 | # CONFIG_DVB_CX24110 is not set |
| 872 | # CONFIG_DVB_CX24123 is not set | 896 | # CONFIG_DVB_CX24123 is not set |
| 873 | # CONFIG_DVB_TDA8083 is not set | ||
| 874 | # CONFIG_DVB_MT312 is not set | 897 | # CONFIG_DVB_MT312 is not set |
| 875 | # CONFIG_DVB_VES1X93 is not set | ||
| 876 | # CONFIG_DVB_S5H1420 is not set | 898 | # CONFIG_DVB_S5H1420 is not set |
| 899 | # CONFIG_DVB_STV0299 is not set | ||
| 900 | # CONFIG_DVB_TDA8083 is not set | ||
| 877 | # CONFIG_DVB_TDA10086 is not set | 901 | # CONFIG_DVB_TDA10086 is not set |
| 902 | # CONFIG_DVB_VES1X93 is not set | ||
| 903 | # CONFIG_DVB_TUNER_ITD1000 is not set | ||
| 904 | # CONFIG_DVB_TDA826X is not set | ||
| 905 | # CONFIG_DVB_TUA6100 is not set | ||
| 878 | 906 | ||
| 879 | # | 907 | # |
| 880 | # DVB-T (terrestrial) frontends | 908 | # DVB-T (terrestrial) frontends |
| @@ -892,6 +920,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 892 | # CONFIG_DVB_DIB3000MC is not set | 920 | # CONFIG_DVB_DIB3000MC is not set |
| 893 | # CONFIG_DVB_DIB7000M is not set | 921 | # CONFIG_DVB_DIB7000M is not set |
| 894 | # CONFIG_DVB_DIB7000P is not set | 922 | # CONFIG_DVB_DIB7000P is not set |
| 923 | # CONFIG_DVB_TDA10048 is not set | ||
| 895 | 924 | ||
| 896 | # | 925 | # |
| 897 | # DVB-C (cable) frontends | 926 | # DVB-C (cable) frontends |
| @@ -910,27 +939,21 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 910 | # CONFIG_DVB_BCM3510 is not set | 939 | # CONFIG_DVB_BCM3510 is not set |
| 911 | # CONFIG_DVB_LGDT330X is not set | 940 | # CONFIG_DVB_LGDT330X is not set |
| 912 | # CONFIG_DVB_S5H1409 is not set | 941 | # CONFIG_DVB_S5H1409 is not set |
| 942 | # CONFIG_DVB_AU8522 is not set | ||
| 943 | # CONFIG_DVB_S5H1411 is not set | ||
| 913 | 944 | ||
| 914 | # | 945 | # |
| 915 | # Tuners/PLL support | 946 | # Digital terrestrial only tuners/PLL |
| 916 | # | 947 | # |
| 917 | # CONFIG_DVB_PLL is not set | 948 | # CONFIG_DVB_PLL is not set |
| 918 | # CONFIG_DVB_TDA826X is not set | ||
| 919 | # CONFIG_DVB_TDA827X is not set | ||
| 920 | # CONFIG_DVB_TDA18271 is not set | ||
| 921 | # CONFIG_DVB_TUNER_QT1010 is not set | ||
| 922 | # CONFIG_DVB_TUNER_MT2060 is not set | ||
| 923 | # CONFIG_DVB_TUNER_MT2266 is not set | ||
| 924 | # CONFIG_DVB_TUNER_MT2131 is not set | ||
| 925 | # CONFIG_DVB_TUNER_DIB0070 is not set | 949 | # CONFIG_DVB_TUNER_DIB0070 is not set |
| 926 | # CONFIG_DVB_TUNER_XC5000 is not set | ||
| 927 | 950 | ||
| 928 | # | 951 | # |
| 929 | # Miscellaneous devices | 952 | # SEC control devices for DVB-S |
| 930 | # | 953 | # |
| 931 | # CONFIG_DVB_LNBP21 is not set | 954 | # CONFIG_DVB_LNBP21 is not set |
| 955 | # CONFIG_DVB_ISL6405 is not set | ||
| 932 | # CONFIG_DVB_ISL6421 is not set | 956 | # CONFIG_DVB_ISL6421 is not set |
| 933 | # CONFIG_DVB_TUA6100 is not set | ||
| 934 | CONFIG_DAB=y | 957 | CONFIG_DAB=y |
| 935 | # CONFIG_USB_DABUSB is not set | 958 | # CONFIG_USB_DABUSB is not set |
| 936 | 959 | ||
| @@ -997,6 +1020,7 @@ CONFIG_SND_AC97_CODEC=y | |||
| 997 | # CONFIG_SND_AU8810 is not set | 1020 | # CONFIG_SND_AU8810 is not set |
| 998 | # CONFIG_SND_AU8820 is not set | 1021 | # CONFIG_SND_AU8820 is not set |
| 999 | # CONFIG_SND_AU8830 is not set | 1022 | # CONFIG_SND_AU8830 is not set |
| 1023 | # CONFIG_SND_AW2 is not set | ||
| 1000 | # CONFIG_SND_AZT3328 is not set | 1024 | # CONFIG_SND_AZT3328 is not set |
| 1001 | # CONFIG_SND_BT87X is not set | 1025 | # CONFIG_SND_BT87X is not set |
| 1002 | # CONFIG_SND_CA0106 is not set | 1026 | # CONFIG_SND_CA0106 is not set |
| @@ -1071,11 +1095,11 @@ CONFIG_SND_INTEL8X0=y | |||
| 1071 | # CONFIG_SND_SOC is not set | 1095 | # CONFIG_SND_SOC is not set |
| 1072 | 1096 | ||
| 1073 | # | 1097 | # |
| 1074 | # SoC Audio support for SuperH | 1098 | # ALSA SoC audio for Freescale SOCs |
| 1075 | # | 1099 | # |
| 1076 | 1100 | ||
| 1077 | # | 1101 | # |
| 1078 | # ALSA SoC audio for Freescale SOCs | 1102 | # SoC Audio for the Texas Instruments OMAP |
| 1079 | # | 1103 | # |
| 1080 | 1104 | ||
| 1081 | # | 1105 | # |
| @@ -1110,16 +1134,20 @@ CONFIG_USB_DEVICEFS=y | |||
| 1110 | CONFIG_USB_DEVICE_CLASS=y | 1134 | CONFIG_USB_DEVICE_CLASS=y |
| 1111 | # CONFIG_USB_DYNAMIC_MINORS is not set | 1135 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 1112 | # CONFIG_USB_OTG is not set | 1136 | # CONFIG_USB_OTG is not set |
| 1137 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 1138 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 1113 | 1139 | ||
| 1114 | # | 1140 | # |
| 1115 | # USB Host Controller Drivers | 1141 | # USB Host Controller Drivers |
| 1116 | # | 1142 | # |
| 1143 | # CONFIG_USB_C67X00_HCD is not set | ||
| 1117 | CONFIG_USB_EHCI_HCD=y | 1144 | CONFIG_USB_EHCI_HCD=y |
| 1118 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1145 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 1119 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1146 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1120 | # CONFIG_USB_EHCI_FSL is not set | 1147 | # CONFIG_USB_EHCI_FSL is not set |
| 1121 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1148 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 1122 | # CONFIG_USB_ISP116X_HCD is not set | 1149 | # CONFIG_USB_ISP116X_HCD is not set |
| 1150 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 1123 | CONFIG_USB_OHCI_HCD=y | 1151 | CONFIG_USB_OHCI_HCD=y |
| 1124 | CONFIG_USB_OHCI_HCD_PPC_OF=y | 1152 | CONFIG_USB_OHCI_HCD_PPC_OF=y |
| 1125 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | 1153 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y |
| @@ -1137,6 +1165,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1137 | # | 1165 | # |
| 1138 | # CONFIG_USB_ACM is not set | 1166 | # CONFIG_USB_ACM is not set |
| 1139 | # CONFIG_USB_PRINTER is not set | 1167 | # CONFIG_USB_PRINTER is not set |
| 1168 | # CONFIG_USB_WDM is not set | ||
| 1140 | 1169 | ||
| 1141 | # | 1170 | # |
| 1142 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1171 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1156,7 +1185,9 @@ CONFIG_USB_STORAGE=y | |||
| 1156 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1185 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 1157 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 1186 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 1158 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1187 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1188 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
| 1159 | # CONFIG_USB_STORAGE_KARMA is not set | 1189 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1190 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 1160 | # CONFIG_USB_LIBUSUAL is not set | 1191 | # CONFIG_USB_LIBUSUAL is not set |
| 1161 | 1192 | ||
| 1162 | # | 1193 | # |
| @@ -1194,10 +1225,12 @@ CONFIG_USB_MON=y | |||
| 1194 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1225 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1195 | # CONFIG_USB_IOWARRIOR is not set | 1226 | # CONFIG_USB_IOWARRIOR is not set |
| 1196 | # CONFIG_USB_TEST is not set | 1227 | # CONFIG_USB_TEST is not set |
| 1228 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1197 | # CONFIG_USB_GADGET is not set | 1229 | # CONFIG_USB_GADGET is not set |
| 1198 | # CONFIG_MMC is not set | 1230 | # CONFIG_MMC is not set |
| 1199 | # CONFIG_MEMSTICK is not set | 1231 | # CONFIG_MEMSTICK is not set |
| 1200 | # CONFIG_NEW_LEDS is not set | 1232 | # CONFIG_NEW_LEDS is not set |
| 1233 | # CONFIG_ACCESSIBILITY is not set | ||
| 1201 | # CONFIG_INFINIBAND is not set | 1234 | # CONFIG_INFINIBAND is not set |
| 1202 | # CONFIG_EDAC is not set | 1235 | # CONFIG_EDAC is not set |
| 1203 | CONFIG_RTC_LIB=y | 1236 | CONFIG_RTC_LIB=y |
| @@ -1249,11 +1282,8 @@ CONFIG_RTC_DRV_CMOS=y | |||
| 1249 | # | 1282 | # |
| 1250 | # on-CPU RTC drivers | 1283 | # on-CPU RTC drivers |
| 1251 | # | 1284 | # |
| 1285 | # CONFIG_RTC_DRV_PPC is not set | ||
| 1252 | # CONFIG_DMADEVICES is not set | 1286 | # CONFIG_DMADEVICES is not set |
| 1253 | |||
| 1254 | # | ||
| 1255 | # Userspace I/O | ||
| 1256 | # | ||
| 1257 | # CONFIG_UIO is not set | 1287 | # CONFIG_UIO is not set |
| 1258 | 1288 | ||
| 1259 | # | 1289 | # |
| @@ -1273,7 +1303,6 @@ CONFIG_FS_MBCACHE=y | |||
| 1273 | # CONFIG_JFS_FS is not set | 1303 | # CONFIG_JFS_FS is not set |
| 1274 | # CONFIG_FS_POSIX_ACL is not set | 1304 | # CONFIG_FS_POSIX_ACL is not set |
| 1275 | # CONFIG_XFS_FS is not set | 1305 | # CONFIG_XFS_FS is not set |
| 1276 | # CONFIG_GFS2_FS is not set | ||
| 1277 | # CONFIG_OCFS2_FS is not set | 1306 | # CONFIG_OCFS2_FS is not set |
| 1278 | CONFIG_DNOTIFY=y | 1307 | CONFIG_DNOTIFY=y |
| 1279 | CONFIG_INOTIFY=y | 1308 | CONFIG_INOTIFY=y |
| @@ -1343,10 +1372,9 @@ CONFIG_NFS_FS=y | |||
| 1343 | CONFIG_NFS_V3=y | 1372 | CONFIG_NFS_V3=y |
| 1344 | # CONFIG_NFS_V3_ACL is not set | 1373 | # CONFIG_NFS_V3_ACL is not set |
| 1345 | CONFIG_NFS_V4=y | 1374 | CONFIG_NFS_V4=y |
| 1346 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1347 | CONFIG_NFSD=y | 1375 | CONFIG_NFSD=y |
| 1348 | # CONFIG_NFSD_V3 is not set | 1376 | # CONFIG_NFSD_V3 is not set |
| 1349 | CONFIG_NFSD_TCP=y | 1377 | # CONFIG_NFSD_V4 is not set |
| 1350 | CONFIG_ROOT_NFS=y | 1378 | CONFIG_ROOT_NFS=y |
| 1351 | CONFIG_LOCKD=y | 1379 | CONFIG_LOCKD=y |
| 1352 | CONFIG_LOCKD_V4=y | 1380 | CONFIG_LOCKD_V4=y |
| @@ -1430,9 +1458,10 @@ CONFIG_NLS_UTF8=m | |||
| 1430 | # Library routines | 1458 | # Library routines |
| 1431 | # | 1459 | # |
| 1432 | CONFIG_BITREVERSE=y | 1460 | CONFIG_BITREVERSE=y |
| 1461 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1433 | # CONFIG_CRC_CCITT is not set | 1462 | # CONFIG_CRC_CCITT is not set |
| 1434 | # CONFIG_CRC16 is not set | 1463 | # CONFIG_CRC16 is not set |
| 1435 | # CONFIG_CRC_ITU_T is not set | 1464 | CONFIG_CRC_ITU_T=m |
| 1436 | CONFIG_CRC32=y | 1465 | CONFIG_CRC32=y |
| 1437 | # CONFIG_CRC7 is not set | 1466 | # CONFIG_CRC7 is not set |
| 1438 | CONFIG_LIBCRC32C=m | 1467 | CONFIG_LIBCRC32C=m |
| @@ -1441,6 +1470,7 @@ CONFIG_PLIST=y | |||
| 1441 | CONFIG_HAS_IOMEM=y | 1470 | CONFIG_HAS_IOMEM=y |
| 1442 | CONFIG_HAS_IOPORT=y | 1471 | CONFIG_HAS_IOPORT=y |
| 1443 | CONFIG_HAS_DMA=y | 1472 | CONFIG_HAS_DMA=y |
| 1473 | CONFIG_HAVE_LMB=y | ||
| 1444 | 1474 | ||
| 1445 | # | 1475 | # |
| 1446 | # Kernel hacking | 1476 | # Kernel hacking |
| @@ -1448,6 +1478,7 @@ CONFIG_HAS_DMA=y | |||
| 1448 | # CONFIG_PRINTK_TIME is not set | 1478 | # CONFIG_PRINTK_TIME is not set |
| 1449 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1479 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1450 | CONFIG_ENABLE_MUST_CHECK=y | 1480 | CONFIG_ENABLE_MUST_CHECK=y |
| 1481 | CONFIG_FRAME_WARN=1024 | ||
| 1451 | # CONFIG_MAGIC_SYSRQ is not set | 1482 | # CONFIG_MAGIC_SYSRQ is not set |
| 1452 | # CONFIG_UNUSED_SYMBOLS is not set | 1483 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1453 | # CONFIG_DEBUG_FS is not set | 1484 | # CONFIG_DEBUG_FS is not set |
| @@ -1458,6 +1489,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1458 | CONFIG_SCHED_DEBUG=y | 1489 | CONFIG_SCHED_DEBUG=y |
| 1459 | # CONFIG_SCHEDSTATS is not set | 1490 | # CONFIG_SCHEDSTATS is not set |
| 1460 | # CONFIG_TIMER_STATS is not set | 1491 | # CONFIG_TIMER_STATS is not set |
| 1492 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1461 | # CONFIG_SLUB_DEBUG_ON is not set | 1493 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1462 | # CONFIG_SLUB_STATS is not set | 1494 | # CONFIG_SLUB_STATS is not set |
| 1463 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1495 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -1471,6 +1503,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1471 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1503 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1472 | CONFIG_DEBUG_INFO=y | 1504 | CONFIG_DEBUG_INFO=y |
| 1473 | # CONFIG_DEBUG_VM is not set | 1505 | # CONFIG_DEBUG_VM is not set |
| 1506 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1474 | # CONFIG_DEBUG_LIST is not set | 1507 | # CONFIG_DEBUG_LIST is not set |
| 1475 | # CONFIG_DEBUG_SG is not set | 1508 | # CONFIG_DEBUG_SG is not set |
| 1476 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1509 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1482,6 +1515,7 @@ CONFIG_DEBUG_INFO=y | |||
| 1482 | # CONFIG_DEBUG_STACK_USAGE is not set | 1515 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1483 | # CONFIG_DEBUG_PAGEALLOC is not set | 1516 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1484 | # CONFIG_DEBUGGER is not set | 1517 | # CONFIG_DEBUGGER is not set |
| 1518 | # CONFIG_IRQSTACKS is not set | ||
| 1485 | # CONFIG_BDI_SWITCH is not set | 1519 | # CONFIG_BDI_SWITCH is not set |
| 1486 | # CONFIG_PPC_EARLY_DEBUG is not set | 1520 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1487 | 1521 | ||
| @@ -1492,52 +1526,82 @@ CONFIG_DEBUG_INFO=y | |||
| 1492 | # CONFIG_SECURITY is not set | 1526 | # CONFIG_SECURITY is not set |
| 1493 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1527 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1494 | CONFIG_CRYPTO=y | 1528 | CONFIG_CRYPTO=y |
| 1529 | |||
| 1530 | # | ||
| 1531 | # Crypto core or helper | ||
| 1532 | # | ||
| 1495 | CONFIG_CRYPTO_ALGAPI=y | 1533 | CONFIG_CRYPTO_ALGAPI=y |
| 1496 | CONFIG_CRYPTO_BLKCIPHER=y | 1534 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1497 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1498 | CONFIG_CRYPTO_HASH=y | 1535 | CONFIG_CRYPTO_HASH=y |
| 1499 | CONFIG_CRYPTO_MANAGER=y | 1536 | CONFIG_CRYPTO_MANAGER=y |
| 1537 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1538 | # CONFIG_CRYPTO_NULL is not set | ||
| 1539 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1540 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1541 | # CONFIG_CRYPTO_TEST is not set | ||
| 1542 | |||
| 1543 | # | ||
| 1544 | # Authenticated Encryption with Associated Data | ||
| 1545 | # | ||
| 1546 | # CONFIG_CRYPTO_CCM is not set | ||
| 1547 | # CONFIG_CRYPTO_GCM is not set | ||
| 1548 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1549 | |||
| 1550 | # | ||
| 1551 | # Block modes | ||
| 1552 | # | ||
| 1553 | CONFIG_CRYPTO_CBC=y | ||
| 1554 | # CONFIG_CRYPTO_CTR is not set | ||
| 1555 | # CONFIG_CRYPTO_CTS is not set | ||
| 1556 | # CONFIG_CRYPTO_ECB is not set | ||
| 1557 | # CONFIG_CRYPTO_LRW is not set | ||
| 1558 | CONFIG_CRYPTO_PCBC=m | ||
| 1559 | # CONFIG_CRYPTO_XTS is not set | ||
| 1560 | |||
| 1561 | # | ||
| 1562 | # Hash modes | ||
| 1563 | # | ||
| 1500 | CONFIG_CRYPTO_HMAC=y | 1564 | CONFIG_CRYPTO_HMAC=y |
| 1501 | # CONFIG_CRYPTO_XCBC is not set | 1565 | # CONFIG_CRYPTO_XCBC is not set |
| 1502 | # CONFIG_CRYPTO_NULL is not set | 1566 | |
| 1567 | # | ||
| 1568 | # Digest | ||
| 1569 | # | ||
| 1570 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1503 | # CONFIG_CRYPTO_MD4 is not set | 1571 | # CONFIG_CRYPTO_MD4 is not set |
| 1504 | CONFIG_CRYPTO_MD5=y | 1572 | CONFIG_CRYPTO_MD5=y |
| 1573 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1505 | CONFIG_CRYPTO_SHA1=m | 1574 | CONFIG_CRYPTO_SHA1=m |
| 1506 | # CONFIG_CRYPTO_SHA256 is not set | 1575 | # CONFIG_CRYPTO_SHA256 is not set |
| 1507 | # CONFIG_CRYPTO_SHA512 is not set | 1576 | # CONFIG_CRYPTO_SHA512 is not set |
| 1508 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1509 | # CONFIG_CRYPTO_TGR192 is not set | 1577 | # CONFIG_CRYPTO_TGR192 is not set |
| 1510 | # CONFIG_CRYPTO_GF128MUL is not set | 1578 | # CONFIG_CRYPTO_WP512 is not set |
| 1511 | # CONFIG_CRYPTO_ECB is not set | 1579 | |
| 1512 | CONFIG_CRYPTO_CBC=y | 1580 | # |
| 1513 | CONFIG_CRYPTO_PCBC=m | 1581 | # Ciphers |
| 1514 | # CONFIG_CRYPTO_LRW is not set | 1582 | # |
| 1515 | # CONFIG_CRYPTO_XTS is not set | ||
| 1516 | # CONFIG_CRYPTO_CTR is not set | ||
| 1517 | # CONFIG_CRYPTO_GCM is not set | ||
| 1518 | # CONFIG_CRYPTO_CCM is not set | ||
| 1519 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1520 | CONFIG_CRYPTO_DES=y | ||
| 1521 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1522 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1523 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1524 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1525 | # CONFIG_CRYPTO_AES is not set | 1583 | # CONFIG_CRYPTO_AES is not set |
| 1584 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1585 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1586 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1587 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1526 | # CONFIG_CRYPTO_CAST5 is not set | 1588 | # CONFIG_CRYPTO_CAST5 is not set |
| 1527 | # CONFIG_CRYPTO_CAST6 is not set | 1589 | # CONFIG_CRYPTO_CAST6 is not set |
| 1528 | # CONFIG_CRYPTO_TEA is not set | 1590 | CONFIG_CRYPTO_DES=y |
| 1529 | # CONFIG_CRYPTO_ARC4 is not set | 1591 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1530 | # CONFIG_CRYPTO_KHAZAD is not set | 1592 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1531 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1532 | # CONFIG_CRYPTO_SEED is not set | ||
| 1533 | # CONFIG_CRYPTO_SALSA20 is not set | 1593 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1594 | # CONFIG_CRYPTO_SEED is not set | ||
| 1595 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1596 | # CONFIG_CRYPTO_TEA is not set | ||
| 1597 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1598 | |||
| 1599 | # | ||
| 1600 | # Compression | ||
| 1601 | # | ||
| 1534 | # CONFIG_CRYPTO_DEFLATE is not set | 1602 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1535 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1536 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1537 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1538 | # CONFIG_CRYPTO_TEST is not set | ||
| 1539 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1540 | # CONFIG_CRYPTO_LZO is not set | 1603 | # CONFIG_CRYPTO_LZO is not set |
| 1541 | CONFIG_CRYPTO_HW=y | 1604 | CONFIG_CRYPTO_HW=y |
| 1542 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1605 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1543 | # CONFIG_PPC_CLOCK is not set | 1606 | # CONFIG_PPC_CLOCK is not set |
| 1607 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/mpc866_ads_defconfig b/arch/powerpc/configs/mpc866_ads_defconfig index 2d831db9ae5b..46fffbcd3f99 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:35 2008 | 4 | # Mon Jun 9 08:52:16 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -28,6 +28,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 28 | CONFIG_GENERIC_HARDIRQS=y | 28 | CONFIG_GENERIC_HARDIRQS=y |
| 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 29 | # CONFIG_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 | ||
| 32 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 32 | CONFIG_ARCH_HAS_ILOG2_U32=y | 34 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 33 | CONFIG_GENERIC_HWEIGHT=y | 35 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -106,6 +108,7 @@ CONFIG_SLUB=y | |||
| 106 | CONFIG_HAVE_OPROFILE=y | 108 | CONFIG_HAVE_OPROFILE=y |
| 107 | CONFIG_HAVE_KPROBES=y | 109 | CONFIG_HAVE_KPROBES=y |
| 108 | CONFIG_HAVE_KRETPROBES=y | 110 | CONFIG_HAVE_KRETPROBES=y |
| 111 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 109 | CONFIG_PROC_PAGE_MONITOR=y | 112 | CONFIG_PROC_PAGE_MONITOR=y |
| 110 | CONFIG_SLABINFO=y | 113 | CONFIG_SLABINFO=y |
| 111 | CONFIG_RT_MUTEXES=y | 114 | CONFIG_RT_MUTEXES=y |
| @@ -210,11 +213,13 @@ CONFIG_FLATMEM=y | |||
| 210 | CONFIG_FLAT_NODE_MEM_MAP=y | 213 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 211 | # CONFIG_SPARSEMEM_STATIC is not set | 214 | # CONFIG_SPARSEMEM_STATIC is not set |
| 212 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 215 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 216 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 213 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 217 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 214 | # CONFIG_RESOURCES_64BIT is not set | 218 | # CONFIG_RESOURCES_64BIT is not set |
| 215 | CONFIG_ZONE_DMA_FLAG=1 | 219 | CONFIG_ZONE_DMA_FLAG=1 |
| 216 | CONFIG_BOUNCE=y | 220 | CONFIG_BOUNCE=y |
| 217 | CONFIG_VIRT_TO_BUS=y | 221 | CONFIG_VIRT_TO_BUS=y |
| 222 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 218 | # CONFIG_PROC_DEVICETREE is not set | 223 | # CONFIG_PROC_DEVICETREE is not set |
| 219 | # CONFIG_CMDLINE_BOOL is not set | 224 | # CONFIG_CMDLINE_BOOL is not set |
| 220 | # CONFIG_PM is not set | 225 | # CONFIG_PM is not set |
| @@ -231,6 +236,7 @@ CONFIG_FSL_SOC=y | |||
| 231 | # CONFIG_PCI_SYSCALL is not set | 236 | # CONFIG_PCI_SYSCALL is not set |
| 232 | # CONFIG_PCI_QSPAN is not set | 237 | # CONFIG_PCI_QSPAN is not set |
| 233 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 238 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 239 | # CONFIG_HAS_RAPIDIO is not set | ||
| 234 | 240 | ||
| 235 | # | 241 | # |
| 236 | # Advanced setup | 242 | # Advanced setup |
| @@ -240,13 +246,13 @@ CONFIG_FSL_SOC=y | |||
| 240 | # | 246 | # |
| 241 | # Default settings for advanced configuration options are used | 247 | # Default settings for advanced configuration options are used |
| 242 | # | 248 | # |
| 243 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 244 | CONFIG_LOWMEM_SIZE=0x30000000 | 249 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 250 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 245 | CONFIG_KERNEL_START=0xc0000000 | 251 | CONFIG_KERNEL_START=0xc0000000 |
| 252 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 246 | CONFIG_TASK_SIZE=0x80000000 | 253 | CONFIG_TASK_SIZE=0x80000000 |
| 247 | CONFIG_CONSISTENT_START=0xfd000000 | 254 | CONFIG_CONSISTENT_START=0xfd000000 |
| 248 | CONFIG_CONSISTENT_SIZE=0x00200000 | 255 | CONFIG_CONSISTENT_SIZE=0x00200000 |
| 249 | CONFIG_BOOT_LOAD=0x00400000 | ||
| 250 | 256 | ||
| 251 | # | 257 | # |
| 252 | # Networking | 258 | # Networking |
| @@ -294,8 +300,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 294 | CONFIG_DEFAULT_TCP_CONG="cubic" | 300 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 295 | # CONFIG_TCP_MD5SIG is not set | 301 | # CONFIG_TCP_MD5SIG is not set |
| 296 | # CONFIG_IPV6 is not set | 302 | # CONFIG_IPV6 is not set |
| 297 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 298 | # CONFIG_INET6_TUNNEL is not set | ||
| 299 | # CONFIG_NETWORK_SECMARK is not set | 303 | # CONFIG_NETWORK_SECMARK is not set |
| 300 | # CONFIG_NETFILTER is not set | 304 | # CONFIG_NETFILTER is not set |
| 301 | # CONFIG_IP_DCCP is not set | 305 | # CONFIG_IP_DCCP is not set |
| @@ -419,6 +423,7 @@ CONFIG_NETDEV_10000=y | |||
| 419 | # | 423 | # |
| 420 | # CONFIG_WLAN_PRE80211 is not set | 424 | # CONFIG_WLAN_PRE80211 is not set |
| 421 | # CONFIG_WLAN_80211 is not set | 425 | # CONFIG_WLAN_80211 is not set |
| 426 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 422 | # CONFIG_WAN is not set | 427 | # CONFIG_WAN is not set |
| 423 | # CONFIG_PPP is not set | 428 | # CONFIG_PPP is not set |
| 424 | # CONFIG_SLIP is not set | 429 | # CONFIG_SLIP is not set |
| @@ -485,6 +490,7 @@ CONFIG_SERIO_LIBPS2=y | |||
| 485 | # Character devices | 490 | # Character devices |
| 486 | # | 491 | # |
| 487 | # CONFIG_VT is not set | 492 | # CONFIG_VT is not set |
| 493 | CONFIG_DEVKMEM=y | ||
| 488 | # CONFIG_SERIAL_NONSTANDARD is not set | 494 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 489 | 495 | ||
| 490 | # | 496 | # |
| @@ -517,12 +523,7 @@ CONFIG_GEN_RTC=y | |||
| 517 | # CONFIG_RAW_DRIVER is not set | 523 | # CONFIG_RAW_DRIVER is not set |
| 518 | # CONFIG_TCG_TPM is not set | 524 | # CONFIG_TCG_TPM is not set |
| 519 | # CONFIG_I2C is not set | 525 | # CONFIG_I2C is not set |
| 520 | |||
| 521 | # | ||
| 522 | # SPI support | ||
| 523 | # | ||
| 524 | # CONFIG_SPI is not set | 526 | # CONFIG_SPI is not set |
| 525 | # CONFIG_SPI_MASTER is not set | ||
| 526 | # CONFIG_W1 is not set | 527 | # CONFIG_W1 is not set |
| 527 | # CONFIG_POWER_SUPPLY is not set | 528 | # CONFIG_POWER_SUPPLY is not set |
| 528 | CONFIG_HWMON=y | 529 | CONFIG_HWMON=y |
| @@ -551,12 +552,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 551 | # Multifunction device drivers | 552 | # Multifunction device drivers |
| 552 | # | 553 | # |
| 553 | # CONFIG_MFD_SM501 is not set | 554 | # CONFIG_MFD_SM501 is not set |
| 555 | # CONFIG_HTC_PASIC3 is not set | ||
| 554 | 556 | ||
| 555 | # | 557 | # |
| 556 | # Multimedia devices | 558 | # Multimedia devices |
| 557 | # | 559 | # |
| 560 | |||
| 561 | # | ||
| 562 | # Multimedia core support | ||
| 563 | # | ||
| 558 | # CONFIG_VIDEO_DEV is not set | 564 | # CONFIG_VIDEO_DEV is not set |
| 559 | # CONFIG_DVB_CORE is not set | 565 | # CONFIG_DVB_CORE is not set |
| 566 | # CONFIG_VIDEO_MEDIA is not set | ||
| 567 | |||
| 568 | # | ||
| 569 | # Multimedia drivers | ||
| 570 | # | ||
| 560 | CONFIG_DAB=y | 571 | CONFIG_DAB=y |
| 561 | 572 | ||
| 562 | # | 573 | # |
| @@ -584,6 +595,8 @@ CONFIG_USB_SUPPORT=y | |||
| 584 | # CONFIG_USB_ARCH_HAS_HCD is not set | 595 | # CONFIG_USB_ARCH_HAS_HCD is not set |
| 585 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 596 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
| 586 | # CONFIG_USB_ARCH_HAS_EHCI is not set | 597 | # CONFIG_USB_ARCH_HAS_EHCI is not set |
| 598 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 599 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 587 | 600 | ||
| 588 | # | 601 | # |
| 589 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 602 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -592,13 +605,10 @@ CONFIG_USB_SUPPORT=y | |||
| 592 | # CONFIG_MMC is not set | 605 | # CONFIG_MMC is not set |
| 593 | # CONFIG_MEMSTICK is not set | 606 | # CONFIG_MEMSTICK is not set |
| 594 | # CONFIG_NEW_LEDS is not set | 607 | # CONFIG_NEW_LEDS is not set |
| 608 | # CONFIG_ACCESSIBILITY is not set | ||
| 595 | # CONFIG_EDAC is not set | 609 | # CONFIG_EDAC is not set |
| 596 | # CONFIG_RTC_CLASS is not set | 610 | # CONFIG_RTC_CLASS is not set |
| 597 | # CONFIG_DMADEVICES is not set | 611 | # CONFIG_DMADEVICES is not set |
| 598 | |||
| 599 | # | ||
| 600 | # Userspace I/O | ||
| 601 | # | ||
| 602 | # CONFIG_UIO is not set | 612 | # CONFIG_UIO is not set |
| 603 | 613 | ||
| 604 | # | 614 | # |
| @@ -620,7 +630,6 @@ CONFIG_FS_MBCACHE=y | |||
| 620 | # CONFIG_JFS_FS is not set | 630 | # CONFIG_JFS_FS is not set |
| 621 | # CONFIG_FS_POSIX_ACL is not set | 631 | # CONFIG_FS_POSIX_ACL is not set |
| 622 | # CONFIG_XFS_FS is not set | 632 | # CONFIG_XFS_FS is not set |
| 623 | # CONFIG_GFS2_FS is not set | ||
| 624 | # CONFIG_OCFS2_FS is not set | 633 | # CONFIG_OCFS2_FS is not set |
| 625 | CONFIG_DNOTIFY=y | 634 | CONFIG_DNOTIFY=y |
| 626 | CONFIG_INOTIFY=y | 635 | CONFIG_INOTIFY=y |
| @@ -678,7 +687,6 @@ CONFIG_NFS_FS=y | |||
| 678 | CONFIG_NFS_V3=y | 687 | CONFIG_NFS_V3=y |
| 679 | # CONFIG_NFS_V3_ACL is not set | 688 | # CONFIG_NFS_V3_ACL is not set |
| 680 | # CONFIG_NFS_V4 is not set | 689 | # CONFIG_NFS_V4 is not set |
| 681 | # CONFIG_NFS_DIRECTIO is not set | ||
| 682 | # CONFIG_NFSD is not set | 690 | # CONFIG_NFSD is not set |
| 683 | CONFIG_ROOT_NFS=y | 691 | CONFIG_ROOT_NFS=y |
| 684 | CONFIG_LOCKD=y | 692 | CONFIG_LOCKD=y |
| @@ -722,6 +730,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 722 | # Library routines | 730 | # Library routines |
| 723 | # | 731 | # |
| 724 | CONFIG_BITREVERSE=y | 732 | CONFIG_BITREVERSE=y |
| 733 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 725 | CONFIG_CRC_CCITT=y | 734 | CONFIG_CRC_CCITT=y |
| 726 | # CONFIG_CRC16 is not set | 735 | # CONFIG_CRC16 is not set |
| 727 | # CONFIG_CRC_ITU_T is not set | 736 | # CONFIG_CRC_ITU_T is not set |
| @@ -733,6 +742,7 @@ CONFIG_PLIST=y | |||
| 733 | CONFIG_HAS_IOMEM=y | 742 | CONFIG_HAS_IOMEM=y |
| 734 | CONFIG_HAS_IOPORT=y | 743 | CONFIG_HAS_IOPORT=y |
| 735 | CONFIG_HAS_DMA=y | 744 | CONFIG_HAS_DMA=y |
| 745 | CONFIG_HAVE_LMB=y | ||
| 736 | 746 | ||
| 737 | # | 747 | # |
| 738 | # Kernel hacking | 748 | # Kernel hacking |
| @@ -740,6 +750,7 @@ CONFIG_HAS_DMA=y | |||
| 740 | # CONFIG_PRINTK_TIME is not set | 750 | # CONFIG_PRINTK_TIME is not set |
| 741 | CONFIG_ENABLE_WARN_DEPRECATED=y | 751 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 742 | CONFIG_ENABLE_MUST_CHECK=y | 752 | CONFIG_ENABLE_MUST_CHECK=y |
| 753 | CONFIG_FRAME_WARN=1024 | ||
| 743 | # CONFIG_MAGIC_SYSRQ is not set | 754 | # CONFIG_MAGIC_SYSRQ is not set |
| 744 | # CONFIG_UNUSED_SYMBOLS is not set | 755 | # CONFIG_UNUSED_SYMBOLS is not set |
| 745 | # CONFIG_DEBUG_FS is not set | 756 | # CONFIG_DEBUG_FS is not set |
| @@ -748,6 +759,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 748 | # CONFIG_SLUB_DEBUG_ON is not set | 759 | # CONFIG_SLUB_DEBUG_ON is not set |
| 749 | # CONFIG_SLUB_STATS is not set | 760 | # CONFIG_SLUB_STATS is not set |
| 750 | # CONFIG_SAMPLES is not set | 761 | # CONFIG_SAMPLES is not set |
| 762 | # CONFIG_IRQSTACKS is not set | ||
| 751 | # CONFIG_PPC_EARLY_DEBUG is not set | 763 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 752 | 764 | ||
| 753 | # | 765 | # |
| @@ -757,48 +769,78 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 757 | # CONFIG_SECURITY is not set | 769 | # CONFIG_SECURITY is not set |
| 758 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 770 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 759 | CONFIG_CRYPTO=y | 771 | CONFIG_CRYPTO=y |
| 760 | # CONFIG_CRYPTO_SEQIV is not set | 772 | |
| 773 | # | ||
| 774 | # Crypto core or helper | ||
| 775 | # | ||
| 761 | # CONFIG_CRYPTO_MANAGER is not set | 776 | # CONFIG_CRYPTO_MANAGER is not set |
| 777 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 778 | # CONFIG_CRYPTO_NULL is not set | ||
| 779 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 780 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 781 | |||
| 782 | # | ||
| 783 | # Authenticated Encryption with Associated Data | ||
| 784 | # | ||
| 785 | # CONFIG_CRYPTO_CCM is not set | ||
| 786 | # CONFIG_CRYPTO_GCM is not set | ||
| 787 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 788 | |||
| 789 | # | ||
| 790 | # Block modes | ||
| 791 | # | ||
| 792 | # CONFIG_CRYPTO_CBC is not set | ||
| 793 | # CONFIG_CRYPTO_CTR is not set | ||
| 794 | # CONFIG_CRYPTO_CTS is not set | ||
| 795 | # CONFIG_CRYPTO_ECB is not set | ||
| 796 | # CONFIG_CRYPTO_LRW is not set | ||
| 797 | # CONFIG_CRYPTO_PCBC is not set | ||
| 798 | # CONFIG_CRYPTO_XTS is not set | ||
| 799 | |||
| 800 | # | ||
| 801 | # Hash modes | ||
| 802 | # | ||
| 762 | # CONFIG_CRYPTO_HMAC is not set | 803 | # CONFIG_CRYPTO_HMAC is not set |
| 763 | # CONFIG_CRYPTO_XCBC is not set | 804 | # CONFIG_CRYPTO_XCBC is not set |
| 764 | # CONFIG_CRYPTO_NULL is not set | 805 | |
| 806 | # | ||
| 807 | # Digest | ||
| 808 | # | ||
| 809 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 765 | # CONFIG_CRYPTO_MD4 is not set | 810 | # CONFIG_CRYPTO_MD4 is not set |
| 766 | # CONFIG_CRYPTO_MD5 is not set | 811 | # CONFIG_CRYPTO_MD5 is not set |
| 812 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 767 | # CONFIG_CRYPTO_SHA1 is not set | 813 | # CONFIG_CRYPTO_SHA1 is not set |
| 768 | # CONFIG_CRYPTO_SHA256 is not set | 814 | # CONFIG_CRYPTO_SHA256 is not set |
| 769 | # CONFIG_CRYPTO_SHA512 is not set | 815 | # CONFIG_CRYPTO_SHA512 is not set |
| 770 | # CONFIG_CRYPTO_WP512 is not set | ||
| 771 | # CONFIG_CRYPTO_TGR192 is not set | 816 | # CONFIG_CRYPTO_TGR192 is not set |
| 772 | # CONFIG_CRYPTO_GF128MUL is not set | 817 | # CONFIG_CRYPTO_WP512 is not set |
| 773 | # CONFIG_CRYPTO_ECB is not set | 818 | |
| 774 | # CONFIG_CRYPTO_CBC is not set | 819 | # |
| 775 | # CONFIG_CRYPTO_PCBC is not set | 820 | # Ciphers |
| 776 | # CONFIG_CRYPTO_LRW is not set | 821 | # |
| 777 | # CONFIG_CRYPTO_XTS is not set | ||
| 778 | # CONFIG_CRYPTO_CTR is not set | ||
| 779 | # CONFIG_CRYPTO_GCM is not set | ||
| 780 | # CONFIG_CRYPTO_CCM is not set | ||
| 781 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 782 | # CONFIG_CRYPTO_DES is not set | ||
| 783 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 784 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 785 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 786 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 787 | # CONFIG_CRYPTO_AES is not set | 822 | # CONFIG_CRYPTO_AES is not set |
| 823 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 824 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 825 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 826 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 788 | # CONFIG_CRYPTO_CAST5 is not set | 827 | # CONFIG_CRYPTO_CAST5 is not set |
| 789 | # CONFIG_CRYPTO_CAST6 is not set | 828 | # CONFIG_CRYPTO_CAST6 is not set |
| 790 | # CONFIG_CRYPTO_TEA is not set | 829 | # CONFIG_CRYPTO_DES is not set |
| 791 | # CONFIG_CRYPTO_ARC4 is not set | 830 | # CONFIG_CRYPTO_FCRYPT is not set |
| 792 | # CONFIG_CRYPTO_KHAZAD is not set | 831 | # CONFIG_CRYPTO_KHAZAD is not set |
| 793 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 794 | # CONFIG_CRYPTO_SEED is not set | ||
| 795 | # CONFIG_CRYPTO_SALSA20 is not set | 832 | # CONFIG_CRYPTO_SALSA20 is not set |
| 833 | # CONFIG_CRYPTO_SEED is not set | ||
| 834 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 835 | # CONFIG_CRYPTO_TEA is not set | ||
| 836 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 837 | |||
| 838 | # | ||
| 839 | # Compression | ||
| 840 | # | ||
| 796 | # CONFIG_CRYPTO_DEFLATE is not set | 841 | # CONFIG_CRYPTO_DEFLATE is not set |
| 797 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 798 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 799 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 800 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 801 | # CONFIG_CRYPTO_LZO is not set | 842 | # CONFIG_CRYPTO_LZO is not set |
| 802 | CONFIG_CRYPTO_HW=y | 843 | CONFIG_CRYPTO_HW=y |
| 803 | # CONFIG_PPC_CLOCK is not set | 844 | # CONFIG_PPC_CLOCK is not set |
| 804 | CONFIG_PPC_LIB_RHEAP=y | 845 | CONFIG_PPC_LIB_RHEAP=y |
| 846 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/mpc885_ads_defconfig b/arch/powerpc/configs/mpc885_ads_defconfig index 82151b9bba26..9df78973005e 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:35 2008 | 4 | # Mon Jun 9 08:52:17 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -28,6 +28,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 28 | CONFIG_GENERIC_HARDIRQS=y | 28 | CONFIG_GENERIC_HARDIRQS=y |
| 29 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 29 | # CONFIG_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 | ||
| 32 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 31 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 32 | CONFIG_ARCH_HAS_ILOG2_U32=y | 34 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 33 | CONFIG_GENERIC_HWEIGHT=y | 35 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -108,6 +110,7 @@ CONFIG_SLUB=y | |||
| 108 | CONFIG_HAVE_OPROFILE=y | 110 | CONFIG_HAVE_OPROFILE=y |
| 109 | CONFIG_HAVE_KPROBES=y | 111 | CONFIG_HAVE_KPROBES=y |
| 110 | CONFIG_HAVE_KRETPROBES=y | 112 | CONFIG_HAVE_KRETPROBES=y |
| 113 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 111 | CONFIG_PROC_PAGE_MONITOR=y | 114 | CONFIG_PROC_PAGE_MONITOR=y |
| 112 | CONFIG_SLABINFO=y | 115 | CONFIG_SLABINFO=y |
| 113 | # CONFIG_TINY_SHMEM is not set | 116 | # CONFIG_TINY_SHMEM is not set |
| @@ -219,11 +222,13 @@ CONFIG_FLATMEM=y | |||
| 219 | CONFIG_FLAT_NODE_MEM_MAP=y | 222 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 220 | # CONFIG_SPARSEMEM_STATIC is not set | 223 | # CONFIG_SPARSEMEM_STATIC is not set |
| 221 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 224 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 225 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 222 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 226 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 223 | # CONFIG_RESOURCES_64BIT is not set | 227 | # CONFIG_RESOURCES_64BIT is not set |
| 224 | CONFIG_ZONE_DMA_FLAG=1 | 228 | CONFIG_ZONE_DMA_FLAG=1 |
| 225 | CONFIG_BOUNCE=y | 229 | CONFIG_BOUNCE=y |
| 226 | CONFIG_VIRT_TO_BUS=y | 230 | CONFIG_VIRT_TO_BUS=y |
| 231 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 227 | CONFIG_PROC_DEVICETREE=y | 232 | CONFIG_PROC_DEVICETREE=y |
| 228 | # CONFIG_CMDLINE_BOOL is not set | 233 | # CONFIG_CMDLINE_BOOL is not set |
| 229 | # CONFIG_PM is not set | 234 | # CONFIG_PM is not set |
| @@ -241,6 +246,7 @@ CONFIG_FSL_SOC=y | |||
| 241 | # CONFIG_PCI_QSPAN is not set | 246 | # CONFIG_PCI_QSPAN is not set |
| 242 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 247 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
| 243 | # CONFIG_PCCARD is not set | 248 | # CONFIG_PCCARD is not set |
| 249 | # CONFIG_HAS_RAPIDIO is not set | ||
| 244 | 250 | ||
| 245 | # | 251 | # |
| 246 | # Advanced setup | 252 | # Advanced setup |
| @@ -250,13 +256,13 @@ CONFIG_FSL_SOC=y | |||
| 250 | # | 256 | # |
| 251 | # Default settings for advanced configuration options are used | 257 | # Default settings for advanced configuration options are used |
| 252 | # | 258 | # |
| 253 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 254 | CONFIG_LOWMEM_SIZE=0x30000000 | 259 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 260 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 255 | CONFIG_KERNEL_START=0xc0000000 | 261 | CONFIG_KERNEL_START=0xc0000000 |
| 262 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 256 | CONFIG_TASK_SIZE=0x80000000 | 263 | CONFIG_TASK_SIZE=0x80000000 |
| 257 | CONFIG_CONSISTENT_START=0xfd000000 | 264 | CONFIG_CONSISTENT_START=0xfd000000 |
| 258 | CONFIG_CONSISTENT_SIZE=0x00200000 | 265 | CONFIG_CONSISTENT_SIZE=0x00200000 |
| 259 | CONFIG_BOOT_LOAD=0x00400000 | ||
| 260 | 266 | ||
| 261 | # | 267 | # |
| 262 | # Networking | 268 | # Networking |
| @@ -299,8 +305,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 299 | CONFIG_DEFAULT_TCP_CONG="cubic" | 305 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 300 | # CONFIG_TCP_MD5SIG is not set | 306 | # CONFIG_TCP_MD5SIG is not set |
| 301 | # CONFIG_IPV6 is not set | 307 | # CONFIG_IPV6 is not set |
| 302 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 303 | # CONFIG_INET6_TUNNEL is not set | ||
| 304 | # CONFIG_NETWORK_SECMARK is not set | 308 | # CONFIG_NETWORK_SECMARK is not set |
| 305 | # CONFIG_NETFILTER is not set | 309 | # CONFIG_NETFILTER is not set |
| 306 | # CONFIG_IP_DCCP is not set | 310 | # CONFIG_IP_DCCP is not set |
| @@ -492,6 +496,7 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
| 492 | # | 496 | # |
| 493 | # CONFIG_WLAN_PRE80211 is not set | 497 | # CONFIG_WLAN_PRE80211 is not set |
| 494 | # CONFIG_WLAN_80211 is not set | 498 | # CONFIG_WLAN_80211 is not set |
| 499 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 495 | # CONFIG_WAN is not set | 500 | # CONFIG_WAN is not set |
| 496 | # CONFIG_PPP is not set | 501 | # CONFIG_PPP is not set |
| 497 | # CONFIG_SLIP is not set | 502 | # CONFIG_SLIP is not set |
| @@ -516,6 +521,7 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
| 516 | # Character devices | 521 | # Character devices |
| 517 | # | 522 | # |
| 518 | # CONFIG_VT is not set | 523 | # CONFIG_VT is not set |
| 524 | CONFIG_DEVKMEM=y | ||
| 519 | # CONFIG_SERIAL_NONSTANDARD is not set | 525 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 520 | 526 | ||
| 521 | # | 527 | # |
| @@ -548,12 +554,7 @@ CONFIG_GEN_RTC=y | |||
| 548 | # CONFIG_RAW_DRIVER is not set | 554 | # CONFIG_RAW_DRIVER is not set |
| 549 | # CONFIG_TCG_TPM is not set | 555 | # CONFIG_TCG_TPM is not set |
| 550 | # CONFIG_I2C is not set | 556 | # CONFIG_I2C is not set |
| 551 | |||
| 552 | # | ||
| 553 | # SPI support | ||
| 554 | # | ||
| 555 | # CONFIG_SPI is not set | 557 | # CONFIG_SPI is not set |
| 556 | # CONFIG_SPI_MASTER is not set | ||
| 557 | # CONFIG_W1 is not set | 558 | # CONFIG_W1 is not set |
| 558 | # CONFIG_POWER_SUPPLY is not set | 559 | # CONFIG_POWER_SUPPLY is not set |
| 559 | # CONFIG_HWMON is not set | 560 | # CONFIG_HWMON is not set |
| @@ -570,12 +571,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 570 | # Multifunction device drivers | 571 | # Multifunction device drivers |
| 571 | # | 572 | # |
| 572 | # CONFIG_MFD_SM501 is not set | 573 | # CONFIG_MFD_SM501 is not set |
| 574 | # CONFIG_HTC_PASIC3 is not set | ||
| 573 | 575 | ||
| 574 | # | 576 | # |
| 575 | # Multimedia devices | 577 | # Multimedia devices |
| 576 | # | 578 | # |
| 579 | |||
| 580 | # | ||
| 581 | # Multimedia core support | ||
| 582 | # | ||
| 577 | # CONFIG_VIDEO_DEV is not set | 583 | # CONFIG_VIDEO_DEV is not set |
| 578 | # CONFIG_DVB_CORE is not set | 584 | # CONFIG_DVB_CORE is not set |
| 585 | # CONFIG_VIDEO_MEDIA is not set | ||
| 586 | |||
| 587 | # | ||
| 588 | # Multimedia drivers | ||
| 589 | # | ||
| 579 | CONFIG_DAB=y | 590 | CONFIG_DAB=y |
| 580 | 591 | ||
| 581 | # | 592 | # |
| @@ -599,13 +610,10 @@ CONFIG_DAB=y | |||
| 599 | # CONFIG_MMC is not set | 610 | # CONFIG_MMC is not set |
| 600 | # CONFIG_MEMSTICK is not set | 611 | # CONFIG_MEMSTICK is not set |
| 601 | # CONFIG_NEW_LEDS is not set | 612 | # CONFIG_NEW_LEDS is not set |
| 613 | # CONFIG_ACCESSIBILITY is not set | ||
| 602 | # CONFIG_EDAC is not set | 614 | # CONFIG_EDAC is not set |
| 603 | # CONFIG_RTC_CLASS is not set | 615 | # CONFIG_RTC_CLASS is not set |
| 604 | # CONFIG_DMADEVICES is not set | 616 | # CONFIG_DMADEVICES is not set |
| 605 | |||
| 606 | # | ||
| 607 | # Userspace I/O | ||
| 608 | # | ||
| 609 | # CONFIG_UIO is not set | 617 | # CONFIG_UIO is not set |
| 610 | 618 | ||
| 611 | # | 619 | # |
| @@ -618,7 +626,6 @@ CONFIG_DAB=y | |||
| 618 | # CONFIG_JFS_FS is not set | 626 | # CONFIG_JFS_FS is not set |
| 619 | # CONFIG_FS_POSIX_ACL is not set | 627 | # CONFIG_FS_POSIX_ACL is not set |
| 620 | # CONFIG_XFS_FS is not set | 628 | # CONFIG_XFS_FS is not set |
| 621 | # CONFIG_GFS2_FS is not set | ||
| 622 | # CONFIG_OCFS2_FS is not set | 629 | # CONFIG_OCFS2_FS is not set |
| 623 | # CONFIG_DNOTIFY is not set | 630 | # CONFIG_DNOTIFY is not set |
| 624 | # CONFIG_INOTIFY is not set | 631 | # CONFIG_INOTIFY is not set |
| @@ -676,7 +683,6 @@ CONFIG_NFS_FS=y | |||
| 676 | CONFIG_NFS_V3=y | 683 | CONFIG_NFS_V3=y |
| 677 | # CONFIG_NFS_V3_ACL is not set | 684 | # CONFIG_NFS_V3_ACL is not set |
| 678 | # CONFIG_NFS_V4 is not set | 685 | # CONFIG_NFS_V4 is not set |
| 679 | # CONFIG_NFS_DIRECTIO is not set | ||
| 680 | # CONFIG_NFSD is not set | 686 | # CONFIG_NFSD is not set |
| 681 | CONFIG_ROOT_NFS=y | 687 | CONFIG_ROOT_NFS=y |
| 682 | CONFIG_LOCKD=y | 688 | CONFIG_LOCKD=y |
| @@ -719,6 +725,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 719 | # | 725 | # |
| 720 | # Library routines | 726 | # Library routines |
| 721 | # | 727 | # |
| 728 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 722 | # CONFIG_CRC_CCITT is not set | 729 | # CONFIG_CRC_CCITT is not set |
| 723 | # CONFIG_CRC16 is not set | 730 | # CONFIG_CRC16 is not set |
| 724 | # CONFIG_CRC_ITU_T is not set | 731 | # CONFIG_CRC_ITU_T is not set |
| @@ -729,6 +736,7 @@ CONFIG_ZLIB_INFLATE=y | |||
| 729 | CONFIG_HAS_IOMEM=y | 736 | CONFIG_HAS_IOMEM=y |
| 730 | CONFIG_HAS_IOPORT=y | 737 | CONFIG_HAS_IOPORT=y |
| 731 | CONFIG_HAS_DMA=y | 738 | CONFIG_HAS_DMA=y |
| 739 | CONFIG_HAVE_LMB=y | ||
| 732 | 740 | ||
| 733 | # | 741 | # |
| 734 | # Kernel hacking | 742 | # Kernel hacking |
| @@ -736,6 +744,7 @@ CONFIG_HAS_DMA=y | |||
| 736 | # CONFIG_PRINTK_TIME is not set | 744 | # CONFIG_PRINTK_TIME is not set |
| 737 | CONFIG_ENABLE_WARN_DEPRECATED=y | 745 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 738 | CONFIG_ENABLE_MUST_CHECK=y | 746 | CONFIG_ENABLE_MUST_CHECK=y |
| 747 | CONFIG_FRAME_WARN=1024 | ||
| 739 | CONFIG_MAGIC_SYSRQ=y | 748 | CONFIG_MAGIC_SYSRQ=y |
| 740 | # CONFIG_UNUSED_SYMBOLS is not set | 749 | # CONFIG_UNUSED_SYMBOLS is not set |
| 741 | # CONFIG_DEBUG_FS is not set | 750 | # CONFIG_DEBUG_FS is not set |
| @@ -746,6 +755,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 746 | CONFIG_SCHED_DEBUG=y | 755 | CONFIG_SCHED_DEBUG=y |
| 747 | # CONFIG_SCHEDSTATS is not set | 756 | # CONFIG_SCHEDSTATS is not set |
| 748 | # CONFIG_TIMER_STATS is not set | 757 | # CONFIG_TIMER_STATS is not set |
| 758 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 749 | # CONFIG_SLUB_DEBUG_ON is not set | 759 | # CONFIG_SLUB_DEBUG_ON is not set |
| 750 | # CONFIG_SLUB_STATS is not set | 760 | # CONFIG_SLUB_STATS is not set |
| 751 | # CONFIG_DEBUG_SPINLOCK is not set | 761 | # CONFIG_DEBUG_SPINLOCK is not set |
| @@ -756,6 +766,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 756 | CONFIG_DEBUG_BUGVERBOSE=y | 766 | CONFIG_DEBUG_BUGVERBOSE=y |
| 757 | CONFIG_DEBUG_INFO=y | 767 | CONFIG_DEBUG_INFO=y |
| 758 | # CONFIG_DEBUG_VM is not set | 768 | # CONFIG_DEBUG_VM is not set |
| 769 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 759 | # CONFIG_DEBUG_LIST is not set | 770 | # CONFIG_DEBUG_LIST is not set |
| 760 | # CONFIG_DEBUG_SG is not set | 771 | # CONFIG_DEBUG_SG is not set |
| 761 | # CONFIG_BOOT_PRINTK_DELAY is not set | 772 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -766,6 +777,7 @@ CONFIG_DEBUG_INFO=y | |||
| 766 | # CONFIG_DEBUG_STACK_USAGE is not set | 777 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 767 | # CONFIG_DEBUG_PAGEALLOC is not set | 778 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 768 | # CONFIG_DEBUGGER is not set | 779 | # CONFIG_DEBUGGER is not set |
| 780 | # CONFIG_IRQSTACKS is not set | ||
| 769 | # CONFIG_BDI_SWITCH is not set | 781 | # CONFIG_BDI_SWITCH is not set |
| 770 | # CONFIG_PPC_EARLY_DEBUG is not set | 782 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 771 | 783 | ||
| @@ -778,3 +790,4 @@ CONFIG_DEBUG_INFO=y | |||
| 778 | # CONFIG_CRYPTO is not set | 790 | # CONFIG_CRYPTO is not set |
| 779 | # CONFIG_PPC_CLOCK is not set | 791 | # CONFIG_PPC_CLOCK is not set |
| 780 | CONFIG_PPC_LIB_RHEAP=y | 792 | CONFIG_PPC_LIB_RHEAP=y |
| 793 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/ppc64_defconfig b/arch/powerpc/configs/ppc64_defconfig index 40f84fa2bd29..ce250bc98584 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-rc3 | 3 | # Linux kernel version: 2.6.26-rc6 |
| 4 | # Tue May 20 20:03:02 2008 | 4 | # Mon Jun 16 21:11:19 2008 |
| 5 | # | 5 | # |
| 6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
| 7 | 7 | ||
| @@ -763,7 +763,63 @@ CONFIG_ATA_NONSTANDARD=y | |||
| 763 | CONFIG_SATA_PMP=y | 763 | CONFIG_SATA_PMP=y |
| 764 | # CONFIG_SATA_AHCI is not set | 764 | # CONFIG_SATA_AHCI is not set |
| 765 | CONFIG_SATA_SIL24=y | 765 | CONFIG_SATA_SIL24=y |
| 766 | # CONFIG_ATA_SFF is not set | 766 | CONFIG_ATA_SFF=y |
| 767 | CONFIG_SATA_SVW=y | ||
| 768 | # CONFIG_ATA_PIIX is not set | ||
| 769 | # CONFIG_SATA_MV is not set | ||
| 770 | # CONFIG_SATA_NV is not set | ||
| 771 | # CONFIG_PDC_ADMA is not set | ||
| 772 | # CONFIG_SATA_QSTOR is not set | ||
| 773 | # CONFIG_SATA_PROMISE is not set | ||
| 774 | # CONFIG_SATA_SX4 is not set | ||
| 775 | # CONFIG_SATA_SIL is not set | ||
| 776 | # CONFIG_SATA_SIS is not set | ||
| 777 | # CONFIG_SATA_ULI is not set | ||
| 778 | # CONFIG_SATA_VIA is not set | ||
| 779 | # CONFIG_SATA_VITESSE is not set | ||
| 780 | # CONFIG_SATA_INIC162X is not set | ||
| 781 | # CONFIG_PATA_ALI is not set | ||
| 782 | # CONFIG_PATA_AMD is not set | ||
| 783 | # CONFIG_PATA_ARTOP is not set | ||
| 784 | # CONFIG_PATA_ATIIXP is not set | ||
| 785 | # CONFIG_PATA_CMD640_PCI is not set | ||
| 786 | # CONFIG_PATA_CMD64X is not set | ||
| 787 | # CONFIG_PATA_CS5520 is not set | ||
| 788 | # CONFIG_PATA_CS5530 is not set | ||
| 789 | # CONFIG_PATA_CYPRESS is not set | ||
| 790 | # CONFIG_PATA_EFAR is not set | ||
| 791 | # CONFIG_ATA_GENERIC is not set | ||
| 792 | # CONFIG_PATA_HPT366 is not set | ||
| 793 | # CONFIG_PATA_HPT37X is not set | ||
| 794 | # CONFIG_PATA_HPT3X2N is not set | ||
| 795 | # CONFIG_PATA_HPT3X3 is not set | ||
| 796 | # CONFIG_PATA_IT821X is not set | ||
| 797 | # CONFIG_PATA_IT8213 is not set | ||
| 798 | # CONFIG_PATA_JMICRON is not set | ||
| 799 | # CONFIG_PATA_TRIFLEX is not set | ||
| 800 | # CONFIG_PATA_MARVELL is not set | ||
| 801 | # CONFIG_PATA_MPIIX is not set | ||
| 802 | # CONFIG_PATA_OLDPIIX is not set | ||
| 803 | # CONFIG_PATA_NETCELL is not set | ||
| 804 | # CONFIG_PATA_NINJA32 is not set | ||
| 805 | # CONFIG_PATA_NS87410 is not set | ||
| 806 | # CONFIG_PATA_NS87415 is not set | ||
| 807 | # CONFIG_PATA_OPTI is not set | ||
| 808 | # CONFIG_PATA_OPTIDMA is not set | ||
| 809 | # CONFIG_PATA_PCMCIA is not set | ||
| 810 | # CONFIG_PATA_PDC_OLD is not set | ||
| 811 | # CONFIG_PATA_RADISYS is not set | ||
| 812 | # CONFIG_PATA_RZ1000 is not set | ||
| 813 | # CONFIG_PATA_SC1200 is not set | ||
| 814 | # CONFIG_PATA_SERVERWORKS is not set | ||
| 815 | # CONFIG_PATA_PDC2027X is not set | ||
| 816 | # CONFIG_PATA_SIL680 is not set | ||
| 817 | # CONFIG_PATA_SIS is not set | ||
| 818 | # CONFIG_PATA_VIA is not set | ||
| 819 | # CONFIG_PATA_WINBOND is not set | ||
| 820 | # CONFIG_PATA_PLATFORM is not set | ||
| 821 | # CONFIG_PATA_SCC is not set | ||
| 822 | # CONFIG_PATA_SCH is not set | ||
| 767 | CONFIG_MD=y | 823 | CONFIG_MD=y |
| 768 | CONFIG_BLK_DEV_MD=y | 824 | CONFIG_BLK_DEV_MD=y |
| 769 | CONFIG_MD_LINEAR=y | 825 | CONFIG_MD_LINEAR=y |
| @@ -1478,6 +1534,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1478 | # | 1534 | # |
| 1479 | # CONFIG_USB_ACM is not set | 1535 | # CONFIG_USB_ACM is not set |
| 1480 | # CONFIG_USB_PRINTER is not set | 1536 | # CONFIG_USB_PRINTER is not set |
| 1537 | # CONFIG_USB_WDM is not set | ||
| 1481 | 1538 | ||
| 1482 | # | 1539 | # |
| 1483 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1540 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1537,6 +1594,7 @@ CONFIG_USB_APPLEDISPLAY=m | |||
| 1537 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1594 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1538 | # CONFIG_USB_IOWARRIOR is not set | 1595 | # CONFIG_USB_IOWARRIOR is not set |
| 1539 | # CONFIG_USB_TEST is not set | 1596 | # CONFIG_USB_TEST is not set |
| 1597 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1540 | # CONFIG_USB_GADGET is not set | 1598 | # CONFIG_USB_GADGET is not set |
| 1541 | # CONFIG_MMC is not set | 1599 | # CONFIG_MMC is not set |
| 1542 | # CONFIG_MEMSTICK is not set | 1600 | # CONFIG_MEMSTICK is not set |
| @@ -1597,6 +1655,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1597 | # CONFIG_RTC_DRV_PCF8583 is not set | 1655 | # CONFIG_RTC_DRV_PCF8583 is not set |
| 1598 | # CONFIG_RTC_DRV_M41T80 is not set | 1656 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1599 | # CONFIG_RTC_DRV_S35390A is not set | 1657 | # CONFIG_RTC_DRV_S35390A is not set |
| 1658 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 1600 | 1659 | ||
| 1601 | # | 1660 | # |
| 1602 | # SPI RTC drivers | 1661 | # SPI RTC drivers |
| @@ -1617,6 +1676,7 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1617 | # | 1676 | # |
| 1618 | # on-CPU RTC drivers | 1677 | # on-CPU RTC drivers |
| 1619 | # | 1678 | # |
| 1679 | CONFIG_RTC_DRV_PPC=y | ||
| 1620 | # CONFIG_DMADEVICES is not set | 1680 | # CONFIG_DMADEVICES is not set |
| 1621 | # CONFIG_UIO is not set | 1681 | # CONFIG_UIO is not set |
| 1622 | 1682 | ||
diff --git a/arch/powerpc/configs/pq2fads_defconfig b/arch/powerpc/configs/pq2fads_defconfig index 1383eb696a20..bc3bf62ddc2f 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 24 08:48:36 2008 | 4 | # Mon Jun 9 08:52:18 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -30,6 +30,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 30 | CONFIG_GENERIC_HARDIRQS=y | 30 | CONFIG_GENERIC_HARDIRQS=y |
| 31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 31 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 32 | CONFIG_IRQ_PER_CPU=y | 32 | CONFIG_IRQ_PER_CPU=y |
| 33 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 34 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 33 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 34 | CONFIG_ARCH_HAS_ILOG2_U32=y | 36 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 35 | CONFIG_GENERIC_HWEIGHT=y | 37 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -70,19 +72,17 @@ CONFIG_IKCONFIG=y | |||
| 70 | CONFIG_IKCONFIG_PROC=y | 72 | CONFIG_IKCONFIG_PROC=y |
| 71 | CONFIG_LOG_BUF_SHIFT=14 | 73 | CONFIG_LOG_BUF_SHIFT=14 |
| 72 | # CONFIG_CGROUPS is not set | 74 | # CONFIG_CGROUPS is not set |
| 73 | CONFIG_GROUP_SCHED=y | ||
| 74 | # CONFIG_FAIR_GROUP_SCHED is not set | ||
| 75 | CONFIG_USER_SCHED=y | ||
| 76 | # CONFIG_CGROUP_SCHED is not set | ||
| 77 | CONFIG_SYSFS_DEPRECATED=y | 75 | CONFIG_SYSFS_DEPRECATED=y |
| 78 | CONFIG_SYSFS_DEPRECATED_V2=y | 76 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 79 | # CONFIG_RELAY is not set | 77 | # CONFIG_RELAY is not set |
| 80 | # CONFIG_NAMESPACES is not set | 78 | # CONFIG_NAMESPACES is not set |
| 81 | CONFIG_BLK_DEV_INITRD=y | 79 | CONFIG_BLK_DEV_INITRD=y |
| 82 | CONFIG_INITRAMFS_SOURCE="" | 80 | CONFIG_INITRAMFS_SOURCE="" |
| 81 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 83 | CONFIG_SYSCTL=y | 82 | CONFIG_SYSCTL=y |
| 84 | CONFIG_EMBEDDED=y | 83 | CONFIG_EMBEDDED=y |
| 85 | CONFIG_SYSCTL_SYSCALL=y | 84 | CONFIG_SYSCTL_SYSCALL=y |
| 85 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 86 | CONFIG_KALLSYMS=y | 86 | CONFIG_KALLSYMS=y |
| 87 | CONFIG_KALLSYMS_ALL=y | 87 | CONFIG_KALLSYMS_ALL=y |
| 88 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 88 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -109,6 +109,7 @@ CONFIG_SLUB=y | |||
| 109 | CONFIG_HAVE_OPROFILE=y | 109 | CONFIG_HAVE_OPROFILE=y |
| 110 | CONFIG_HAVE_KPROBES=y | 110 | CONFIG_HAVE_KPROBES=y |
| 111 | CONFIG_HAVE_KRETPROBES=y | 111 | CONFIG_HAVE_KRETPROBES=y |
| 112 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 112 | CONFIG_PROC_PAGE_MONITOR=y | 113 | CONFIG_PROC_PAGE_MONITOR=y |
| 113 | CONFIG_SLABINFO=y | 114 | CONFIG_SLABINFO=y |
| 114 | CONFIG_RT_MUTEXES=y | 115 | CONFIG_RT_MUTEXES=y |
| @@ -196,11 +197,13 @@ CONFIG_FLATMEM=y | |||
| 196 | CONFIG_FLAT_NODE_MEM_MAP=y | 197 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 197 | # CONFIG_SPARSEMEM_STATIC is not set | 198 | # CONFIG_SPARSEMEM_STATIC is not set |
| 198 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 199 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 200 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 199 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 201 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 200 | # CONFIG_RESOURCES_64BIT is not set | 202 | # CONFIG_RESOURCES_64BIT is not set |
| 201 | CONFIG_ZONE_DMA_FLAG=1 | 203 | CONFIG_ZONE_DMA_FLAG=1 |
| 202 | CONFIG_BOUNCE=y | 204 | CONFIG_BOUNCE=y |
| 203 | CONFIG_VIRT_TO_BUS=y | 205 | CONFIG_VIRT_TO_BUS=y |
| 206 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 204 | CONFIG_PROC_DEVICETREE=y | 207 | CONFIG_PROC_DEVICETREE=y |
| 205 | # CONFIG_CMDLINE_BOOL is not set | 208 | # CONFIG_CMDLINE_BOOL is not set |
| 206 | # CONFIG_PM is not set | 209 | # CONFIG_PM is not set |
| @@ -225,6 +228,7 @@ CONFIG_PCI_LEGACY=y | |||
| 225 | # CONFIG_PCI_DEBUG is not set | 228 | # CONFIG_PCI_DEBUG is not set |
| 226 | # CONFIG_PCCARD is not set | 229 | # CONFIG_PCCARD is not set |
| 227 | # CONFIG_HOTPLUG_PCI is not set | 230 | # CONFIG_HOTPLUG_PCI is not set |
| 231 | # CONFIG_HAS_RAPIDIO is not set | ||
| 228 | 232 | ||
| 229 | # | 233 | # |
| 230 | # Advanced setup | 234 | # Advanced setup |
| @@ -234,11 +238,11 @@ CONFIG_PCI_LEGACY=y | |||
| 234 | # | 238 | # |
| 235 | # Default settings for advanced configuration options are used | 239 | # Default settings for advanced configuration options are used |
| 236 | # | 240 | # |
| 237 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 238 | CONFIG_LOWMEM_SIZE=0x30000000 | 241 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 242 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 239 | CONFIG_KERNEL_START=0xc0000000 | 243 | CONFIG_KERNEL_START=0xc0000000 |
| 244 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 240 | CONFIG_TASK_SIZE=0xc0000000 | 245 | CONFIG_TASK_SIZE=0xc0000000 |
| 241 | CONFIG_BOOT_LOAD=0x00400000 | ||
| 242 | 246 | ||
| 243 | # | 247 | # |
| 244 | # Networking | 248 | # Networking |
| @@ -293,6 +297,7 @@ CONFIG_INET6_XFRM_MODE_TRANSPORT=y | |||
| 293 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | 297 | CONFIG_INET6_XFRM_MODE_TUNNEL=y |
| 294 | CONFIG_INET6_XFRM_MODE_BEET=y | 298 | CONFIG_INET6_XFRM_MODE_BEET=y |
| 295 | CONFIG_IPV6_SIT=y | 299 | CONFIG_IPV6_SIT=y |
| 300 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
| 296 | # CONFIG_IPV6_TUNNEL is not set | 301 | # CONFIG_IPV6_TUNNEL is not set |
| 297 | # CONFIG_NETWORK_SECMARK is not set | 302 | # CONFIG_NETWORK_SECMARK is not set |
| 298 | CONFIG_NETFILTER=y | 303 | CONFIG_NETFILTER=y |
| @@ -513,7 +518,7 @@ CONFIG_IDE_PROC_FS=y | |||
| 513 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 518 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
| 514 | # CONFIG_BLK_DEV_TC86C001 is not set | 519 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 515 | # CONFIG_BLK_DEV_IDEDMA is not set | 520 | # CONFIG_BLK_DEV_IDEDMA is not set |
| 516 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 521 | # CONFIG_BLK_DEV_HD_ONLY is not set |
| 517 | # CONFIG_BLK_DEV_HD is not set | 522 | # CONFIG_BLK_DEV_HD is not set |
| 518 | 523 | ||
| 519 | # | 524 | # |
| @@ -593,7 +598,6 @@ CONFIG_NETDEV_1000=y | |||
| 593 | # CONFIG_SIS190 is not set | 598 | # CONFIG_SIS190 is not set |
| 594 | # CONFIG_SKGE is not set | 599 | # CONFIG_SKGE is not set |
| 595 | # CONFIG_SKY2 is not set | 600 | # CONFIG_SKY2 is not set |
| 596 | # CONFIG_SK98LIN is not set | ||
| 597 | # CONFIG_VIA_VELOCITY is not set | 601 | # CONFIG_VIA_VELOCITY is not set |
| 598 | # CONFIG_TIGON3 is not set | 602 | # CONFIG_TIGON3 is not set |
| 599 | # CONFIG_BNX2 is not set | 603 | # CONFIG_BNX2 is not set |
| @@ -611,6 +615,7 @@ CONFIG_NETDEV_10000=y | |||
| 611 | # CONFIG_MLX4_CORE is not set | 615 | # CONFIG_MLX4_CORE is not set |
| 612 | # CONFIG_TEHUTI is not set | 616 | # CONFIG_TEHUTI is not set |
| 613 | # CONFIG_BNX2X is not set | 617 | # CONFIG_BNX2X is not set |
| 618 | # CONFIG_SFC is not set | ||
| 614 | # CONFIG_TR is not set | 619 | # CONFIG_TR is not set |
| 615 | 620 | ||
| 616 | # | 621 | # |
| @@ -618,6 +623,7 @@ CONFIG_NETDEV_10000=y | |||
| 618 | # | 623 | # |
| 619 | # CONFIG_WLAN_PRE80211 is not set | 624 | # CONFIG_WLAN_PRE80211 is not set |
| 620 | # CONFIG_WLAN_80211 is not set | 625 | # CONFIG_WLAN_80211 is not set |
| 626 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 621 | # CONFIG_WAN is not set | 627 | # CONFIG_WAN is not set |
| 622 | # CONFIG_FDDI is not set | 628 | # CONFIG_FDDI is not set |
| 623 | CONFIG_PPP=y | 629 | CONFIG_PPP=y |
| @@ -692,6 +698,7 @@ CONFIG_SERIO_LIBPS2=y | |||
| 692 | # Character devices | 698 | # Character devices |
| 693 | # | 699 | # |
| 694 | # CONFIG_VT is not set | 700 | # CONFIG_VT is not set |
| 701 | CONFIG_DEVKMEM=y | ||
| 695 | # CONFIG_SERIAL_NONSTANDARD is not set | 702 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 696 | 703 | ||
| 697 | # | 704 | # |
| @@ -726,12 +733,7 @@ CONFIG_HW_RANDOM=y | |||
| 726 | # CONFIG_RAW_DRIVER is not set | 733 | # CONFIG_RAW_DRIVER is not set |
| 727 | CONFIG_DEVPORT=y | 734 | CONFIG_DEVPORT=y |
| 728 | # CONFIG_I2C is not set | 735 | # CONFIG_I2C is not set |
| 729 | |||
| 730 | # | ||
| 731 | # SPI support | ||
| 732 | # | ||
| 733 | # CONFIG_SPI is not set | 736 | # CONFIG_SPI is not set |
| 734 | # CONFIG_SPI_MASTER is not set | ||
| 735 | # CONFIG_W1 is not set | 737 | # CONFIG_W1 is not set |
| 736 | # CONFIG_POWER_SUPPLY is not set | 738 | # CONFIG_POWER_SUPPLY is not set |
| 737 | # CONFIG_HWMON is not set | 739 | # CONFIG_HWMON is not set |
| @@ -748,12 +750,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 748 | # Multifunction device drivers | 750 | # Multifunction device drivers |
| 749 | # | 751 | # |
| 750 | # CONFIG_MFD_SM501 is not set | 752 | # CONFIG_MFD_SM501 is not set |
| 753 | # CONFIG_HTC_PASIC3 is not set | ||
| 751 | 754 | ||
| 752 | # | 755 | # |
| 753 | # Multimedia devices | 756 | # Multimedia devices |
| 754 | # | 757 | # |
| 758 | |||
| 759 | # | ||
| 760 | # Multimedia core support | ||
| 761 | # | ||
| 755 | # CONFIG_VIDEO_DEV is not set | 762 | # CONFIG_VIDEO_DEV is not set |
| 756 | # CONFIG_DVB_CORE is not set | 763 | # CONFIG_DVB_CORE is not set |
| 764 | # CONFIG_VIDEO_MEDIA is not set | ||
| 765 | |||
| 766 | # | ||
| 767 | # Multimedia drivers | ||
| 768 | # | ||
| 757 | CONFIG_DAB=y | 769 | CONFIG_DAB=y |
| 758 | 770 | ||
| 759 | # | 771 | # |
| @@ -781,11 +793,14 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 781 | CONFIG_USB_ARCH_HAS_OHCI=y | 793 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 782 | CONFIG_USB_ARCH_HAS_EHCI=y | 794 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 783 | # CONFIG_USB is not set | 795 | # CONFIG_USB is not set |
| 796 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 797 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 784 | 798 | ||
| 785 | # | 799 | # |
| 786 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 800 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| 787 | # | 801 | # |
| 788 | CONFIG_USB_GADGET=y | 802 | CONFIG_USB_GADGET=y |
| 803 | # CONFIG_USB_GADGET_DEBUG is not set | ||
| 789 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | 804 | # CONFIG_USB_GADGET_DEBUG_FILES is not set |
| 790 | CONFIG_USB_GADGET_SELECTED=y | 805 | CONFIG_USB_GADGET_SELECTED=y |
| 791 | # CONFIG_USB_GADGET_AMD5536UDC is not set | 806 | # CONFIG_USB_GADGET_AMD5536UDC is not set |
| @@ -795,6 +810,7 @@ CONFIG_USB_GADGET_SELECTED=y | |||
| 795 | # CONFIG_USB_GADGET_PXA2XX is not set | 810 | # CONFIG_USB_GADGET_PXA2XX is not set |
| 796 | CONFIG_USB_GADGET_M66592=y | 811 | CONFIG_USB_GADGET_M66592=y |
| 797 | CONFIG_USB_M66592=y | 812 | CONFIG_USB_M66592=y |
| 813 | # CONFIG_USB_GADGET_PXA27X is not set | ||
| 798 | # CONFIG_USB_GADGET_GOKU is not set | 814 | # CONFIG_USB_GADGET_GOKU is not set |
| 799 | # CONFIG_USB_GADGET_LH7A40X is not set | 815 | # CONFIG_USB_GADGET_LH7A40X is not set |
| 800 | # CONFIG_USB_GADGET_OMAP is not set | 816 | # CONFIG_USB_GADGET_OMAP is not set |
| @@ -804,6 +820,7 @@ CONFIG_USB_M66592=y | |||
| 804 | CONFIG_USB_GADGET_DUALSPEED=y | 820 | CONFIG_USB_GADGET_DUALSPEED=y |
| 805 | # CONFIG_USB_ZERO is not set | 821 | # CONFIG_USB_ZERO is not set |
| 806 | CONFIG_USB_ETH=y | 822 | CONFIG_USB_ETH=y |
| 823 | CONFIG_USB_ETH_RNDIS=y | ||
| 807 | # CONFIG_USB_GADGETFS is not set | 824 | # CONFIG_USB_GADGETFS is not set |
| 808 | # CONFIG_USB_FILE_STORAGE is not set | 825 | # CONFIG_USB_FILE_STORAGE is not set |
| 809 | # CONFIG_USB_G_SERIAL is not set | 826 | # CONFIG_USB_G_SERIAL is not set |
| @@ -812,13 +829,10 @@ CONFIG_USB_ETH=y | |||
| 812 | # CONFIG_MMC is not set | 829 | # CONFIG_MMC is not set |
| 813 | # CONFIG_MEMSTICK is not set | 830 | # CONFIG_MEMSTICK is not set |
| 814 | # CONFIG_NEW_LEDS is not set | 831 | # CONFIG_NEW_LEDS is not set |
| 832 | # CONFIG_ACCESSIBILITY is not set | ||
| 815 | # CONFIG_INFINIBAND is not set | 833 | # CONFIG_INFINIBAND is not set |
| 816 | # CONFIG_RTC_CLASS is not set | 834 | # CONFIG_RTC_CLASS is not set |
| 817 | # CONFIG_DMADEVICES is not set | 835 | # CONFIG_DMADEVICES is not set |
| 818 | |||
| 819 | # | ||
| 820 | # Userspace I/O | ||
| 821 | # | ||
| 822 | # CONFIG_UIO is not set | 836 | # CONFIG_UIO is not set |
| 823 | 837 | ||
| 824 | # | 838 | # |
| @@ -888,7 +902,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 888 | CONFIG_NFS_FS=y | 902 | CONFIG_NFS_FS=y |
| 889 | CONFIG_NFS_V3=y | 903 | CONFIG_NFS_V3=y |
| 890 | CONFIG_NFS_V3_ACL=y | 904 | CONFIG_NFS_V3_ACL=y |
| 891 | # CONFIG_NFS_DIRECTIO is not set | ||
| 892 | # CONFIG_NFSD is not set | 905 | # CONFIG_NFSD is not set |
| 893 | CONFIG_ROOT_NFS=y | 906 | CONFIG_ROOT_NFS=y |
| 894 | CONFIG_LOCKD=y | 907 | CONFIG_LOCKD=y |
| @@ -967,6 +980,7 @@ CONFIG_NLS_UTF8=y | |||
| 967 | # Library routines | 980 | # Library routines |
| 968 | # | 981 | # |
| 969 | CONFIG_BITREVERSE=y | 982 | CONFIG_BITREVERSE=y |
| 983 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 970 | CONFIG_CRC_CCITT=y | 984 | CONFIG_CRC_CCITT=y |
| 971 | # CONFIG_CRC16 is not set | 985 | # CONFIG_CRC16 is not set |
| 972 | # CONFIG_CRC_ITU_T is not set | 986 | # CONFIG_CRC_ITU_T is not set |
| @@ -979,6 +993,7 @@ CONFIG_PLIST=y | |||
| 979 | CONFIG_HAS_IOMEM=y | 993 | CONFIG_HAS_IOMEM=y |
| 980 | CONFIG_HAS_IOPORT=y | 994 | CONFIG_HAS_IOPORT=y |
| 981 | CONFIG_HAS_DMA=y | 995 | CONFIG_HAS_DMA=y |
| 996 | CONFIG_HAVE_LMB=y | ||
| 982 | 997 | ||
| 983 | # | 998 | # |
| 984 | # Kernel hacking | 999 | # Kernel hacking |
| @@ -986,6 +1001,7 @@ CONFIG_HAS_DMA=y | |||
| 986 | # CONFIG_PRINTK_TIME is not set | 1001 | # CONFIG_PRINTK_TIME is not set |
| 987 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1002 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 988 | CONFIG_ENABLE_MUST_CHECK=y | 1003 | CONFIG_ENABLE_MUST_CHECK=y |
| 1004 | CONFIG_FRAME_WARN=1024 | ||
| 989 | CONFIG_MAGIC_SYSRQ=y | 1005 | CONFIG_MAGIC_SYSRQ=y |
| 990 | # CONFIG_UNUSED_SYMBOLS is not set | 1006 | # CONFIG_UNUSED_SYMBOLS is not set |
| 991 | # CONFIG_DEBUG_FS is not set | 1007 | # CONFIG_DEBUG_FS is not set |
| @@ -996,6 +1012,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 996 | # CONFIG_SCHED_DEBUG is not set | 1012 | # CONFIG_SCHED_DEBUG is not set |
| 997 | # CONFIG_SCHEDSTATS is not set | 1013 | # CONFIG_SCHEDSTATS is not set |
| 998 | # CONFIG_TIMER_STATS is not set | 1014 | # CONFIG_TIMER_STATS is not set |
| 1015 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 999 | # CONFIG_SLUB_DEBUG_ON is not set | 1016 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1000 | # CONFIG_SLUB_STATS is not set | 1017 | # CONFIG_SLUB_STATS is not set |
| 1001 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1018 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| @@ -1008,6 +1025,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1008 | CONFIG_DEBUG_BUGVERBOSE=y | 1025 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1009 | CONFIG_DEBUG_INFO=y | 1026 | CONFIG_DEBUG_INFO=y |
| 1010 | # CONFIG_DEBUG_VM is not set | 1027 | # CONFIG_DEBUG_VM is not set |
| 1028 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1011 | # CONFIG_DEBUG_LIST is not set | 1029 | # CONFIG_DEBUG_LIST is not set |
| 1012 | # CONFIG_DEBUG_SG is not set | 1030 | # CONFIG_DEBUG_SG is not set |
| 1013 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1031 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1019,6 +1037,7 @@ CONFIG_DEBUG_INFO=y | |||
| 1019 | # CONFIG_DEBUG_PAGEALLOC is not set | 1037 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1020 | # CONFIG_DEBUGGER is not set | 1038 | # CONFIG_DEBUGGER is not set |
| 1021 | # CONFIG_KGDB_CONSOLE is not set | 1039 | # CONFIG_KGDB_CONSOLE is not set |
| 1040 | # CONFIG_IRQSTACKS is not set | ||
| 1022 | CONFIG_BDI_SWITCH=y | 1041 | CONFIG_BDI_SWITCH=y |
| 1023 | # CONFIG_PPC_EARLY_DEBUG is not set | 1042 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1024 | 1043 | ||
| @@ -1028,46 +1047,76 @@ CONFIG_BDI_SWITCH=y | |||
| 1028 | # CONFIG_KEYS is not set | 1047 | # CONFIG_KEYS is not set |
| 1029 | # CONFIG_SECURITY is not set | 1048 | # CONFIG_SECURITY is not set |
| 1030 | CONFIG_CRYPTO=y | 1049 | CONFIG_CRYPTO=y |
| 1050 | |||
| 1051 | # | ||
| 1052 | # Crypto core or helper | ||
| 1053 | # | ||
| 1031 | CONFIG_CRYPTO_ALGAPI=y | 1054 | CONFIG_CRYPTO_ALGAPI=y |
| 1032 | CONFIG_CRYPTO_BLKCIPHER=y | 1055 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1033 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1034 | CONFIG_CRYPTO_MANAGER=y | 1056 | CONFIG_CRYPTO_MANAGER=y |
| 1035 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1036 | # CONFIG_CRYPTO_NULL is not set | 1057 | # CONFIG_CRYPTO_NULL is not set |
| 1058 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1059 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1060 | |||
| 1061 | # | ||
| 1062 | # Authenticated Encryption with Associated Data | ||
| 1063 | # | ||
| 1064 | # CONFIG_CRYPTO_CCM is not set | ||
| 1065 | # CONFIG_CRYPTO_GCM is not set | ||
| 1066 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1067 | |||
| 1068 | # | ||
| 1069 | # Block modes | ||
| 1070 | # | ||
| 1071 | CONFIG_CRYPTO_CBC=y | ||
| 1072 | # CONFIG_CRYPTO_CTR is not set | ||
| 1073 | # CONFIG_CRYPTO_CTS is not set | ||
| 1074 | CONFIG_CRYPTO_ECB=y | ||
| 1075 | CONFIG_CRYPTO_PCBC=y | ||
| 1076 | |||
| 1077 | # | ||
| 1078 | # Hash modes | ||
| 1079 | # | ||
| 1080 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1081 | |||
| 1082 | # | ||
| 1083 | # Digest | ||
| 1084 | # | ||
| 1085 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1037 | # CONFIG_CRYPTO_MD4 is not set | 1086 | # CONFIG_CRYPTO_MD4 is not set |
| 1038 | CONFIG_CRYPTO_MD5=y | 1087 | CONFIG_CRYPTO_MD5=y |
| 1088 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1039 | # CONFIG_CRYPTO_SHA1 is not set | 1089 | # CONFIG_CRYPTO_SHA1 is not set |
| 1040 | # CONFIG_CRYPTO_SHA256 is not set | 1090 | # CONFIG_CRYPTO_SHA256 is not set |
| 1041 | # CONFIG_CRYPTO_SHA512 is not set | 1091 | # CONFIG_CRYPTO_SHA512 is not set |
| 1042 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1043 | # CONFIG_CRYPTO_TGR192 is not set | 1092 | # CONFIG_CRYPTO_TGR192 is not set |
| 1044 | CONFIG_CRYPTO_ECB=y | 1093 | # CONFIG_CRYPTO_WP512 is not set |
| 1045 | CONFIG_CRYPTO_CBC=y | 1094 | |
| 1046 | CONFIG_CRYPTO_PCBC=y | 1095 | # |
| 1047 | # CONFIG_CRYPTO_CTR is not set | 1096 | # Ciphers |
| 1048 | # CONFIG_CRYPTO_GCM is not set | 1097 | # |
| 1049 | # CONFIG_CRYPTO_CCM is not set | ||
| 1050 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1051 | CONFIG_CRYPTO_DES=y | ||
| 1052 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1053 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1054 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1055 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1056 | # CONFIG_CRYPTO_AES is not set | 1098 | # CONFIG_CRYPTO_AES is not set |
| 1099 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1100 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1101 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1102 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1057 | # CONFIG_CRYPTO_CAST5 is not set | 1103 | # CONFIG_CRYPTO_CAST5 is not set |
| 1058 | # CONFIG_CRYPTO_CAST6 is not set | 1104 | # CONFIG_CRYPTO_CAST6 is not set |
| 1059 | # CONFIG_CRYPTO_TEA is not set | 1105 | CONFIG_CRYPTO_DES=y |
| 1060 | # CONFIG_CRYPTO_ARC4 is not set | 1106 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1061 | # CONFIG_CRYPTO_KHAZAD is not set | 1107 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1062 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1063 | # CONFIG_CRYPTO_SEED is not set | 1108 | # CONFIG_CRYPTO_SEED is not set |
| 1109 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1110 | # CONFIG_CRYPTO_TEA is not set | ||
| 1111 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1112 | |||
| 1113 | # | ||
| 1114 | # Compression | ||
| 1115 | # | ||
| 1064 | # CONFIG_CRYPTO_DEFLATE is not set | 1116 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1065 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1066 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1067 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1068 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1069 | # CONFIG_CRYPTO_LZO is not set | 1117 | # CONFIG_CRYPTO_LZO is not set |
| 1070 | CONFIG_CRYPTO_HW=y | 1118 | CONFIG_CRYPTO_HW=y |
| 1071 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1119 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1072 | # CONFIG_PPC_CLOCK is not set | 1120 | # CONFIG_PPC_CLOCK is not set |
| 1073 | CONFIG_PPC_LIB_RHEAP=y | 1121 | CONFIG_PPC_LIB_RHEAP=y |
| 1122 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/prpmc2800_defconfig b/arch/powerpc/configs/prpmc2800_defconfig index f9121685f11a..c6b83577c055 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.25-rc7 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 31 11:37:15 2008 | 4 | # Mon Jun 9 08:52:18 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -33,6 +33,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 33 | CONFIG_GENERIC_HARDIRQS=y | 33 | CONFIG_GENERIC_HARDIRQS=y |
| 34 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 34 | # CONFIG_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 | ||
| 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 |
| @@ -92,6 +94,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 92 | CONFIG_SYSCTL=y | 94 | CONFIG_SYSCTL=y |
| 93 | # CONFIG_EMBEDDED is not set | 95 | # CONFIG_EMBEDDED is not set |
| 94 | CONFIG_SYSCTL_SYSCALL=y | 96 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 95 | CONFIG_KALLSYMS=y | 98 | CONFIG_KALLSYMS=y |
| 96 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 97 | CONFIG_HOTPLUG=y | 100 | CONFIG_HOTPLUG=y |
| @@ -117,6 +120,7 @@ CONFIG_SLUB=y | |||
| 117 | CONFIG_HAVE_OPROFILE=y | 120 | CONFIG_HAVE_OPROFILE=y |
| 118 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
| 119 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
| 123 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 120 | CONFIG_PROC_PAGE_MONITOR=y | 124 | CONFIG_PROC_PAGE_MONITOR=y |
| 121 | CONFIG_SLABINFO=y | 125 | CONFIG_SLABINFO=y |
| 122 | CONFIG_RT_MUTEXES=y | 126 | CONFIG_RT_MUTEXES=y |
| @@ -215,11 +219,13 @@ CONFIG_FLATMEM=y | |||
| 215 | CONFIG_FLAT_NODE_MEM_MAP=y | 219 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 216 | # CONFIG_SPARSEMEM_STATIC is not set | 220 | # CONFIG_SPARSEMEM_STATIC is not set |
| 217 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 221 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 222 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 218 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 223 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 219 | # CONFIG_RESOURCES_64BIT is not set | 224 | # CONFIG_RESOURCES_64BIT is not set |
| 220 | CONFIG_ZONE_DMA_FLAG=1 | 225 | CONFIG_ZONE_DMA_FLAG=1 |
| 221 | CONFIG_BOUNCE=y | 226 | CONFIG_BOUNCE=y |
| 222 | CONFIG_VIRT_TO_BUS=y | 227 | CONFIG_VIRT_TO_BUS=y |
| 228 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 223 | CONFIG_PROC_DEVICETREE=y | 229 | CONFIG_PROC_DEVICETREE=y |
| 224 | # CONFIG_CMDLINE_BOOL is not set | 230 | # CONFIG_CMDLINE_BOOL is not set |
| 225 | # CONFIG_PM is not set | 231 | # CONFIG_PM is not set |
| @@ -241,6 +247,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 241 | CONFIG_PCI_LEGACY=y | 247 | CONFIG_PCI_LEGACY=y |
| 242 | # CONFIG_PCCARD is not set | 248 | # CONFIG_PCCARD is not set |
| 243 | # CONFIG_HOTPLUG_PCI is not set | 249 | # CONFIG_HOTPLUG_PCI is not set |
| 250 | # CONFIG_HAS_RAPIDIO is not set | ||
| 244 | 251 | ||
| 245 | # | 252 | # |
| 246 | # Advanced setup | 253 | # Advanced setup |
| @@ -250,13 +257,13 @@ CONFIG_PCI_LEGACY=y | |||
| 250 | # | 257 | # |
| 251 | # Default settings for advanced configuration options are used | 258 | # Default settings for advanced configuration options are used |
| 252 | # | 259 | # |
| 253 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 254 | CONFIG_LOWMEM_SIZE=0x30000000 | 260 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 261 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 255 | CONFIG_KERNEL_START=0xc0000000 | 262 | CONFIG_KERNEL_START=0xc0000000 |
| 263 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 256 | CONFIG_TASK_SIZE=0xc0000000 | 264 | CONFIG_TASK_SIZE=0xc0000000 |
| 257 | CONFIG_CONSISTENT_START=0xff100000 | 265 | CONFIG_CONSISTENT_START=0xff100000 |
| 258 | CONFIG_CONSISTENT_SIZE=0x00200000 | 266 | CONFIG_CONSISTENT_SIZE=0x00200000 |
| 259 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 260 | 267 | ||
| 261 | # | 268 | # |
| 262 | # Networking | 269 | # Networking |
| @@ -304,8 +311,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 304 | CONFIG_DEFAULT_TCP_CONG="cubic" | 311 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 305 | # CONFIG_TCP_MD5SIG is not set | 312 | # CONFIG_TCP_MD5SIG is not set |
| 306 | # CONFIG_IPV6 is not set | 313 | # CONFIG_IPV6 is not set |
| 307 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 308 | # CONFIG_INET6_TUNNEL is not set | ||
| 309 | # CONFIG_NETWORK_SECMARK is not set | 314 | # CONFIG_NETWORK_SECMARK is not set |
| 310 | # CONFIG_NETFILTER is not set | 315 | # CONFIG_NETFILTER is not set |
| 311 | # CONFIG_IP_DCCP is not set | 316 | # CONFIG_IP_DCCP is not set |
| @@ -364,6 +369,7 @@ CONFIG_MTD_PARTITIONS=y | |||
| 364 | # CONFIG_MTD_REDBOOT_PARTS is not set | 369 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 365 | # CONFIG_MTD_CMDLINE_PARTS is not set | 370 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 366 | # CONFIG_MTD_OF_PARTS is not set | 371 | # CONFIG_MTD_OF_PARTS is not set |
| 372 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 367 | 373 | ||
| 368 | # | 374 | # |
| 369 | # User Modules And Translation Layers | 375 | # User Modules And Translation Layers |
| @@ -435,6 +441,7 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 435 | # | 441 | # |
| 436 | # CONFIG_MTD_UBI is not set | 442 | # CONFIG_MTD_UBI is not set |
| 437 | CONFIG_OF_DEVICE=y | 443 | CONFIG_OF_DEVICE=y |
| 444 | CONFIG_OF_I2C=y | ||
| 438 | # CONFIG_PARPORT is not set | 445 | # CONFIG_PARPORT is not set |
| 439 | CONFIG_BLK_DEV=y | 446 | CONFIG_BLK_DEV=y |
| 440 | # CONFIG_BLK_DEV_FD is not set | 447 | # CONFIG_BLK_DEV_FD is not set |
| @@ -519,7 +526,7 @@ CONFIG_BLK_DEV_PDC202XX_NEW=y | |||
| 519 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 526 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
| 520 | # CONFIG_BLK_DEV_TC86C001 is not set | 527 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 521 | CONFIG_BLK_DEV_IDEDMA=y | 528 | CONFIG_BLK_DEV_IDEDMA=y |
| 522 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 529 | # CONFIG_BLK_DEV_HD_ONLY is not set |
| 523 | # CONFIG_BLK_DEV_HD is not set | 530 | # CONFIG_BLK_DEV_HD is not set |
| 524 | 531 | ||
| 525 | # | 532 | # |
| @@ -598,7 +605,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 598 | # CONFIG_SCSI_SRP is not set | 605 | # CONFIG_SCSI_SRP is not set |
| 599 | CONFIG_ATA=y | 606 | CONFIG_ATA=y |
| 600 | # CONFIG_ATA_NONSTANDARD is not set | 607 | # CONFIG_ATA_NONSTANDARD is not set |
| 608 | CONFIG_SATA_PMP=y | ||
| 601 | # CONFIG_SATA_AHCI is not set | 609 | # CONFIG_SATA_AHCI is not set |
| 610 | # CONFIG_SATA_SIL24 is not set | ||
| 611 | CONFIG_ATA_SFF=y | ||
| 602 | # CONFIG_SATA_SVW is not set | 612 | # CONFIG_SATA_SVW is not set |
| 603 | # CONFIG_ATA_PIIX is not set | 613 | # CONFIG_ATA_PIIX is not set |
| 604 | CONFIG_SATA_MV=y | 614 | CONFIG_SATA_MV=y |
| @@ -608,7 +618,6 @@ CONFIG_SATA_MV=y | |||
| 608 | # CONFIG_SATA_PROMISE is not set | 618 | # CONFIG_SATA_PROMISE is not set |
| 609 | # CONFIG_SATA_SX4 is not set | 619 | # CONFIG_SATA_SX4 is not set |
| 610 | # CONFIG_SATA_SIL is not set | 620 | # CONFIG_SATA_SIL is not set |
| 611 | # CONFIG_SATA_SIL24 is not set | ||
| 612 | # CONFIG_SATA_SIS is not set | 621 | # CONFIG_SATA_SIS is not set |
| 613 | # CONFIG_SATA_ULI is not set | 622 | # CONFIG_SATA_ULI is not set |
| 614 | # CONFIG_SATA_VIA is not set | 623 | # CONFIG_SATA_VIA is not set |
| @@ -653,6 +662,7 @@ CONFIG_SATA_MV=y | |||
| 653 | # CONFIG_PATA_VIA is not set | 662 | # CONFIG_PATA_VIA is not set |
| 654 | # CONFIG_PATA_WINBOND is not set | 663 | # CONFIG_PATA_WINBOND is not set |
| 655 | # CONFIG_PATA_PLATFORM is not set | 664 | # CONFIG_PATA_PLATFORM is not set |
| 665 | # CONFIG_PATA_SCH is not set | ||
| 656 | # CONFIG_MD is not set | 666 | # CONFIG_MD is not set |
| 657 | # CONFIG_FUSION is not set | 667 | # CONFIG_FUSION is not set |
| 658 | 668 | ||
| @@ -744,7 +754,6 @@ CONFIG_E1000=y | |||
| 744 | # CONFIG_SIS190 is not set | 754 | # CONFIG_SIS190 is not set |
| 745 | # CONFIG_SKGE is not set | 755 | # CONFIG_SKGE is not set |
| 746 | # CONFIG_SKY2 is not set | 756 | # CONFIG_SKY2 is not set |
| 747 | # CONFIG_SK98LIN is not set | ||
| 748 | # CONFIG_VIA_VELOCITY is not set | 757 | # CONFIG_VIA_VELOCITY is not set |
| 749 | # CONFIG_TIGON3 is not set | 758 | # CONFIG_TIGON3 is not set |
| 750 | # CONFIG_BNX2 is not set | 759 | # CONFIG_BNX2 is not set |
| @@ -763,6 +772,7 @@ CONFIG_NETDEV_10000=y | |||
| 763 | # CONFIG_MLX4_CORE is not set | 772 | # CONFIG_MLX4_CORE is not set |
| 764 | # CONFIG_TEHUTI is not set | 773 | # CONFIG_TEHUTI is not set |
| 765 | # CONFIG_BNX2X is not set | 774 | # CONFIG_BNX2X is not set |
| 775 | # CONFIG_SFC is not set | ||
| 766 | # CONFIG_TR is not set | 776 | # CONFIG_TR is not set |
| 767 | 777 | ||
| 768 | # | 778 | # |
| @@ -770,6 +780,7 @@ CONFIG_NETDEV_10000=y | |||
| 770 | # | 780 | # |
| 771 | # CONFIG_WLAN_PRE80211 is not set | 781 | # CONFIG_WLAN_PRE80211 is not set |
| 772 | # CONFIG_WLAN_80211 is not set | 782 | # CONFIG_WLAN_80211 is not set |
| 783 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 773 | 784 | ||
| 774 | # | 785 | # |
| 775 | # USB Network Adapters | 786 | # USB Network Adapters |
| @@ -832,6 +843,7 @@ CONFIG_VT=y | |||
| 832 | CONFIG_VT_CONSOLE=y | 843 | CONFIG_VT_CONSOLE=y |
| 833 | CONFIG_HW_CONSOLE=y | 844 | CONFIG_HW_CONSOLE=y |
| 834 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 845 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 846 | CONFIG_DEVKMEM=y | ||
| 835 | # CONFIG_SERIAL_NONSTANDARD is not set | 847 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 836 | # CONFIG_NOZOMI is not set | 848 | # CONFIG_NOZOMI is not set |
| 837 | 849 | ||
| @@ -855,7 +867,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 855 | # CONFIG_IPMI_HANDLER is not set | 867 | # CONFIG_IPMI_HANDLER is not set |
| 856 | # CONFIG_HW_RANDOM is not set | 868 | # CONFIG_HW_RANDOM is not set |
| 857 | # CONFIG_NVRAM is not set | 869 | # CONFIG_NVRAM is not set |
| 858 | # CONFIG_GEN_RTC is not set | ||
| 859 | # CONFIG_R3964 is not set | 870 | # CONFIG_R3964 is not set |
| 860 | # CONFIG_APPLICOM is not set | 871 | # CONFIG_APPLICOM is not set |
| 861 | # CONFIG_RAW_DRIVER is not set | 872 | # CONFIG_RAW_DRIVER is not set |
| @@ -866,13 +877,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 866 | CONFIG_I2C_CHARDEV=y | 877 | CONFIG_I2C_CHARDEV=y |
| 867 | 878 | ||
| 868 | # | 879 | # |
| 869 | # I2C Algorithms | ||
| 870 | # | ||
| 871 | # CONFIG_I2C_ALGOBIT is not set | ||
| 872 | # CONFIG_I2C_ALGOPCF is not set | ||
| 873 | # CONFIG_I2C_ALGOPCA is not set | ||
| 874 | |||
| 875 | # | ||
| 876 | # I2C Hardware Bus support | 880 | # I2C Hardware Bus support |
| 877 | # | 881 | # |
| 878 | # CONFIG_I2C_ALI1535 is not set | 882 | # CONFIG_I2C_ALI1535 is not set |
| @@ -898,6 +902,7 @@ CONFIG_I2C_CHARDEV=y | |||
| 898 | # CONFIG_I2C_VIA is not set | 902 | # CONFIG_I2C_VIA is not set |
| 899 | # CONFIG_I2C_VIAPRO is not set | 903 | # CONFIG_I2C_VIAPRO is not set |
| 900 | # CONFIG_I2C_VOODOO3 is not set | 904 | # CONFIG_I2C_VOODOO3 is not set |
| 905 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 901 | CONFIG_I2C_MV64XXX=y | 906 | CONFIG_I2C_MV64XXX=y |
| 902 | 907 | ||
| 903 | # | 908 | # |
| @@ -908,19 +913,13 @@ CONFIG_I2C_MV64XXX=y | |||
| 908 | # CONFIG_SENSORS_PCF8574 is not set | 913 | # CONFIG_SENSORS_PCF8574 is not set |
| 909 | # CONFIG_PCF8575 is not set | 914 | # CONFIG_PCF8575 is not set |
| 910 | # CONFIG_SENSORS_PCF8591 is not set | 915 | # CONFIG_SENSORS_PCF8591 is not set |
| 911 | # CONFIG_TPS65010 is not set | ||
| 912 | # CONFIG_SENSORS_MAX6875 is not set | 916 | # CONFIG_SENSORS_MAX6875 is not set |
| 913 | # CONFIG_SENSORS_TSL2550 is not set | 917 | # CONFIG_SENSORS_TSL2550 is not set |
| 914 | # CONFIG_I2C_DEBUG_CORE is not set | 918 | # CONFIG_I2C_DEBUG_CORE is not set |
| 915 | # CONFIG_I2C_DEBUG_ALGO is not set | 919 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 916 | # CONFIG_I2C_DEBUG_BUS is not set | 920 | # CONFIG_I2C_DEBUG_BUS is not set |
| 917 | # CONFIG_I2C_DEBUG_CHIP is not set | 921 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 918 | |||
| 919 | # | ||
| 920 | # SPI support | ||
| 921 | # | ||
| 922 | # CONFIG_SPI is not set | 922 | # CONFIG_SPI is not set |
| 923 | # CONFIG_SPI_MASTER is not set | ||
| 924 | # CONFIG_W1 is not set | 923 | # CONFIG_W1 is not set |
| 925 | # CONFIG_POWER_SUPPLY is not set | 924 | # CONFIG_POWER_SUPPLY is not set |
| 926 | CONFIG_HWMON=y | 925 | CONFIG_HWMON=y |
| @@ -990,12 +989,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 990 | # Multifunction device drivers | 989 | # Multifunction device drivers |
| 991 | # | 990 | # |
| 992 | # CONFIG_MFD_SM501 is not set | 991 | # CONFIG_MFD_SM501 is not set |
| 992 | # CONFIG_HTC_PASIC3 is not set | ||
| 993 | 993 | ||
| 994 | # | 994 | # |
| 995 | # Multimedia devices | 995 | # Multimedia devices |
| 996 | # | 996 | # |
| 997 | |||
| 998 | # | ||
| 999 | # Multimedia core support | ||
| 1000 | # | ||
| 997 | # CONFIG_VIDEO_DEV is not set | 1001 | # CONFIG_VIDEO_DEV is not set |
| 998 | # CONFIG_DVB_CORE is not set | 1002 | # CONFIG_DVB_CORE is not set |
| 1003 | # CONFIG_VIDEO_MEDIA is not set | ||
| 1004 | |||
| 1005 | # | ||
| 1006 | # Multimedia drivers | ||
| 1007 | # | ||
| 999 | # CONFIG_DAB is not set | 1008 | # CONFIG_DAB is not set |
| 1000 | 1009 | ||
| 1001 | # | 1010 | # |
| @@ -1055,11 +1064,13 @@ CONFIG_USB_DEVICEFS=y | |||
| 1055 | # | 1064 | # |
| 1056 | # USB Host Controller Drivers | 1065 | # USB Host Controller Drivers |
| 1057 | # | 1066 | # |
| 1067 | # CONFIG_USB_C67X00_HCD is not set | ||
| 1058 | CONFIG_USB_EHCI_HCD=y | 1068 | CONFIG_USB_EHCI_HCD=y |
| 1059 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1069 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 1060 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1070 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1061 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1071 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 1062 | # CONFIG_USB_ISP116X_HCD is not set | 1072 | # CONFIG_USB_ISP116X_HCD is not set |
| 1073 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 1063 | CONFIG_USB_OHCI_HCD=y | 1074 | CONFIG_USB_OHCI_HCD=y |
| 1064 | # CONFIG_USB_OHCI_HCD_PPC_OF is not set | 1075 | # CONFIG_USB_OHCI_HCD_PPC_OF is not set |
| 1065 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 1076 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
| @@ -1074,6 +1085,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1074 | # | 1085 | # |
| 1075 | # CONFIG_USB_ACM is not set | 1086 | # CONFIG_USB_ACM is not set |
| 1076 | # CONFIG_USB_PRINTER is not set | 1087 | # CONFIG_USB_PRINTER is not set |
| 1088 | # CONFIG_USB_WDM is not set | ||
| 1077 | 1089 | ||
| 1078 | # | 1090 | # |
| 1079 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1091 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1120,10 +1132,12 @@ CONFIG_USB_MON=y | |||
| 1120 | # CONFIG_USB_TRANCEVIBRATOR is not set | 1132 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 1121 | # CONFIG_USB_IOWARRIOR is not set | 1133 | # CONFIG_USB_IOWARRIOR is not set |
| 1122 | # CONFIG_USB_TEST is not set | 1134 | # CONFIG_USB_TEST is not set |
| 1135 | # CONFIG_USB_ISIGHTFW is not set | ||
| 1123 | # CONFIG_USB_GADGET is not set | 1136 | # CONFIG_USB_GADGET is not set |
| 1124 | # CONFIG_MMC is not set | 1137 | # CONFIG_MMC is not set |
| 1125 | # CONFIG_MEMSTICK is not set | 1138 | # CONFIG_MEMSTICK is not set |
| 1126 | # CONFIG_NEW_LEDS is not set | 1139 | # CONFIG_NEW_LEDS is not set |
| 1140 | # CONFIG_ACCESSIBILITY is not set | ||
| 1127 | # CONFIG_INFINIBAND is not set | 1141 | # CONFIG_INFINIBAND is not set |
| 1128 | # CONFIG_EDAC is not set | 1142 | # CONFIG_EDAC is not set |
| 1129 | CONFIG_RTC_LIB=y | 1143 | CONFIG_RTC_LIB=y |
| @@ -1175,11 +1189,8 @@ CONFIG_RTC_DRV_MAX6900=y | |||
| 1175 | # | 1189 | # |
| 1176 | # on-CPU RTC drivers | 1190 | # on-CPU RTC drivers |
| 1177 | # | 1191 | # |
| 1192 | # CONFIG_RTC_DRV_PPC is not set | ||
| 1178 | # CONFIG_DMADEVICES is not set | 1193 | # CONFIG_DMADEVICES is not set |
| 1179 | |||
| 1180 | # | ||
| 1181 | # Userspace I/O | ||
| 1182 | # | ||
| 1183 | # CONFIG_UIO is not set | 1194 | # CONFIG_UIO is not set |
| 1184 | 1195 | ||
| 1185 | # | 1196 | # |
| @@ -1199,7 +1210,6 @@ CONFIG_FS_MBCACHE=y | |||
| 1199 | # CONFIG_JFS_FS is not set | 1210 | # CONFIG_JFS_FS is not set |
| 1200 | # CONFIG_FS_POSIX_ACL is not set | 1211 | # CONFIG_FS_POSIX_ACL is not set |
| 1201 | # CONFIG_XFS_FS is not set | 1212 | # CONFIG_XFS_FS is not set |
| 1202 | # CONFIG_GFS2_FS is not set | ||
| 1203 | # CONFIG_OCFS2_FS is not set | 1213 | # CONFIG_OCFS2_FS is not set |
| 1204 | CONFIG_DNOTIFY=y | 1214 | CONFIG_DNOTIFY=y |
| 1205 | CONFIG_INOTIFY=y | 1215 | CONFIG_INOTIFY=y |
| @@ -1257,7 +1267,6 @@ CONFIG_NETWORK_FILESYSTEMS=y | |||
| 1257 | CONFIG_NFS_FS=y | 1267 | CONFIG_NFS_FS=y |
| 1258 | # CONFIG_NFS_V3 is not set | 1268 | # CONFIG_NFS_V3 is not set |
| 1259 | # CONFIG_NFS_V4 is not set | 1269 | # CONFIG_NFS_V4 is not set |
| 1260 | # CONFIG_NFS_DIRECTIO is not set | ||
| 1261 | # CONFIG_NFSD is not set | 1270 | # CONFIG_NFSD is not set |
| 1262 | CONFIG_ROOT_NFS=y | 1271 | CONFIG_ROOT_NFS=y |
| 1263 | CONFIG_LOCKD=y | 1272 | CONFIG_LOCKD=y |
| @@ -1300,6 +1309,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1300 | # Library routines | 1309 | # Library routines |
| 1301 | # | 1310 | # |
| 1302 | CONFIG_BITREVERSE=y | 1311 | CONFIG_BITREVERSE=y |
| 1312 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1303 | # CONFIG_CRC_CCITT is not set | 1313 | # CONFIG_CRC_CCITT is not set |
| 1304 | # CONFIG_CRC16 is not set | 1314 | # CONFIG_CRC16 is not set |
| 1305 | # CONFIG_CRC_ITU_T is not set | 1315 | # CONFIG_CRC_ITU_T is not set |
| @@ -1310,6 +1320,7 @@ CONFIG_PLIST=y | |||
| 1310 | CONFIG_HAS_IOMEM=y | 1320 | CONFIG_HAS_IOMEM=y |
| 1311 | CONFIG_HAS_IOPORT=y | 1321 | CONFIG_HAS_IOPORT=y |
| 1312 | CONFIG_HAS_DMA=y | 1322 | CONFIG_HAS_DMA=y |
| 1323 | CONFIG_HAVE_LMB=y | ||
| 1313 | 1324 | ||
| 1314 | # | 1325 | # |
| 1315 | # Kernel hacking | 1326 | # Kernel hacking |
| @@ -1317,6 +1328,7 @@ CONFIG_HAS_DMA=y | |||
| 1317 | # CONFIG_PRINTK_TIME is not set | 1328 | # CONFIG_PRINTK_TIME is not set |
| 1318 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1329 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1319 | CONFIG_ENABLE_MUST_CHECK=y | 1330 | CONFIG_ENABLE_MUST_CHECK=y |
| 1331 | CONFIG_FRAME_WARN=1024 | ||
| 1320 | # CONFIG_MAGIC_SYSRQ is not set | 1332 | # CONFIG_MAGIC_SYSRQ is not set |
| 1321 | # CONFIG_UNUSED_SYMBOLS is not set | 1333 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1322 | # CONFIG_DEBUG_FS is not set | 1334 | # CONFIG_DEBUG_FS is not set |
| @@ -1326,6 +1338,7 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1326 | # CONFIG_SLUB_STATS is not set | 1338 | # CONFIG_SLUB_STATS is not set |
| 1327 | CONFIG_DEBUG_BUGVERBOSE=y | 1339 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1328 | # CONFIG_SAMPLES is not set | 1340 | # CONFIG_SAMPLES is not set |
| 1341 | # CONFIG_IRQSTACKS is not set | ||
| 1329 | # CONFIG_BOOTX_TEXT is not set | 1342 | # CONFIG_BOOTX_TEXT is not set |
| 1330 | # CONFIG_PPC_EARLY_DEBUG is not set | 1343 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1331 | 1344 | ||
| @@ -1336,48 +1349,78 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 1336 | # CONFIG_SECURITY is not set | 1349 | # CONFIG_SECURITY is not set |
| 1337 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1350 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1338 | CONFIG_CRYPTO=y | 1351 | CONFIG_CRYPTO=y |
| 1339 | # CONFIG_CRYPTO_SEQIV is not set | 1352 | |
| 1353 | # | ||
| 1354 | # Crypto core or helper | ||
| 1355 | # | ||
| 1340 | # CONFIG_CRYPTO_MANAGER is not set | 1356 | # CONFIG_CRYPTO_MANAGER is not set |
| 1357 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1358 | # CONFIG_CRYPTO_NULL is not set | ||
| 1359 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1360 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1361 | |||
| 1362 | # | ||
| 1363 | # Authenticated Encryption with Associated Data | ||
| 1364 | # | ||
| 1365 | # CONFIG_CRYPTO_CCM is not set | ||
| 1366 | # CONFIG_CRYPTO_GCM is not set | ||
| 1367 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1368 | |||
| 1369 | # | ||
| 1370 | # Block modes | ||
| 1371 | # | ||
| 1372 | # CONFIG_CRYPTO_CBC is not set | ||
| 1373 | # CONFIG_CRYPTO_CTR is not set | ||
| 1374 | # CONFIG_CRYPTO_CTS is not set | ||
| 1375 | # CONFIG_CRYPTO_ECB is not set | ||
| 1376 | # CONFIG_CRYPTO_LRW is not set | ||
| 1377 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1378 | # CONFIG_CRYPTO_XTS is not set | ||
| 1379 | |||
| 1380 | # | ||
| 1381 | # Hash modes | ||
| 1382 | # | ||
| 1341 | # CONFIG_CRYPTO_HMAC is not set | 1383 | # CONFIG_CRYPTO_HMAC is not set |
| 1342 | # CONFIG_CRYPTO_XCBC is not set | 1384 | # CONFIG_CRYPTO_XCBC is not set |
| 1343 | # CONFIG_CRYPTO_NULL is not set | 1385 | |
| 1386 | # | ||
| 1387 | # Digest | ||
| 1388 | # | ||
| 1389 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1344 | # CONFIG_CRYPTO_MD4 is not set | 1390 | # CONFIG_CRYPTO_MD4 is not set |
| 1345 | # CONFIG_CRYPTO_MD5 is not set | 1391 | # CONFIG_CRYPTO_MD5 is not set |
| 1392 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1346 | # CONFIG_CRYPTO_SHA1 is not set | 1393 | # CONFIG_CRYPTO_SHA1 is not set |
| 1347 | # CONFIG_CRYPTO_SHA256 is not set | 1394 | # CONFIG_CRYPTO_SHA256 is not set |
| 1348 | # CONFIG_CRYPTO_SHA512 is not set | 1395 | # CONFIG_CRYPTO_SHA512 is not set |
| 1349 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1350 | # CONFIG_CRYPTO_TGR192 is not set | 1396 | # CONFIG_CRYPTO_TGR192 is not set |
| 1351 | # CONFIG_CRYPTO_GF128MUL is not set | 1397 | # CONFIG_CRYPTO_WP512 is not set |
| 1352 | # CONFIG_CRYPTO_ECB is not set | 1398 | |
| 1353 | # CONFIG_CRYPTO_CBC is not set | 1399 | # |
| 1354 | # CONFIG_CRYPTO_PCBC is not set | 1400 | # Ciphers |
| 1355 | # CONFIG_CRYPTO_LRW is not set | 1401 | # |
| 1356 | # CONFIG_CRYPTO_XTS is not set | ||
| 1357 | # CONFIG_CRYPTO_CTR is not set | ||
| 1358 | # CONFIG_CRYPTO_GCM is not set | ||
| 1359 | # CONFIG_CRYPTO_CCM is not set | ||
| 1360 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1361 | # CONFIG_CRYPTO_DES is not set | ||
| 1362 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1363 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1364 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1365 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1366 | # CONFIG_CRYPTO_AES is not set | 1402 | # CONFIG_CRYPTO_AES is not set |
| 1403 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1404 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1405 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1406 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1367 | # CONFIG_CRYPTO_CAST5 is not set | 1407 | # CONFIG_CRYPTO_CAST5 is not set |
| 1368 | # CONFIG_CRYPTO_CAST6 is not set | 1408 | # CONFIG_CRYPTO_CAST6 is not set |
| 1369 | # CONFIG_CRYPTO_TEA is not set | 1409 | # CONFIG_CRYPTO_DES is not set |
| 1370 | # CONFIG_CRYPTO_ARC4 is not set | 1410 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1371 | # CONFIG_CRYPTO_KHAZAD is not set | 1411 | # CONFIG_CRYPTO_KHAZAD is not set |
| 1372 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1373 | # CONFIG_CRYPTO_SEED is not set | ||
| 1374 | # CONFIG_CRYPTO_SALSA20 is not set | 1412 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1413 | # CONFIG_CRYPTO_SEED is not set | ||
| 1414 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1415 | # CONFIG_CRYPTO_TEA is not set | ||
| 1416 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1417 | |||
| 1418 | # | ||
| 1419 | # Compression | ||
| 1420 | # | ||
| 1375 | # CONFIG_CRYPTO_DEFLATE is not set | 1421 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1376 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1377 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1378 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1379 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1380 | # CONFIG_CRYPTO_LZO is not set | 1422 | # CONFIG_CRYPTO_LZO is not set |
| 1381 | CONFIG_CRYPTO_HW=y | 1423 | CONFIG_CRYPTO_HW=y |
| 1382 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1424 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1383 | # CONFIG_PPC_CLOCK is not set | 1425 | # CONFIG_PPC_CLOCK is not set |
| 1426 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/sbc8641d_defconfig b/arch/powerpc/configs/sbc8641d_defconfig index 3180125aa6c4..8227510b41a9 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.25-rc6 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Thu Apr 10 18:03:25 2008 | 4 | # Mon Jun 9 08:52:19 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -32,6 +32,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 32 | CONFIG_GENERIC_HARDIRQS=y | 32 | CONFIG_GENERIC_HARDIRQS=y |
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 33 | # CONFIG_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 | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 35 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 36 | CONFIG_GENERIC_LOCKBREAK=y | 38 | CONFIG_GENERIC_LOCKBREAK=y |
| 37 | CONFIG_ARCH_HAS_ILOG2_U32=y | 39 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -90,6 +92,7 @@ CONFIG_INITRAMFS_SOURCE="" | |||
| 90 | CONFIG_SYSCTL=y | 92 | CONFIG_SYSCTL=y |
| 91 | CONFIG_EMBEDDED=y | 93 | CONFIG_EMBEDDED=y |
| 92 | CONFIG_SYSCTL_SYSCALL=y | 94 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | CONFIG_KALLSYMS=y | 96 | CONFIG_KALLSYMS=y |
| 94 | # CONFIG_KALLSYMS_ALL is not set | 97 | # CONFIG_KALLSYMS_ALL is not set |
| 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 98 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| @@ -116,12 +119,14 @@ CONFIG_HAVE_OPROFILE=y | |||
| 116 | # CONFIG_KPROBES is not set | 119 | # CONFIG_KPROBES is not set |
| 117 | CONFIG_HAVE_KPROBES=y | 120 | CONFIG_HAVE_KPROBES=y |
| 118 | CONFIG_HAVE_KRETPROBES=y | 121 | CONFIG_HAVE_KRETPROBES=y |
| 122 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 119 | CONFIG_PROC_PAGE_MONITOR=y | 123 | CONFIG_PROC_PAGE_MONITOR=y |
| 120 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
| 121 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
| 122 | # CONFIG_TINY_SHMEM is not set | 126 | # CONFIG_TINY_SHMEM is not set |
| 123 | CONFIG_BASE_SMALL=0 | 127 | CONFIG_BASE_SMALL=0 |
| 124 | CONFIG_MODULES=y | 128 | CONFIG_MODULES=y |
| 129 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 125 | CONFIG_MODULE_UNLOAD=y | 130 | CONFIG_MODULE_UNLOAD=y |
| 126 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 131 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 127 | # CONFIG_MODVERSIONS is not set | 132 | # CONFIG_MODVERSIONS is not set |
| @@ -197,7 +202,6 @@ CONFIG_PREEMPT=y | |||
| 197 | # CONFIG_PREEMPT_RCU is not set | 202 | # CONFIG_PREEMPT_RCU is not set |
| 198 | CONFIG_BINFMT_ELF=y | 203 | CONFIG_BINFMT_ELF=y |
| 199 | CONFIG_BINFMT_MISC=m | 204 | CONFIG_BINFMT_MISC=m |
| 200 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 201 | # CONFIG_IOMMU_HELPER is not set | 205 | # CONFIG_IOMMU_HELPER is not set |
| 202 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 206 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
| 203 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 207 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| @@ -213,11 +217,13 @@ CONFIG_FLATMEM=y | |||
| 213 | CONFIG_FLAT_NODE_MEM_MAP=y | 217 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 214 | # CONFIG_SPARSEMEM_STATIC is not set | 218 | # CONFIG_SPARSEMEM_STATIC is not set |
| 215 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 219 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 220 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 216 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 221 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 217 | # CONFIG_RESOURCES_64BIT is not set | 222 | # CONFIG_RESOURCES_64BIT is not set |
| 218 | CONFIG_ZONE_DMA_FLAG=1 | 223 | CONFIG_ZONE_DMA_FLAG=1 |
| 219 | CONFIG_BOUNCE=y | 224 | CONFIG_BOUNCE=y |
| 220 | CONFIG_VIRT_TO_BUS=y | 225 | CONFIG_VIRT_TO_BUS=y |
| 226 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 221 | # CONFIG_PROC_DEVICETREE is not set | 227 | # CONFIG_PROC_DEVICETREE is not set |
| 222 | # CONFIG_CMDLINE_BOOL is not set | 228 | # CONFIG_CMDLINE_BOOL is not set |
| 223 | # CONFIG_PM is not set | 229 | # CONFIG_PM is not set |
| @@ -237,12 +243,14 @@ CONFIG_PCI_DOMAINS=y | |||
| 237 | CONFIG_PCI_SYSCALL=y | 243 | CONFIG_PCI_SYSCALL=y |
| 238 | CONFIG_PCIEPORTBUS=y | 244 | CONFIG_PCIEPORTBUS=y |
| 239 | CONFIG_PCIEAER=y | 245 | CONFIG_PCIEAER=y |
| 246 | # CONFIG_PCIEASPM is not set | ||
| 240 | CONFIG_ARCH_SUPPORTS_MSI=y | 247 | CONFIG_ARCH_SUPPORTS_MSI=y |
| 241 | # CONFIG_PCI_MSI is not set | 248 | # CONFIG_PCI_MSI is not set |
| 242 | CONFIG_PCI_LEGACY=y | 249 | CONFIG_PCI_LEGACY=y |
| 243 | # CONFIG_PCI_DEBUG is not set | 250 | # CONFIG_PCI_DEBUG is not set |
| 244 | # CONFIG_PCCARD is not set | 251 | # CONFIG_PCCARD is not set |
| 245 | # CONFIG_HOTPLUG_PCI is not set | 252 | # CONFIG_HOTPLUG_PCI is not set |
| 253 | # CONFIG_HAS_RAPIDIO is not set | ||
| 246 | 254 | ||
| 247 | # | 255 | # |
| 248 | # Advanced setup | 256 | # Advanced setup |
| @@ -252,11 +260,11 @@ CONFIG_PCI_LEGACY=y | |||
| 252 | # | 260 | # |
| 253 | # Default settings for advanced configuration options are used | 261 | # Default settings for advanced configuration options are used |
| 254 | # | 262 | # |
| 255 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 256 | CONFIG_LOWMEM_SIZE=0x30000000 | 263 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 264 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 257 | CONFIG_KERNEL_START=0xc0000000 | 265 | CONFIG_KERNEL_START=0xc0000000 |
| 266 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 258 | CONFIG_TASK_SIZE=0xc0000000 | 267 | CONFIG_TASK_SIZE=0xc0000000 |
| 259 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 260 | 268 | ||
| 261 | # | 269 | # |
| 262 | # Networking | 270 | # Networking |
| @@ -328,8 +336,10 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=m | |||
| 328 | CONFIG_INET6_XFRM_MODE_BEET=m | 336 | CONFIG_INET6_XFRM_MODE_BEET=m |
| 329 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 337 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set |
| 330 | CONFIG_IPV6_SIT=m | 338 | CONFIG_IPV6_SIT=m |
| 339 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
| 331 | CONFIG_IPV6_TUNNEL=m | 340 | CONFIG_IPV6_TUNNEL=m |
| 332 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | 341 | # CONFIG_IPV6_MULTIPLE_TABLES is not set |
| 342 | # CONFIG_IPV6_MROUTE is not set | ||
| 333 | # CONFIG_NETLABEL is not set | 343 | # CONFIG_NETLABEL is not set |
| 334 | # CONFIG_NETWORK_SECMARK is not set | 344 | # CONFIG_NETWORK_SECMARK is not set |
| 335 | CONFIG_NETFILTER=y | 345 | CONFIG_NETFILTER=y |
| @@ -534,6 +544,7 @@ CONFIG_MTD_PARTITIONS=y | |||
| 534 | # CONFIG_MTD_REDBOOT_PARTS is not set | 544 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 535 | # CONFIG_MTD_CMDLINE_PARTS is not set | 545 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 536 | # CONFIG_MTD_OF_PARTS is not set | 546 | # CONFIG_MTD_OF_PARTS is not set |
| 547 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 537 | 548 | ||
| 538 | # | 549 | # |
| 539 | # User Modules And Translation Layers | 550 | # User Modules And Translation Layers |
| @@ -610,6 +621,7 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 610 | # | 621 | # |
| 611 | # CONFIG_MTD_UBI is not set | 622 | # CONFIG_MTD_UBI is not set |
| 612 | CONFIG_OF_DEVICE=y | 623 | CONFIG_OF_DEVICE=y |
| 624 | CONFIG_OF_I2C=y | ||
| 613 | # CONFIG_PARPORT is not set | 625 | # CONFIG_PARPORT is not set |
| 614 | CONFIG_BLK_DEV=y | 626 | CONFIG_BLK_DEV=y |
| 615 | # CONFIG_BLK_DEV_FD is not set | 627 | # CONFIG_BLK_DEV_FD is not set |
| @@ -727,7 +739,6 @@ CONFIG_NETDEV_1000=y | |||
| 727 | # CONFIG_SIS190 is not set | 739 | # CONFIG_SIS190 is not set |
| 728 | # CONFIG_SKGE is not set | 740 | # CONFIG_SKGE is not set |
| 729 | # CONFIG_SKY2 is not set | 741 | # CONFIG_SKY2 is not set |
| 730 | # CONFIG_SK98LIN is not set | ||
| 731 | # CONFIG_VIA_VELOCITY is not set | 742 | # CONFIG_VIA_VELOCITY is not set |
| 732 | # CONFIG_TIGON3 is not set | 743 | # CONFIG_TIGON3 is not set |
| 733 | # CONFIG_BNX2 is not set | 744 | # CONFIG_BNX2 is not set |
| @@ -743,6 +754,7 @@ CONFIG_GIANFAR=y | |||
| 743 | # | 754 | # |
| 744 | # CONFIG_WLAN_PRE80211 is not set | 755 | # CONFIG_WLAN_PRE80211 is not set |
| 745 | # CONFIG_WLAN_80211 is not set | 756 | # CONFIG_WLAN_80211 is not set |
| 757 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 746 | # CONFIG_WAN is not set | 758 | # CONFIG_WAN is not set |
| 747 | CONFIG_ATM_DRIVERS=y | 759 | CONFIG_ATM_DRIVERS=y |
| 748 | # CONFIG_ATM_DUMMY is not set | 760 | # CONFIG_ATM_DUMMY is not set |
| @@ -825,6 +837,7 @@ CONFIG_VT=y | |||
| 825 | CONFIG_VT_CONSOLE=y | 837 | CONFIG_VT_CONSOLE=y |
| 826 | CONFIG_HW_CONSOLE=y | 838 | CONFIG_HW_CONSOLE=y |
| 827 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 839 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| 840 | CONFIG_DEVKMEM=y | ||
| 828 | # CONFIG_SERIAL_NONSTANDARD is not set | 841 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 829 | # CONFIG_NOZOMI is not set | 842 | # CONFIG_NOZOMI is not set |
| 830 | 843 | ||
| @@ -863,13 +876,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 863 | CONFIG_I2C_CHARDEV=y | 876 | CONFIG_I2C_CHARDEV=y |
| 864 | 877 | ||
| 865 | # | 878 | # |
| 866 | # I2C Algorithms | ||
| 867 | # | ||
| 868 | # CONFIG_I2C_ALGOBIT is not set | ||
| 869 | # CONFIG_I2C_ALGOPCF is not set | ||
| 870 | # CONFIG_I2C_ALGOPCA is not set | ||
| 871 | |||
| 872 | # | ||
| 873 | # I2C Hardware Bus support | 879 | # I2C Hardware Bus support |
| 874 | # | 880 | # |
| 875 | # CONFIG_I2C_ALI1535 is not set | 881 | # CONFIG_I2C_ALI1535 is not set |
| @@ -895,6 +901,7 @@ CONFIG_I2C_MPC=y | |||
| 895 | # CONFIG_I2C_VIA is not set | 901 | # CONFIG_I2C_VIA is not set |
| 896 | # CONFIG_I2C_VIAPRO is not set | 902 | # CONFIG_I2C_VIAPRO is not set |
| 897 | # CONFIG_I2C_VOODOO3 is not set | 903 | # CONFIG_I2C_VOODOO3 is not set |
| 904 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 898 | 905 | ||
| 899 | # | 906 | # |
| 900 | # Miscellaneous I2C Chip support | 907 | # Miscellaneous I2C Chip support |
| @@ -904,19 +911,13 @@ CONFIG_I2C_MPC=y | |||
| 904 | # CONFIG_SENSORS_PCF8574 is not set | 911 | # CONFIG_SENSORS_PCF8574 is not set |
| 905 | # CONFIG_PCF8575 is not set | 912 | # CONFIG_PCF8575 is not set |
| 906 | # CONFIG_SENSORS_PCF8591 is not set | 913 | # CONFIG_SENSORS_PCF8591 is not set |
| 907 | # CONFIG_TPS65010 is not set | ||
| 908 | # CONFIG_SENSORS_MAX6875 is not set | 914 | # CONFIG_SENSORS_MAX6875 is not set |
| 909 | # CONFIG_SENSORS_TSL2550 is not set | 915 | # CONFIG_SENSORS_TSL2550 is not set |
| 910 | # CONFIG_I2C_DEBUG_CORE is not set | 916 | # CONFIG_I2C_DEBUG_CORE is not set |
| 911 | # CONFIG_I2C_DEBUG_ALGO is not set | 917 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 912 | # CONFIG_I2C_DEBUG_BUS is not set | 918 | # CONFIG_I2C_DEBUG_BUS is not set |
| 913 | # CONFIG_I2C_DEBUG_CHIP is not set | 919 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 914 | |||
| 915 | # | ||
| 916 | # SPI support | ||
| 917 | # | ||
| 918 | # CONFIG_SPI is not set | 920 | # CONFIG_SPI is not set |
| 919 | # CONFIG_SPI_MASTER is not set | ||
| 920 | # CONFIG_W1 is not set | 921 | # CONFIG_W1 is not set |
| 921 | # CONFIG_POWER_SUPPLY is not set | 922 | # CONFIG_POWER_SUPPLY is not set |
| 922 | CONFIG_HWMON=y | 923 | CONFIG_HWMON=y |
| @@ -998,12 +999,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 998 | # Multifunction device drivers | 999 | # Multifunction device drivers |
| 999 | # | 1000 | # |
| 1000 | # CONFIG_MFD_SM501 is not set | 1001 | # CONFIG_MFD_SM501 is not set |
| 1002 | # CONFIG_HTC_PASIC3 is not set | ||
| 1001 | 1003 | ||
| 1002 | # | 1004 | # |
| 1003 | # Multimedia devices | 1005 | # Multimedia devices |
| 1004 | # | 1006 | # |
| 1007 | |||
| 1008 | # | ||
| 1009 | # Multimedia core support | ||
| 1010 | # | ||
| 1005 | # CONFIG_VIDEO_DEV is not set | 1011 | # CONFIG_VIDEO_DEV is not set |
| 1006 | # CONFIG_DVB_CORE is not set | 1012 | # CONFIG_DVB_CORE is not set |
| 1013 | # CONFIG_VIDEO_MEDIA is not set | ||
| 1014 | |||
| 1015 | # | ||
| 1016 | # Multimedia drivers | ||
| 1017 | # | ||
| 1007 | CONFIG_DAB=y | 1018 | CONFIG_DAB=y |
| 1008 | 1019 | ||
| 1009 | # | 1020 | # |
| @@ -1041,6 +1052,8 @@ CONFIG_USB_ARCH_HAS_HCD=y | |||
| 1041 | CONFIG_USB_ARCH_HAS_OHCI=y | 1052 | CONFIG_USB_ARCH_HAS_OHCI=y |
| 1042 | CONFIG_USB_ARCH_HAS_EHCI=y | 1053 | CONFIG_USB_ARCH_HAS_EHCI=y |
| 1043 | # CONFIG_USB is not set | 1054 | # CONFIG_USB is not set |
| 1055 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 1056 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 1044 | 1057 | ||
| 1045 | # | 1058 | # |
| 1046 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1059 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -1049,14 +1062,11 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1049 | # CONFIG_MMC is not set | 1062 | # CONFIG_MMC is not set |
| 1050 | # CONFIG_MEMSTICK is not set | 1063 | # CONFIG_MEMSTICK is not set |
| 1051 | # CONFIG_NEW_LEDS is not set | 1064 | # CONFIG_NEW_LEDS is not set |
| 1065 | # CONFIG_ACCESSIBILITY is not set | ||
| 1052 | # CONFIG_INFINIBAND is not set | 1066 | # CONFIG_INFINIBAND is not set |
| 1053 | # CONFIG_EDAC is not set | 1067 | # CONFIG_EDAC is not set |
| 1054 | # CONFIG_RTC_CLASS is not set | 1068 | # CONFIG_RTC_CLASS is not set |
| 1055 | # CONFIG_DMADEVICES is not set | 1069 | # CONFIG_DMADEVICES is not set |
| 1056 | |||
| 1057 | # | ||
| 1058 | # Userspace I/O | ||
| 1059 | # | ||
| 1060 | # CONFIG_UIO is not set | 1070 | # CONFIG_UIO is not set |
| 1061 | 1071 | ||
| 1062 | # | 1072 | # |
| @@ -1084,8 +1094,8 @@ CONFIG_REISERFS_FS_POSIX_ACL=y | |||
| 1084 | # CONFIG_JFS_FS is not set | 1094 | # CONFIG_JFS_FS is not set |
| 1085 | CONFIG_FS_POSIX_ACL=y | 1095 | CONFIG_FS_POSIX_ACL=y |
| 1086 | # CONFIG_XFS_FS is not set | 1096 | # CONFIG_XFS_FS is not set |
| 1087 | # CONFIG_GFS2_FS is not set | ||
| 1088 | CONFIG_OCFS2_FS=m | 1097 | CONFIG_OCFS2_FS=m |
| 1098 | CONFIG_OCFS2_FS_O2CB=m | ||
| 1089 | CONFIG_OCFS2_DEBUG_MASKLOG=y | 1099 | CONFIG_OCFS2_DEBUG_MASKLOG=y |
| 1090 | # CONFIG_OCFS2_DEBUG_FS is not set | 1100 | # CONFIG_OCFS2_DEBUG_FS is not set |
| 1091 | CONFIG_DNOTIFY=y | 1101 | CONFIG_DNOTIFY=y |
| @@ -1145,7 +1155,6 @@ CONFIG_NFS_FS=y | |||
| 1145 | CONFIG_NFS_V3=y | 1155 | CONFIG_NFS_V3=y |
| 1146 | # CONFIG_NFS_V3_ACL is not set | 1156 | # CONFIG_NFS_V3_ACL is not set |
| 1147 | CONFIG_NFS_V4=y | 1157 | CONFIG_NFS_V4=y |
| 1148 | CONFIG_NFS_DIRECTIO=y | ||
| 1149 | # CONFIG_NFSD is not set | 1158 | # CONFIG_NFSD is not set |
| 1150 | CONFIG_ROOT_NFS=y | 1159 | CONFIG_ROOT_NFS=y |
| 1151 | CONFIG_LOCKD=y | 1160 | CONFIG_LOCKD=y |
| @@ -1221,6 +1230,7 @@ CONFIG_NLS_UTF8=m | |||
| 1221 | # Library routines | 1230 | # Library routines |
| 1222 | # | 1231 | # |
| 1223 | CONFIG_BITREVERSE=y | 1232 | CONFIG_BITREVERSE=y |
| 1233 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1224 | CONFIG_CRC_CCITT=m | 1234 | CONFIG_CRC_CCITT=m |
| 1225 | # CONFIG_CRC16 is not set | 1235 | # CONFIG_CRC16 is not set |
| 1226 | # CONFIG_CRC_ITU_T is not set | 1236 | # CONFIG_CRC_ITU_T is not set |
| @@ -1241,6 +1251,7 @@ CONFIG_HAVE_LMB=y | |||
| 1241 | # CONFIG_PRINTK_TIME is not set | 1251 | # CONFIG_PRINTK_TIME is not set |
| 1242 | CONFIG_ENABLE_WARN_DEPRECATED=y | 1252 | CONFIG_ENABLE_WARN_DEPRECATED=y |
| 1243 | CONFIG_ENABLE_MUST_CHECK=y | 1253 | CONFIG_ENABLE_MUST_CHECK=y |
| 1254 | CONFIG_FRAME_WARN=1024 | ||
| 1244 | CONFIG_MAGIC_SYSRQ=y | 1255 | CONFIG_MAGIC_SYSRQ=y |
| 1245 | # CONFIG_UNUSED_SYMBOLS is not set | 1256 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1246 | CONFIG_DEBUG_FS=y | 1257 | CONFIG_DEBUG_FS=y |
| @@ -1251,6 +1262,7 @@ CONFIG_DETECT_SOFTLOCKUP=y | |||
| 1251 | CONFIG_SCHED_DEBUG=y | 1262 | CONFIG_SCHED_DEBUG=y |
| 1252 | # CONFIG_SCHEDSTATS is not set | 1263 | # CONFIG_SCHEDSTATS is not set |
| 1253 | # CONFIG_TIMER_STATS is not set | 1264 | # CONFIG_TIMER_STATS is not set |
| 1265 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 1254 | # CONFIG_DEBUG_SLAB is not set | 1266 | # CONFIG_DEBUG_SLAB is not set |
| 1255 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1267 | # CONFIG_DEBUG_RT_MUTEXES is not set |
| 1256 | # CONFIG_RT_MUTEX_TESTER is not set | 1268 | # CONFIG_RT_MUTEX_TESTER is not set |
| @@ -1262,6 +1274,7 @@ CONFIG_SCHED_DEBUG=y | |||
| 1262 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1274 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1263 | CONFIG_DEBUG_INFO=y | 1275 | CONFIG_DEBUG_INFO=y |
| 1264 | # CONFIG_DEBUG_VM is not set | 1276 | # CONFIG_DEBUG_VM is not set |
| 1277 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1265 | # CONFIG_DEBUG_LIST is not set | 1278 | # CONFIG_DEBUG_LIST is not set |
| 1266 | # CONFIG_DEBUG_SG is not set | 1279 | # CONFIG_DEBUG_SG is not set |
| 1267 | # CONFIG_BOOT_PRINTK_DELAY is not set | 1280 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| @@ -1274,6 +1287,7 @@ CONFIG_DEBUG_INFO=y | |||
| 1274 | # CONFIG_DEBUG_PAGEALLOC is not set | 1287 | # CONFIG_DEBUG_PAGEALLOC is not set |
| 1275 | CONFIG_DEBUGGER=y | 1288 | CONFIG_DEBUGGER=y |
| 1276 | # CONFIG_XMON is not set | 1289 | # CONFIG_XMON is not set |
| 1290 | # CONFIG_IRQSTACKS is not set | ||
| 1277 | # CONFIG_VIRQ_DEBUG is not set | 1291 | # CONFIG_VIRQ_DEBUG is not set |
| 1278 | # CONFIG_BDI_SWITCH is not set | 1292 | # CONFIG_BDI_SWITCH is not set |
| 1279 | # CONFIG_PPC_EARLY_DEBUG is not set | 1293 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -1289,54 +1303,84 @@ CONFIG_SECURITY_CAPABILITIES=y | |||
| 1289 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1303 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1290 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1304 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
| 1291 | CONFIG_CRYPTO=y | 1305 | CONFIG_CRYPTO=y |
| 1306 | |||
| 1307 | # | ||
| 1308 | # Crypto core or helper | ||
| 1309 | # | ||
| 1292 | CONFIG_CRYPTO_ALGAPI=y | 1310 | CONFIG_CRYPTO_ALGAPI=y |
| 1293 | CONFIG_CRYPTO_AEAD=m | 1311 | CONFIG_CRYPTO_AEAD=m |
| 1294 | CONFIG_CRYPTO_BLKCIPHER=y | 1312 | CONFIG_CRYPTO_BLKCIPHER=y |
| 1295 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1296 | CONFIG_CRYPTO_HASH=y | 1313 | CONFIG_CRYPTO_HASH=y |
| 1297 | CONFIG_CRYPTO_MANAGER=y | 1314 | CONFIG_CRYPTO_MANAGER=y |
| 1315 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1316 | CONFIG_CRYPTO_NULL=m | ||
| 1317 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1318 | CONFIG_CRYPTO_AUTHENC=m | ||
| 1319 | CONFIG_CRYPTO_TEST=m | ||
| 1320 | |||
| 1321 | # | ||
| 1322 | # Authenticated Encryption with Associated Data | ||
| 1323 | # | ||
| 1324 | # CONFIG_CRYPTO_CCM is not set | ||
| 1325 | # CONFIG_CRYPTO_GCM is not set | ||
| 1326 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1327 | |||
| 1328 | # | ||
| 1329 | # Block modes | ||
| 1330 | # | ||
| 1331 | CONFIG_CRYPTO_CBC=y | ||
| 1332 | # CONFIG_CRYPTO_CTR is not set | ||
| 1333 | # CONFIG_CRYPTO_CTS is not set | ||
| 1334 | CONFIG_CRYPTO_ECB=m | ||
| 1335 | # CONFIG_CRYPTO_LRW is not set | ||
| 1336 | CONFIG_CRYPTO_PCBC=m | ||
| 1337 | # CONFIG_CRYPTO_XTS is not set | ||
| 1338 | |||
| 1339 | # | ||
| 1340 | # Hash modes | ||
| 1341 | # | ||
| 1298 | CONFIG_CRYPTO_HMAC=y | 1342 | CONFIG_CRYPTO_HMAC=y |
| 1299 | # CONFIG_CRYPTO_XCBC is not set | 1343 | # CONFIG_CRYPTO_XCBC is not set |
| 1300 | CONFIG_CRYPTO_NULL=m | 1344 | |
| 1345 | # | ||
| 1346 | # Digest | ||
| 1347 | # | ||
| 1348 | CONFIG_CRYPTO_CRC32C=m | ||
| 1301 | CONFIG_CRYPTO_MD4=m | 1349 | CONFIG_CRYPTO_MD4=m |
| 1302 | CONFIG_CRYPTO_MD5=y | 1350 | CONFIG_CRYPTO_MD5=y |
| 1351 | CONFIG_CRYPTO_MICHAEL_MIC=m | ||
| 1303 | CONFIG_CRYPTO_SHA1=m | 1352 | CONFIG_CRYPTO_SHA1=m |
| 1304 | CONFIG_CRYPTO_SHA256=m | 1353 | CONFIG_CRYPTO_SHA256=m |
| 1305 | CONFIG_CRYPTO_SHA512=m | 1354 | CONFIG_CRYPTO_SHA512=m |
| 1306 | CONFIG_CRYPTO_WP512=m | ||
| 1307 | # CONFIG_CRYPTO_TGR192 is not set | 1355 | # CONFIG_CRYPTO_TGR192 is not set |
| 1308 | # CONFIG_CRYPTO_GF128MUL is not set | 1356 | CONFIG_CRYPTO_WP512=m |
| 1309 | CONFIG_CRYPTO_ECB=m | 1357 | |
| 1310 | CONFIG_CRYPTO_CBC=y | 1358 | # |
| 1311 | CONFIG_CRYPTO_PCBC=m | 1359 | # Ciphers |
| 1312 | # CONFIG_CRYPTO_LRW is not set | 1360 | # |
| 1313 | # CONFIG_CRYPTO_XTS is not set | ||
| 1314 | # CONFIG_CRYPTO_CTR is not set | ||
| 1315 | # CONFIG_CRYPTO_GCM is not set | ||
| 1316 | # CONFIG_CRYPTO_CCM is not set | ||
| 1317 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1318 | CONFIG_CRYPTO_DES=y | ||
| 1319 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1320 | CONFIG_CRYPTO_BLOWFISH=m | ||
| 1321 | CONFIG_CRYPTO_TWOFISH=m | ||
| 1322 | CONFIG_CRYPTO_TWOFISH_COMMON=m | ||
| 1323 | CONFIG_CRYPTO_SERPENT=m | ||
| 1324 | CONFIG_CRYPTO_AES=m | 1361 | CONFIG_CRYPTO_AES=m |
| 1362 | CONFIG_CRYPTO_ANUBIS=m | ||
| 1363 | CONFIG_CRYPTO_ARC4=m | ||
| 1364 | CONFIG_CRYPTO_BLOWFISH=m | ||
| 1365 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1325 | CONFIG_CRYPTO_CAST5=m | 1366 | CONFIG_CRYPTO_CAST5=m |
| 1326 | CONFIG_CRYPTO_CAST6=m | 1367 | CONFIG_CRYPTO_CAST6=m |
| 1327 | CONFIG_CRYPTO_TEA=m | 1368 | CONFIG_CRYPTO_DES=y |
| 1328 | CONFIG_CRYPTO_ARC4=m | 1369 | # CONFIG_CRYPTO_FCRYPT is not set |
| 1329 | CONFIG_CRYPTO_KHAZAD=m | 1370 | CONFIG_CRYPTO_KHAZAD=m |
| 1330 | CONFIG_CRYPTO_ANUBIS=m | ||
| 1331 | # CONFIG_CRYPTO_SEED is not set | ||
| 1332 | # CONFIG_CRYPTO_SALSA20 is not set | 1371 | # CONFIG_CRYPTO_SALSA20 is not set |
| 1372 | # CONFIG_CRYPTO_SEED is not set | ||
| 1373 | CONFIG_CRYPTO_SERPENT=m | ||
| 1374 | CONFIG_CRYPTO_TEA=m | ||
| 1375 | CONFIG_CRYPTO_TWOFISH=m | ||
| 1376 | CONFIG_CRYPTO_TWOFISH_COMMON=m | ||
| 1377 | |||
| 1378 | # | ||
| 1379 | # Compression | ||
| 1380 | # | ||
| 1333 | CONFIG_CRYPTO_DEFLATE=m | 1381 | CONFIG_CRYPTO_DEFLATE=m |
| 1334 | CONFIG_CRYPTO_MICHAEL_MIC=m | ||
| 1335 | CONFIG_CRYPTO_CRC32C=m | ||
| 1336 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1337 | CONFIG_CRYPTO_TEST=m | ||
| 1338 | CONFIG_CRYPTO_AUTHENC=m | ||
| 1339 | # CONFIG_CRYPTO_LZO is not set | 1382 | # CONFIG_CRYPTO_LZO is not set |
| 1340 | CONFIG_CRYPTO_HW=y | 1383 | CONFIG_CRYPTO_HW=y |
| 1341 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1384 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1342 | # CONFIG_PPC_CLOCK is not set | 1385 | # CONFIG_PPC_CLOCK is not set |
| 1386 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/storcenter_defconfig b/arch/powerpc/configs/storcenter_defconfig index fdbfd39a3aca..88f6aa8273be 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.25-rc7 | 3 | # Linux kernel version: 2.6.26-rc5 |
| 4 | # Mon Mar 31 11:37:19 2008 | 4 | # Mon Jun 9 08:52:20 2008 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -31,6 +31,8 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
| 31 | CONFIG_GENERIC_HARDIRQS=y | 31 | CONFIG_GENERIC_HARDIRQS=y |
| 32 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 32 | # CONFIG_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 | ||
| 35 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 34 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 36 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 35 | CONFIG_ARCH_HAS_ILOG2_U32=y | 37 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| 36 | CONFIG_GENERIC_HWEIGHT=y | 38 | CONFIG_GENERIC_HWEIGHT=y |
| @@ -85,6 +87,7 @@ CONFIG_CC_OPTIMIZE_FOR_SIZE=y | |||
| 85 | CONFIG_SYSCTL=y | 87 | CONFIG_SYSCTL=y |
| 86 | CONFIG_EMBEDDED=y | 88 | CONFIG_EMBEDDED=y |
| 87 | CONFIG_SYSCTL_SYSCALL=y | 89 | CONFIG_SYSCTL_SYSCALL=y |
| 90 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 88 | # CONFIG_KALLSYMS is not set | 91 | # CONFIG_KALLSYMS is not set |
| 89 | CONFIG_HOTPLUG=y | 92 | CONFIG_HOTPLUG=y |
| 90 | CONFIG_PRINTK=y | 93 | CONFIG_PRINTK=y |
| @@ -109,12 +112,14 @@ CONFIG_SLUB=y | |||
| 109 | CONFIG_HAVE_OPROFILE=y | 112 | CONFIG_HAVE_OPROFILE=y |
| 110 | CONFIG_HAVE_KPROBES=y | 113 | CONFIG_HAVE_KPROBES=y |
| 111 | CONFIG_HAVE_KRETPROBES=y | 114 | CONFIG_HAVE_KRETPROBES=y |
| 115 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
| 112 | CONFIG_PROC_PAGE_MONITOR=y | 116 | CONFIG_PROC_PAGE_MONITOR=y |
| 113 | CONFIG_SLABINFO=y | 117 | CONFIG_SLABINFO=y |
| 114 | CONFIG_RT_MUTEXES=y | 118 | CONFIG_RT_MUTEXES=y |
| 115 | # CONFIG_TINY_SHMEM is not set | 119 | # CONFIG_TINY_SHMEM is not set |
| 116 | CONFIG_BASE_SMALL=0 | 120 | CONFIG_BASE_SMALL=0 |
| 117 | CONFIG_MODULES=y | 121 | CONFIG_MODULES=y |
| 122 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 118 | CONFIG_MODULE_UNLOAD=y | 123 | CONFIG_MODULE_UNLOAD=y |
| 119 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 124 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
| 120 | # CONFIG_MODVERSIONS is not set | 125 | # CONFIG_MODVERSIONS is not set |
| @@ -214,11 +219,13 @@ CONFIG_FLATMEM=y | |||
| 214 | CONFIG_FLAT_NODE_MEM_MAP=y | 219 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 215 | # CONFIG_SPARSEMEM_STATIC is not set | 220 | # CONFIG_SPARSEMEM_STATIC is not set |
| 216 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | 221 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set |
| 222 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 217 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 223 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 218 | # CONFIG_RESOURCES_64BIT is not set | 224 | # CONFIG_RESOURCES_64BIT is not set |
| 219 | CONFIG_ZONE_DMA_FLAG=1 | 225 | CONFIG_ZONE_DMA_FLAG=1 |
| 220 | CONFIG_BOUNCE=y | 226 | CONFIG_BOUNCE=y |
| 221 | CONFIG_VIRT_TO_BUS=y | 227 | CONFIG_VIRT_TO_BUS=y |
| 228 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
| 222 | CONFIG_PROC_DEVICETREE=y | 229 | CONFIG_PROC_DEVICETREE=y |
| 223 | CONFIG_CMDLINE_BOOL=y | 230 | CONFIG_CMDLINE_BOOL=y |
| 224 | CONFIG_CMDLINE="console=ttyS0,115200" | 231 | CONFIG_CMDLINE="console=ttyS0,115200" |
| @@ -242,6 +249,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 242 | CONFIG_PCI_LEGACY=y | 249 | CONFIG_PCI_LEGACY=y |
| 243 | # CONFIG_PCCARD is not set | 250 | # CONFIG_PCCARD is not set |
| 244 | # CONFIG_HOTPLUG_PCI is not set | 251 | # CONFIG_HOTPLUG_PCI is not set |
| 252 | # CONFIG_HAS_RAPIDIO is not set | ||
| 245 | 253 | ||
| 246 | # | 254 | # |
| 247 | # Advanced setup | 255 | # Advanced setup |
| @@ -251,11 +259,11 @@ CONFIG_PCI_LEGACY=y | |||
| 251 | # | 259 | # |
| 252 | # Default settings for advanced configuration options are used | 260 | # Default settings for advanced configuration options are used |
| 253 | # | 261 | # |
| 254 | CONFIG_HIGHMEM_START=0xfe000000 | ||
| 255 | CONFIG_LOWMEM_SIZE=0x30000000 | 262 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 263 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
| 256 | CONFIG_KERNEL_START=0xc0000000 | 264 | CONFIG_KERNEL_START=0xc0000000 |
| 265 | CONFIG_PHYSICAL_START=0x00000000 | ||
| 257 | CONFIG_TASK_SIZE=0xc0000000 | 266 | CONFIG_TASK_SIZE=0xc0000000 |
| 258 | CONFIG_BOOT_LOAD=0x00800000 | ||
| 259 | 267 | ||
| 260 | # | 268 | # |
| 261 | # Networking | 269 | # Networking |
| @@ -298,8 +306,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
| 298 | CONFIG_DEFAULT_TCP_CONG="cubic" | 306 | CONFIG_DEFAULT_TCP_CONG="cubic" |
| 299 | # CONFIG_TCP_MD5SIG is not set | 307 | # CONFIG_TCP_MD5SIG is not set |
| 300 | # CONFIG_IPV6 is not set | 308 | # CONFIG_IPV6 is not set |
| 301 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
| 302 | # CONFIG_INET6_TUNNEL is not set | ||
| 303 | # CONFIG_NETWORK_SECMARK is not set | 309 | # CONFIG_NETWORK_SECMARK is not set |
| 304 | # CONFIG_NETFILTER is not set | 310 | # CONFIG_NETFILTER is not set |
| 305 | # CONFIG_IP_DCCP is not set | 311 | # CONFIG_IP_DCCP is not set |
| @@ -358,6 +364,7 @@ CONFIG_MTD_PARTITIONS=y | |||
| 358 | # CONFIG_MTD_REDBOOT_PARTS is not set | 364 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 359 | # CONFIG_MTD_CMDLINE_PARTS is not set | 365 | # CONFIG_MTD_CMDLINE_PARTS is not set |
| 360 | # CONFIG_MTD_OF_PARTS is not set | 366 | # CONFIG_MTD_OF_PARTS is not set |
| 367 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 361 | 368 | ||
| 362 | # | 369 | # |
| 363 | # User Modules And Translation Layers | 370 | # User Modules And Translation Layers |
| @@ -433,6 +440,7 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=1 | |||
| 433 | # | 440 | # |
| 434 | # CONFIG_MTD_UBI is not set | 441 | # CONFIG_MTD_UBI is not set |
| 435 | CONFIG_OF_DEVICE=y | 442 | CONFIG_OF_DEVICE=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 |
| 438 | # CONFIG_BLK_DEV_FD is not set | 446 | # CONFIG_BLK_DEV_FD is not set |
| @@ -513,7 +521,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 513 | CONFIG_BLK_DEV_VIA82CXXX=y | 521 | CONFIG_BLK_DEV_VIA82CXXX=y |
| 514 | # CONFIG_BLK_DEV_TC86C001 is not set | 522 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 515 | CONFIG_BLK_DEV_IDEDMA=y | 523 | CONFIG_BLK_DEV_IDEDMA=y |
| 516 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y | 524 | # CONFIG_BLK_DEV_HD_ONLY is not set |
| 517 | # CONFIG_BLK_DEV_HD is not set | 525 | # CONFIG_BLK_DEV_HD is not set |
| 518 | 526 | ||
| 519 | # | 527 | # |
| @@ -638,7 +646,6 @@ CONFIG_R8169=y | |||
| 638 | # CONFIG_SIS190 is not set | 646 | # CONFIG_SIS190 is not set |
| 639 | # CONFIG_SKGE is not set | 647 | # CONFIG_SKGE is not set |
| 640 | # CONFIG_SKY2 is not set | 648 | # CONFIG_SKY2 is not set |
| 641 | # CONFIG_SK98LIN is not set | ||
| 642 | # CONFIG_VIA_VELOCITY is not set | 649 | # CONFIG_VIA_VELOCITY is not set |
| 643 | # CONFIG_TIGON3 is not set | 650 | # CONFIG_TIGON3 is not set |
| 644 | # CONFIG_BNX2 is not set | 651 | # CONFIG_BNX2 is not set |
| @@ -654,6 +661,7 @@ CONFIG_R8169=y | |||
| 654 | # | 661 | # |
| 655 | # CONFIG_WLAN_PRE80211 is not set | 662 | # CONFIG_WLAN_PRE80211 is not set |
| 656 | # CONFIG_WLAN_80211 is not set | 663 | # CONFIG_WLAN_80211 is not set |
| 664 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 657 | 665 | ||
| 658 | # | 666 | # |
| 659 | # USB Network Adapters | 667 | # USB Network Adapters |
| @@ -690,6 +698,7 @@ CONFIG_R8169=y | |||
| 690 | # Character devices | 698 | # Character devices |
| 691 | # | 699 | # |
| 692 | # CONFIG_VT is not set | 700 | # CONFIG_VT is not set |
| 701 | CONFIG_DEVKMEM=y | ||
| 693 | # CONFIG_SERIAL_NONSTANDARD is not set | 702 | # CONFIG_SERIAL_NONSTANDARD is not set |
| 694 | # CONFIG_NOZOMI is not set | 703 | # CONFIG_NOZOMI is not set |
| 695 | 704 | ||
| @@ -717,7 +726,6 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 717 | # CONFIG_IPMI_HANDLER is not set | 726 | # CONFIG_IPMI_HANDLER is not set |
| 718 | CONFIG_HW_RANDOM=m | 727 | CONFIG_HW_RANDOM=m |
| 719 | CONFIG_NVRAM=y | 728 | CONFIG_NVRAM=y |
| 720 | # CONFIG_GEN_RTC is not set | ||
| 721 | # CONFIG_R3964 is not set | 729 | # CONFIG_R3964 is not set |
| 722 | # CONFIG_APPLICOM is not set | 730 | # CONFIG_APPLICOM is not set |
| 723 | # CONFIG_RAW_DRIVER is not set | 731 | # CONFIG_RAW_DRIVER is not set |
| @@ -728,13 +736,6 @@ CONFIG_I2C_BOARDINFO=y | |||
| 728 | CONFIG_I2C_CHARDEV=y | 736 | CONFIG_I2C_CHARDEV=y |
| 729 | 737 | ||
| 730 | # | 738 | # |
| 731 | # I2C Algorithms | ||
| 732 | # | ||
| 733 | # CONFIG_I2C_ALGOBIT is not set | ||
| 734 | # CONFIG_I2C_ALGOPCF is not set | ||
| 735 | # CONFIG_I2C_ALGOPCA is not set | ||
| 736 | |||
| 737 | # | ||
| 738 | # I2C Hardware Bus support | 739 | # I2C Hardware Bus support |
| 739 | # | 740 | # |
| 740 | # CONFIG_I2C_ALI1535 is not set | 741 | # CONFIG_I2C_ALI1535 is not set |
| @@ -761,6 +762,7 @@ CONFIG_I2C_MPC=y | |||
| 761 | # CONFIG_I2C_VIA is not set | 762 | # CONFIG_I2C_VIA is not set |
| 762 | # CONFIG_I2C_VIAPRO is not set | 763 | # CONFIG_I2C_VIAPRO is not set |
| 763 | # CONFIG_I2C_VOODOO3 is not set | 764 | # CONFIG_I2C_VOODOO3 is not set |
| 765 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
| 764 | 766 | ||
| 765 | # | 767 | # |
| 766 | # Miscellaneous I2C Chip support | 768 | # Miscellaneous I2C Chip support |
| @@ -770,19 +772,13 @@ CONFIG_I2C_MPC=y | |||
| 770 | # CONFIG_SENSORS_PCF8574 is not set | 772 | # CONFIG_SENSORS_PCF8574 is not set |
| 771 | # CONFIG_PCF8575 is not set | 773 | # CONFIG_PCF8575 is not set |
| 772 | # CONFIG_SENSORS_PCF8591 is not set | 774 | # CONFIG_SENSORS_PCF8591 is not set |
| 773 | # CONFIG_TPS65010 is not set | ||
| 774 | # CONFIG_SENSORS_MAX6875 is not set | 775 | # CONFIG_SENSORS_MAX6875 is not set |
| 775 | # CONFIG_SENSORS_TSL2550 is not set | 776 | # CONFIG_SENSORS_TSL2550 is not set |
| 776 | # CONFIG_I2C_DEBUG_CORE is not set | 777 | # CONFIG_I2C_DEBUG_CORE is not set |
| 777 | # CONFIG_I2C_DEBUG_ALGO is not set | 778 | # CONFIG_I2C_DEBUG_ALGO is not set |
| 778 | # CONFIG_I2C_DEBUG_BUS is not set | 779 | # CONFIG_I2C_DEBUG_BUS is not set |
| 779 | # CONFIG_I2C_DEBUG_CHIP is not set | 780 | # CONFIG_I2C_DEBUG_CHIP is not set |
| 780 | |||
| 781 | # | ||
| 782 | # SPI support | ||
| 783 | # | ||
| 784 | # CONFIG_SPI is not set | 781 | # CONFIG_SPI is not set |
| 785 | # CONFIG_SPI_MASTER is not set | ||
| 786 | # CONFIG_W1 is not set | 782 | # CONFIG_W1 is not set |
| 787 | # CONFIG_POWER_SUPPLY is not set | 783 | # CONFIG_POWER_SUPPLY is not set |
| 788 | # CONFIG_HWMON is not set | 784 | # CONFIG_HWMON is not set |
| @@ -799,12 +795,22 @@ CONFIG_SSB_POSSIBLE=y | |||
| 799 | # Multifunction device drivers | 795 | # Multifunction device drivers |
| 800 | # | 796 | # |
| 801 | # CONFIG_MFD_SM501 is not set | 797 | # CONFIG_MFD_SM501 is not set |
| 798 | # CONFIG_HTC_PASIC3 is not set | ||
| 802 | 799 | ||
| 803 | # | 800 | # |
| 804 | # Multimedia devices | 801 | # Multimedia devices |
| 805 | # | 802 | # |
| 803 | |||
| 804 | # | ||
| 805 | # Multimedia core support | ||
| 806 | # | ||
| 806 | # CONFIG_VIDEO_DEV is not set | 807 | # CONFIG_VIDEO_DEV is not set |
| 807 | # CONFIG_DVB_CORE is not set | 808 | # CONFIG_DVB_CORE is not set |
| 809 | # CONFIG_VIDEO_MEDIA is not set | ||
| 810 | |||
| 811 | # | ||
| 812 | # Multimedia drivers | ||
| 813 | # | ||
| 808 | # CONFIG_DAB is not set | 814 | # CONFIG_DAB is not set |
| 809 | 815 | ||
| 810 | # | 816 | # |
| @@ -841,16 +847,20 @@ CONFIG_USB_DEVICEFS=y | |||
| 841 | CONFIG_USB_DEVICE_CLASS=y | 847 | CONFIG_USB_DEVICE_CLASS=y |
| 842 | # CONFIG_USB_DYNAMIC_MINORS is not set | 848 | # CONFIG_USB_DYNAMIC_MINORS is not set |
| 843 | # CONFIG_USB_OTG is not set | 849 | # CONFIG_USB_OTG is not set |
| 850 | # CONFIG_USB_OTG_WHITELIST is not set | ||
| 851 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
| 844 | 852 | ||
| 845 | # | 853 | # |
| 846 | # USB Host Controller Drivers | 854 | # USB Host Controller Drivers |
| 847 | # | 855 | # |
| 856 | # CONFIG_USB_C67X00_HCD is not set | ||
| 848 | CONFIG_USB_EHCI_HCD=y | 857 | CONFIG_USB_EHCI_HCD=y |
| 849 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 858 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
| 850 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 859 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 851 | # CONFIG_USB_EHCI_FSL is not set | 860 | # CONFIG_USB_EHCI_FSL is not set |
| 852 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 861 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 853 | # CONFIG_USB_ISP116X_HCD is not set | 862 | # CONFIG_USB_ISP116X_HCD is not set |
| 863 | # CONFIG_USB_ISP1760_HCD is not set | ||
| 854 | CONFIG_USB_OHCI_HCD=y | 864 | CONFIG_USB_OHCI_HCD=y |
| 855 | # CONFIG_USB_OHCI_HCD_PPC_OF is not set | 865 | # CONFIG_USB_OHCI_HCD_PPC_OF is not set |
| 856 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | 866 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set |
| @@ -865,6 +875,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 865 | # | 875 | # |
| 866 | # CONFIG_USB_ACM is not set | 876 | # CONFIG_USB_ACM is not set |
| 867 | # CONFIG_USB_PRINTER is not set | 877 | # CONFIG_USB_PRINTER is not set |
| 878 | # CONFIG_USB_WDM is not set | ||
| 868 | 879 | ||
| 869 | # | 880 | # |
| 870 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 881 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
| @@ -885,6 +896,7 @@ CONFIG_USB_STORAGE=y | |||
| 885 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 896 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 886 | # CONFIG_USB_STORAGE_ALAUDA is not set | 897 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 887 | # CONFIG_USB_STORAGE_KARMA is not set | 898 | # CONFIG_USB_STORAGE_KARMA is not set |
| 899 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
| 888 | # CONFIG_USB_LIBUSUAL is not set | 900 | # CONFIG_USB_LIBUSUAL is not set |
| 889 | 901 | ||
| 890 | # | 902 | # |
| @@ -922,10 +934,12 @@ CONFIG_USB_STORAGE=y | |||
| 922 | # CONFIG_USB_TRANCEVIBRATOR is not set | 934 | # CONFIG_USB_TRANCEVIBRATOR is not set |
| 923 | # CONFIG_USB_IOWARRIOR is not set | 935 | # CONFIG_USB_IOWARRIOR is not set |
| 924 | # CONFIG_USB_TEST is not set | 936 | # CONFIG_USB_TEST is not set |
| 937 | # CONFIG_USB_ISIGHTFW is not set | ||
| 925 | # CONFIG_USB_GADGET is not set | 938 | # CONFIG_USB_GADGET is not set |
| 926 | # CONFIG_MMC is not set | 939 | # CONFIG_MMC is not set |
| 927 | # CONFIG_MEMSTICK is not set | 940 | # CONFIG_MEMSTICK is not set |
| 928 | # CONFIG_NEW_LEDS is not set | 941 | # CONFIG_NEW_LEDS is not set |
| 942 | # CONFIG_ACCESSIBILITY is not set | ||
| 929 | # CONFIG_INFINIBAND is not set | 943 | # CONFIG_INFINIBAND is not set |
| 930 | # CONFIG_EDAC is not set | 944 | # CONFIG_EDAC is not set |
| 931 | CONFIG_RTC_LIB=y | 945 | CONFIG_RTC_LIB=y |
| @@ -977,11 +991,8 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 977 | # | 991 | # |
| 978 | # on-CPU RTC drivers | 992 | # on-CPU RTC drivers |
| 979 | # | 993 | # |
| 994 | # CONFIG_RTC_DRV_PPC is not set | ||
| 980 | # CONFIG_DMADEVICES is not set | 995 | # CONFIG_DMADEVICES is not set |
| 981 | |||
| 982 | # | ||
| 983 | # Userspace I/O | ||
| 984 | # | ||
| 985 | # CONFIG_UIO is not set | 996 | # CONFIG_UIO is not set |
| 986 | 997 | ||
| 987 | # | 998 | # |
| @@ -1002,10 +1013,9 @@ CONFIG_FS_MBCACHE=y | |||
| 1002 | # CONFIG_FS_POSIX_ACL is not set | 1013 | # CONFIG_FS_POSIX_ACL is not set |
| 1003 | CONFIG_XFS_FS=m | 1014 | CONFIG_XFS_FS=m |
| 1004 | # CONFIG_XFS_QUOTA is not set | 1015 | # CONFIG_XFS_QUOTA is not set |
| 1005 | # CONFIG_XFS_SECURITY is not set | ||
| 1006 | # CONFIG_XFS_POSIX_ACL is not set | 1016 | # CONFIG_XFS_POSIX_ACL is not set |
| 1007 | # CONFIG_XFS_RT is not set | 1017 | # CONFIG_XFS_RT is not set |
| 1008 | # CONFIG_GFS2_FS is not set | 1018 | # CONFIG_XFS_DEBUG is not set |
| 1009 | # CONFIG_OCFS2_FS is not set | 1019 | # CONFIG_OCFS2_FS is not set |
| 1010 | CONFIG_DNOTIFY=y | 1020 | CONFIG_DNOTIFY=y |
| 1011 | CONFIG_INOTIFY=y | 1021 | CONFIG_INOTIFY=y |
| @@ -1138,6 +1148,7 @@ CONFIG_NLS_UTF8=y | |||
| 1138 | # Library routines | 1148 | # Library routines |
| 1139 | # | 1149 | # |
| 1140 | CONFIG_BITREVERSE=y | 1150 | CONFIG_BITREVERSE=y |
| 1151 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | ||
| 1141 | # CONFIG_CRC_CCITT is not set | 1152 | # CONFIG_CRC_CCITT is not set |
| 1142 | # CONFIG_CRC16 is not set | 1153 | # CONFIG_CRC16 is not set |
| 1143 | # CONFIG_CRC_ITU_T is not set | 1154 | # CONFIG_CRC_ITU_T is not set |
| @@ -1150,6 +1161,7 @@ CONFIG_PLIST=y | |||
| 1150 | CONFIG_HAS_IOMEM=y | 1161 | CONFIG_HAS_IOMEM=y |
| 1151 | CONFIG_HAS_IOPORT=y | 1162 | CONFIG_HAS_IOPORT=y |
| 1152 | CONFIG_HAS_DMA=y | 1163 | CONFIG_HAS_DMA=y |
| 1164 | CONFIG_HAVE_LMB=y | ||
| 1153 | 1165 | ||
| 1154 | # | 1166 | # |
| 1155 | # Kernel hacking | 1167 | # Kernel hacking |
| @@ -1157,6 +1169,7 @@ CONFIG_HAS_DMA=y | |||
| 1157 | # CONFIG_PRINTK_TIME is not set | 1169 | # CONFIG_PRINTK_TIME is not set |
| 1158 | # CONFIG_ENABLE_WARN_DEPRECATED is not set | 1170 | # CONFIG_ENABLE_WARN_DEPRECATED is not set |
| 1159 | # CONFIG_ENABLE_MUST_CHECK is not set | 1171 | # CONFIG_ENABLE_MUST_CHECK is not set |
| 1172 | CONFIG_FRAME_WARN=1024 | ||
| 1160 | # CONFIG_MAGIC_SYSRQ is not set | 1173 | # CONFIG_MAGIC_SYSRQ is not set |
| 1161 | # CONFIG_UNUSED_SYMBOLS is not set | 1174 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1162 | # CONFIG_DEBUG_FS is not set | 1175 | # CONFIG_DEBUG_FS is not set |
| @@ -1166,6 +1179,7 @@ CONFIG_HAS_DMA=y | |||
| 1166 | # CONFIG_SLUB_STATS is not set | 1179 | # CONFIG_SLUB_STATS is not set |
| 1167 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1180 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1168 | # CONFIG_SAMPLES is not set | 1181 | # CONFIG_SAMPLES is not set |
| 1182 | # CONFIG_IRQSTACKS is not set | ||
| 1169 | # CONFIG_BOOTX_TEXT is not set | 1183 | # CONFIG_BOOTX_TEXT is not set |
| 1170 | # CONFIG_PPC_EARLY_DEBUG is not set | 1184 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1171 | 1185 | ||
| @@ -1181,3 +1195,4 @@ CONFIG_ASYNC_MEMCPY=y | |||
| 1181 | CONFIG_ASYNC_XOR=y | 1195 | CONFIG_ASYNC_XOR=y |
| 1182 | # CONFIG_CRYPTO is not set | 1196 | # CONFIG_CRYPTO is not set |
| 1183 | # CONFIG_PPC_CLOCK is not set | 1197 | # CONFIG_PPC_CLOCK is not set |
| 1198 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/kernel/head_44x.S b/arch/powerpc/kernel/head_44x.S index c2b9dc4fce5d..22b5d2c459a3 100644 --- a/arch/powerpc/kernel/head_44x.S +++ b/arch/powerpc/kernel/head_44x.S | |||
| @@ -368,7 +368,12 @@ interrupt_base: | |||
| 368 | 368 | ||
| 369 | rlwimi r11,r13,0,26,31 /* Insert static perms */ | 369 | rlwimi r11,r13,0,26,31 /* Insert static perms */ |
| 370 | 370 | ||
| 371 | rlwinm r11,r11,0,20,15 /* Clear U0-U3 */ | 371 | /* |
| 372 | * Clear U0-U3 and WL1 IL1I IL1D IL2I IL2D bits which are added | ||
| 373 | * on newer 440 cores like the 440x6 used on AMCC 460EX/460GT (see | ||
| 374 | * include/asm-powerpc/pgtable-ppc32.h for details). | ||
| 375 | */ | ||
| 376 | rlwinm r11,r11,0,20,10 | ||
| 372 | 377 | ||
| 373 | /* find the TLB index that caused the fault. It has to be here. */ | 378 | /* find the TLB index that caused the fault. It has to be here. */ |
| 374 | tlbsx r10, 0, r10 | 379 | tlbsx r10, 0, r10 |
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c index 2f73f705d564..bcc249d90c4d 100644 --- a/arch/powerpc/kernel/irq.c +++ b/arch/powerpc/kernel/irq.c | |||
| @@ -1073,7 +1073,7 @@ static const struct file_operations virq_debug_fops = { | |||
| 1073 | static int __init irq_debugfs_init(void) | 1073 | static int __init irq_debugfs_init(void) |
| 1074 | { | 1074 | { |
| 1075 | if (debugfs_create_file("virq_mapping", S_IRUGO, powerpc_debugfs_root, | 1075 | if (debugfs_create_file("virq_mapping", S_IRUGO, powerpc_debugfs_root, |
| 1076 | NULL, &virq_debug_fops)) | 1076 | NULL, &virq_debug_fops) == NULL) |
| 1077 | return -ENOMEM; | 1077 | return -ENOMEM; |
| 1078 | 1078 | ||
| 1079 | return 0; | 1079 | return 0; |
diff --git a/arch/powerpc/kernel/ppc_ksyms.c b/arch/powerpc/kernel/ppc_ksyms.c index cf6b5a7d8b3f..d3ac631cbd26 100644 --- a/arch/powerpc/kernel/ppc_ksyms.c +++ b/arch/powerpc/kernel/ppc_ksyms.c | |||
| @@ -8,7 +8,6 @@ | |||
| 8 | #include <linux/screen_info.h> | 8 | #include <linux/screen_info.h> |
| 9 | #include <linux/vt_kern.h> | 9 | #include <linux/vt_kern.h> |
| 10 | #include <linux/nvram.h> | 10 | #include <linux/nvram.h> |
| 11 | #include <linux/console.h> | ||
| 12 | #include <linux/irq.h> | 11 | #include <linux/irq.h> |
| 13 | #include <linux/pci.h> | 12 | #include <linux/pci.h> |
| 14 | #include <linux/delay.h> | 13 | #include <linux/delay.h> |
| @@ -160,7 +159,6 @@ EXPORT_SYMBOL(screen_info); | |||
| 160 | EXPORT_SYMBOL(timer_interrupt); | 159 | EXPORT_SYMBOL(timer_interrupt); |
| 161 | EXPORT_SYMBOL(irq_desc); | 160 | EXPORT_SYMBOL(irq_desc); |
| 162 | EXPORT_SYMBOL(tb_ticks_per_jiffy); | 161 | EXPORT_SYMBOL(tb_ticks_per_jiffy); |
| 163 | EXPORT_SYMBOL(console_drivers); | ||
| 164 | EXPORT_SYMBOL(cacheable_memcpy); | 162 | EXPORT_SYMBOL(cacheable_memcpy); |
| 165 | #endif | 163 | #endif |
| 166 | 164 | ||
diff --git a/arch/powerpc/kernel/prom_init_check.sh b/arch/powerpc/kernel/prom_init_check.sh index 31729a9387df..2c7e8e87f770 100644 --- a/arch/powerpc/kernel/prom_init_check.sh +++ b/arch/powerpc/kernel/prom_init_check.sh | |||
| @@ -48,6 +48,20 @@ do | |||
| 48 | fi | 48 | fi |
| 49 | done | 49 | done |
| 50 | 50 | ||
| 51 | # ignore register save/restore funcitons | ||
| 52 | if [ "${UNDEF:0:9}" = "_restgpr_" ]; then | ||
| 53 | OK=1 | ||
| 54 | fi | ||
| 55 | if [ "${UNDEF:0:11}" = "_rest32gpr_" ]; then | ||
| 56 | OK=1 | ||
| 57 | fi | ||
| 58 | if [ "${UNDEF:0:9}" = "_savegpr_" ]; then | ||
| 59 | OK=1 | ||
| 60 | fi | ||
| 61 | if [ "${UNDEF:0:11}" = "_save32gpr_" ]; then | ||
| 62 | OK=1 | ||
| 63 | fi | ||
| 64 | |||
| 51 | if [ $OK -eq 0 ]; then | 65 | if [ $OK -eq 0 ]; then |
| 52 | ERROR=1 | 66 | ERROR=1 |
| 53 | echo "Error: External symbol '$UNDEF' referenced" \ | 67 | echo "Error: External symbol '$UNDEF' referenced" \ |
diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile index c71d37dc6a88..e522b06cc42f 100644 --- a/arch/powerpc/lib/Makefile +++ b/arch/powerpc/lib/Makefile | |||
| @@ -9,7 +9,7 @@ endif | |||
| 9 | ifeq ($(CONFIG_PPC_MERGE),y) | 9 | ifeq ($(CONFIG_PPC_MERGE),y) |
| 10 | obj-y := string.o alloc.o \ | 10 | obj-y := string.o alloc.o \ |
| 11 | checksum_$(CONFIG_WORD_SIZE).o | 11 | checksum_$(CONFIG_WORD_SIZE).o |
| 12 | obj-$(CONFIG_PPC32) += div64.o copy_32.o | 12 | obj-$(CONFIG_PPC32) += div64.o copy_32.o crtsavres.o |
| 13 | obj-$(CONFIG_HAS_IOMEM) += devres.o | 13 | obj-$(CONFIG_HAS_IOMEM) += devres.o |
| 14 | endif | 14 | endif |
| 15 | 15 | ||
diff --git a/arch/powerpc/lib/crtsavres.S b/arch/powerpc/lib/crtsavres.S new file mode 100644 index 000000000000..70a9cd8a3008 --- /dev/null +++ b/arch/powerpc/lib/crtsavres.S | |||
| @@ -0,0 +1,229 @@ | |||
| 1 | /* | ||
| 2 | * Special support for eabi and SVR4 | ||
| 3 | * | ||
| 4 | * Copyright (C) 1995, 1996, 1998, 2000, 2001 Free Software Foundation, Inc. | ||
| 5 | * Copyright 2008 Freescale Semiconductor, Inc. | ||
| 6 | * Written By Michael Meissner | ||
| 7 | * | ||
| 8 | * Based on gcc/config/rs6000/crtsavres.asm from gcc | ||
| 9 | * | ||
| 10 | * This file is free software; you can redistribute it and/or modify it | ||
| 11 | * under the terms of the GNU General Public License as published by the | ||
| 12 | * Free Software Foundation; either version 2, or (at your option) any | ||
| 13 | * later version. | ||
| 14 | * | ||
| 15 | * In addition to the permissions in the GNU General Public License, the | ||
| 16 | * Free Software Foundation gives you unlimited permission to link the | ||
| 17 | * compiled version of this file with other programs, and to distribute | ||
| 18 | * those programs without any restriction coming from the use of this | ||
| 19 | * file. (The General Public License restrictions do apply in other | ||
| 20 | * respects; for example, they cover modification of the file, and | ||
| 21 | * distribution when not linked into another program.) | ||
| 22 | * | ||
| 23 | * This file is distributed in the hope that it will be useful, but | ||
| 24 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 25 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 26 | * General Public License for more details. | ||
| 27 | * | ||
| 28 | * You should have received a copy of the GNU General Public License | ||
| 29 | * along with this program; see the file COPYING. If not, write to | ||
| 30 | * the Free Software Foundation, 51 Franklin Street, Fifth Floor, | ||
| 31 | * Boston, MA 02110-1301, USA. | ||
| 32 | * | ||
| 33 | * As a special exception, if you link this library with files | ||
| 34 | * compiled with GCC to produce an executable, this does not cause | ||
| 35 | * the resulting executable to be covered by the GNU General Public License. | ||
| 36 | * This exception does not however invalidate any other reasons why | ||
| 37 | * the executable file might be covered by the GNU General Public License. | ||
| 38 | */ | ||
| 39 | |||
| 40 | #include <asm/ppc_asm.h> | ||
| 41 | |||
| 42 | .file "crtsavres.S" | ||
| 43 | .section ".text" | ||
| 44 | |||
| 45 | #ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE | ||
| 46 | |||
| 47 | /* Routines for saving integer registers, called by the compiler. */ | ||
| 48 | /* Called with r11 pointing to the stack header word of the caller of the */ | ||
| 49 | /* function, just beyond the end of the integer save area. */ | ||
| 50 | |||
| 51 | _GLOBAL(_savegpr_14) | ||
| 52 | _GLOBAL(_save32gpr_14) | ||
| 53 | stw 14,-72(11) /* save gp registers */ | ||
| 54 | _GLOBAL(_savegpr_15) | ||
| 55 | _GLOBAL(_save32gpr_15) | ||
| 56 | stw 15,-68(11) | ||
| 57 | _GLOBAL(_savegpr_16) | ||
| 58 | _GLOBAL(_save32gpr_16) | ||
| 59 | stw 16,-64(11) | ||
| 60 | _GLOBAL(_savegpr_17) | ||
| 61 | _GLOBAL(_save32gpr_17) | ||
| 62 | stw 17,-60(11) | ||
| 63 | _GLOBAL(_savegpr_18) | ||
| 64 | _GLOBAL(_save32gpr_18) | ||
| 65 | stw 18,-56(11) | ||
| 66 | _GLOBAL(_savegpr_19) | ||
| 67 | _GLOBAL(_save32gpr_19) | ||
| 68 | stw 19,-52(11) | ||
| 69 | _GLOBAL(_savegpr_20) | ||
| 70 | _GLOBAL(_save32gpr_20) | ||
| 71 | stw 20,-48(11) | ||
| 72 | _GLOBAL(_savegpr_21) | ||
| 73 | _GLOBAL(_save32gpr_21) | ||
| 74 | stw 21,-44(11) | ||
| 75 | _GLOBAL(_savegpr_22) | ||
| 76 | _GLOBAL(_save32gpr_22) | ||
| 77 | stw 22,-40(11) | ||
| 78 | _GLOBAL(_savegpr_23) | ||
| 79 | _GLOBAL(_save32gpr_23) | ||
| 80 | stw 23,-36(11) | ||
| 81 | _GLOBAL(_savegpr_24) | ||
| 82 | _GLOBAL(_save32gpr_24) | ||
| 83 | stw 24,-32(11) | ||
| 84 | _GLOBAL(_savegpr_25) | ||
| 85 | _GLOBAL(_save32gpr_25) | ||
| 86 | stw 25,-28(11) | ||
| 87 | _GLOBAL(_savegpr_26) | ||
| 88 | _GLOBAL(_save32gpr_26) | ||
| 89 | stw 26,-24(11) | ||
| 90 | _GLOBAL(_savegpr_27) | ||
| 91 | _GLOBAL(_save32gpr_27) | ||
| 92 | stw 27,-20(11) | ||
| 93 | _GLOBAL(_savegpr_28) | ||
| 94 | _GLOBAL(_save32gpr_28) | ||
| 95 | stw 28,-16(11) | ||
| 96 | _GLOBAL(_savegpr_29) | ||
| 97 | _GLOBAL(_save32gpr_29) | ||
| 98 | stw 29,-12(11) | ||
| 99 | _GLOBAL(_savegpr_30) | ||
| 100 | _GLOBAL(_save32gpr_30) | ||
| 101 | stw 30,-8(11) | ||
| 102 | _GLOBAL(_savegpr_31) | ||
| 103 | _GLOBAL(_save32gpr_31) | ||
| 104 | stw 31,-4(11) | ||
| 105 | blr | ||
| 106 | |||
| 107 | /* Routines for restoring integer registers, called by the compiler. */ | ||
| 108 | /* Called with r11 pointing to the stack header word of the caller of the */ | ||
| 109 | /* function, just beyond the end of the integer restore area. */ | ||
| 110 | |||
| 111 | _GLOBAL(_restgpr_14) | ||
| 112 | _GLOBAL(_rest32gpr_14) | ||
| 113 | lwz 14,-72(11) /* restore gp registers */ | ||
| 114 | _GLOBAL(_restgpr_15) | ||
| 115 | _GLOBAL(_rest32gpr_15) | ||
| 116 | lwz 15,-68(11) | ||
| 117 | _GLOBAL(_restgpr_16) | ||
| 118 | _GLOBAL(_rest32gpr_16) | ||
| 119 | lwz 16,-64(11) | ||
| 120 | _GLOBAL(_restgpr_17) | ||
| 121 | _GLOBAL(_rest32gpr_17) | ||
| 122 | lwz 17,-60(11) | ||
| 123 | _GLOBAL(_restgpr_18) | ||
| 124 | _GLOBAL(_rest32gpr_18) | ||
| 125 | lwz 18,-56(11) | ||
| 126 | _GLOBAL(_restgpr_19) | ||
| 127 | _GLOBAL(_rest32gpr_19) | ||
| 128 | lwz 19,-52(11) | ||
| 129 | _GLOBAL(_restgpr_20) | ||
| 130 | _GLOBAL(_rest32gpr_20) | ||
| 131 | lwz 20,-48(11) | ||
| 132 | _GLOBAL(_restgpr_21) | ||
| 133 | _GLOBAL(_rest32gpr_21) | ||
| 134 | lwz 21,-44(11) | ||
| 135 | _GLOBAL(_restgpr_22) | ||
| 136 | _GLOBAL(_rest32gpr_22) | ||
| 137 | lwz 22,-40(11) | ||
| 138 | _GLOBAL(_restgpr_23) | ||
| 139 | _GLOBAL(_rest32gpr_23) | ||
| 140 | lwz 23,-36(11) | ||
| 141 | _GLOBAL(_restgpr_24) | ||
| 142 | _GLOBAL(_rest32gpr_24) | ||
| 143 | lwz 24,-32(11) | ||
| 144 | _GLOBAL(_restgpr_25) | ||
| 145 | _GLOBAL(_rest32gpr_25) | ||
| 146 | lwz 25,-28(11) | ||
| 147 | _GLOBAL(_restgpr_26) | ||
| 148 | _GLOBAL(_rest32gpr_26) | ||
| 149 | lwz 26,-24(11) | ||
| 150 | _GLOBAL(_restgpr_27) | ||
| 151 | _GLOBAL(_rest32gpr_27) | ||
| 152 | lwz 27,-20(11) | ||
| 153 | _GLOBAL(_restgpr_28) | ||
| 154 | _GLOBAL(_rest32gpr_28) | ||
| 155 | lwz 28,-16(11) | ||
| 156 | _GLOBAL(_restgpr_29) | ||
| 157 | _GLOBAL(_rest32gpr_29) | ||
| 158 | lwz 29,-12(11) | ||
| 159 | _GLOBAL(_restgpr_30) | ||
| 160 | _GLOBAL(_rest32gpr_30) | ||
| 161 | lwz 30,-8(11) | ||
| 162 | _GLOBAL(_restgpr_31) | ||
| 163 | _GLOBAL(_rest32gpr_31) | ||
| 164 | lwz 31,-4(11) | ||
| 165 | blr | ||
| 166 | |||
| 167 | /* Routines for restoring integer registers, called by the compiler. */ | ||
| 168 | /* Called with r11 pointing to the stack header word of the caller of the */ | ||
| 169 | /* function, just beyond the end of the integer restore area. */ | ||
| 170 | |||
| 171 | _GLOBAL(_restgpr_14_x) | ||
| 172 | _GLOBAL(_rest32gpr_14_x) | ||
| 173 | lwz 14,-72(11) /* restore gp registers */ | ||
| 174 | _GLOBAL(_restgpr_15_x) | ||
| 175 | _GLOBAL(_rest32gpr_15_x) | ||
| 176 | lwz 15,-68(11) | ||
| 177 | _GLOBAL(_restgpr_16_x) | ||
| 178 | _GLOBAL(_rest32gpr_16_x) | ||
| 179 | lwz 16,-64(11) | ||
| 180 | _GLOBAL(_restgpr_17_x) | ||
| 181 | _GLOBAL(_rest32gpr_17_x) | ||
| 182 | lwz 17,-60(11) | ||
| 183 | _GLOBAL(_restgpr_18_x) | ||
| 184 | _GLOBAL(_rest32gpr_18_x) | ||
| 185 | lwz 18,-56(11) | ||
| 186 | _GLOBAL(_restgpr_19_x) | ||
| 187 | _GLOBAL(_rest32gpr_19_x) | ||
| 188 | lwz 19,-52(11) | ||
| 189 | _GLOBAL(_restgpr_20_x) | ||
| 190 | _GLOBAL(_rest32gpr_20_x) | ||
| 191 | lwz 20,-48(11) | ||
| 192 | _GLOBAL(_restgpr_21_x) | ||
| 193 | _GLOBAL(_rest32gpr_21_x) | ||
| 194 | lwz 21,-44(11) | ||
| 195 | _GLOBAL(_restgpr_22_x) | ||
| 196 | _GLOBAL(_rest32gpr_22_x) | ||
| 197 | lwz 22,-40(11) | ||
| 198 | _GLOBAL(_restgpr_23_x) | ||
| 199 | _GLOBAL(_rest32gpr_23_x) | ||
| 200 | lwz 23,-36(11) | ||
| 201 | _GLOBAL(_restgpr_24_x) | ||
| 202 | _GLOBAL(_rest32gpr_24_x) | ||
| 203 | lwz 24,-32(11) | ||
| 204 | _GLOBAL(_restgpr_25_x) | ||
| 205 | _GLOBAL(_rest32gpr_25_x) | ||
| 206 | lwz 25,-28(11) | ||
| 207 | _GLOBAL(_restgpr_26_x) | ||
| 208 | _GLOBAL(_rest32gpr_26_x) | ||
| 209 | lwz 26,-24(11) | ||
| 210 | _GLOBAL(_restgpr_27_x) | ||
| 211 | _GLOBAL(_rest32gpr_27_x) | ||
| 212 | lwz 27,-20(11) | ||
| 213 | _GLOBAL(_restgpr_28_x) | ||
| 214 | _GLOBAL(_rest32gpr_28_x) | ||
| 215 | lwz 28,-16(11) | ||
| 216 | _GLOBAL(_restgpr_29_x) | ||
| 217 | _GLOBAL(_rest32gpr_29_x) | ||
| 218 | lwz 29,-12(11) | ||
| 219 | _GLOBAL(_restgpr_30_x) | ||
| 220 | _GLOBAL(_rest32gpr_30_x) | ||
| 221 | lwz 30,-8(11) | ||
| 222 | _GLOBAL(_restgpr_31_x) | ||
| 223 | _GLOBAL(_rest32gpr_31_x) | ||
| 224 | lwz 0,4(11) | ||
| 225 | lwz 31,-4(11) | ||
| 226 | mtlr 0 | ||
| 227 | mr 1,11 | ||
| 228 | blr | ||
| 229 | #endif | ||
diff --git a/arch/powerpc/mm/hash_low_64.S b/arch/powerpc/mm/hash_low_64.S index 21d248486479..70f4c833fa32 100644 --- a/arch/powerpc/mm/hash_low_64.S +++ b/arch/powerpc/mm/hash_low_64.S | |||
| @@ -568,6 +568,10 @@ htab_inval_old_hpte: | |||
| 568 | ld r7,STK_PARM(r9)(r1) /* ssize */ | 568 | ld r7,STK_PARM(r9)(r1) /* ssize */ |
| 569 | ld r8,STK_PARM(r8)(r1) /* local */ | 569 | ld r8,STK_PARM(r8)(r1) /* local */ |
| 570 | bl .flush_hash_page | 570 | bl .flush_hash_page |
| 571 | /* Clear out _PAGE_HPTE_SUB bits in the new linux PTE */ | ||
| 572 | lis r0,_PAGE_HPTE_SUB@h | ||
| 573 | ori r0,r0,_PAGE_HPTE_SUB@l | ||
| 574 | andc r30,r30,r0 | ||
| 571 | b htab_insert_pte | 575 | b htab_insert_pte |
| 572 | 576 | ||
| 573 | htab_bail_ok: | 577 | htab_bail_ok: |
diff --git a/arch/powerpc/platforms/85xx/Kconfig b/arch/powerpc/platforms/85xx/Kconfig index 7ff29d53dc2d..ecbe580c3f32 100644 --- a/arch/powerpc/platforms/85xx/Kconfig +++ b/arch/powerpc/platforms/85xx/Kconfig | |||
| @@ -34,6 +34,7 @@ config MPC85xx_MDS | |||
| 34 | bool "Freescale MPC85xx MDS" | 34 | bool "Freescale MPC85xx MDS" |
| 35 | select DEFAULT_UIMAGE | 35 | select DEFAULT_UIMAGE |
| 36 | select QUICC_ENGINE | 36 | select QUICC_ENGINE |
| 37 | select PHYLIB | ||
| 37 | help | 38 | help |
| 38 | This option enables support for the MPC85xx MDS board | 39 | This option enables support for the MPC85xx MDS board |
| 39 | 40 | ||
diff --git a/arch/powerpc/platforms/cell/spu_base.c b/arch/powerpc/platforms/cell/spu_base.c index 70c660121ec4..78f905bc6a42 100644 --- a/arch/powerpc/platforms/cell/spu_base.c +++ b/arch/powerpc/platforms/cell/spu_base.c | |||
| @@ -219,15 +219,25 @@ static int __spu_trap_data_seg(struct spu *spu, unsigned long ea) | |||
| 219 | extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX | 219 | extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap); //XXX |
| 220 | static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr) | 220 | static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr) |
| 221 | { | 221 | { |
| 222 | int ret; | ||
| 223 | |||
| 222 | pr_debug("%s, %lx, %lx\n", __func__, dsisr, ea); | 224 | pr_debug("%s, %lx, %lx\n", __func__, dsisr, ea); |
| 223 | 225 | ||
| 224 | /* Handle kernel space hash faults immediately. | 226 | /* |
| 225 | User hash faults need to be deferred to process context. */ | 227 | * Handle kernel space hash faults immediately. User hash |
| 226 | if ((dsisr & MFC_DSISR_PTE_NOT_FOUND) | 228 | * faults need to be deferred to process context. |
| 227 | && REGION_ID(ea) != USER_REGION_ID | 229 | */ |
| 228 | && hash_page(ea, _PAGE_PRESENT, 0x300) == 0) { | 230 | if ((dsisr & MFC_DSISR_PTE_NOT_FOUND) && |
| 229 | spu_restart_dma(spu); | 231 | (REGION_ID(ea) != USER_REGION_ID)) { |
| 230 | return 0; | 232 | |
| 233 | spin_unlock(&spu->register_lock); | ||
| 234 | ret = hash_page(ea, _PAGE_PRESENT, 0x300); | ||
| 235 | spin_lock(&spu->register_lock); | ||
| 236 | |||
| 237 | if (!ret) { | ||
| 238 | spu_restart_dma(spu); | ||
| 239 | return 0; | ||
| 240 | } | ||
| 231 | } | 241 | } |
| 232 | 242 | ||
| 233 | spu->class_1_dar = ea; | 243 | spu->class_1_dar = ea; |
| @@ -324,17 +334,13 @@ spu_irq_class_0(int irq, void *data) | |||
| 324 | stat = spu_int_stat_get(spu, 0) & mask; | 334 | stat = spu_int_stat_get(spu, 0) & mask; |
| 325 | 335 | ||
| 326 | spu->class_0_pending |= stat; | 336 | spu->class_0_pending |= stat; |
| 327 | spu->class_0_dsisr = spu_mfc_dsisr_get(spu); | ||
| 328 | spu->class_0_dar = spu_mfc_dar_get(spu); | 337 | spu->class_0_dar = spu_mfc_dar_get(spu); |
| 329 | spin_unlock(&spu->register_lock); | ||
| 330 | |||
| 331 | spu->stop_callback(spu, 0); | 338 | spu->stop_callback(spu, 0); |
| 332 | |||
| 333 | spu->class_0_pending = 0; | 339 | spu->class_0_pending = 0; |
| 334 | spu->class_0_dsisr = 0; | ||
| 335 | spu->class_0_dar = 0; | 340 | spu->class_0_dar = 0; |
| 336 | 341 | ||
| 337 | spu_int_stat_clear(spu, 0, stat); | 342 | spu_int_stat_clear(spu, 0, stat); |
| 343 | spin_unlock(&spu->register_lock); | ||
| 338 | 344 | ||
| 339 | return IRQ_HANDLED; | 345 | return IRQ_HANDLED; |
| 340 | } | 346 | } |
| @@ -357,13 +363,12 @@ spu_irq_class_1(int irq, void *data) | |||
| 357 | spu_mfc_dsisr_set(spu, 0ul); | 363 | spu_mfc_dsisr_set(spu, 0ul); |
| 358 | spu_int_stat_clear(spu, 1, stat); | 364 | spu_int_stat_clear(spu, 1, stat); |
| 359 | 365 | ||
| 360 | if (stat & CLASS1_SEGMENT_FAULT_INTR) | ||
| 361 | __spu_trap_data_seg(spu, dar); | ||
| 362 | |||
| 363 | spin_unlock(&spu->register_lock); | ||
| 364 | pr_debug("%s: %lx %lx %lx %lx\n", __func__, mask, stat, | 366 | pr_debug("%s: %lx %lx %lx %lx\n", __func__, mask, stat, |
| 365 | dar, dsisr); | 367 | dar, dsisr); |
| 366 | 368 | ||
| 369 | if (stat & CLASS1_SEGMENT_FAULT_INTR) | ||
| 370 | __spu_trap_data_seg(spu, dar); | ||
| 371 | |||
| 367 | if (stat & CLASS1_STORAGE_FAULT_INTR) | 372 | if (stat & CLASS1_STORAGE_FAULT_INTR) |
| 368 | __spu_trap_data_map(spu, dar, dsisr); | 373 | __spu_trap_data_map(spu, dar, dsisr); |
| 369 | 374 | ||
| @@ -376,6 +381,8 @@ spu_irq_class_1(int irq, void *data) | |||
| 376 | spu->class_1_dsisr = 0; | 381 | spu->class_1_dsisr = 0; |
| 377 | spu->class_1_dar = 0; | 382 | spu->class_1_dar = 0; |
| 378 | 383 | ||
| 384 | spin_unlock(&spu->register_lock); | ||
| 385 | |||
| 379 | return stat ? IRQ_HANDLED : IRQ_NONE; | 386 | return stat ? IRQ_HANDLED : IRQ_NONE; |
| 380 | } | 387 | } |
| 381 | 388 | ||
| @@ -394,14 +401,12 @@ spu_irq_class_2(int irq, void *data) | |||
| 394 | mask = spu_int_mask_get(spu, 2); | 401 | mask = spu_int_mask_get(spu, 2); |
| 395 | /* ignore interrupts we're not waiting for */ | 402 | /* ignore interrupts we're not waiting for */ |
| 396 | stat &= mask; | 403 | stat &= mask; |
| 397 | |||
| 398 | /* mailbox interrupts are level triggered. mask them now before | 404 | /* mailbox interrupts are level triggered. mask them now before |
| 399 | * acknowledging */ | 405 | * acknowledging */ |
| 400 | if (stat & mailbox_intrs) | 406 | if (stat & mailbox_intrs) |
| 401 | spu_int_mask_and(spu, 2, ~(stat & mailbox_intrs)); | 407 | spu_int_mask_and(spu, 2, ~(stat & mailbox_intrs)); |
| 402 | /* acknowledge all interrupts before the callbacks */ | 408 | /* acknowledge all interrupts before the callbacks */ |
| 403 | spu_int_stat_clear(spu, 2, stat); | 409 | spu_int_stat_clear(spu, 2, stat); |
| 404 | spin_unlock(&spu->register_lock); | ||
| 405 | 410 | ||
| 406 | pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask); | 411 | pr_debug("class 2 interrupt %d, %lx, %lx\n", irq, stat, mask); |
| 407 | 412 | ||
| @@ -421,6 +426,9 @@ spu_irq_class_2(int irq, void *data) | |||
| 421 | spu->wbox_callback(spu); | 426 | spu->wbox_callback(spu); |
| 422 | 427 | ||
| 423 | spu->stats.class2_intr++; | 428 | spu->stats.class2_intr++; |
| 429 | |||
| 430 | spin_unlock(&spu->register_lock); | ||
| 431 | |||
| 424 | return stat ? IRQ_HANDLED : IRQ_NONE; | 432 | return stat ? IRQ_HANDLED : IRQ_NONE; |
| 425 | } | 433 | } |
| 426 | 434 | ||
diff --git a/arch/powerpc/platforms/cell/spufs/run.c b/arch/powerpc/platforms/cell/spufs/run.c index b7493b865812..f7edba6cb795 100644 --- a/arch/powerpc/platforms/cell/spufs/run.c +++ b/arch/powerpc/platforms/cell/spufs/run.c | |||
| @@ -27,7 +27,6 @@ void spufs_stop_callback(struct spu *spu, int irq) | |||
| 27 | switch(irq) { | 27 | switch(irq) { |
| 28 | case 0 : | 28 | case 0 : |
| 29 | ctx->csa.class_0_pending = spu->class_0_pending; | 29 | ctx->csa.class_0_pending = spu->class_0_pending; |
| 30 | ctx->csa.class_0_dsisr = spu->class_0_dsisr; | ||
| 31 | ctx->csa.class_0_dar = spu->class_0_dar; | 30 | ctx->csa.class_0_dar = spu->class_0_dar; |
| 32 | break; | 31 | break; |
| 33 | case 1 : | 32 | case 1 : |
| @@ -51,18 +50,22 @@ int spu_stopped(struct spu_context *ctx, u32 *stat) | |||
| 51 | u64 dsisr; | 50 | u64 dsisr; |
| 52 | u32 stopped; | 51 | u32 stopped; |
| 53 | 52 | ||
| 54 | *stat = ctx->ops->status_read(ctx); | ||
| 55 | |||
| 56 | if (test_bit(SPU_SCHED_NOTIFY_ACTIVE, &ctx->sched_flags)) | ||
| 57 | return 1; | ||
| 58 | |||
| 59 | stopped = SPU_STATUS_INVALID_INSTR | SPU_STATUS_SINGLE_STEP | | 53 | stopped = SPU_STATUS_INVALID_INSTR | SPU_STATUS_SINGLE_STEP | |
| 60 | SPU_STATUS_STOPPED_BY_HALT | SPU_STATUS_STOPPED_BY_STOP; | 54 | SPU_STATUS_STOPPED_BY_HALT | SPU_STATUS_STOPPED_BY_STOP; |
| 61 | if (!(*stat & SPU_STATUS_RUNNING) && (*stat & stopped)) | 55 | |
| 56 | top: | ||
| 57 | *stat = ctx->ops->status_read(ctx); | ||
| 58 | if (*stat & stopped) { | ||
| 59 | /* | ||
| 60 | * If the spu hasn't finished stopping, we need to | ||
| 61 | * re-read the register to get the stopped value. | ||
| 62 | */ | ||
| 63 | if (*stat & SPU_STATUS_RUNNING) | ||
| 64 | goto top; | ||
| 62 | return 1; | 65 | return 1; |
| 66 | } | ||
| 63 | 67 | ||
| 64 | dsisr = ctx->csa.class_0_dsisr; | 68 | if (test_bit(SPU_SCHED_NOTIFY_ACTIVE, &ctx->sched_flags)) |
| 65 | if (dsisr & (MFC_DSISR_PTE_NOT_FOUND | MFC_DSISR_ACCESS_DENIED)) | ||
| 66 | return 1; | 69 | return 1; |
| 67 | 70 | ||
| 68 | dsisr = ctx->csa.class_1_dsisr; | 71 | dsisr = ctx->csa.class_1_dsisr; |
diff --git a/arch/powerpc/platforms/cell/spufs/sched.c b/arch/powerpc/platforms/cell/spufs/sched.c index 745dd51ec37f..e929e70a84e3 100644 --- a/arch/powerpc/platforms/cell/spufs/sched.c +++ b/arch/powerpc/platforms/cell/spufs/sched.c | |||
| @@ -230,19 +230,23 @@ static void spu_bind_context(struct spu *spu, struct spu_context *ctx) | |||
| 230 | ctx->stats.slb_flt_base = spu->stats.slb_flt; | 230 | ctx->stats.slb_flt_base = spu->stats.slb_flt; |
| 231 | ctx->stats.class2_intr_base = spu->stats.class2_intr; | 231 | ctx->stats.class2_intr_base = spu->stats.class2_intr; |
| 232 | 232 | ||
| 233 | spu_associate_mm(spu, ctx->owner); | ||
| 234 | |||
| 235 | spin_lock_irq(&spu->register_lock); | ||
| 233 | spu->ctx = ctx; | 236 | spu->ctx = ctx; |
| 234 | spu->flags = 0; | 237 | spu->flags = 0; |
| 235 | ctx->spu = spu; | 238 | ctx->spu = spu; |
| 236 | ctx->ops = &spu_hw_ops; | 239 | ctx->ops = &spu_hw_ops; |
| 237 | spu->pid = current->pid; | 240 | spu->pid = current->pid; |
| 238 | spu->tgid = current->tgid; | 241 | spu->tgid = current->tgid; |
| 239 | spu_associate_mm(spu, ctx->owner); | ||
| 240 | spu->ibox_callback = spufs_ibox_callback; | 242 | spu->ibox_callback = spufs_ibox_callback; |
| 241 | spu->wbox_callback = spufs_wbox_callback; | 243 | spu->wbox_callback = spufs_wbox_callback; |
| 242 | spu->stop_callback = spufs_stop_callback; | 244 | spu->stop_callback = spufs_stop_callback; |
| 243 | spu->mfc_callback = spufs_mfc_callback; | 245 | spu->mfc_callback = spufs_mfc_callback; |
| 244 | mb(); | 246 | spin_unlock_irq(&spu->register_lock); |
| 247 | |||
| 245 | spu_unmap_mappings(ctx); | 248 | spu_unmap_mappings(ctx); |
| 249 | |||
| 246 | spu_switch_log_notify(spu, ctx, SWITCH_LOG_START, 0); | 250 | spu_switch_log_notify(spu, ctx, SWITCH_LOG_START, 0); |
| 247 | spu_restore(&ctx->csa, spu); | 251 | spu_restore(&ctx->csa, spu); |
| 248 | spu->timestamp = jiffies; | 252 | spu->timestamp = jiffies; |
| @@ -403,6 +407,8 @@ static int has_affinity(struct spu_context *ctx) | |||
| 403 | */ | 407 | */ |
| 404 | static void spu_unbind_context(struct spu *spu, struct spu_context *ctx) | 408 | static void spu_unbind_context(struct spu *spu, struct spu_context *ctx) |
| 405 | { | 409 | { |
| 410 | u32 status; | ||
| 411 | |||
| 406 | spu_context_trace(spu_unbind_context__enter, ctx, spu); | 412 | spu_context_trace(spu_unbind_context__enter, ctx, spu); |
| 407 | 413 | ||
| 408 | spuctx_switch_state(ctx, SPU_UTIL_SYSTEM); | 414 | spuctx_switch_state(ctx, SPU_UTIL_SYSTEM); |
| @@ -423,18 +429,22 @@ static void spu_unbind_context(struct spu *spu, struct spu_context *ctx) | |||
| 423 | spu_unmap_mappings(ctx); | 429 | spu_unmap_mappings(ctx); |
| 424 | spu_save(&ctx->csa, spu); | 430 | spu_save(&ctx->csa, spu); |
| 425 | spu_switch_log_notify(spu, ctx, SWITCH_LOG_STOP, 0); | 431 | spu_switch_log_notify(spu, ctx, SWITCH_LOG_STOP, 0); |
| 432 | |||
| 433 | spin_lock_irq(&spu->register_lock); | ||
| 426 | spu->timestamp = jiffies; | 434 | spu->timestamp = jiffies; |
| 427 | ctx->state = SPU_STATE_SAVED; | 435 | ctx->state = SPU_STATE_SAVED; |
| 428 | spu->ibox_callback = NULL; | 436 | spu->ibox_callback = NULL; |
| 429 | spu->wbox_callback = NULL; | 437 | spu->wbox_callback = NULL; |
| 430 | spu->stop_callback = NULL; | 438 | spu->stop_callback = NULL; |
| 431 | spu->mfc_callback = NULL; | 439 | spu->mfc_callback = NULL; |
| 432 | spu_associate_mm(spu, NULL); | ||
| 433 | spu->pid = 0; | 440 | spu->pid = 0; |
| 434 | spu->tgid = 0; | 441 | spu->tgid = 0; |
| 435 | ctx->ops = &spu_backing_ops; | 442 | ctx->ops = &spu_backing_ops; |
| 436 | spu->flags = 0; | 443 | spu->flags = 0; |
| 437 | spu->ctx = NULL; | 444 | spu->ctx = NULL; |
| 445 | spin_unlock_irq(&spu->register_lock); | ||
| 446 | |||
| 447 | spu_associate_mm(spu, NULL); | ||
| 438 | 448 | ||
| 439 | ctx->stats.slb_flt += | 449 | ctx->stats.slb_flt += |
| 440 | (spu->stats.slb_flt - ctx->stats.slb_flt_base); | 450 | (spu->stats.slb_flt - ctx->stats.slb_flt_base); |
| @@ -444,6 +454,9 @@ static void spu_unbind_context(struct spu *spu, struct spu_context *ctx) | |||
| 444 | /* This maps the underlying spu state to idle */ | 454 | /* This maps the underlying spu state to idle */ |
| 445 | spuctx_switch_state(ctx, SPU_UTIL_IDLE_LOADED); | 455 | spuctx_switch_state(ctx, SPU_UTIL_IDLE_LOADED); |
| 446 | ctx->spu = NULL; | 456 | ctx->spu = NULL; |
| 457 | |||
| 458 | if (spu_stopped(ctx, &status)) | ||
| 459 | wake_up_all(&ctx->stop_wq); | ||
| 447 | } | 460 | } |
| 448 | 461 | ||
| 449 | /** | 462 | /** |
diff --git a/arch/powerpc/platforms/pseries/eeh_driver.c b/arch/powerpc/platforms/pseries/eeh_driver.c index 68ea5eee39a8..8c1ca477c52c 100644 --- a/arch/powerpc/platforms/pseries/eeh_driver.c +++ b/arch/powerpc/platforms/pseries/eeh_driver.c | |||
| @@ -42,17 +42,20 @@ static inline const char * pcid_name (struct pci_dev *pdev) | |||
| 42 | } | 42 | } |
| 43 | 43 | ||
| 44 | #ifdef DEBUG | 44 | #ifdef DEBUG |
| 45 | static void print_device_node_tree (struct pci_dn *pdn, int dent) | 45 | static void print_device_node_tree(struct pci_dn *pdn, int dent) |
| 46 | { | 46 | { |
| 47 | int i; | 47 | int i; |
| 48 | if (!pdn) return; | 48 | struct device_node *pc; |
| 49 | for (i=0;i<dent; i++) | 49 | |
| 50 | if (!pdn) | ||
| 51 | return; | ||
| 52 | for (i = 0; i < dent; i++) | ||
| 50 | printk(" "); | 53 | printk(" "); |
| 51 | printk("dn=%s mode=%x \tcfg_addr=%x pe_addr=%x \tfull=%s\n", | 54 | printk("dn=%s mode=%x \tcfg_addr=%x pe_addr=%x \tfull=%s\n", |
| 52 | pdn->node->name, pdn->eeh_mode, pdn->eeh_config_addr, | 55 | pdn->node->name, pdn->eeh_mode, pdn->eeh_config_addr, |
| 53 | pdn->eeh_pe_config_addr, pdn->node->full_name); | 56 | pdn->eeh_pe_config_addr, pdn->node->full_name); |
| 54 | dent += 3; | 57 | dent += 3; |
| 55 | struct device_node *pc = pdn->node->child; | 58 | pc = pdn->node->child; |
| 56 | while (pc) { | 59 | while (pc) { |
| 57 | print_device_node_tree(PCI_DN(pc), dent); | 60 | print_device_node_tree(PCI_DN(pc), dent); |
| 58 | pc = pc->sibling; | 61 | pc = pc->sibling; |
diff --git a/arch/powerpc/platforms/pseries/nvram.c b/arch/powerpc/platforms/pseries/nvram.c index f68903e15bd5..42f7e384e6c4 100644 --- a/arch/powerpc/platforms/pseries/nvram.c +++ b/arch/powerpc/platforms/pseries/nvram.c | |||
| @@ -131,8 +131,10 @@ int __init pSeries_nvram_init(void) | |||
| 131 | return -ENODEV; | 131 | return -ENODEV; |
| 132 | 132 | ||
| 133 | nbytes_p = of_get_property(nvram, "#bytes", &proplen); | 133 | nbytes_p = of_get_property(nvram, "#bytes", &proplen); |
| 134 | if (nbytes_p == NULL || proplen != sizeof(unsigned int)) | 134 | if (nbytes_p == NULL || proplen != sizeof(unsigned int)) { |
| 135 | of_node_put(nvram); | ||
| 135 | return -EIO; | 136 | return -EIO; |
| 137 | } | ||
| 136 | 138 | ||
| 137 | nvram_size = *nbytes_p; | 139 | nvram_size = *nbytes_p; |
| 138 | 140 | ||
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c index 1702de9395ee..bfcf70ee8959 100644 --- a/arch/powerpc/xmon/xmon.c +++ b/arch/powerpc/xmon/xmon.c | |||
| @@ -2844,7 +2844,6 @@ static void dump_spu_fields(struct spu *spu) | |||
| 2844 | DUMP_FIELD(spu, "0x%lx", flags); | 2844 | DUMP_FIELD(spu, "0x%lx", flags); |
| 2845 | DUMP_FIELD(spu, "%d", class_0_pending); | 2845 | DUMP_FIELD(spu, "%d", class_0_pending); |
| 2846 | DUMP_FIELD(spu, "0x%lx", class_0_dar); | 2846 | DUMP_FIELD(spu, "0x%lx", class_0_dar); |
| 2847 | DUMP_FIELD(spu, "0x%lx", class_0_dsisr); | ||
| 2848 | DUMP_FIELD(spu, "0x%lx", class_1_dar); | 2847 | DUMP_FIELD(spu, "0x%lx", class_1_dar); |
| 2849 | DUMP_FIELD(spu, "0x%lx", class_1_dsisr); | 2848 | DUMP_FIELD(spu, "0x%lx", class_1_dsisr); |
| 2850 | DUMP_FIELD(spu, "0x%lx", irqs[0]); | 2849 | DUMP_FIELD(spu, "0x%lx", irqs[0]); |
diff --git a/arch/x86/lib/copy_user_64.S b/arch/x86/lib/copy_user_64.S index 70bebd310408..ee1c3f635157 100644 --- a/arch/x86/lib/copy_user_64.S +++ b/arch/x86/lib/copy_user_64.S | |||
| @@ -217,19 +217,19 @@ ENTRY(copy_user_generic_unrolled) | |||
| 217 | /* table sorted by exception address */ | 217 | /* table sorted by exception address */ |
| 218 | .section __ex_table,"a" | 218 | .section __ex_table,"a" |
| 219 | .align 8 | 219 | .align 8 |
| 220 | .quad .Ls1,.Ls1e | 220 | .quad .Ls1,.Ls1e /* Ls1-Ls4 have copied zero bytes */ |
| 221 | .quad .Ls2,.Ls2e | 221 | .quad .Ls2,.Ls1e |
| 222 | .quad .Ls3,.Ls3e | 222 | .quad .Ls3,.Ls1e |
| 223 | .quad .Ls4,.Ls4e | 223 | .quad .Ls4,.Ls1e |
| 224 | .quad .Ld1,.Ls1e | 224 | .quad .Ld1,.Ls1e /* Ld1-Ld4 have copied 0-24 bytes */ |
| 225 | .quad .Ld2,.Ls2e | 225 | .quad .Ld2,.Ls2e |
| 226 | .quad .Ld3,.Ls3e | 226 | .quad .Ld3,.Ls3e |
| 227 | .quad .Ld4,.Ls4e | 227 | .quad .Ld4,.Ls4e |
| 228 | .quad .Ls5,.Ls5e | 228 | .quad .Ls5,.Ls5e /* Ls5-Ls8 have copied 32 bytes */ |
| 229 | .quad .Ls6,.Ls6e | 229 | .quad .Ls6,.Ls5e |
| 230 | .quad .Ls7,.Ls7e | 230 | .quad .Ls7,.Ls5e |
| 231 | .quad .Ls8,.Ls8e | 231 | .quad .Ls8,.Ls5e |
| 232 | .quad .Ld5,.Ls5e | 232 | .quad .Ld5,.Ls5e /* Ld5-Ld8 have copied 32-56 bytes */ |
| 233 | .quad .Ld6,.Ls6e | 233 | .quad .Ld6,.Ls6e |
| 234 | .quad .Ld7,.Ls7e | 234 | .quad .Ld7,.Ls7e |
| 235 | .quad .Ld8,.Ls8e | 235 | .quad .Ld8,.Ls8e |
| @@ -244,11 +244,8 @@ ENTRY(copy_user_generic_unrolled) | |||
| 244 | .quad .Le5,.Le_zero | 244 | .quad .Le5,.Le_zero |
| 245 | .previous | 245 | .previous |
| 246 | 246 | ||
| 247 | /* compute 64-offset for main loop. 8 bytes accuracy with error on the | ||
| 248 | pessimistic side. this is gross. it would be better to fix the | ||
| 249 | interface. */ | ||
| 250 | /* eax: zero, ebx: 64 */ | 247 | /* eax: zero, ebx: 64 */ |
| 251 | .Ls1e: addl $8,%eax | 248 | .Ls1e: addl $8,%eax /* eax is bytes left uncopied within the loop (Ls1e: 64 .. Ls8e: 8) */ |
| 252 | .Ls2e: addl $8,%eax | 249 | .Ls2e: addl $8,%eax |
| 253 | .Ls3e: addl $8,%eax | 250 | .Ls3e: addl $8,%eax |
| 254 | .Ls4e: addl $8,%eax | 251 | .Ls4e: addl $8,%eax |
diff --git a/arch/x86/lib/copy_user_nocache_64.S b/arch/x86/lib/copy_user_nocache_64.S index 5196762b3b0e..9d3d1ab83763 100644 --- a/arch/x86/lib/copy_user_nocache_64.S +++ b/arch/x86/lib/copy_user_nocache_64.S | |||
| @@ -145,19 +145,19 @@ ENTRY(__copy_user_nocache) | |||
| 145 | /* table sorted by exception address */ | 145 | /* table sorted by exception address */ |
| 146 | .section __ex_table,"a" | 146 | .section __ex_table,"a" |
| 147 | .align 8 | 147 | .align 8 |
| 148 | .quad .Ls1,.Ls1e | 148 | .quad .Ls1,.Ls1e /* .Ls[1-4] - 0 bytes copied */ |
| 149 | .quad .Ls2,.Ls2e | 149 | .quad .Ls2,.Ls1e |
| 150 | .quad .Ls3,.Ls3e | 150 | .quad .Ls3,.Ls1e |
| 151 | .quad .Ls4,.Ls4e | 151 | .quad .Ls4,.Ls1e |
| 152 | .quad .Ld1,.Ls1e | 152 | .quad .Ld1,.Ls1e /* .Ld[1-4] - 0..24 bytes coped */ |
| 153 | .quad .Ld2,.Ls2e | 153 | .quad .Ld2,.Ls2e |
| 154 | .quad .Ld3,.Ls3e | 154 | .quad .Ld3,.Ls3e |
| 155 | .quad .Ld4,.Ls4e | 155 | .quad .Ld4,.Ls4e |
| 156 | .quad .Ls5,.Ls5e | 156 | .quad .Ls5,.Ls5e /* .Ls[5-8] - 32 bytes copied */ |
| 157 | .quad .Ls6,.Ls6e | 157 | .quad .Ls6,.Ls5e |
| 158 | .quad .Ls7,.Ls7e | 158 | .quad .Ls7,.Ls5e |
| 159 | .quad .Ls8,.Ls8e | 159 | .quad .Ls8,.Ls5e |
| 160 | .quad .Ld5,.Ls5e | 160 | .quad .Ld5,.Ls5e /* .Ld[5-8] - 32..56 bytes copied */ |
| 161 | .quad .Ld6,.Ls6e | 161 | .quad .Ld6,.Ls6e |
| 162 | .quad .Ld7,.Ls7e | 162 | .quad .Ld7,.Ls7e |
| 163 | .quad .Ld8,.Ls8e | 163 | .quad .Ld8,.Ls8e |
| @@ -172,11 +172,8 @@ ENTRY(__copy_user_nocache) | |||
| 172 | .quad .Le5,.Le_zero | 172 | .quad .Le5,.Le_zero |
| 173 | .previous | 173 | .previous |
| 174 | 174 | ||
| 175 | /* compute 64-offset for main loop. 8 bytes accuracy with error on the | ||
| 176 | pessimistic side. this is gross. it would be better to fix the | ||
| 177 | interface. */ | ||
| 178 | /* eax: zero, ebx: 64 */ | 175 | /* eax: zero, ebx: 64 */ |
| 179 | .Ls1e: addl $8,%eax | 176 | .Ls1e: addl $8,%eax /* eax: bytes left uncopied: Ls1e: 64 .. Ls8e: 8 */ |
| 180 | .Ls2e: addl $8,%eax | 177 | .Ls2e: addl $8,%eax |
| 181 | .Ls3e: addl $8,%eax | 178 | .Ls3e: addl $8,%eax |
| 182 | .Ls4e: addl $8,%eax | 179 | .Ls4e: addl $8,%eax |
