diff options
| author | Joerg Roedel <joerg.roedel@amd.com> | 2009-06-09 04:50:57 -0400 |
|---|---|---|
| committer | Joerg Roedel <joerg.roedel@amd.com> | 2009-06-09 04:50:57 -0400 |
| commit | d2dd01de9924ae24afeba5aa5bc2e08287701df6 (patch) | |
| tree | 3021bf496579a48984666355b59df5e44b42dd32 /arch/powerpc | |
| parent | 367d04c4ec02dad34d80452e32e3370db7fb6fee (diff) | |
| parent | 62a6f465f6572e1f28765c583c12753bb3e23715 (diff) | |
Merge commit 'tip/core/iommu' into amd-iommu/fixes
Diffstat (limited to 'arch/powerpc')
86 files changed, 4568 insertions, 1935 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index a0d1146a0578..cdc9a6ff4be8 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
| @@ -868,6 +868,18 @@ config TASK_SIZE | |||
| 868 | default "0x80000000" if PPC_PREP || PPC_8xx | 868 | default "0x80000000" if PPC_PREP || PPC_8xx |
| 869 | default "0xc0000000" | 869 | default "0xc0000000" |
| 870 | 870 | ||
| 871 | config CONSISTENT_SIZE_BOOL | ||
| 872 | bool "Set custom consistent memory pool size" | ||
| 873 | depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE | ||
| 874 | help | ||
| 875 | This option allows you to set the size of the | ||
| 876 | consistent memory pool. This pool of virtual memory | ||
| 877 | is used to make consistent memory allocations. | ||
| 878 | |||
| 879 | config CONSISTENT_SIZE | ||
| 880 | hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL | ||
| 881 | default "0x00200000" if NOT_COHERENT_CACHE | ||
| 882 | |||
| 871 | config PIN_TLB | 883 | config PIN_TLB |
| 872 | bool "Pinned Kernel TLBs (860 ONLY)" | 884 | bool "Pinned Kernel TLBs (860 ONLY)" |
| 873 | depends on ADVANCED_OPTIONS && 8xx | 885 | depends on ADVANCED_OPTIONS && 8xx |
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 8da2bf963b57..9ae7b7e2ba71 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
| @@ -346,7 +346,7 @@ install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y)) | |||
| 346 | clean-files += $(image-) $(initrd-) cuImage.* dtbImage.* treeImage.* \ | 346 | clean-files += $(image-) $(initrd-) cuImage.* dtbImage.* treeImage.* \ |
| 347 | zImage zImage.initrd zImage.chrp zImage.coff zImage.holly \ | 347 | zImage zImage.initrd zImage.chrp zImage.coff zImage.holly \ |
| 348 | zImage.iseries zImage.miboot zImage.pmac zImage.pseries \ | 348 | zImage.iseries zImage.miboot zImage.pmac zImage.pseries \ |
| 349 | otheros.bld *.dtb | 349 | simpleImage.* otheros.bld *.dtb |
| 350 | 350 | ||
| 351 | # clean up files cached by wrapper | 351 | # clean up files cached by wrapper |
| 352 | clean-kernel := vmlinux.strip vmlinux.bin | 352 | clean-kernel := vmlinux.strip vmlinux.bin |
diff --git a/arch/powerpc/boot/mktree.c b/arch/powerpc/boot/mktree.c index 45d06a8c7cd1..c2baae0a3d89 100644 --- a/arch/powerpc/boot/mktree.c +++ b/arch/powerpc/boot/mktree.c | |||
| @@ -42,7 +42,7 @@ int main(int argc, char *argv[]) | |||
| 42 | { | 42 | { |
| 43 | int in_fd, out_fd; | 43 | int in_fd, out_fd; |
| 44 | int nblks, i; | 44 | int nblks, i; |
| 45 | uint cksum, *cp; | 45 | unsigned int cksum, *cp; |
| 46 | struct stat st; | 46 | struct stat st; |
| 47 | boot_block_t bt; | 47 | boot_block_t bt; |
| 48 | 48 | ||
| @@ -90,7 +90,7 @@ int main(int argc, char *argv[]) | |||
| 90 | 90 | ||
| 91 | cksum = 0; | 91 | cksum = 0; |
| 92 | cp = (void *)&bt; | 92 | cp = (void *)&bt; |
| 93 | for (i=0; i<sizeof(bt)/sizeof(uint); i++) | 93 | for (i = 0; i < sizeof(bt) / sizeof(unsigned int); i++) |
| 94 | cksum += *cp++; | 94 | cksum += *cp++; |
| 95 | 95 | ||
| 96 | /* Assume zImage is an ELF file, and skip the 64K header. | 96 | /* Assume zImage is an ELF file, and skip the 64K header. |
| @@ -101,7 +101,7 @@ int main(int argc, char *argv[]) | |||
| 101 | exit(4); | 101 | exit(4); |
| 102 | } | 102 | } |
| 103 | 103 | ||
| 104 | if ((*(uint *)tmpbuf) != htonl(0x7f454c46)) { | 104 | if ((*(unsigned int *)tmpbuf) != htonl(0x7f454c46)) { |
| 105 | fprintf(stderr, "%s is not an ELF image\n", argv[1]); | 105 | fprintf(stderr, "%s is not an ELF image\n", argv[1]); |
| 106 | exit(4); | 106 | exit(4); |
| 107 | } | 107 | } |
| @@ -125,8 +125,8 @@ int main(int argc, char *argv[]) | |||
| 125 | perror("zImage read"); | 125 | perror("zImage read"); |
| 126 | exit(5); | 126 | exit(5); |
| 127 | } | 127 | } |
| 128 | cp = (uint *)tmpbuf; | 128 | cp = (unsigned int *)tmpbuf; |
| 129 | for (i=0; i<sizeof(tmpbuf)/sizeof(uint); i++) | 129 | for (i = 0; i < sizeof(tmpbuf) / sizeof(unsigned int); i++) |
| 130 | cksum += *cp++; | 130 | cksum += *cp++; |
| 131 | if (write(out_fd, tmpbuf, sizeof(tmpbuf)) != sizeof(tmpbuf)) { | 131 | if (write(out_fd, tmpbuf, sizeof(tmpbuf)) != sizeof(tmpbuf)) { |
| 132 | perror("boot-image write"); | 132 | perror("boot-image write"); |
diff --git a/arch/powerpc/configs/83xx/asp8347_defconfig b/arch/powerpc/configs/83xx/asp8347_defconfig index fc4a39a40e72..278939713775 100644 --- a/arch/powerpc/configs/83xx/asp8347_defconfig +++ b/arch/powerpc/configs/83xx/asp8347_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:47 2009 | 4 | # Wed May 13 17:22:05 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | CONFIG_FSL_EMB_PERFMON=y | 19 | CONFIG_FSL_EMB_PERFMON=y |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -57,6 +58,7 @@ CONFIG_REDBOOT=y | |||
| 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 58 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 59 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 61 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 61 | 63 | ||
| 62 | # | 64 | # |
| @@ -74,6 +76,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 74 | # CONFIG_BSD_PROCESS_ACCT is not set | 76 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 75 | # CONFIG_TASKSTATS is not set | 77 | # CONFIG_TASKSTATS is not set |
| 76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
| 79 | |||
| 80 | # | ||
| 81 | # RCU Subsystem | ||
| 82 | # | ||
| 83 | CONFIG_CLASSIC_RCU=y | ||
| 84 | # CONFIG_TREE_RCU is not set | ||
| 85 | # CONFIG_PREEMPT_RCU is not set | ||
| 86 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 87 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 77 | # CONFIG_IKCONFIG is not set | 88 | # CONFIG_IKCONFIG is not set |
| 78 | CONFIG_LOG_BUF_SHIFT=14 | 89 | CONFIG_LOG_BUF_SHIFT=14 |
| 79 | CONFIG_GROUP_SCHED=y | 90 | CONFIG_GROUP_SCHED=y |
| @@ -88,19 +99,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 88 | # CONFIG_NAMESPACES is not set | 99 | # CONFIG_NAMESPACES is not set |
| 89 | CONFIG_BLK_DEV_INITRD=y | 100 | CONFIG_BLK_DEV_INITRD=y |
| 90 | CONFIG_INITRAMFS_SOURCE="" | 101 | CONFIG_INITRAMFS_SOURCE="" |
| 102 | CONFIG_RD_GZIP=y | ||
| 103 | # CONFIG_RD_BZIP2 is not set | ||
| 104 | # CONFIG_RD_LZMA is not set | ||
| 91 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 105 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 92 | CONFIG_SYSCTL=y | 106 | CONFIG_SYSCTL=y |
| 107 | CONFIG_ANON_INODES=y | ||
| 93 | CONFIG_EMBEDDED=y | 108 | CONFIG_EMBEDDED=y |
| 94 | CONFIG_SYSCTL_SYSCALL=y | 109 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | # CONFIG_KALLSYMS is not set | 110 | # CONFIG_KALLSYMS is not set |
| 111 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 96 | CONFIG_HOTPLUG=y | 112 | CONFIG_HOTPLUG=y |
| 97 | CONFIG_PRINTK=y | 113 | CONFIG_PRINTK=y |
| 98 | CONFIG_BUG=y | 114 | CONFIG_BUG=y |
| 99 | CONFIG_ELF_CORE=y | 115 | CONFIG_ELF_CORE=y |
| 100 | CONFIG_COMPAT_BRK=y | ||
| 101 | CONFIG_BASE_FULL=y | 116 | CONFIG_BASE_FULL=y |
| 102 | CONFIG_FUTEX=y | 117 | CONFIG_FUTEX=y |
| 103 | CONFIG_ANON_INODES=y | ||
| 104 | # CONFIG_EPOLL is not set | 118 | # CONFIG_EPOLL is not set |
| 105 | CONFIG_SIGNALFD=y | 119 | CONFIG_SIGNALFD=y |
| 106 | CONFIG_TIMERFD=y | 120 | CONFIG_TIMERFD=y |
| @@ -110,16 +124,19 @@ CONFIG_AIO=y | |||
| 110 | CONFIG_VM_EVENT_COUNTERS=y | 124 | CONFIG_VM_EVENT_COUNTERS=y |
| 111 | CONFIG_PCI_QUIRKS=y | 125 | CONFIG_PCI_QUIRKS=y |
| 112 | CONFIG_SLUB_DEBUG=y | 126 | CONFIG_SLUB_DEBUG=y |
| 127 | CONFIG_COMPAT_BRK=y | ||
| 113 | # CONFIG_SLAB is not set | 128 | # CONFIG_SLAB is not set |
| 114 | CONFIG_SLUB=y | 129 | CONFIG_SLUB=y |
| 115 | # CONFIG_SLOB is not set | 130 | # CONFIG_SLOB is not set |
| 116 | # CONFIG_PROFILING is not set | 131 | # CONFIG_PROFILING is not set |
| 132 | # CONFIG_MARKERS is not set | ||
| 117 | CONFIG_HAVE_OPROFILE=y | 133 | CONFIG_HAVE_OPROFILE=y |
| 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 134 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 119 | CONFIG_HAVE_IOREMAP_PROT=y | 135 | CONFIG_HAVE_IOREMAP_PROT=y |
| 120 | CONFIG_HAVE_KPROBES=y | 136 | CONFIG_HAVE_KPROBES=y |
| 121 | CONFIG_HAVE_KRETPROBES=y | 137 | CONFIG_HAVE_KRETPROBES=y |
| 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 138 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 139 | # CONFIG_SLOW_WORK is not set | ||
| 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 140 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 124 | CONFIG_SLABINFO=y | 141 | CONFIG_SLABINFO=y |
| 125 | CONFIG_RT_MUTEXES=y | 142 | CONFIG_RT_MUTEXES=y |
| @@ -132,7 +149,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 149 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 133 | CONFIG_BLOCK=y | 150 | CONFIG_BLOCK=y |
| 134 | # CONFIG_LBD is not set | 151 | # CONFIG_LBD is not set |
| 135 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 136 | # CONFIG_BLK_DEV_BSG is not set | 152 | # CONFIG_BLK_DEV_BSG is not set |
| 137 | # CONFIG_BLK_DEV_INTEGRITY is not set | 153 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 138 | 154 | ||
| @@ -148,18 +164,11 @@ CONFIG_DEFAULT_AS=y | |||
| 148 | # CONFIG_DEFAULT_CFQ is not set | 164 | # CONFIG_DEFAULT_CFQ is not set |
| 149 | # CONFIG_DEFAULT_NOOP is not set | 165 | # CONFIG_DEFAULT_NOOP is not set |
| 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 166 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 151 | CONFIG_CLASSIC_RCU=y | ||
| 152 | # CONFIG_TREE_RCU is not set | ||
| 153 | # CONFIG_PREEMPT_RCU is not set | ||
| 154 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 156 | # CONFIG_FREEZER is not set | 167 | # CONFIG_FREEZER is not set |
| 157 | 168 | ||
| 158 | # | 169 | # |
| 159 | # Platform support | 170 | # Platform support |
| 160 | # | 171 | # |
| 161 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 162 | CONFIG_CLASSIC32=y | ||
| 163 | # CONFIG_PPC_CHRP is not set | 172 | # CONFIG_PPC_CHRP is not set |
| 164 | # CONFIG_MPC5121_ADS is not set | 173 | # CONFIG_MPC5121_ADS is not set |
| 165 | # CONFIG_MPC5121_GENERIC is not set | 174 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -184,6 +193,8 @@ CONFIG_ASP834x=y | |||
| 184 | CONFIG_PPC_MPC834x=y | 193 | CONFIG_PPC_MPC834x=y |
| 185 | # CONFIG_PPC_86xx is not set | 194 | # CONFIG_PPC_86xx is not set |
| 186 | # CONFIG_EMBEDDED6xx is not set | 195 | # CONFIG_EMBEDDED6xx is not set |
| 196 | # CONFIG_AMIGAONE is not set | ||
| 197 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 187 | CONFIG_IPIC=y | 198 | CONFIG_IPIC=y |
| 188 | # CONFIG_MPIC is not set | 199 | # CONFIG_MPIC is not set |
| 189 | # CONFIG_MPIC_WEIRD is not set | 200 | # CONFIG_MPIC_WEIRD is not set |
| @@ -245,9 +256,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 245 | CONFIG_BOUNCE=y | 256 | CONFIG_BOUNCE=y |
| 246 | CONFIG_VIRT_TO_BUS=y | 257 | CONFIG_VIRT_TO_BUS=y |
| 247 | CONFIG_UNEVICTABLE_LRU=y | 258 | CONFIG_UNEVICTABLE_LRU=y |
| 259 | CONFIG_HAVE_MLOCK=y | ||
| 260 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 248 | CONFIG_PPC_4K_PAGES=y | 261 | CONFIG_PPC_4K_PAGES=y |
| 249 | # CONFIG_PPC_16K_PAGES is not set | 262 | # CONFIG_PPC_16K_PAGES is not set |
| 250 | # CONFIG_PPC_64K_PAGES is not set | 263 | # CONFIG_PPC_64K_PAGES is not set |
| 264 | # CONFIG_PPC_256K_PAGES is not set | ||
| 251 | CONFIG_FORCE_MAX_ZONEORDER=11 | 265 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 252 | CONFIG_PROC_DEVICETREE=y | 266 | CONFIG_PROC_DEVICETREE=y |
| 253 | # CONFIG_CMDLINE_BOOL is not set | 267 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -273,6 +287,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 273 | # CONFIG_PCI_MSI is not set | 287 | # CONFIG_PCI_MSI is not set |
| 274 | # CONFIG_PCI_LEGACY is not set | 288 | # CONFIG_PCI_LEGACY is not set |
| 275 | # CONFIG_PCI_STUB is not set | 289 | # CONFIG_PCI_STUB is not set |
| 290 | # CONFIG_PCI_IOV is not set | ||
| 276 | # CONFIG_PCCARD is not set | 291 | # CONFIG_PCCARD is not set |
| 277 | # CONFIG_HOTPLUG_PCI is not set | 292 | # CONFIG_HOTPLUG_PCI is not set |
| 278 | # CONFIG_HAS_RAPIDIO is not set | 293 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -295,7 +310,6 @@ CONFIG_NET=y | |||
| 295 | # | 310 | # |
| 296 | # Networking options | 311 | # Networking options |
| 297 | # | 312 | # |
| 298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 299 | CONFIG_PACKET=y | 313 | CONFIG_PACKET=y |
| 300 | # CONFIG_PACKET_MMAP is not set | 314 | # CONFIG_PACKET_MMAP is not set |
| 301 | CONFIG_UNIX=y | 315 | CONFIG_UNIX=y |
| @@ -351,6 +365,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 351 | # CONFIG_LAPB is not set | 365 | # CONFIG_LAPB is not set |
| 352 | # CONFIG_ECONET is not set | 366 | # CONFIG_ECONET is not set |
| 353 | # CONFIG_WAN_ROUTER is not set | 367 | # CONFIG_WAN_ROUTER is not set |
| 368 | # CONFIG_PHONET is not set | ||
| 354 | # CONFIG_NET_SCHED is not set | 369 | # CONFIG_NET_SCHED is not set |
| 355 | # CONFIG_DCB is not set | 370 | # CONFIG_DCB is not set |
| 356 | 371 | ||
| @@ -363,7 +378,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 363 | # CONFIG_IRDA is not set | 378 | # CONFIG_IRDA is not set |
| 364 | # CONFIG_BT is not set | 379 | # CONFIG_BT is not set |
| 365 | # CONFIG_AF_RXRPC is not set | 380 | # CONFIG_AF_RXRPC is not set |
| 366 | # CONFIG_PHONET is not set | ||
| 367 | CONFIG_WIRELESS=y | 381 | CONFIG_WIRELESS=y |
| 368 | # CONFIG_CFG80211 is not set | 382 | # CONFIG_CFG80211 is not set |
| 369 | CONFIG_WIRELESS_OLD_REGULATORY=y | 383 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -469,7 +483,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 469 | # LPDDR flash memory drivers | 483 | # LPDDR flash memory drivers |
| 470 | # | 484 | # |
| 471 | # CONFIG_MTD_LPDDR is not set | 485 | # CONFIG_MTD_LPDDR is not set |
| 472 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 473 | 486 | ||
| 474 | # | 487 | # |
| 475 | # UBI - Unsorted block images | 488 | # UBI - Unsorted block images |
| @@ -499,13 +512,20 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 499 | # CONFIG_BLK_DEV_HD is not set | 512 | # CONFIG_BLK_DEV_HD is not set |
| 500 | CONFIG_MISC_DEVICES=y | 513 | CONFIG_MISC_DEVICES=y |
| 501 | # CONFIG_PHANTOM is not set | 514 | # CONFIG_PHANTOM is not set |
| 502 | # CONFIG_EEPROM_93CX6 is not set | ||
| 503 | # CONFIG_SGI_IOC4 is not set | 515 | # CONFIG_SGI_IOC4 is not set |
| 504 | # CONFIG_TIFM_CORE is not set | 516 | # CONFIG_TIFM_CORE is not set |
| 505 | # CONFIG_ICS932S401 is not set | 517 | # CONFIG_ICS932S401 is not set |
| 506 | # CONFIG_ENCLOSURE_SERVICES is not set | 518 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 507 | # CONFIG_HP_ILO is not set | 519 | # CONFIG_HP_ILO is not set |
| 520 | # CONFIG_ISL29003 is not set | ||
| 508 | # CONFIG_C2PORT is not set | 521 | # CONFIG_C2PORT is not set |
| 522 | |||
| 523 | # | ||
| 524 | # EEPROM support | ||
| 525 | # | ||
| 526 | # CONFIG_EEPROM_AT24 is not set | ||
| 527 | # CONFIG_EEPROM_LEGACY is not set | ||
| 528 | # CONFIG_EEPROM_93CX6 is not set | ||
| 509 | CONFIG_HAVE_IDE=y | 529 | CONFIG_HAVE_IDE=y |
| 510 | # CONFIG_IDE is not set | 530 | # CONFIG_IDE is not set |
| 511 | 531 | ||
| @@ -532,6 +552,7 @@ CONFIG_HAVE_IDE=y | |||
| 532 | # CONFIG_I2O is not set | 552 | # CONFIG_I2O is not set |
| 533 | # CONFIG_MACINTOSH_DRIVERS is not set | 553 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 534 | CONFIG_NETDEVICES=y | 554 | CONFIG_NETDEVICES=y |
| 555 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 535 | # CONFIG_DUMMY is not set | 556 | # CONFIG_DUMMY is not set |
| 536 | # CONFIG_BONDING is not set | 557 | # CONFIG_BONDING is not set |
| 537 | # CONFIG_MACVLAN is not set | 558 | # CONFIG_MACVLAN is not set |
| @@ -565,6 +586,8 @@ CONFIG_MII=y | |||
| 565 | # CONFIG_SUNGEM is not set | 586 | # CONFIG_SUNGEM is not set |
| 566 | # CONFIG_CASSINI is not set | 587 | # CONFIG_CASSINI is not set |
| 567 | # CONFIG_NET_VENDOR_3COM is not set | 588 | # CONFIG_NET_VENDOR_3COM is not set |
| 589 | # CONFIG_ETHOC is not set | ||
| 590 | # CONFIG_DNET is not set | ||
| 568 | # CONFIG_NET_TULIP is not set | 591 | # CONFIG_NET_TULIP is not set |
| 569 | # CONFIG_HP100 is not set | 592 | # CONFIG_HP100 is not set |
| 570 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 593 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -584,6 +607,7 @@ CONFIG_NETDEV_1000=y | |||
| 584 | # CONFIG_E1000E is not set | 607 | # CONFIG_E1000E is not set |
| 585 | # CONFIG_IP1000 is not set | 608 | # CONFIG_IP1000 is not set |
| 586 | # CONFIG_IGB is not set | 609 | # CONFIG_IGB is not set |
| 610 | # CONFIG_IGBVF is not set | ||
| 587 | # CONFIG_NS83820 is not set | 611 | # CONFIG_NS83820 is not set |
| 588 | # CONFIG_HAMACHI is not set | 612 | # CONFIG_HAMACHI is not set |
| 589 | # CONFIG_YELLOWFIN is not set | 613 | # CONFIG_YELLOWFIN is not set |
| @@ -594,11 +618,12 @@ CONFIG_NETDEV_1000=y | |||
| 594 | # CONFIG_VIA_VELOCITY is not set | 618 | # CONFIG_VIA_VELOCITY is not set |
| 595 | # CONFIG_TIGON3 is not set | 619 | # CONFIG_TIGON3 is not set |
| 596 | # CONFIG_BNX2 is not set | 620 | # CONFIG_BNX2 is not set |
| 621 | CONFIG_FSL_PQ_MDIO=y | ||
| 597 | CONFIG_GIANFAR=y | 622 | CONFIG_GIANFAR=y |
| 598 | # CONFIG_MV643XX_ETH is not set | ||
| 599 | # CONFIG_QLA3XXX is not set | 623 | # CONFIG_QLA3XXX is not set |
| 600 | # CONFIG_ATL1 is not set | 624 | # CONFIG_ATL1 is not set |
| 601 | # CONFIG_ATL1E is not set | 625 | # CONFIG_ATL1E is not set |
| 626 | # CONFIG_ATL1C is not set | ||
| 602 | # CONFIG_JME is not set | 627 | # CONFIG_JME is not set |
| 603 | # CONFIG_NETDEV_10000 is not set | 628 | # CONFIG_NETDEV_10000 is not set |
| 604 | # CONFIG_TR is not set | 629 | # CONFIG_TR is not set |
| @@ -608,7 +633,6 @@ CONFIG_GIANFAR=y | |||
| 608 | # | 633 | # |
| 609 | # CONFIG_WLAN_PRE80211 is not set | 634 | # CONFIG_WLAN_PRE80211 is not set |
| 610 | # CONFIG_WLAN_80211 is not set | 635 | # CONFIG_WLAN_80211 is not set |
| 611 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 612 | 636 | ||
| 613 | # | 637 | # |
| 614 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 638 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -759,12 +783,9 @@ CONFIG_I2C_MPC=y | |||
| 759 | # Miscellaneous I2C Chip support | 783 | # Miscellaneous I2C Chip support |
| 760 | # | 784 | # |
| 761 | # CONFIG_DS1682 is not set | 785 | # CONFIG_DS1682 is not set |
| 762 | # CONFIG_EEPROM_AT24 is not set | ||
| 763 | # CONFIG_EEPROM_LEGACY is not set | ||
| 764 | # CONFIG_SENSORS_PCF8574 is not set | 786 | # CONFIG_SENSORS_PCF8574 is not set |
| 765 | # CONFIG_PCF8575 is not set | 787 | # CONFIG_PCF8575 is not set |
| 766 | # CONFIG_SENSORS_PCA9539 is not set | 788 | # CONFIG_SENSORS_PCA9539 is not set |
| 767 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 768 | # CONFIG_SENSORS_MAX6875 is not set | 789 | # CONFIG_SENSORS_MAX6875 is not set |
| 769 | # CONFIG_SENSORS_TSL2550 is not set | 790 | # CONFIG_SENSORS_TSL2550 is not set |
| 770 | # CONFIG_I2C_DEBUG_CORE is not set | 791 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -796,6 +817,7 @@ CONFIG_HWMON=y | |||
| 796 | # CONFIG_SENSORS_F71805F is not set | 817 | # CONFIG_SENSORS_F71805F is not set |
| 797 | # CONFIG_SENSORS_F71882FG is not set | 818 | # CONFIG_SENSORS_F71882FG is not set |
| 798 | # CONFIG_SENSORS_F75375S is not set | 819 | # CONFIG_SENSORS_F75375S is not set |
| 820 | # CONFIG_SENSORS_G760A is not set | ||
| 799 | # CONFIG_SENSORS_GL518SM is not set | 821 | # CONFIG_SENSORS_GL518SM is not set |
| 800 | # CONFIG_SENSORS_GL520SM is not set | 822 | # CONFIG_SENSORS_GL520SM is not set |
| 801 | # CONFIG_SENSORS_IT87 is not set | 823 | # CONFIG_SENSORS_IT87 is not set |
| @@ -810,11 +832,14 @@ CONFIG_HWMON=y | |||
| 810 | # CONFIG_SENSORS_LM90 is not set | 832 | # CONFIG_SENSORS_LM90 is not set |
| 811 | # CONFIG_SENSORS_LM92 is not set | 833 | # CONFIG_SENSORS_LM92 is not set |
| 812 | # CONFIG_SENSORS_LM93 is not set | 834 | # CONFIG_SENSORS_LM93 is not set |
| 835 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 813 | # CONFIG_SENSORS_LTC4245 is not set | 836 | # CONFIG_SENSORS_LTC4245 is not set |
| 837 | # CONFIG_SENSORS_LM95241 is not set | ||
| 814 | # CONFIG_SENSORS_MAX1619 is not set | 838 | # CONFIG_SENSORS_MAX1619 is not set |
| 815 | # CONFIG_SENSORS_MAX6650 is not set | 839 | # CONFIG_SENSORS_MAX6650 is not set |
| 816 | # CONFIG_SENSORS_PC87360 is not set | 840 | # CONFIG_SENSORS_PC87360 is not set |
| 817 | # CONFIG_SENSORS_PC87427 is not set | 841 | # CONFIG_SENSORS_PC87427 is not set |
| 842 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 818 | # CONFIG_SENSORS_SIS5595 is not set | 843 | # CONFIG_SENSORS_SIS5595 is not set |
| 819 | # CONFIG_SENSORS_DME1737 is not set | 844 | # CONFIG_SENSORS_DME1737 is not set |
| 820 | # CONFIG_SENSORS_SMSC47M1 is not set | 845 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -959,11 +984,11 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 959 | # CONFIG_USB_TMC is not set | 984 | # CONFIG_USB_TMC is not set |
| 960 | 985 | ||
| 961 | # | 986 | # |
| 962 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 987 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 963 | # | 988 | # |
| 964 | 989 | ||
| 965 | # | 990 | # |
| 966 | # see USB_STORAGE Help for more information | 991 | # also be needed; see USB_STORAGE Help for more info |
| 967 | # | 992 | # |
| 968 | # CONFIG_USB_LIBUSUAL is not set | 993 | # CONFIG_USB_LIBUSUAL is not set |
| 969 | 994 | ||
| @@ -991,7 +1016,6 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 991 | # CONFIG_USB_LED is not set | 1016 | # CONFIG_USB_LED is not set |
| 992 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1017 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 993 | # CONFIG_USB_CYTHERM is not set | 1018 | # CONFIG_USB_CYTHERM is not set |
| 994 | # CONFIG_USB_PHIDGET is not set | ||
| 995 | # CONFIG_USB_IDMOUSE is not set | 1019 | # CONFIG_USB_IDMOUSE is not set |
| 996 | # CONFIG_USB_FTDI_ELAN is not set | 1020 | # CONFIG_USB_FTDI_ELAN is not set |
| 997 | # CONFIG_USB_APPLEDISPLAY is not set | 1021 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1006,6 +1030,7 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 1006 | # | 1030 | # |
| 1007 | # OTG and related infrastructure | 1031 | # OTG and related infrastructure |
| 1008 | # | 1032 | # |
| 1033 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1009 | # CONFIG_UWB is not set | 1034 | # CONFIG_UWB is not set |
| 1010 | # CONFIG_MMC is not set | 1035 | # CONFIG_MMC is not set |
| 1011 | # CONFIG_MEMSTICK is not set | 1036 | # CONFIG_MEMSTICK is not set |
| @@ -1067,8 +1092,9 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 1067 | # | 1092 | # |
| 1068 | # on-CPU RTC drivers | 1093 | # on-CPU RTC drivers |
| 1069 | # | 1094 | # |
| 1070 | # CONFIG_RTC_DRV_PPC is not set | 1095 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1071 | # CONFIG_DMADEVICES is not set | 1096 | # CONFIG_DMADEVICES is not set |
| 1097 | # CONFIG_AUXDISPLAY is not set | ||
| 1072 | # CONFIG_UIO is not set | 1098 | # CONFIG_UIO is not set |
| 1073 | # CONFIG_STAGING is not set | 1099 | # CONFIG_STAGING is not set |
| 1074 | 1100 | ||
| @@ -1079,6 +1105,7 @@ CONFIG_EXT2_FS=y | |||
| 1079 | # CONFIG_EXT2_FS_XATTR is not set | 1105 | # CONFIG_EXT2_FS_XATTR is not set |
| 1080 | # CONFIG_EXT2_FS_XIP is not set | 1106 | # CONFIG_EXT2_FS_XIP is not set |
| 1081 | CONFIG_EXT3_FS=y | 1107 | CONFIG_EXT3_FS=y |
| 1108 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1082 | CONFIG_EXT3_FS_XATTR=y | 1109 | CONFIG_EXT3_FS_XATTR=y |
| 1083 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1110 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1084 | # CONFIG_EXT3_FS_SECURITY is not set | 1111 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1101,6 +1128,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1101 | # CONFIG_FUSE_FS is not set | 1128 | # CONFIG_FUSE_FS is not set |
| 1102 | 1129 | ||
| 1103 | # | 1130 | # |
| 1131 | # Caches | ||
| 1132 | # | ||
| 1133 | # CONFIG_FSCACHE is not set | ||
| 1134 | |||
| 1135 | # | ||
| 1104 | # CD-ROM/DVD Filesystems | 1136 | # CD-ROM/DVD Filesystems |
| 1105 | # | 1137 | # |
| 1106 | # CONFIG_ISO9660_FS is not set | 1138 | # CONFIG_ISO9660_FS is not set |
| @@ -1154,6 +1186,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1154 | # CONFIG_ROMFS_FS is not set | 1186 | # CONFIG_ROMFS_FS is not set |
| 1155 | # CONFIG_SYSV_FS is not set | 1187 | # CONFIG_SYSV_FS is not set |
| 1156 | # CONFIG_UFS_FS is not set | 1188 | # CONFIG_UFS_FS is not set |
| 1189 | # CONFIG_NILFS2_FS is not set | ||
| 1157 | CONFIG_NETWORK_FILESYSTEMS=y | 1190 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1158 | CONFIG_NFS_FS=y | 1191 | CONFIG_NFS_FS=y |
| 1159 | CONFIG_NFS_V3=y | 1192 | CONFIG_NFS_V3=y |
| @@ -1166,7 +1199,6 @@ CONFIG_LOCKD_V4=y | |||
| 1166 | CONFIG_NFS_COMMON=y | 1199 | CONFIG_NFS_COMMON=y |
| 1167 | CONFIG_SUNRPC=y | 1200 | CONFIG_SUNRPC=y |
| 1168 | CONFIG_SUNRPC_GSS=y | 1201 | CONFIG_SUNRPC_GSS=y |
| 1169 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1170 | CONFIG_RPCSEC_GSS_KRB5=y | 1202 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1171 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1203 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1172 | # CONFIG_SMB_FS is not set | 1204 | # CONFIG_SMB_FS is not set |
| @@ -1233,6 +1265,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1233 | # CONFIG_NLS_KOI8_U is not set | 1265 | # CONFIG_NLS_KOI8_U is not set |
| 1234 | # CONFIG_NLS_UTF8 is not set | 1266 | # CONFIG_NLS_UTF8 is not set |
| 1235 | # CONFIG_DLM is not set | 1267 | # CONFIG_DLM is not set |
| 1268 | # CONFIG_BINARY_PRINTF is not set | ||
| 1236 | 1269 | ||
| 1237 | # | 1270 | # |
| 1238 | # Library routines | 1271 | # Library routines |
| @@ -1248,11 +1281,12 @@ CONFIG_CRC32=y | |||
| 1248 | # CONFIG_LIBCRC32C is not set | 1281 | # CONFIG_LIBCRC32C is not set |
| 1249 | CONFIG_ZLIB_INFLATE=y | 1282 | CONFIG_ZLIB_INFLATE=y |
| 1250 | CONFIG_ZLIB_DEFLATE=y | 1283 | CONFIG_ZLIB_DEFLATE=y |
| 1251 | CONFIG_PLIST=y | 1284 | CONFIG_DECOMPRESS_GZIP=y |
| 1252 | CONFIG_HAS_IOMEM=y | 1285 | CONFIG_HAS_IOMEM=y |
| 1253 | CONFIG_HAS_IOPORT=y | 1286 | CONFIG_HAS_IOPORT=y |
| 1254 | CONFIG_HAS_DMA=y | 1287 | CONFIG_HAS_DMA=y |
| 1255 | CONFIG_HAVE_LMB=y | 1288 | CONFIG_HAVE_LMB=y |
| 1289 | CONFIG_NLATTR=y | ||
| 1256 | 1290 | ||
| 1257 | # | 1291 | # |
| 1258 | # Kernel hacking | 1292 | # Kernel hacking |
| @@ -1274,13 +1308,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1274 | # CONFIG_LATENCYTOP is not set | 1308 | # CONFIG_LATENCYTOP is not set |
| 1275 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | 1309 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set |
| 1276 | CONFIG_HAVE_FUNCTION_TRACER=y | 1310 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1311 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1277 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1312 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1278 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1313 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1314 | CONFIG_TRACING_SUPPORT=y | ||
| 1279 | 1315 | ||
| 1280 | # | 1316 | # |
| 1281 | # Tracers | 1317 | # Tracers |
| 1282 | # | 1318 | # |
| 1283 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1319 | # CONFIG_FUNCTION_TRACER is not set |
| 1320 | # CONFIG_SCHED_TRACER is not set | ||
| 1321 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1322 | # CONFIG_EVENT_TRACER is not set | ||
| 1323 | # CONFIG_BOOT_TRACER is not set | ||
| 1324 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1325 | # CONFIG_STACK_TRACER is not set | ||
| 1326 | # CONFIG_KMEMTRACE is not set | ||
| 1327 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1328 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1284 | # CONFIG_SAMPLES is not set | 1329 | # CONFIG_SAMPLES is not set |
| 1285 | CONFIG_HAVE_ARCH_KGDB=y | 1330 | CONFIG_HAVE_ARCH_KGDB=y |
| 1286 | CONFIG_PRINT_STACK_DEPTH=64 | 1331 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1309,10 +1354,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1309 | CONFIG_CRYPTO_HASH=y | 1354 | CONFIG_CRYPTO_HASH=y |
| 1310 | CONFIG_CRYPTO_HASH2=y | 1355 | CONFIG_CRYPTO_HASH2=y |
| 1311 | CONFIG_CRYPTO_RNG2=y | 1356 | CONFIG_CRYPTO_RNG2=y |
| 1357 | CONFIG_CRYPTO_PCOMP=y | ||
| 1312 | CONFIG_CRYPTO_MANAGER=y | 1358 | CONFIG_CRYPTO_MANAGER=y |
| 1313 | CONFIG_CRYPTO_MANAGER2=y | 1359 | CONFIG_CRYPTO_MANAGER2=y |
| 1314 | # CONFIG_CRYPTO_GF128MUL is not set | 1360 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1315 | # CONFIG_CRYPTO_NULL is not set | 1361 | # CONFIG_CRYPTO_NULL is not set |
| 1362 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1316 | # CONFIG_CRYPTO_CRYPTD is not set | 1363 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1317 | # CONFIG_CRYPTO_AUTHENC is not set | 1364 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1318 | # CONFIG_CRYPTO_TEST is not set | 1365 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1381,6 +1428,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1381 | # Compression | 1428 | # Compression |
| 1382 | # | 1429 | # |
| 1383 | # CONFIG_CRYPTO_DEFLATE is not set | 1430 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1431 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1384 | # CONFIG_CRYPTO_LZO is not set | 1432 | # CONFIG_CRYPTO_LZO is not set |
| 1385 | 1433 | ||
| 1386 | # | 1434 | # |
diff --git a/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig b/arch/powerpc/configs/83xx/mpc8313_rdb_defconfig index 409d017621a8..c5c0fe71a438 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:48 2009 | 4 | # Wed May 13 17:22:06 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -56,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 87 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 89 | CONFIG_GROUP_SCHED=y |
| @@ -87,19 +98,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | # CONFIG_KALLSYMS is not set | 109 | # CONFIG_KALLSYMS is not set |
| 110 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 95 | CONFIG_HOTPLUG=y | 111 | CONFIG_HOTPLUG=y |
| 96 | CONFIG_PRINTK=y | 112 | CONFIG_PRINTK=y |
| 97 | CONFIG_BUG=y | 113 | CONFIG_BUG=y |
| 98 | CONFIG_ELF_CORE=y | 114 | CONFIG_ELF_CORE=y |
| 99 | CONFIG_COMPAT_BRK=y | ||
| 100 | CONFIG_BASE_FULL=y | 115 | CONFIG_BASE_FULL=y |
| 101 | CONFIG_FUTEX=y | 116 | CONFIG_FUTEX=y |
| 102 | CONFIG_ANON_INODES=y | ||
| 103 | # CONFIG_EPOLL is not set | 117 | # CONFIG_EPOLL is not set |
| 104 | CONFIG_SIGNALFD=y | 118 | CONFIG_SIGNALFD=y |
| 105 | CONFIG_TIMERFD=y | 119 | CONFIG_TIMERFD=y |
| @@ -109,16 +123,19 @@ CONFIG_AIO=y | |||
| 109 | CONFIG_VM_EVENT_COUNTERS=y | 123 | CONFIG_VM_EVENT_COUNTERS=y |
| 110 | CONFIG_PCI_QUIRKS=y | 124 | CONFIG_PCI_QUIRKS=y |
| 111 | CONFIG_SLUB_DEBUG=y | 125 | CONFIG_SLUB_DEBUG=y |
| 126 | CONFIG_COMPAT_BRK=y | ||
| 112 | # CONFIG_SLAB is not set | 127 | # CONFIG_SLAB is not set |
| 113 | CONFIG_SLUB=y | 128 | CONFIG_SLUB=y |
| 114 | # CONFIG_SLOB is not set | 129 | # CONFIG_SLOB is not set |
| 115 | # CONFIG_PROFILING is not set | 130 | # CONFIG_PROFILING is not set |
| 131 | # CONFIG_MARKERS is not set | ||
| 116 | CONFIG_HAVE_OPROFILE=y | 132 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 133 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | 134 | CONFIG_HAVE_IOREMAP_PROT=y |
| 119 | CONFIG_HAVE_KPROBES=y | 135 | CONFIG_HAVE_KPROBES=y |
| 120 | CONFIG_HAVE_KRETPROBES=y | 136 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 137 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 138 | # CONFIG_SLOW_WORK is not set | ||
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 139 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 123 | CONFIG_SLABINFO=y | 140 | CONFIG_SLABINFO=y |
| 124 | CONFIG_RT_MUTEXES=y | 141 | CONFIG_RT_MUTEXES=y |
| @@ -131,7 +148,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 148 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 132 | CONFIG_BLOCK=y | 149 | CONFIG_BLOCK=y |
| 133 | # CONFIG_LBD is not set | 150 | # CONFIG_LBD is not set |
| 134 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 135 | # CONFIG_BLK_DEV_BSG is not set | 151 | # CONFIG_BLK_DEV_BSG is not set |
| 136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 152 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 137 | 153 | ||
| @@ -147,18 +163,11 @@ CONFIG_DEFAULT_AS=y | |||
| 147 | # CONFIG_DEFAULT_CFQ is not set | 163 | # CONFIG_DEFAULT_CFQ is not set |
| 148 | # CONFIG_DEFAULT_NOOP is not set | 164 | # CONFIG_DEFAULT_NOOP is not set |
| 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 165 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 150 | CONFIG_CLASSIC_RCU=y | ||
| 151 | # CONFIG_TREE_RCU is not set | ||
| 152 | # CONFIG_PREEMPT_RCU is not set | ||
| 153 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 155 | # CONFIG_FREEZER is not set | 166 | # CONFIG_FREEZER is not set |
| 156 | 167 | ||
| 157 | # | 168 | # |
| 158 | # Platform support | 169 | # Platform support |
| 159 | # | 170 | # |
| 160 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 161 | CONFIG_CLASSIC32=y | ||
| 162 | # CONFIG_PPC_CHRP is not set | 171 | # CONFIG_PPC_CHRP is not set |
| 163 | # CONFIG_MPC5121_ADS is not set | 172 | # CONFIG_MPC5121_ADS is not set |
| 164 | # CONFIG_MPC5121_GENERIC is not set | 173 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -183,6 +192,8 @@ CONFIG_MPC831x_RDB=y | |||
| 183 | CONFIG_PPC_MPC831x=y | 192 | CONFIG_PPC_MPC831x=y |
| 184 | # CONFIG_PPC_86xx is not set | 193 | # CONFIG_PPC_86xx is not set |
| 185 | # CONFIG_EMBEDDED6xx is not set | 194 | # CONFIG_EMBEDDED6xx is not set |
| 195 | # CONFIG_AMIGAONE is not set | ||
| 196 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 186 | CONFIG_IPIC=y | 197 | CONFIG_IPIC=y |
| 187 | # CONFIG_MPIC is not set | 198 | # CONFIG_MPIC is not set |
| 188 | # CONFIG_MPIC_WEIRD is not set | 199 | # CONFIG_MPIC_WEIRD is not set |
| @@ -244,9 +255,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 244 | CONFIG_BOUNCE=y | 255 | CONFIG_BOUNCE=y |
| 245 | CONFIG_VIRT_TO_BUS=y | 256 | CONFIG_VIRT_TO_BUS=y |
| 246 | CONFIG_UNEVICTABLE_LRU=y | 257 | CONFIG_UNEVICTABLE_LRU=y |
| 258 | CONFIG_HAVE_MLOCK=y | ||
| 259 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 247 | CONFIG_PPC_4K_PAGES=y | 260 | CONFIG_PPC_4K_PAGES=y |
| 248 | # CONFIG_PPC_16K_PAGES is not set | 261 | # CONFIG_PPC_16K_PAGES is not set |
| 249 | # CONFIG_PPC_64K_PAGES is not set | 262 | # CONFIG_PPC_64K_PAGES is not set |
| 263 | # CONFIG_PPC_256K_PAGES is not set | ||
| 250 | CONFIG_FORCE_MAX_ZONEORDER=11 | 264 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 251 | CONFIG_PROC_DEVICETREE=y | 265 | CONFIG_PROC_DEVICETREE=y |
| 252 | # CONFIG_CMDLINE_BOOL is not set | 266 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -273,6 +287,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 273 | # CONFIG_PCI_LEGACY is not set | 287 | # CONFIG_PCI_LEGACY is not set |
| 274 | # CONFIG_PCI_DEBUG is not set | 288 | # CONFIG_PCI_DEBUG is not set |
| 275 | # CONFIG_PCI_STUB is not set | 289 | # CONFIG_PCI_STUB is not set |
| 290 | # CONFIG_PCI_IOV is not set | ||
| 276 | # CONFIG_PCCARD is not set | 291 | # CONFIG_PCCARD is not set |
| 277 | # CONFIG_HOTPLUG_PCI is not set | 292 | # CONFIG_HOTPLUG_PCI is not set |
| 278 | # CONFIG_HAS_RAPIDIO is not set | 293 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -295,7 +310,6 @@ CONFIG_NET=y | |||
| 295 | # | 310 | # |
| 296 | # Networking options | 311 | # Networking options |
| 297 | # | 312 | # |
| 298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 299 | CONFIG_PACKET=y | 313 | CONFIG_PACKET=y |
| 300 | # CONFIG_PACKET_MMAP is not set | 314 | # CONFIG_PACKET_MMAP is not set |
| 301 | CONFIG_UNIX=y | 315 | CONFIG_UNIX=y |
| @@ -351,6 +365,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 351 | # CONFIG_LAPB is not set | 365 | # CONFIG_LAPB is not set |
| 352 | # CONFIG_ECONET is not set | 366 | # CONFIG_ECONET is not set |
| 353 | # CONFIG_WAN_ROUTER is not set | 367 | # CONFIG_WAN_ROUTER is not set |
| 368 | # CONFIG_PHONET is not set | ||
| 354 | # CONFIG_NET_SCHED is not set | 369 | # CONFIG_NET_SCHED is not set |
| 355 | # CONFIG_DCB is not set | 370 | # CONFIG_DCB is not set |
| 356 | 371 | ||
| @@ -363,7 +378,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 363 | # CONFIG_IRDA is not set | 378 | # CONFIG_IRDA is not set |
| 364 | # CONFIG_BT is not set | 379 | # CONFIG_BT is not set |
| 365 | # CONFIG_AF_RXRPC is not set | 380 | # CONFIG_AF_RXRPC is not set |
| 366 | # CONFIG_PHONET is not set | ||
| 367 | CONFIG_WIRELESS=y | 381 | CONFIG_WIRELESS=y |
| 368 | # CONFIG_CFG80211 is not set | 382 | # CONFIG_CFG80211 is not set |
| 369 | CONFIG_WIRELESS_OLD_REGULATORY=y | 383 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -481,7 +495,6 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
| 481 | # LPDDR flash memory drivers | 495 | # LPDDR flash memory drivers |
| 482 | # | 496 | # |
| 483 | # CONFIG_MTD_LPDDR is not set | 497 | # CONFIG_MTD_LPDDR is not set |
| 484 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 485 | 498 | ||
| 486 | # | 499 | # |
| 487 | # UBI - Unsorted block images | 500 | # UBI - Unsorted block images |
| @@ -512,13 +525,21 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 512 | # CONFIG_BLK_DEV_HD is not set | 525 | # CONFIG_BLK_DEV_HD is not set |
| 513 | CONFIG_MISC_DEVICES=y | 526 | CONFIG_MISC_DEVICES=y |
| 514 | # CONFIG_PHANTOM is not set | 527 | # CONFIG_PHANTOM is not set |
| 515 | # CONFIG_EEPROM_93CX6 is not set | ||
| 516 | # CONFIG_SGI_IOC4 is not set | 528 | # CONFIG_SGI_IOC4 is not set |
| 517 | # CONFIG_TIFM_CORE is not set | 529 | # CONFIG_TIFM_CORE is not set |
| 518 | # CONFIG_ICS932S401 is not set | 530 | # CONFIG_ICS932S401 is not set |
| 519 | # CONFIG_ENCLOSURE_SERVICES is not set | 531 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 520 | # CONFIG_HP_ILO is not set | 532 | # CONFIG_HP_ILO is not set |
| 533 | # CONFIG_ISL29003 is not set | ||
| 521 | # CONFIG_C2PORT is not set | 534 | # CONFIG_C2PORT is not set |
| 535 | |||
| 536 | # | ||
| 537 | # EEPROM support | ||
| 538 | # | ||
| 539 | # CONFIG_EEPROM_AT24 is not set | ||
| 540 | # CONFIG_EEPROM_AT25 is not set | ||
| 541 | # CONFIG_EEPROM_LEGACY is not set | ||
| 542 | # CONFIG_EEPROM_93CX6 is not set | ||
| 522 | CONFIG_HAVE_IDE=y | 543 | CONFIG_HAVE_IDE=y |
| 523 | # CONFIG_IDE is not set | 544 | # CONFIG_IDE is not set |
| 524 | 545 | ||
| @@ -576,9 +597,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 576 | # CONFIG_MEGARAID_NEWGEN is not set | 597 | # CONFIG_MEGARAID_NEWGEN is not set |
| 577 | # CONFIG_MEGARAID_LEGACY is not set | 598 | # CONFIG_MEGARAID_LEGACY is not set |
| 578 | # CONFIG_MEGARAID_SAS is not set | 599 | # CONFIG_MEGARAID_SAS is not set |
| 600 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 579 | # CONFIG_SCSI_HPTIOP is not set | 601 | # CONFIG_SCSI_HPTIOP is not set |
| 580 | # CONFIG_SCSI_BUSLOGIC is not set | 602 | # CONFIG_SCSI_BUSLOGIC is not set |
| 581 | # CONFIG_LIBFC is not set | 603 | # CONFIG_LIBFC is not set |
| 604 | # CONFIG_LIBFCOE is not set | ||
| 582 | # CONFIG_FCOE is not set | 605 | # CONFIG_FCOE is not set |
| 583 | # CONFIG_SCSI_DMX3191D is not set | 606 | # CONFIG_SCSI_DMX3191D is not set |
| 584 | # CONFIG_SCSI_EATA is not set | 607 | # CONFIG_SCSI_EATA is not set |
| @@ -600,6 +623,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 600 | # CONFIG_SCSI_DEBUG is not set | 623 | # CONFIG_SCSI_DEBUG is not set |
| 601 | # CONFIG_SCSI_SRP is not set | 624 | # CONFIG_SCSI_SRP is not set |
| 602 | # CONFIG_SCSI_DH is not set | 625 | # CONFIG_SCSI_DH is not set |
| 626 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 603 | # CONFIG_ATA is not set | 627 | # CONFIG_ATA is not set |
| 604 | CONFIG_MD=y | 628 | CONFIG_MD=y |
| 605 | CONFIG_BLK_DEV_MD=y | 629 | CONFIG_BLK_DEV_MD=y |
| @@ -626,6 +650,7 @@ CONFIG_MD_RAID1=y | |||
| 626 | # CONFIG_I2O is not set | 650 | # CONFIG_I2O is not set |
| 627 | # CONFIG_MACINTOSH_DRIVERS is not set | 651 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 628 | CONFIG_NETDEVICES=y | 652 | CONFIG_NETDEVICES=y |
| 653 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 629 | # CONFIG_DUMMY is not set | 654 | # CONFIG_DUMMY is not set |
| 630 | # CONFIG_BONDING is not set | 655 | # CONFIG_BONDING is not set |
| 631 | # CONFIG_MACVLAN is not set | 656 | # CONFIG_MACVLAN is not set |
| @@ -660,6 +685,8 @@ CONFIG_MII=y | |||
| 660 | # CONFIG_CASSINI is not set | 685 | # CONFIG_CASSINI is not set |
| 661 | # CONFIG_NET_VENDOR_3COM is not set | 686 | # CONFIG_NET_VENDOR_3COM is not set |
| 662 | # CONFIG_ENC28J60 is not set | 687 | # CONFIG_ENC28J60 is not set |
| 688 | # CONFIG_ETHOC is not set | ||
| 689 | # CONFIG_DNET is not set | ||
| 663 | # CONFIG_NET_TULIP is not set | 690 | # CONFIG_NET_TULIP is not set |
| 664 | # CONFIG_HP100 is not set | 691 | # CONFIG_HP100 is not set |
| 665 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 692 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -697,6 +724,7 @@ CONFIG_NETDEV_1000=y | |||
| 697 | # CONFIG_E1000E is not set | 724 | # CONFIG_E1000E is not set |
| 698 | # CONFIG_IP1000 is not set | 725 | # CONFIG_IP1000 is not set |
| 699 | # CONFIG_IGB is not set | 726 | # CONFIG_IGB is not set |
| 727 | # CONFIG_IGBVF is not set | ||
| 700 | # CONFIG_NS83820 is not set | 728 | # CONFIG_NS83820 is not set |
| 701 | # CONFIG_HAMACHI is not set | 729 | # CONFIG_HAMACHI is not set |
| 702 | # CONFIG_YELLOWFIN is not set | 730 | # CONFIG_YELLOWFIN is not set |
| @@ -707,11 +735,12 @@ CONFIG_NETDEV_1000=y | |||
| 707 | # CONFIG_VIA_VELOCITY is not set | 735 | # CONFIG_VIA_VELOCITY is not set |
| 708 | # CONFIG_TIGON3 is not set | 736 | # CONFIG_TIGON3 is not set |
| 709 | # CONFIG_BNX2 is not set | 737 | # CONFIG_BNX2 is not set |
| 738 | CONFIG_FSL_PQ_MDIO=y | ||
| 710 | CONFIG_GIANFAR=y | 739 | CONFIG_GIANFAR=y |
| 711 | # CONFIG_MV643XX_ETH is not set | ||
| 712 | # CONFIG_QLA3XXX is not set | 740 | # CONFIG_QLA3XXX is not set |
| 713 | # CONFIG_ATL1 is not set | 741 | # CONFIG_ATL1 is not set |
| 714 | # CONFIG_ATL1E is not set | 742 | # CONFIG_ATL1E is not set |
| 743 | # CONFIG_ATL1C is not set | ||
| 715 | # CONFIG_JME is not set | 744 | # CONFIG_JME is not set |
| 716 | CONFIG_NETDEV_10000=y | 745 | CONFIG_NETDEV_10000=y |
| 717 | # CONFIG_CHELSIO_T1 is not set | 746 | # CONFIG_CHELSIO_T1 is not set |
| @@ -721,6 +750,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 721 | # CONFIG_IXGBE is not set | 750 | # CONFIG_IXGBE is not set |
| 722 | # CONFIG_IXGB is not set | 751 | # CONFIG_IXGB is not set |
| 723 | # CONFIG_S2IO is not set | 752 | # CONFIG_S2IO is not set |
| 753 | # CONFIG_VXGE is not set | ||
| 724 | # CONFIG_MYRI10GE is not set | 754 | # CONFIG_MYRI10GE is not set |
| 725 | # CONFIG_NETXEN_NIC is not set | 755 | # CONFIG_NETXEN_NIC is not set |
| 726 | # CONFIG_NIU is not set | 756 | # CONFIG_NIU is not set |
| @@ -730,6 +760,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 730 | # CONFIG_BNX2X is not set | 760 | # CONFIG_BNX2X is not set |
| 731 | # CONFIG_QLGE is not set | 761 | # CONFIG_QLGE is not set |
| 732 | # CONFIG_SFC is not set | 762 | # CONFIG_SFC is not set |
| 763 | # CONFIG_BE2NET is not set | ||
| 733 | # CONFIG_TR is not set | 764 | # CONFIG_TR is not set |
| 734 | 765 | ||
| 735 | # | 766 | # |
| @@ -737,7 +768,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 737 | # | 768 | # |
| 738 | # CONFIG_WLAN_PRE80211 is not set | 769 | # CONFIG_WLAN_PRE80211 is not set |
| 739 | # CONFIG_WLAN_80211 is not set | 770 | # CONFIG_WLAN_80211 is not set |
| 740 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 741 | 771 | ||
| 742 | # | 772 | # |
| 743 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 773 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -815,6 +845,7 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 815 | # | 845 | # |
| 816 | # Non-8250 serial port support | 846 | # Non-8250 serial port support |
| 817 | # | 847 | # |
| 848 | # CONFIG_SERIAL_MAX3100 is not set | ||
| 818 | # CONFIG_SERIAL_UARTLITE is not set | 849 | # CONFIG_SERIAL_UARTLITE is not set |
| 819 | CONFIG_SERIAL_CORE=y | 850 | CONFIG_SERIAL_CORE=y |
| 820 | CONFIG_SERIAL_CORE_CONSOLE=y | 851 | CONFIG_SERIAL_CORE_CONSOLE=y |
| @@ -827,6 +858,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 827 | # CONFIG_HVC_UDBG is not set | 858 | # CONFIG_HVC_UDBG is not set |
| 828 | # CONFIG_IPMI_HANDLER is not set | 859 | # CONFIG_IPMI_HANDLER is not set |
| 829 | CONFIG_HW_RANDOM=y | 860 | CONFIG_HW_RANDOM=y |
| 861 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 830 | # CONFIG_NVRAM is not set | 862 | # CONFIG_NVRAM is not set |
| 831 | # CONFIG_R3964 is not set | 863 | # CONFIG_R3964 is not set |
| 832 | # CONFIG_APPLICOM is not set | 864 | # CONFIG_APPLICOM is not set |
| @@ -889,12 +921,9 @@ CONFIG_I2C_MPC=y | |||
| 889 | # Miscellaneous I2C Chip support | 921 | # Miscellaneous I2C Chip support |
| 890 | # | 922 | # |
| 891 | # CONFIG_DS1682 is not set | 923 | # CONFIG_DS1682 is not set |
| 892 | # CONFIG_EEPROM_AT24 is not set | ||
| 893 | # CONFIG_EEPROM_LEGACY is not set | ||
| 894 | # CONFIG_SENSORS_PCF8574 is not set | 924 | # CONFIG_SENSORS_PCF8574 is not set |
| 895 | # CONFIG_PCF8575 is not set | 925 | # CONFIG_PCF8575 is not set |
| 896 | # CONFIG_SENSORS_PCA9539 is not set | 926 | # CONFIG_SENSORS_PCA9539 is not set |
| 897 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 898 | # CONFIG_SENSORS_MAX6875 is not set | 927 | # CONFIG_SENSORS_MAX6875 is not set |
| 899 | # CONFIG_SENSORS_TSL2550 is not set | 928 | # CONFIG_SENSORS_TSL2550 is not set |
| 900 | # CONFIG_I2C_DEBUG_CORE is not set | 929 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -914,7 +943,6 @@ CONFIG_SPI_MPC83xx=y | |||
| 914 | # | 943 | # |
| 915 | # SPI Protocol Masters | 944 | # SPI Protocol Masters |
| 916 | # | 945 | # |
| 917 | # CONFIG_EEPROM_AT25 is not set | ||
| 918 | # CONFIG_SPI_SPIDEV is not set | 946 | # CONFIG_SPI_SPIDEV is not set |
| 919 | # CONFIG_SPI_TLE62X0 is not set | 947 | # CONFIG_SPI_TLE62X0 is not set |
| 920 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 948 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
| @@ -942,6 +970,7 @@ CONFIG_HWMON=y | |||
| 942 | # CONFIG_SENSORS_F71805F is not set | 970 | # CONFIG_SENSORS_F71805F is not set |
| 943 | # CONFIG_SENSORS_F71882FG is not set | 971 | # CONFIG_SENSORS_F71882FG is not set |
| 944 | # CONFIG_SENSORS_F75375S is not set | 972 | # CONFIG_SENSORS_F75375S is not set |
| 973 | # CONFIG_SENSORS_G760A is not set | ||
| 945 | # CONFIG_SENSORS_GL518SM is not set | 974 | # CONFIG_SENSORS_GL518SM is not set |
| 946 | # CONFIG_SENSORS_GL520SM is not set | 975 | # CONFIG_SENSORS_GL520SM is not set |
| 947 | # CONFIG_SENSORS_IT87 is not set | 976 | # CONFIG_SENSORS_IT87 is not set |
| @@ -957,12 +986,15 @@ CONFIG_HWMON=y | |||
| 957 | # CONFIG_SENSORS_LM90 is not set | 986 | # CONFIG_SENSORS_LM90 is not set |
| 958 | # CONFIG_SENSORS_LM92 is not set | 987 | # CONFIG_SENSORS_LM92 is not set |
| 959 | # CONFIG_SENSORS_LM93 is not set | 988 | # CONFIG_SENSORS_LM93 is not set |
| 989 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 960 | # CONFIG_SENSORS_LTC4245 is not set | 990 | # CONFIG_SENSORS_LTC4245 is not set |
| 991 | # CONFIG_SENSORS_LM95241 is not set | ||
| 961 | # CONFIG_SENSORS_MAX1111 is not set | 992 | # CONFIG_SENSORS_MAX1111 is not set |
| 962 | # CONFIG_SENSORS_MAX1619 is not set | 993 | # CONFIG_SENSORS_MAX1619 is not set |
| 963 | # CONFIG_SENSORS_MAX6650 is not set | 994 | # CONFIG_SENSORS_MAX6650 is not set |
| 964 | # CONFIG_SENSORS_PC87360 is not set | 995 | # CONFIG_SENSORS_PC87360 is not set |
| 965 | # CONFIG_SENSORS_PC87427 is not set | 996 | # CONFIG_SENSORS_PC87427 is not set |
| 997 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 966 | # CONFIG_SENSORS_SIS5595 is not set | 998 | # CONFIG_SENSORS_SIS5595 is not set |
| 967 | # CONFIG_SENSORS_DME1737 is not set | 999 | # CONFIG_SENSORS_DME1737 is not set |
| 968 | # CONFIG_SENSORS_SMSC47M1 is not set | 1000 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -981,6 +1013,7 @@ CONFIG_HWMON=y | |||
| 981 | # CONFIG_SENSORS_W83L786NG is not set | 1013 | # CONFIG_SENSORS_W83L786NG is not set |
| 982 | # CONFIG_SENSORS_W83627HF is not set | 1014 | # CONFIG_SENSORS_W83627HF is not set |
| 983 | # CONFIG_SENSORS_W83627EHF is not set | 1015 | # CONFIG_SENSORS_W83627EHF is not set |
| 1016 | # CONFIG_SENSORS_LIS3_SPI is not set | ||
| 984 | # CONFIG_HWMON_DEBUG_CHIP is not set | 1017 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 985 | # CONFIG_THERMAL is not set | 1018 | # CONFIG_THERMAL is not set |
| 986 | # CONFIG_THERMAL_HWMON is not set | 1019 | # CONFIG_THERMAL_HWMON is not set |
| @@ -1077,7 +1110,6 @@ CONFIG_HID=y | |||
| 1077 | # | 1110 | # |
| 1078 | # Special HID drivers | 1111 | # Special HID drivers |
| 1079 | # | 1112 | # |
| 1080 | CONFIG_HID_COMPAT=y | ||
| 1081 | CONFIG_USB_SUPPORT=y | 1113 | CONFIG_USB_SUPPORT=y |
| 1082 | CONFIG_USB_ARCH_HAS_HCD=y | 1114 | CONFIG_USB_ARCH_HAS_HCD=y |
| 1083 | CONFIG_USB_ARCH_HAS_OHCI=y | 1115 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1135,11 +1167,11 @@ CONFIG_USB_UHCI_HCD=y | |||
| 1135 | # CONFIG_USB_TMC is not set | 1167 | # CONFIG_USB_TMC is not set |
| 1136 | 1168 | ||
| 1137 | # | 1169 | # |
| 1138 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1170 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1139 | # | 1171 | # |
| 1140 | 1172 | ||
| 1141 | # | 1173 | # |
| 1142 | # see USB_STORAGE Help for more information | 1174 | # also be needed; see USB_STORAGE Help for more info |
| 1143 | # | 1175 | # |
| 1144 | CONFIG_USB_STORAGE=y | 1176 | CONFIG_USB_STORAGE=y |
| 1145 | # CONFIG_USB_STORAGE_DEBUG is not set | 1177 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1181,7 +1213,6 @@ CONFIG_USB_STORAGE=y | |||
| 1181 | # CONFIG_USB_LED is not set | 1213 | # CONFIG_USB_LED is not set |
| 1182 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1214 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1183 | # CONFIG_USB_CYTHERM is not set | 1215 | # CONFIG_USB_CYTHERM is not set |
| 1184 | # CONFIG_USB_PHIDGET is not set | ||
| 1185 | # CONFIG_USB_IDMOUSE is not set | 1216 | # CONFIG_USB_IDMOUSE is not set |
| 1186 | # CONFIG_USB_FTDI_ELAN is not set | 1217 | # CONFIG_USB_FTDI_ELAN is not set |
| 1187 | # CONFIG_USB_APPLEDISPLAY is not set | 1218 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1228,6 +1259,7 @@ CONFIG_USB_ETH_RNDIS=y | |||
| 1228 | # | 1259 | # |
| 1229 | # OTG and related infrastructure | 1260 | # OTG and related infrastructure |
| 1230 | # | 1261 | # |
| 1262 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1231 | # CONFIG_UWB is not set | 1263 | # CONFIG_UWB is not set |
| 1232 | # CONFIG_MMC is not set | 1264 | # CONFIG_MMC is not set |
| 1233 | # CONFIG_MEMSTICK is not set | 1265 | # CONFIG_MEMSTICK is not set |
| @@ -1296,8 +1328,9 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1296 | # | 1328 | # |
| 1297 | # on-CPU RTC drivers | 1329 | # on-CPU RTC drivers |
| 1298 | # | 1330 | # |
| 1299 | # CONFIG_RTC_DRV_PPC is not set | 1331 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1300 | # CONFIG_DMADEVICES is not set | 1332 | # CONFIG_DMADEVICES is not set |
| 1333 | # CONFIG_AUXDISPLAY is not set | ||
| 1301 | # CONFIG_UIO is not set | 1334 | # CONFIG_UIO is not set |
| 1302 | # CONFIG_STAGING is not set | 1335 | # CONFIG_STAGING is not set |
| 1303 | 1336 | ||
| @@ -1308,6 +1341,7 @@ CONFIG_EXT2_FS=y | |||
| 1308 | # CONFIG_EXT2_FS_XATTR is not set | 1341 | # CONFIG_EXT2_FS_XATTR is not set |
| 1309 | # CONFIG_EXT2_FS_XIP is not set | 1342 | # CONFIG_EXT2_FS_XIP is not set |
| 1310 | CONFIG_EXT3_FS=y | 1343 | CONFIG_EXT3_FS=y |
| 1344 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1311 | CONFIG_EXT3_FS_XATTR=y | 1345 | CONFIG_EXT3_FS_XATTR=y |
| 1312 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1346 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1313 | # CONFIG_EXT3_FS_SECURITY is not set | 1347 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1330,6 +1364,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1330 | # CONFIG_FUSE_FS is not set | 1364 | # CONFIG_FUSE_FS is not set |
| 1331 | 1365 | ||
| 1332 | # | 1366 | # |
| 1367 | # Caches | ||
| 1368 | # | ||
| 1369 | # CONFIG_FSCACHE is not set | ||
| 1370 | |||
| 1371 | # | ||
| 1333 | # CD-ROM/DVD Filesystems | 1372 | # CD-ROM/DVD Filesystems |
| 1334 | # | 1373 | # |
| 1335 | # CONFIG_ISO9660_FS is not set | 1374 | # CONFIG_ISO9660_FS is not set |
| @@ -1383,6 +1422,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1383 | # CONFIG_ROMFS_FS is not set | 1422 | # CONFIG_ROMFS_FS is not set |
| 1384 | # CONFIG_SYSV_FS is not set | 1423 | # CONFIG_SYSV_FS is not set |
| 1385 | # CONFIG_UFS_FS is not set | 1424 | # CONFIG_UFS_FS is not set |
| 1425 | # CONFIG_NILFS2_FS is not set | ||
| 1386 | CONFIG_NETWORK_FILESYSTEMS=y | 1426 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1387 | CONFIG_NFS_FS=y | 1427 | CONFIG_NFS_FS=y |
| 1388 | CONFIG_NFS_V3=y | 1428 | CONFIG_NFS_V3=y |
| @@ -1395,7 +1435,6 @@ CONFIG_LOCKD_V4=y | |||
| 1395 | CONFIG_NFS_COMMON=y | 1435 | CONFIG_NFS_COMMON=y |
| 1396 | CONFIG_SUNRPC=y | 1436 | CONFIG_SUNRPC=y |
| 1397 | CONFIG_SUNRPC_GSS=y | 1437 | CONFIG_SUNRPC_GSS=y |
| 1398 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1399 | CONFIG_RPCSEC_GSS_KRB5=y | 1438 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1400 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1439 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1401 | # CONFIG_SMB_FS is not set | 1440 | # CONFIG_SMB_FS is not set |
| @@ -1427,6 +1466,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1427 | # CONFIG_SYSV68_PARTITION is not set | 1466 | # CONFIG_SYSV68_PARTITION is not set |
| 1428 | # CONFIG_NLS is not set | 1467 | # CONFIG_NLS is not set |
| 1429 | # CONFIG_DLM is not set | 1468 | # CONFIG_DLM is not set |
| 1469 | # CONFIG_BINARY_PRINTF is not set | ||
| 1430 | 1470 | ||
| 1431 | # | 1471 | # |
| 1432 | # Library routines | 1472 | # Library routines |
| @@ -1442,11 +1482,12 @@ CONFIG_CRC32=y | |||
| 1442 | # CONFIG_LIBCRC32C is not set | 1482 | # CONFIG_LIBCRC32C is not set |
| 1443 | CONFIG_ZLIB_INFLATE=y | 1483 | CONFIG_ZLIB_INFLATE=y |
| 1444 | CONFIG_ZLIB_DEFLATE=y | 1484 | CONFIG_ZLIB_DEFLATE=y |
| 1445 | CONFIG_PLIST=y | 1485 | CONFIG_DECOMPRESS_GZIP=y |
| 1446 | CONFIG_HAS_IOMEM=y | 1486 | CONFIG_HAS_IOMEM=y |
| 1447 | CONFIG_HAS_IOPORT=y | 1487 | CONFIG_HAS_IOPORT=y |
| 1448 | CONFIG_HAS_DMA=y | 1488 | CONFIG_HAS_DMA=y |
| 1449 | CONFIG_HAVE_LMB=y | 1489 | CONFIG_HAVE_LMB=y |
| 1490 | CONFIG_NLATTR=y | ||
| 1450 | 1491 | ||
| 1451 | # | 1492 | # |
| 1452 | # Kernel hacking | 1493 | # Kernel hacking |
| @@ -1464,6 +1505,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1464 | CONFIG_DETECT_SOFTLOCKUP=y | 1505 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1465 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1506 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1466 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1507 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1508 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1509 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1510 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1467 | CONFIG_SCHED_DEBUG=y | 1511 | CONFIG_SCHED_DEBUG=y |
| 1468 | # CONFIG_SCHEDSTATS is not set | 1512 | # CONFIG_SCHEDSTATS is not set |
| 1469 | # CONFIG_TIMER_STATS is not set | 1513 | # CONFIG_TIMER_STATS is not set |
| @@ -1493,9 +1537,12 @@ CONFIG_SCHED_DEBUG=y | |||
| 1493 | # CONFIG_FAULT_INJECTION is not set | 1537 | # CONFIG_FAULT_INJECTION is not set |
| 1494 | # CONFIG_LATENCYTOP is not set | 1538 | # CONFIG_LATENCYTOP is not set |
| 1495 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1539 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1540 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1496 | CONFIG_HAVE_FUNCTION_TRACER=y | 1541 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1542 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1497 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1543 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1498 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1544 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1545 | CONFIG_TRACING_SUPPORT=y | ||
| 1499 | 1546 | ||
| 1500 | # | 1547 | # |
| 1501 | # Tracers | 1548 | # Tracers |
| @@ -1503,17 +1550,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1503 | # CONFIG_FUNCTION_TRACER is not set | 1550 | # CONFIG_FUNCTION_TRACER is not set |
| 1504 | # CONFIG_SCHED_TRACER is not set | 1551 | # CONFIG_SCHED_TRACER is not set |
| 1505 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1552 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1553 | # CONFIG_EVENT_TRACER is not set | ||
| 1506 | # CONFIG_BOOT_TRACER is not set | 1554 | # CONFIG_BOOT_TRACER is not set |
| 1507 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1555 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1508 | # CONFIG_STACK_TRACER is not set | 1556 | # CONFIG_STACK_TRACER is not set |
| 1509 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1557 | # CONFIG_KMEMTRACE is not set |
| 1558 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1559 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1510 | # CONFIG_SAMPLES is not set | 1560 | # CONFIG_SAMPLES is not set |
| 1511 | CONFIG_HAVE_ARCH_KGDB=y | 1561 | CONFIG_HAVE_ARCH_KGDB=y |
| 1512 | # CONFIG_KGDB is not set | 1562 | # CONFIG_KGDB is not set |
| 1513 | CONFIG_PRINT_STACK_DEPTH=64 | 1563 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1514 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1564 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1515 | # CONFIG_DEBUG_STACK_USAGE is not set | 1565 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1516 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1517 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1566 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1518 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1567 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1519 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1568 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1544,10 +1593,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1544 | CONFIG_CRYPTO_HASH=y | 1593 | CONFIG_CRYPTO_HASH=y |
| 1545 | CONFIG_CRYPTO_HASH2=y | 1594 | CONFIG_CRYPTO_HASH2=y |
| 1546 | CONFIG_CRYPTO_RNG2=y | 1595 | CONFIG_CRYPTO_RNG2=y |
| 1596 | CONFIG_CRYPTO_PCOMP=y | ||
| 1547 | CONFIG_CRYPTO_MANAGER=y | 1597 | CONFIG_CRYPTO_MANAGER=y |
| 1548 | CONFIG_CRYPTO_MANAGER2=y | 1598 | CONFIG_CRYPTO_MANAGER2=y |
| 1549 | # CONFIG_CRYPTO_GF128MUL is not set | 1599 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1550 | # CONFIG_CRYPTO_NULL is not set | 1600 | # CONFIG_CRYPTO_NULL is not set |
| 1601 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1551 | # CONFIG_CRYPTO_CRYPTD is not set | 1602 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1552 | # CONFIG_CRYPTO_AUTHENC is not set | 1603 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1553 | # CONFIG_CRYPTO_TEST is not set | 1604 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1616,6 +1667,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1616 | # Compression | 1667 | # Compression |
| 1617 | # | 1668 | # |
| 1618 | # CONFIG_CRYPTO_DEFLATE is not set | 1669 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1670 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1619 | # CONFIG_CRYPTO_LZO is not set | 1671 | # CONFIG_CRYPTO_LZO is not set |
| 1620 | 1672 | ||
| 1621 | # | 1673 | # |
diff --git a/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig b/arch/powerpc/configs/83xx/mpc8315_rdb_defconfig index 03db97c6cf33..af4952feba36 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:49 2009 | 4 | # Wed May 13 17:22:06 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -56,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 87 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 89 | CONFIG_GROUP_SCHED=y |
| @@ -87,19 +98,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | # CONFIG_KALLSYMS is not set | 109 | # CONFIG_KALLSYMS is not set |
| 110 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 95 | CONFIG_HOTPLUG=y | 111 | CONFIG_HOTPLUG=y |
| 96 | CONFIG_PRINTK=y | 112 | CONFIG_PRINTK=y |
| 97 | CONFIG_BUG=y | 113 | CONFIG_BUG=y |
| 98 | CONFIG_ELF_CORE=y | 114 | CONFIG_ELF_CORE=y |
| 99 | CONFIG_COMPAT_BRK=y | ||
| 100 | CONFIG_BASE_FULL=y | 115 | CONFIG_BASE_FULL=y |
| 101 | CONFIG_FUTEX=y | 116 | CONFIG_FUTEX=y |
| 102 | CONFIG_ANON_INODES=y | ||
| 103 | # CONFIG_EPOLL is not set | 117 | # CONFIG_EPOLL is not set |
| 104 | CONFIG_SIGNALFD=y | 118 | CONFIG_SIGNALFD=y |
| 105 | CONFIG_TIMERFD=y | 119 | CONFIG_TIMERFD=y |
| @@ -109,16 +123,19 @@ CONFIG_AIO=y | |||
| 109 | CONFIG_VM_EVENT_COUNTERS=y | 123 | CONFIG_VM_EVENT_COUNTERS=y |
| 110 | CONFIG_PCI_QUIRKS=y | 124 | CONFIG_PCI_QUIRKS=y |
| 111 | CONFIG_SLUB_DEBUG=y | 125 | CONFIG_SLUB_DEBUG=y |
| 126 | CONFIG_COMPAT_BRK=y | ||
| 112 | # CONFIG_SLAB is not set | 127 | # CONFIG_SLAB is not set |
| 113 | CONFIG_SLUB=y | 128 | CONFIG_SLUB=y |
| 114 | # CONFIG_SLOB is not set | 129 | # CONFIG_SLOB is not set |
| 115 | # CONFIG_PROFILING is not set | 130 | # CONFIG_PROFILING is not set |
| 131 | # CONFIG_MARKERS is not set | ||
| 116 | CONFIG_HAVE_OPROFILE=y | 132 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 133 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | 134 | CONFIG_HAVE_IOREMAP_PROT=y |
| 119 | CONFIG_HAVE_KPROBES=y | 135 | CONFIG_HAVE_KPROBES=y |
| 120 | CONFIG_HAVE_KRETPROBES=y | 136 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 137 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 138 | # CONFIG_SLOW_WORK is not set | ||
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 139 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 123 | CONFIG_SLABINFO=y | 140 | CONFIG_SLABINFO=y |
| 124 | CONFIG_RT_MUTEXES=y | 141 | CONFIG_RT_MUTEXES=y |
| @@ -131,7 +148,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 148 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 132 | CONFIG_BLOCK=y | 149 | CONFIG_BLOCK=y |
| 133 | # CONFIG_LBD is not set | 150 | # CONFIG_LBD is not set |
| 134 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 135 | # CONFIG_BLK_DEV_BSG is not set | 151 | # CONFIG_BLK_DEV_BSG is not set |
| 136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 152 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 137 | 153 | ||
| @@ -147,18 +163,11 @@ CONFIG_DEFAULT_AS=y | |||
| 147 | # CONFIG_DEFAULT_CFQ is not set | 163 | # CONFIG_DEFAULT_CFQ is not set |
| 148 | # CONFIG_DEFAULT_NOOP is not set | 164 | # CONFIG_DEFAULT_NOOP is not set |
| 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 165 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 150 | CONFIG_CLASSIC_RCU=y | ||
| 151 | # CONFIG_TREE_RCU is not set | ||
| 152 | # CONFIG_PREEMPT_RCU is not set | ||
| 153 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 155 | # CONFIG_FREEZER is not set | 166 | # CONFIG_FREEZER is not set |
| 156 | 167 | ||
| 157 | # | 168 | # |
| 158 | # Platform support | 169 | # Platform support |
| 159 | # | 170 | # |
| 160 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 161 | CONFIG_CLASSIC32=y | ||
| 162 | # CONFIG_PPC_CHRP is not set | 171 | # CONFIG_PPC_CHRP is not set |
| 163 | # CONFIG_MPC5121_ADS is not set | 172 | # CONFIG_MPC5121_ADS is not set |
| 164 | # CONFIG_MPC5121_GENERIC is not set | 173 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -183,6 +192,8 @@ CONFIG_MPC831x_RDB=y | |||
| 183 | CONFIG_PPC_MPC831x=y | 192 | CONFIG_PPC_MPC831x=y |
| 184 | # CONFIG_PPC_86xx is not set | 193 | # CONFIG_PPC_86xx is not set |
| 185 | # CONFIG_EMBEDDED6xx is not set | 194 | # CONFIG_EMBEDDED6xx is not set |
| 195 | # CONFIG_AMIGAONE is not set | ||
| 196 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 186 | CONFIG_IPIC=y | 197 | CONFIG_IPIC=y |
| 187 | # CONFIG_MPIC is not set | 198 | # CONFIG_MPIC is not set |
| 188 | # CONFIG_MPIC_WEIRD is not set | 199 | # CONFIG_MPIC_WEIRD is not set |
| @@ -244,9 +255,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 244 | CONFIG_BOUNCE=y | 255 | CONFIG_BOUNCE=y |
| 245 | CONFIG_VIRT_TO_BUS=y | 256 | CONFIG_VIRT_TO_BUS=y |
| 246 | CONFIG_UNEVICTABLE_LRU=y | 257 | CONFIG_UNEVICTABLE_LRU=y |
| 258 | CONFIG_HAVE_MLOCK=y | ||
| 259 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 247 | CONFIG_PPC_4K_PAGES=y | 260 | CONFIG_PPC_4K_PAGES=y |
| 248 | # CONFIG_PPC_16K_PAGES is not set | 261 | # CONFIG_PPC_16K_PAGES is not set |
| 249 | # CONFIG_PPC_64K_PAGES is not set | 262 | # CONFIG_PPC_64K_PAGES is not set |
| 263 | # CONFIG_PPC_256K_PAGES is not set | ||
| 250 | CONFIG_FORCE_MAX_ZONEORDER=11 | 264 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 251 | CONFIG_PROC_DEVICETREE=y | 265 | CONFIG_PROC_DEVICETREE=y |
| 252 | # CONFIG_CMDLINE_BOOL is not set | 266 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -273,6 +287,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 273 | # CONFIG_PCI_LEGACY is not set | 287 | # CONFIG_PCI_LEGACY is not set |
| 274 | # CONFIG_PCI_DEBUG is not set | 288 | # CONFIG_PCI_DEBUG is not set |
| 275 | # CONFIG_PCI_STUB is not set | 289 | # CONFIG_PCI_STUB is not set |
| 290 | # CONFIG_PCI_IOV is not set | ||
| 276 | # CONFIG_PCCARD is not set | 291 | # CONFIG_PCCARD is not set |
| 277 | # CONFIG_HOTPLUG_PCI is not set | 292 | # CONFIG_HOTPLUG_PCI is not set |
| 278 | # CONFIG_HAS_RAPIDIO is not set | 293 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -295,7 +310,6 @@ CONFIG_NET=y | |||
| 295 | # | 310 | # |
| 296 | # Networking options | 311 | # Networking options |
| 297 | # | 312 | # |
| 298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 299 | CONFIG_PACKET=y | 313 | CONFIG_PACKET=y |
| 300 | # CONFIG_PACKET_MMAP is not set | 314 | # CONFIG_PACKET_MMAP is not set |
| 301 | CONFIG_UNIX=y | 315 | CONFIG_UNIX=y |
| @@ -351,6 +365,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 351 | # CONFIG_LAPB is not set | 365 | # CONFIG_LAPB is not set |
| 352 | # CONFIG_ECONET is not set | 366 | # CONFIG_ECONET is not set |
| 353 | # CONFIG_WAN_ROUTER is not set | 367 | # CONFIG_WAN_ROUTER is not set |
| 368 | # CONFIG_PHONET is not set | ||
| 354 | # CONFIG_NET_SCHED is not set | 369 | # CONFIG_NET_SCHED is not set |
| 355 | # CONFIG_DCB is not set | 370 | # CONFIG_DCB is not set |
| 356 | 371 | ||
| @@ -363,7 +378,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 363 | # CONFIG_IRDA is not set | 378 | # CONFIG_IRDA is not set |
| 364 | # CONFIG_BT is not set | 379 | # CONFIG_BT is not set |
| 365 | # CONFIG_AF_RXRPC is not set | 380 | # CONFIG_AF_RXRPC is not set |
| 366 | # CONFIG_PHONET is not set | ||
| 367 | CONFIG_WIRELESS=y | 381 | CONFIG_WIRELESS=y |
| 368 | # CONFIG_CFG80211 is not set | 382 | # CONFIG_CFG80211 is not set |
| 369 | CONFIG_WIRELESS_OLD_REGULATORY=y | 383 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -481,7 +495,6 @@ CONFIG_MTD_NAND_IDS=y | |||
| 481 | # LPDDR flash memory drivers | 495 | # LPDDR flash memory drivers |
| 482 | # | 496 | # |
| 483 | # CONFIG_MTD_LPDDR is not set | 497 | # CONFIG_MTD_LPDDR is not set |
| 484 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 485 | 498 | ||
| 486 | # | 499 | # |
| 487 | # UBI - Unsorted block images | 500 | # UBI - Unsorted block images |
| @@ -512,13 +525,21 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 512 | # CONFIG_BLK_DEV_HD is not set | 525 | # CONFIG_BLK_DEV_HD is not set |
| 513 | CONFIG_MISC_DEVICES=y | 526 | CONFIG_MISC_DEVICES=y |
| 514 | # CONFIG_PHANTOM is not set | 527 | # CONFIG_PHANTOM is not set |
| 515 | # CONFIG_EEPROM_93CX6 is not set | ||
| 516 | # CONFIG_SGI_IOC4 is not set | 528 | # CONFIG_SGI_IOC4 is not set |
| 517 | # CONFIG_TIFM_CORE is not set | 529 | # CONFIG_TIFM_CORE is not set |
| 518 | # CONFIG_ICS932S401 is not set | 530 | # CONFIG_ICS932S401 is not set |
| 519 | # CONFIG_ENCLOSURE_SERVICES is not set | 531 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 520 | # CONFIG_HP_ILO is not set | 532 | # CONFIG_HP_ILO is not set |
| 533 | # CONFIG_ISL29003 is not set | ||
| 521 | # CONFIG_C2PORT is not set | 534 | # CONFIG_C2PORT is not set |
| 535 | |||
| 536 | # | ||
| 537 | # EEPROM support | ||
| 538 | # | ||
| 539 | # CONFIG_EEPROM_AT24 is not set | ||
| 540 | # CONFIG_EEPROM_AT25 is not set | ||
| 541 | # CONFIG_EEPROM_LEGACY is not set | ||
| 542 | # CONFIG_EEPROM_93CX6 is not set | ||
| 522 | CONFIG_HAVE_IDE=y | 543 | CONFIG_HAVE_IDE=y |
| 523 | # CONFIG_IDE is not set | 544 | # CONFIG_IDE is not set |
| 524 | 545 | ||
| @@ -576,9 +597,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 576 | # CONFIG_MEGARAID_NEWGEN is not set | 597 | # CONFIG_MEGARAID_NEWGEN is not set |
| 577 | # CONFIG_MEGARAID_LEGACY is not set | 598 | # CONFIG_MEGARAID_LEGACY is not set |
| 578 | # CONFIG_MEGARAID_SAS is not set | 599 | # CONFIG_MEGARAID_SAS is not set |
| 600 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 579 | # CONFIG_SCSI_HPTIOP is not set | 601 | # CONFIG_SCSI_HPTIOP is not set |
| 580 | # CONFIG_SCSI_BUSLOGIC is not set | 602 | # CONFIG_SCSI_BUSLOGIC is not set |
| 581 | # CONFIG_LIBFC is not set | 603 | # CONFIG_LIBFC is not set |
| 604 | # CONFIG_LIBFCOE is not set | ||
| 582 | # CONFIG_FCOE is not set | 605 | # CONFIG_FCOE is not set |
| 583 | # CONFIG_SCSI_DMX3191D is not set | 606 | # CONFIG_SCSI_DMX3191D is not set |
| 584 | # CONFIG_SCSI_EATA is not set | 607 | # CONFIG_SCSI_EATA is not set |
| @@ -601,6 +624,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 601 | # CONFIG_SCSI_DEBUG is not set | 624 | # CONFIG_SCSI_DEBUG is not set |
| 602 | # CONFIG_SCSI_SRP is not set | 625 | # CONFIG_SCSI_SRP is not set |
| 603 | # CONFIG_SCSI_DH is not set | 626 | # CONFIG_SCSI_DH is not set |
| 627 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 604 | CONFIG_ATA=y | 628 | CONFIG_ATA=y |
| 605 | # CONFIG_ATA_NONSTANDARD is not set | 629 | # CONFIG_ATA_NONSTANDARD is not set |
| 606 | CONFIG_SATA_PMP=y | 630 | CONFIG_SATA_PMP=y |
| @@ -687,6 +711,7 @@ CONFIG_MD_RAID1=y | |||
| 687 | # CONFIG_I2O is not set | 711 | # CONFIG_I2O is not set |
| 688 | # CONFIG_MACINTOSH_DRIVERS is not set | 712 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 689 | CONFIG_NETDEVICES=y | 713 | CONFIG_NETDEVICES=y |
| 714 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 690 | # CONFIG_DUMMY is not set | 715 | # CONFIG_DUMMY is not set |
| 691 | # CONFIG_BONDING is not set | 716 | # CONFIG_BONDING is not set |
| 692 | # CONFIG_MACVLAN is not set | 717 | # CONFIG_MACVLAN is not set |
| @@ -721,6 +746,8 @@ CONFIG_MII=y | |||
| 721 | # CONFIG_CASSINI is not set | 746 | # CONFIG_CASSINI is not set |
| 722 | # CONFIG_NET_VENDOR_3COM is not set | 747 | # CONFIG_NET_VENDOR_3COM is not set |
| 723 | # CONFIG_ENC28J60 is not set | 748 | # CONFIG_ENC28J60 is not set |
| 749 | # CONFIG_ETHOC is not set | ||
| 750 | # CONFIG_DNET is not set | ||
| 724 | # CONFIG_NET_TULIP is not set | 751 | # CONFIG_NET_TULIP is not set |
| 725 | # CONFIG_HP100 is not set | 752 | # CONFIG_HP100 is not set |
| 726 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 753 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -758,6 +785,7 @@ CONFIG_NETDEV_1000=y | |||
| 758 | # CONFIG_E1000E is not set | 785 | # CONFIG_E1000E is not set |
| 759 | # CONFIG_IP1000 is not set | 786 | # CONFIG_IP1000 is not set |
| 760 | # CONFIG_IGB is not set | 787 | # CONFIG_IGB is not set |
| 788 | # CONFIG_IGBVF is not set | ||
| 761 | # CONFIG_NS83820 is not set | 789 | # CONFIG_NS83820 is not set |
| 762 | # CONFIG_HAMACHI is not set | 790 | # CONFIG_HAMACHI is not set |
| 763 | # CONFIG_YELLOWFIN is not set | 791 | # CONFIG_YELLOWFIN is not set |
| @@ -768,11 +796,12 @@ CONFIG_NETDEV_1000=y | |||
| 768 | # CONFIG_VIA_VELOCITY is not set | 796 | # CONFIG_VIA_VELOCITY is not set |
| 769 | # CONFIG_TIGON3 is not set | 797 | # CONFIG_TIGON3 is not set |
| 770 | # CONFIG_BNX2 is not set | 798 | # CONFIG_BNX2 is not set |
| 799 | CONFIG_FSL_PQ_MDIO=y | ||
| 771 | CONFIG_GIANFAR=y | 800 | CONFIG_GIANFAR=y |
| 772 | # CONFIG_MV643XX_ETH is not set | ||
| 773 | # CONFIG_QLA3XXX is not set | 801 | # CONFIG_QLA3XXX is not set |
| 774 | # CONFIG_ATL1 is not set | 802 | # CONFIG_ATL1 is not set |
| 775 | # CONFIG_ATL1E is not set | 803 | # CONFIG_ATL1E is not set |
| 804 | # CONFIG_ATL1C is not set | ||
| 776 | # CONFIG_JME is not set | 805 | # CONFIG_JME is not set |
| 777 | CONFIG_NETDEV_10000=y | 806 | CONFIG_NETDEV_10000=y |
| 778 | # CONFIG_CHELSIO_T1 is not set | 807 | # CONFIG_CHELSIO_T1 is not set |
| @@ -782,6 +811,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 782 | # CONFIG_IXGBE is not set | 811 | # CONFIG_IXGBE is not set |
| 783 | # CONFIG_IXGB is not set | 812 | # CONFIG_IXGB is not set |
| 784 | # CONFIG_S2IO is not set | 813 | # CONFIG_S2IO is not set |
| 814 | # CONFIG_VXGE is not set | ||
| 785 | # CONFIG_MYRI10GE is not set | 815 | # CONFIG_MYRI10GE is not set |
| 786 | # CONFIG_NETXEN_NIC is not set | 816 | # CONFIG_NETXEN_NIC is not set |
| 787 | # CONFIG_NIU is not set | 817 | # CONFIG_NIU is not set |
| @@ -791,6 +821,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 791 | # CONFIG_BNX2X is not set | 821 | # CONFIG_BNX2X is not set |
| 792 | # CONFIG_QLGE is not set | 822 | # CONFIG_QLGE is not set |
| 793 | # CONFIG_SFC is not set | 823 | # CONFIG_SFC is not set |
| 824 | # CONFIG_BE2NET is not set | ||
| 794 | # CONFIG_TR is not set | 825 | # CONFIG_TR is not set |
| 795 | 826 | ||
| 796 | # | 827 | # |
| @@ -798,7 +829,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 798 | # | 829 | # |
| 799 | # CONFIG_WLAN_PRE80211 is not set | 830 | # CONFIG_WLAN_PRE80211 is not set |
| 800 | # CONFIG_WLAN_80211 is not set | 831 | # CONFIG_WLAN_80211 is not set |
| 801 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 802 | 832 | ||
| 803 | # | 833 | # |
| 804 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 834 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -876,6 +906,7 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 876 | # | 906 | # |
| 877 | # Non-8250 serial port support | 907 | # Non-8250 serial port support |
| 878 | # | 908 | # |
| 909 | # CONFIG_SERIAL_MAX3100 is not set | ||
| 879 | # CONFIG_SERIAL_UARTLITE is not set | 910 | # CONFIG_SERIAL_UARTLITE is not set |
| 880 | CONFIG_SERIAL_CORE=y | 911 | CONFIG_SERIAL_CORE=y |
| 881 | CONFIG_SERIAL_CORE_CONSOLE=y | 912 | CONFIG_SERIAL_CORE_CONSOLE=y |
| @@ -888,6 +919,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 888 | # CONFIG_HVC_UDBG is not set | 919 | # CONFIG_HVC_UDBG is not set |
| 889 | # CONFIG_IPMI_HANDLER is not set | 920 | # CONFIG_IPMI_HANDLER is not set |
| 890 | CONFIG_HW_RANDOM=y | 921 | CONFIG_HW_RANDOM=y |
| 922 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 891 | # CONFIG_NVRAM is not set | 923 | # CONFIG_NVRAM is not set |
| 892 | # CONFIG_R3964 is not set | 924 | # CONFIG_R3964 is not set |
| 893 | # CONFIG_APPLICOM is not set | 925 | # CONFIG_APPLICOM is not set |
| @@ -950,12 +982,9 @@ CONFIG_I2C_MPC=y | |||
| 950 | # Miscellaneous I2C Chip support | 982 | # Miscellaneous I2C Chip support |
| 951 | # | 983 | # |
| 952 | # CONFIG_DS1682 is not set | 984 | # CONFIG_DS1682 is not set |
| 953 | # CONFIG_EEPROM_AT24 is not set | ||
| 954 | # CONFIG_EEPROM_LEGACY is not set | ||
| 955 | # CONFIG_SENSORS_PCF8574 is not set | 985 | # CONFIG_SENSORS_PCF8574 is not set |
| 956 | # CONFIG_PCF8575 is not set | 986 | # CONFIG_PCF8575 is not set |
| 957 | # CONFIG_SENSORS_PCA9539 is not set | 987 | # CONFIG_SENSORS_PCA9539 is not set |
| 958 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 959 | # CONFIG_SENSORS_MAX6875 is not set | 988 | # CONFIG_SENSORS_MAX6875 is not set |
| 960 | # CONFIG_SENSORS_TSL2550 is not set | 989 | # CONFIG_SENSORS_TSL2550 is not set |
| 961 | # CONFIG_I2C_DEBUG_CORE is not set | 990 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -975,7 +1004,6 @@ CONFIG_SPI_MPC83xx=y | |||
| 975 | # | 1004 | # |
| 976 | # SPI Protocol Masters | 1005 | # SPI Protocol Masters |
| 977 | # | 1006 | # |
| 978 | # CONFIG_EEPROM_AT25 is not set | ||
| 979 | # CONFIG_SPI_SPIDEV is not set | 1007 | # CONFIG_SPI_SPIDEV is not set |
| 980 | # CONFIG_SPI_TLE62X0 is not set | 1008 | # CONFIG_SPI_TLE62X0 is not set |
| 981 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 1009 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
| @@ -1003,6 +1031,7 @@ CONFIG_HWMON=y | |||
| 1003 | # CONFIG_SENSORS_F71805F is not set | 1031 | # CONFIG_SENSORS_F71805F is not set |
| 1004 | # CONFIG_SENSORS_F71882FG is not set | 1032 | # CONFIG_SENSORS_F71882FG is not set |
| 1005 | # CONFIG_SENSORS_F75375S is not set | 1033 | # CONFIG_SENSORS_F75375S is not set |
| 1034 | # CONFIG_SENSORS_G760A is not set | ||
| 1006 | # CONFIG_SENSORS_GL518SM is not set | 1035 | # CONFIG_SENSORS_GL518SM is not set |
| 1007 | # CONFIG_SENSORS_GL520SM is not set | 1036 | # CONFIG_SENSORS_GL520SM is not set |
| 1008 | # CONFIG_SENSORS_IT87 is not set | 1037 | # CONFIG_SENSORS_IT87 is not set |
| @@ -1018,12 +1047,15 @@ CONFIG_HWMON=y | |||
| 1018 | # CONFIG_SENSORS_LM90 is not set | 1047 | # CONFIG_SENSORS_LM90 is not set |
| 1019 | # CONFIG_SENSORS_LM92 is not set | 1048 | # CONFIG_SENSORS_LM92 is not set |
| 1020 | # CONFIG_SENSORS_LM93 is not set | 1049 | # CONFIG_SENSORS_LM93 is not set |
| 1050 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 1021 | # CONFIG_SENSORS_LTC4245 is not set | 1051 | # CONFIG_SENSORS_LTC4245 is not set |
| 1052 | # CONFIG_SENSORS_LM95241 is not set | ||
| 1022 | # CONFIG_SENSORS_MAX1111 is not set | 1053 | # CONFIG_SENSORS_MAX1111 is not set |
| 1023 | # CONFIG_SENSORS_MAX1619 is not set | 1054 | # CONFIG_SENSORS_MAX1619 is not set |
| 1024 | # CONFIG_SENSORS_MAX6650 is not set | 1055 | # CONFIG_SENSORS_MAX6650 is not set |
| 1025 | # CONFIG_SENSORS_PC87360 is not set | 1056 | # CONFIG_SENSORS_PC87360 is not set |
| 1026 | # CONFIG_SENSORS_PC87427 is not set | 1057 | # CONFIG_SENSORS_PC87427 is not set |
| 1058 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1027 | # CONFIG_SENSORS_SIS5595 is not set | 1059 | # CONFIG_SENSORS_SIS5595 is not set |
| 1028 | # CONFIG_SENSORS_DME1737 is not set | 1060 | # CONFIG_SENSORS_DME1737 is not set |
| 1029 | # CONFIG_SENSORS_SMSC47M1 is not set | 1061 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -1042,6 +1074,7 @@ CONFIG_HWMON=y | |||
| 1042 | # CONFIG_SENSORS_W83L786NG is not set | 1074 | # CONFIG_SENSORS_W83L786NG is not set |
| 1043 | # CONFIG_SENSORS_W83627HF is not set | 1075 | # CONFIG_SENSORS_W83627HF is not set |
| 1044 | # CONFIG_SENSORS_W83627EHF is not set | 1076 | # CONFIG_SENSORS_W83627EHF is not set |
| 1077 | # CONFIG_SENSORS_LIS3_SPI is not set | ||
| 1045 | # CONFIG_HWMON_DEBUG_CHIP is not set | 1078 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 1046 | # CONFIG_THERMAL is not set | 1079 | # CONFIG_THERMAL is not set |
| 1047 | # CONFIG_THERMAL_HWMON is not set | 1080 | # CONFIG_THERMAL_HWMON is not set |
| @@ -1138,7 +1171,6 @@ CONFIG_HID=y | |||
| 1138 | # | 1171 | # |
| 1139 | # Special HID drivers | 1172 | # Special HID drivers |
| 1140 | # | 1173 | # |
| 1141 | CONFIG_HID_COMPAT=y | ||
| 1142 | CONFIG_USB_SUPPORT=y | 1174 | CONFIG_USB_SUPPORT=y |
| 1143 | CONFIG_USB_ARCH_HAS_HCD=y | 1175 | CONFIG_USB_ARCH_HAS_HCD=y |
| 1144 | CONFIG_USB_ARCH_HAS_OHCI=y | 1176 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1196,11 +1228,11 @@ CONFIG_USB_UHCI_HCD=y | |||
| 1196 | # CONFIG_USB_TMC is not set | 1228 | # CONFIG_USB_TMC is not set |
| 1197 | 1229 | ||
| 1198 | # | 1230 | # |
| 1199 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1231 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1200 | # | 1232 | # |
| 1201 | 1233 | ||
| 1202 | # | 1234 | # |
| 1203 | # see USB_STORAGE Help for more information | 1235 | # also be needed; see USB_STORAGE Help for more info |
| 1204 | # | 1236 | # |
| 1205 | CONFIG_USB_STORAGE=y | 1237 | CONFIG_USB_STORAGE=y |
| 1206 | # CONFIG_USB_STORAGE_DEBUG is not set | 1238 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1242,7 +1274,6 @@ CONFIG_USB_STORAGE=y | |||
| 1242 | # CONFIG_USB_LED is not set | 1274 | # CONFIG_USB_LED is not set |
| 1243 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1275 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1244 | # CONFIG_USB_CYTHERM is not set | 1276 | # CONFIG_USB_CYTHERM is not set |
| 1245 | # CONFIG_USB_PHIDGET is not set | ||
| 1246 | # CONFIG_USB_IDMOUSE is not set | 1277 | # CONFIG_USB_IDMOUSE is not set |
| 1247 | # CONFIG_USB_FTDI_ELAN is not set | 1278 | # CONFIG_USB_FTDI_ELAN is not set |
| 1248 | # CONFIG_USB_APPLEDISPLAY is not set | 1279 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1289,6 +1320,7 @@ CONFIG_USB_ETH_RNDIS=y | |||
| 1289 | # | 1320 | # |
| 1290 | # OTG and related infrastructure | 1321 | # OTG and related infrastructure |
| 1291 | # | 1322 | # |
| 1323 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1292 | # CONFIG_UWB is not set | 1324 | # CONFIG_UWB is not set |
| 1293 | # CONFIG_MMC is not set | 1325 | # CONFIG_MMC is not set |
| 1294 | # CONFIG_MEMSTICK is not set | 1326 | # CONFIG_MEMSTICK is not set |
| @@ -1357,8 +1389,9 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1357 | # | 1389 | # |
| 1358 | # on-CPU RTC drivers | 1390 | # on-CPU RTC drivers |
| 1359 | # | 1391 | # |
| 1360 | # CONFIG_RTC_DRV_PPC is not set | 1392 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1361 | # CONFIG_DMADEVICES is not set | 1393 | # CONFIG_DMADEVICES is not set |
| 1394 | # CONFIG_AUXDISPLAY is not set | ||
| 1362 | # CONFIG_UIO is not set | 1395 | # CONFIG_UIO is not set |
| 1363 | # CONFIG_STAGING is not set | 1396 | # CONFIG_STAGING is not set |
| 1364 | 1397 | ||
| @@ -1369,6 +1402,7 @@ CONFIG_EXT2_FS=y | |||
| 1369 | # CONFIG_EXT2_FS_XATTR is not set | 1402 | # CONFIG_EXT2_FS_XATTR is not set |
| 1370 | # CONFIG_EXT2_FS_XIP is not set | 1403 | # CONFIG_EXT2_FS_XIP is not set |
| 1371 | CONFIG_EXT3_FS=y | 1404 | CONFIG_EXT3_FS=y |
| 1405 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1372 | CONFIG_EXT3_FS_XATTR=y | 1406 | CONFIG_EXT3_FS_XATTR=y |
| 1373 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1407 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1374 | # CONFIG_EXT3_FS_SECURITY is not set | 1408 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1391,6 +1425,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1391 | # CONFIG_FUSE_FS is not set | 1425 | # CONFIG_FUSE_FS is not set |
| 1392 | 1426 | ||
| 1393 | # | 1427 | # |
| 1428 | # Caches | ||
| 1429 | # | ||
| 1430 | # CONFIG_FSCACHE is not set | ||
| 1431 | |||
| 1432 | # | ||
| 1394 | # CD-ROM/DVD Filesystems | 1433 | # CD-ROM/DVD Filesystems |
| 1395 | # | 1434 | # |
| 1396 | # CONFIG_ISO9660_FS is not set | 1435 | # CONFIG_ISO9660_FS is not set |
| @@ -1444,6 +1483,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1444 | # CONFIG_ROMFS_FS is not set | 1483 | # CONFIG_ROMFS_FS is not set |
| 1445 | # CONFIG_SYSV_FS is not set | 1484 | # CONFIG_SYSV_FS is not set |
| 1446 | # CONFIG_UFS_FS is not set | 1485 | # CONFIG_UFS_FS is not set |
| 1486 | # CONFIG_NILFS2_FS is not set | ||
| 1447 | CONFIG_NETWORK_FILESYSTEMS=y | 1487 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1448 | CONFIG_NFS_FS=y | 1488 | CONFIG_NFS_FS=y |
| 1449 | CONFIG_NFS_V3=y | 1489 | CONFIG_NFS_V3=y |
| @@ -1456,7 +1496,6 @@ CONFIG_LOCKD_V4=y | |||
| 1456 | CONFIG_NFS_COMMON=y | 1496 | CONFIG_NFS_COMMON=y |
| 1457 | CONFIG_SUNRPC=y | 1497 | CONFIG_SUNRPC=y |
| 1458 | CONFIG_SUNRPC_GSS=y | 1498 | CONFIG_SUNRPC_GSS=y |
| 1459 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1460 | CONFIG_RPCSEC_GSS_KRB5=y | 1499 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1461 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1500 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1462 | # CONFIG_SMB_FS is not set | 1501 | # CONFIG_SMB_FS is not set |
| @@ -1488,6 +1527,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1488 | # CONFIG_SYSV68_PARTITION is not set | 1527 | # CONFIG_SYSV68_PARTITION is not set |
| 1489 | # CONFIG_NLS is not set | 1528 | # CONFIG_NLS is not set |
| 1490 | # CONFIG_DLM is not set | 1529 | # CONFIG_DLM is not set |
| 1530 | # CONFIG_BINARY_PRINTF is not set | ||
| 1491 | 1531 | ||
| 1492 | # | 1532 | # |
| 1493 | # Library routines | 1533 | # Library routines |
| @@ -1503,11 +1543,12 @@ CONFIG_CRC32=y | |||
| 1503 | # CONFIG_LIBCRC32C is not set | 1543 | # CONFIG_LIBCRC32C is not set |
| 1504 | CONFIG_ZLIB_INFLATE=y | 1544 | CONFIG_ZLIB_INFLATE=y |
| 1505 | CONFIG_ZLIB_DEFLATE=y | 1545 | CONFIG_ZLIB_DEFLATE=y |
| 1506 | CONFIG_PLIST=y | 1546 | CONFIG_DECOMPRESS_GZIP=y |
| 1507 | CONFIG_HAS_IOMEM=y | 1547 | CONFIG_HAS_IOMEM=y |
| 1508 | CONFIG_HAS_IOPORT=y | 1548 | CONFIG_HAS_IOPORT=y |
| 1509 | CONFIG_HAS_DMA=y | 1549 | CONFIG_HAS_DMA=y |
| 1510 | CONFIG_HAVE_LMB=y | 1550 | CONFIG_HAVE_LMB=y |
| 1551 | CONFIG_NLATTR=y | ||
| 1511 | 1552 | ||
| 1512 | # | 1553 | # |
| 1513 | # Kernel hacking | 1554 | # Kernel hacking |
| @@ -1525,6 +1566,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1525 | CONFIG_DETECT_SOFTLOCKUP=y | 1566 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1526 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1567 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1527 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1568 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1569 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1570 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1571 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1528 | CONFIG_SCHED_DEBUG=y | 1572 | CONFIG_SCHED_DEBUG=y |
| 1529 | # CONFIG_SCHEDSTATS is not set | 1573 | # CONFIG_SCHEDSTATS is not set |
| 1530 | # CONFIG_TIMER_STATS is not set | 1574 | # CONFIG_TIMER_STATS is not set |
| @@ -1554,9 +1598,12 @@ CONFIG_SCHED_DEBUG=y | |||
| 1554 | # CONFIG_FAULT_INJECTION is not set | 1598 | # CONFIG_FAULT_INJECTION is not set |
| 1555 | # CONFIG_LATENCYTOP is not set | 1599 | # CONFIG_LATENCYTOP is not set |
| 1556 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1600 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1601 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1557 | CONFIG_HAVE_FUNCTION_TRACER=y | 1602 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1603 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1558 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1604 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1559 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1605 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1606 | CONFIG_TRACING_SUPPORT=y | ||
| 1560 | 1607 | ||
| 1561 | # | 1608 | # |
| 1562 | # Tracers | 1609 | # Tracers |
| @@ -1564,17 +1611,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1564 | # CONFIG_FUNCTION_TRACER is not set | 1611 | # CONFIG_FUNCTION_TRACER is not set |
| 1565 | # CONFIG_SCHED_TRACER is not set | 1612 | # CONFIG_SCHED_TRACER is not set |
| 1566 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1613 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1614 | # CONFIG_EVENT_TRACER is not set | ||
| 1567 | # CONFIG_BOOT_TRACER is not set | 1615 | # CONFIG_BOOT_TRACER is not set |
| 1568 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1616 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1569 | # CONFIG_STACK_TRACER is not set | 1617 | # CONFIG_STACK_TRACER is not set |
| 1570 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1618 | # CONFIG_KMEMTRACE is not set |
| 1619 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1620 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1571 | # CONFIG_SAMPLES is not set | 1621 | # CONFIG_SAMPLES is not set |
| 1572 | CONFIG_HAVE_ARCH_KGDB=y | 1622 | CONFIG_HAVE_ARCH_KGDB=y |
| 1573 | # CONFIG_KGDB is not set | 1623 | # CONFIG_KGDB is not set |
| 1574 | CONFIG_PRINT_STACK_DEPTH=64 | 1624 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1575 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1625 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1576 | # CONFIG_DEBUG_STACK_USAGE is not set | 1626 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1577 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1578 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1627 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1579 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1628 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1580 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1629 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1605,10 +1654,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1605 | CONFIG_CRYPTO_HASH=y | 1654 | CONFIG_CRYPTO_HASH=y |
| 1606 | CONFIG_CRYPTO_HASH2=y | 1655 | CONFIG_CRYPTO_HASH2=y |
| 1607 | CONFIG_CRYPTO_RNG2=y | 1656 | CONFIG_CRYPTO_RNG2=y |
| 1657 | CONFIG_CRYPTO_PCOMP=y | ||
| 1608 | CONFIG_CRYPTO_MANAGER=y | 1658 | CONFIG_CRYPTO_MANAGER=y |
| 1609 | CONFIG_CRYPTO_MANAGER2=y | 1659 | CONFIG_CRYPTO_MANAGER2=y |
| 1610 | # CONFIG_CRYPTO_GF128MUL is not set | 1660 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1611 | # CONFIG_CRYPTO_NULL is not set | 1661 | # CONFIG_CRYPTO_NULL is not set |
| 1662 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1612 | # CONFIG_CRYPTO_CRYPTD is not set | 1663 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1613 | # CONFIG_CRYPTO_AUTHENC is not set | 1664 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1614 | # CONFIG_CRYPTO_TEST is not set | 1665 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1677,6 +1728,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1677 | # Compression | 1728 | # Compression |
| 1678 | # | 1729 | # |
| 1679 | # CONFIG_CRYPTO_DEFLATE is not set | 1730 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1731 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1680 | # CONFIG_CRYPTO_LZO is not set | 1732 | # CONFIG_CRYPTO_LZO is not set |
| 1681 | 1733 | ||
| 1682 | # | 1734 | # |
diff --git a/arch/powerpc/configs/83xx/mpc832x_mds_defconfig b/arch/powerpc/configs/83xx/mpc832x_mds_defconfig index fb17de53cc02..8c8f660b4fc7 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:50 2009 | 4 | # Wed May 13 17:22:07 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -56,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 87 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 89 | CONFIG_GROUP_SCHED=y |
| @@ -87,19 +98,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | # CONFIG_KALLSYMS is not set | 109 | # CONFIG_KALLSYMS is not set |
| 110 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 95 | CONFIG_HOTPLUG=y | 111 | CONFIG_HOTPLUG=y |
| 96 | CONFIG_PRINTK=y | 112 | CONFIG_PRINTK=y |
| 97 | CONFIG_BUG=y | 113 | CONFIG_BUG=y |
| 98 | CONFIG_ELF_CORE=y | 114 | CONFIG_ELF_CORE=y |
| 99 | CONFIG_COMPAT_BRK=y | ||
| 100 | CONFIG_BASE_FULL=y | 115 | CONFIG_BASE_FULL=y |
| 101 | CONFIG_FUTEX=y | 116 | CONFIG_FUTEX=y |
| 102 | CONFIG_ANON_INODES=y | ||
| 103 | # CONFIG_EPOLL is not set | 117 | # CONFIG_EPOLL is not set |
| 104 | CONFIG_SIGNALFD=y | 118 | CONFIG_SIGNALFD=y |
| 105 | CONFIG_TIMERFD=y | 119 | CONFIG_TIMERFD=y |
| @@ -109,16 +123,19 @@ CONFIG_AIO=y | |||
| 109 | CONFIG_VM_EVENT_COUNTERS=y | 123 | CONFIG_VM_EVENT_COUNTERS=y |
| 110 | CONFIG_PCI_QUIRKS=y | 124 | CONFIG_PCI_QUIRKS=y |
| 111 | CONFIG_SLUB_DEBUG=y | 125 | CONFIG_SLUB_DEBUG=y |
| 126 | CONFIG_COMPAT_BRK=y | ||
| 112 | # CONFIG_SLAB is not set | 127 | # CONFIG_SLAB is not set |
| 113 | CONFIG_SLUB=y | 128 | CONFIG_SLUB=y |
| 114 | # CONFIG_SLOB is not set | 129 | # CONFIG_SLOB is not set |
| 115 | # CONFIG_PROFILING is not set | 130 | # CONFIG_PROFILING is not set |
| 131 | # CONFIG_MARKERS is not set | ||
| 116 | CONFIG_HAVE_OPROFILE=y | 132 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 133 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | 134 | CONFIG_HAVE_IOREMAP_PROT=y |
| 119 | CONFIG_HAVE_KPROBES=y | 135 | CONFIG_HAVE_KPROBES=y |
| 120 | CONFIG_HAVE_KRETPROBES=y | 136 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 137 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 138 | # CONFIG_SLOW_WORK is not set | ||
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 139 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 123 | CONFIG_SLABINFO=y | 140 | CONFIG_SLABINFO=y |
| 124 | CONFIG_RT_MUTEXES=y | 141 | CONFIG_RT_MUTEXES=y |
| @@ -131,7 +148,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 148 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 132 | CONFIG_BLOCK=y | 149 | CONFIG_BLOCK=y |
| 133 | # CONFIG_LBD is not set | 150 | # CONFIG_LBD is not set |
| 134 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 135 | # CONFIG_BLK_DEV_BSG is not set | 151 | # CONFIG_BLK_DEV_BSG is not set |
| 136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 152 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 137 | 153 | ||
| @@ -147,18 +163,11 @@ CONFIG_DEFAULT_AS=y | |||
| 147 | # CONFIG_DEFAULT_CFQ is not set | 163 | # CONFIG_DEFAULT_CFQ is not set |
| 148 | # CONFIG_DEFAULT_NOOP is not set | 164 | # CONFIG_DEFAULT_NOOP is not set |
| 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 165 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 150 | CONFIG_CLASSIC_RCU=y | ||
| 151 | # CONFIG_TREE_RCU is not set | ||
| 152 | # CONFIG_PREEMPT_RCU is not set | ||
| 153 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 155 | # CONFIG_FREEZER is not set | 166 | # CONFIG_FREEZER is not set |
| 156 | 167 | ||
| 157 | # | 168 | # |
| 158 | # Platform support | 169 | # Platform support |
| 159 | # | 170 | # |
| 160 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 161 | CONFIG_CLASSIC32=y | ||
| 162 | # CONFIG_PPC_CHRP is not set | 171 | # CONFIG_PPC_CHRP is not set |
| 163 | # CONFIG_MPC5121_ADS is not set | 172 | # CONFIG_MPC5121_ADS is not set |
| 164 | # CONFIG_MPC5121_GENERIC is not set | 173 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -183,6 +192,8 @@ CONFIG_MPC832x_MDS=y | |||
| 183 | CONFIG_PPC_MPC832x=y | 192 | CONFIG_PPC_MPC832x=y |
| 184 | # CONFIG_PPC_86xx is not set | 193 | # CONFIG_PPC_86xx is not set |
| 185 | # CONFIG_EMBEDDED6xx is not set | 194 | # CONFIG_EMBEDDED6xx is not set |
| 195 | # CONFIG_AMIGAONE is not set | ||
| 196 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 186 | CONFIG_IPIC=y | 197 | CONFIG_IPIC=y |
| 187 | # CONFIG_MPIC is not set | 198 | # CONFIG_MPIC is not set |
| 188 | # CONFIG_MPIC_WEIRD is not set | 199 | # CONFIG_MPIC_WEIRD is not set |
| @@ -245,9 +256,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 245 | CONFIG_BOUNCE=y | 256 | CONFIG_BOUNCE=y |
| 246 | CONFIG_VIRT_TO_BUS=y | 257 | CONFIG_VIRT_TO_BUS=y |
| 247 | CONFIG_UNEVICTABLE_LRU=y | 258 | CONFIG_UNEVICTABLE_LRU=y |
| 259 | CONFIG_HAVE_MLOCK=y | ||
| 260 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 248 | CONFIG_PPC_4K_PAGES=y | 261 | CONFIG_PPC_4K_PAGES=y |
| 249 | # CONFIG_PPC_16K_PAGES is not set | 262 | # CONFIG_PPC_16K_PAGES is not set |
| 250 | # CONFIG_PPC_64K_PAGES is not set | 263 | # CONFIG_PPC_64K_PAGES is not set |
| 264 | # CONFIG_PPC_256K_PAGES is not set | ||
| 251 | CONFIG_FORCE_MAX_ZONEORDER=11 | 265 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 252 | CONFIG_PROC_DEVICETREE=y | 266 | CONFIG_PROC_DEVICETREE=y |
| 253 | # CONFIG_CMDLINE_BOOL is not set | 267 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -273,6 +287,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 273 | # CONFIG_PCI_MSI is not set | 287 | # CONFIG_PCI_MSI is not set |
| 274 | # CONFIG_PCI_LEGACY is not set | 288 | # CONFIG_PCI_LEGACY is not set |
| 275 | # CONFIG_PCI_STUB is not set | 289 | # CONFIG_PCI_STUB is not set |
| 290 | # CONFIG_PCI_IOV is not set | ||
| 276 | # CONFIG_PCCARD is not set | 291 | # CONFIG_PCCARD is not set |
| 277 | # CONFIG_HOTPLUG_PCI is not set | 292 | # CONFIG_HOTPLUG_PCI is not set |
| 278 | # CONFIG_HAS_RAPIDIO is not set | 293 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -295,7 +310,6 @@ CONFIG_NET=y | |||
| 295 | # | 310 | # |
| 296 | # Networking options | 311 | # Networking options |
| 297 | # | 312 | # |
| 298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 299 | CONFIG_PACKET=y | 313 | CONFIG_PACKET=y |
| 300 | # CONFIG_PACKET_MMAP is not set | 314 | # CONFIG_PACKET_MMAP is not set |
| 301 | CONFIG_UNIX=y | 315 | CONFIG_UNIX=y |
| @@ -351,6 +365,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 351 | # CONFIG_LAPB is not set | 365 | # CONFIG_LAPB is not set |
| 352 | # CONFIG_ECONET is not set | 366 | # CONFIG_ECONET is not set |
| 353 | # CONFIG_WAN_ROUTER is not set | 367 | # CONFIG_WAN_ROUTER is not set |
| 368 | # CONFIG_PHONET is not set | ||
| 354 | # CONFIG_NET_SCHED is not set | 369 | # CONFIG_NET_SCHED is not set |
| 355 | # CONFIG_DCB is not set | 370 | # CONFIG_DCB is not set |
| 356 | 371 | ||
| @@ -363,7 +378,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 363 | # CONFIG_IRDA is not set | 378 | # CONFIG_IRDA is not set |
| 364 | # CONFIG_BT is not set | 379 | # CONFIG_BT is not set |
| 365 | # CONFIG_AF_RXRPC is not set | 380 | # CONFIG_AF_RXRPC is not set |
| 366 | # CONFIG_PHONET is not set | ||
| 367 | CONFIG_WIRELESS=y | 381 | CONFIG_WIRELESS=y |
| 368 | # CONFIG_CFG80211 is not set | 382 | # CONFIG_CFG80211 is not set |
| 369 | CONFIG_WIRELESS_OLD_REGULATORY=y | 383 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -411,13 +425,20 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 411 | # CONFIG_BLK_DEV_HD is not set | 425 | # CONFIG_BLK_DEV_HD is not set |
| 412 | CONFIG_MISC_DEVICES=y | 426 | CONFIG_MISC_DEVICES=y |
| 413 | # CONFIG_PHANTOM is not set | 427 | # CONFIG_PHANTOM is not set |
| 414 | # CONFIG_EEPROM_93CX6 is not set | ||
| 415 | # CONFIG_SGI_IOC4 is not set | 428 | # CONFIG_SGI_IOC4 is not set |
| 416 | # CONFIG_TIFM_CORE is not set | 429 | # CONFIG_TIFM_CORE is not set |
| 417 | # CONFIG_ICS932S401 is not set | 430 | # CONFIG_ICS932S401 is not set |
| 418 | # CONFIG_ENCLOSURE_SERVICES is not set | 431 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 419 | # CONFIG_HP_ILO is not set | 432 | # CONFIG_HP_ILO is not set |
| 433 | # CONFIG_ISL29003 is not set | ||
| 420 | # CONFIG_C2PORT is not set | 434 | # CONFIG_C2PORT is not set |
| 435 | |||
| 436 | # | ||
| 437 | # EEPROM support | ||
| 438 | # | ||
| 439 | # CONFIG_EEPROM_AT24 is not set | ||
| 440 | # CONFIG_EEPROM_LEGACY is not set | ||
| 441 | # CONFIG_EEPROM_93CX6 is not set | ||
| 421 | CONFIG_HAVE_IDE=y | 442 | CONFIG_HAVE_IDE=y |
| 422 | # CONFIG_IDE is not set | 443 | # CONFIG_IDE is not set |
| 423 | 444 | ||
| @@ -475,9 +496,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 475 | # CONFIG_MEGARAID_NEWGEN is not set | 496 | # CONFIG_MEGARAID_NEWGEN is not set |
| 476 | # CONFIG_MEGARAID_LEGACY is not set | 497 | # CONFIG_MEGARAID_LEGACY is not set |
| 477 | # CONFIG_MEGARAID_SAS is not set | 498 | # CONFIG_MEGARAID_SAS is not set |
| 499 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 478 | # CONFIG_SCSI_HPTIOP is not set | 500 | # CONFIG_SCSI_HPTIOP is not set |
| 479 | # CONFIG_SCSI_BUSLOGIC is not set | 501 | # CONFIG_SCSI_BUSLOGIC is not set |
| 480 | # CONFIG_LIBFC is not set | 502 | # CONFIG_LIBFC is not set |
| 503 | # CONFIG_LIBFCOE is not set | ||
| 481 | # CONFIG_FCOE is not set | 504 | # CONFIG_FCOE is not set |
| 482 | # CONFIG_SCSI_DMX3191D is not set | 505 | # CONFIG_SCSI_DMX3191D is not set |
| 483 | # CONFIG_SCSI_EATA is not set | 506 | # CONFIG_SCSI_EATA is not set |
| @@ -499,6 +522,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 499 | # CONFIG_SCSI_DEBUG is not set | 522 | # CONFIG_SCSI_DEBUG is not set |
| 500 | # CONFIG_SCSI_SRP is not set | 523 | # CONFIG_SCSI_SRP is not set |
| 501 | # CONFIG_SCSI_DH is not set | 524 | # CONFIG_SCSI_DH is not set |
| 525 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 502 | # CONFIG_ATA is not set | 526 | # CONFIG_ATA is not set |
| 503 | # CONFIG_MD is not set | 527 | # CONFIG_MD is not set |
| 504 | # CONFIG_FUSION is not set | 528 | # CONFIG_FUSION is not set |
| @@ -515,6 +539,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 515 | # CONFIG_I2O is not set | 539 | # CONFIG_I2O is not set |
| 516 | # CONFIG_MACINTOSH_DRIVERS is not set | 540 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 517 | CONFIG_NETDEVICES=y | 541 | CONFIG_NETDEVICES=y |
| 542 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 518 | # CONFIG_DUMMY is not set | 543 | # CONFIG_DUMMY is not set |
| 519 | # CONFIG_BONDING is not set | 544 | # CONFIG_BONDING is not set |
| 520 | # CONFIG_MACVLAN is not set | 545 | # CONFIG_MACVLAN is not set |
| @@ -548,6 +573,8 @@ CONFIG_MII=y | |||
| 548 | # CONFIG_SUNGEM is not set | 573 | # CONFIG_SUNGEM is not set |
| 549 | # CONFIG_CASSINI is not set | 574 | # CONFIG_CASSINI is not set |
| 550 | # CONFIG_NET_VENDOR_3COM is not set | 575 | # CONFIG_NET_VENDOR_3COM is not set |
| 576 | # CONFIG_ETHOC is not set | ||
| 577 | # CONFIG_DNET is not set | ||
| 551 | # CONFIG_NET_TULIP is not set | 578 | # CONFIG_NET_TULIP is not set |
| 552 | # CONFIG_HP100 is not set | 579 | # CONFIG_HP100 is not set |
| 553 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 580 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -567,6 +594,7 @@ CONFIG_NETDEV_1000=y | |||
| 567 | # CONFIG_E1000E is not set | 594 | # CONFIG_E1000E is not set |
| 568 | # CONFIG_IP1000 is not set | 595 | # CONFIG_IP1000 is not set |
| 569 | # CONFIG_IGB is not set | 596 | # CONFIG_IGB is not set |
| 597 | # CONFIG_IGBVF is not set | ||
| 570 | # CONFIG_NS83820 is not set | 598 | # CONFIG_NS83820 is not set |
| 571 | # CONFIG_HAMACHI is not set | 599 | # CONFIG_HAMACHI is not set |
| 572 | # CONFIG_YELLOWFIN is not set | 600 | # CONFIG_YELLOWFIN is not set |
| @@ -577,14 +605,15 @@ CONFIG_NETDEV_1000=y | |||
| 577 | # CONFIG_VIA_VELOCITY is not set | 605 | # CONFIG_VIA_VELOCITY is not set |
| 578 | # CONFIG_TIGON3 is not set | 606 | # CONFIG_TIGON3 is not set |
| 579 | # CONFIG_BNX2 is not set | 607 | # CONFIG_BNX2 is not set |
| 608 | CONFIG_FSL_PQ_MDIO=y | ||
| 580 | # CONFIG_GIANFAR is not set | 609 | # CONFIG_GIANFAR is not set |
| 581 | CONFIG_UCC_GETH=y | 610 | CONFIG_UCC_GETH=y |
| 582 | # CONFIG_UGETH_MAGIC_PACKET is not set | 611 | # CONFIG_UGETH_MAGIC_PACKET is not set |
| 583 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 612 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
| 584 | # CONFIG_MV643XX_ETH is not set | ||
| 585 | # CONFIG_QLA3XXX is not set | 613 | # CONFIG_QLA3XXX is not set |
| 586 | # CONFIG_ATL1 is not set | 614 | # CONFIG_ATL1 is not set |
| 587 | # CONFIG_ATL1E is not set | 615 | # CONFIG_ATL1E is not set |
| 616 | # CONFIG_ATL1C is not set | ||
| 588 | # CONFIG_JME is not set | 617 | # CONFIG_JME is not set |
| 589 | CONFIG_NETDEV_10000=y | 618 | CONFIG_NETDEV_10000=y |
| 590 | # CONFIG_CHELSIO_T1 is not set | 619 | # CONFIG_CHELSIO_T1 is not set |
| @@ -594,6 +623,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 594 | # CONFIG_IXGBE is not set | 623 | # CONFIG_IXGBE is not set |
| 595 | # CONFIG_IXGB is not set | 624 | # CONFIG_IXGB is not set |
| 596 | # CONFIG_S2IO is not set | 625 | # CONFIG_S2IO is not set |
| 626 | # CONFIG_VXGE is not set | ||
| 597 | # CONFIG_MYRI10GE is not set | 627 | # CONFIG_MYRI10GE is not set |
| 598 | # CONFIG_NETXEN_NIC is not set | 628 | # CONFIG_NETXEN_NIC is not set |
| 599 | # CONFIG_NIU is not set | 629 | # CONFIG_NIU is not set |
| @@ -603,6 +633,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 603 | # CONFIG_BNX2X is not set | 633 | # CONFIG_BNX2X is not set |
| 604 | # CONFIG_QLGE is not set | 634 | # CONFIG_QLGE is not set |
| 605 | # CONFIG_SFC is not set | 635 | # CONFIG_SFC is not set |
| 636 | # CONFIG_BE2NET is not set | ||
| 606 | # CONFIG_TR is not set | 637 | # CONFIG_TR is not set |
| 607 | 638 | ||
| 608 | # | 639 | # |
| @@ -610,7 +641,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 610 | # | 641 | # |
| 611 | # CONFIG_WLAN_PRE80211 is not set | 642 | # CONFIG_WLAN_PRE80211 is not set |
| 612 | # CONFIG_WLAN_80211 is not set | 643 | # CONFIG_WLAN_80211 is not set |
| 613 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 614 | 644 | ||
| 615 | # | 645 | # |
| 616 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 646 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -692,6 +722,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 692 | # CONFIG_HVC_UDBG is not set | 722 | # CONFIG_HVC_UDBG is not set |
| 693 | # CONFIG_IPMI_HANDLER is not set | 723 | # CONFIG_IPMI_HANDLER is not set |
| 694 | CONFIG_HW_RANDOM=y | 724 | CONFIG_HW_RANDOM=y |
| 725 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 695 | # CONFIG_NVRAM is not set | 726 | # CONFIG_NVRAM is not set |
| 696 | # CONFIG_R3964 is not set | 727 | # CONFIG_R3964 is not set |
| 697 | # CONFIG_APPLICOM is not set | 728 | # CONFIG_APPLICOM is not set |
| @@ -753,12 +784,9 @@ CONFIG_I2C_MPC=y | |||
| 753 | # Miscellaneous I2C Chip support | 784 | # Miscellaneous I2C Chip support |
| 754 | # | 785 | # |
| 755 | # CONFIG_DS1682 is not set | 786 | # CONFIG_DS1682 is not set |
| 756 | # CONFIG_EEPROM_AT24 is not set | ||
| 757 | # CONFIG_EEPROM_LEGACY is not set | ||
| 758 | # CONFIG_SENSORS_PCF8574 is not set | 787 | # CONFIG_SENSORS_PCF8574 is not set |
| 759 | # CONFIG_PCF8575 is not set | 788 | # CONFIG_PCF8575 is not set |
| 760 | # CONFIG_SENSORS_PCA9539 is not set | 789 | # CONFIG_SENSORS_PCA9539 is not set |
| 761 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 762 | # CONFIG_SENSORS_MAX6875 is not set | 790 | # CONFIG_SENSORS_MAX6875 is not set |
| 763 | # CONFIG_SENSORS_TSL2550 is not set | 791 | # CONFIG_SENSORS_TSL2550 is not set |
| 764 | # CONFIG_I2C_DEBUG_CORE is not set | 792 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -790,6 +818,7 @@ CONFIG_HWMON=y | |||
| 790 | # CONFIG_SENSORS_F71805F is not set | 818 | # CONFIG_SENSORS_F71805F is not set |
| 791 | # CONFIG_SENSORS_F71882FG is not set | 819 | # CONFIG_SENSORS_F71882FG is not set |
| 792 | # CONFIG_SENSORS_F75375S is not set | 820 | # CONFIG_SENSORS_F75375S is not set |
| 821 | # CONFIG_SENSORS_G760A is not set | ||
| 793 | # CONFIG_SENSORS_GL518SM is not set | 822 | # CONFIG_SENSORS_GL518SM is not set |
| 794 | # CONFIG_SENSORS_GL520SM is not set | 823 | # CONFIG_SENSORS_GL520SM is not set |
| 795 | # CONFIG_SENSORS_IT87 is not set | 824 | # CONFIG_SENSORS_IT87 is not set |
| @@ -804,11 +833,14 @@ CONFIG_HWMON=y | |||
| 804 | # CONFIG_SENSORS_LM90 is not set | 833 | # CONFIG_SENSORS_LM90 is not set |
| 805 | # CONFIG_SENSORS_LM92 is not set | 834 | # CONFIG_SENSORS_LM92 is not set |
| 806 | # CONFIG_SENSORS_LM93 is not set | 835 | # CONFIG_SENSORS_LM93 is not set |
| 836 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 807 | # CONFIG_SENSORS_LTC4245 is not set | 837 | # CONFIG_SENSORS_LTC4245 is not set |
| 838 | # CONFIG_SENSORS_LM95241 is not set | ||
| 808 | # CONFIG_SENSORS_MAX1619 is not set | 839 | # CONFIG_SENSORS_MAX1619 is not set |
| 809 | # CONFIG_SENSORS_MAX6650 is not set | 840 | # CONFIG_SENSORS_MAX6650 is not set |
| 810 | # CONFIG_SENSORS_PC87360 is not set | 841 | # CONFIG_SENSORS_PC87360 is not set |
| 811 | # CONFIG_SENSORS_PC87427 is not set | 842 | # CONFIG_SENSORS_PC87427 is not set |
| 843 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 812 | # CONFIG_SENSORS_SIS5595 is not set | 844 | # CONFIG_SENSORS_SIS5595 is not set |
| 813 | # CONFIG_SENSORS_DME1737 is not set | 845 | # CONFIG_SENSORS_DME1737 is not set |
| 814 | # CONFIG_SENSORS_SMSC47M1 is not set | 846 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -906,7 +938,6 @@ CONFIG_HID=y | |||
| 906 | # | 938 | # |
| 907 | # Special HID drivers | 939 | # Special HID drivers |
| 908 | # | 940 | # |
| 909 | CONFIG_HID_COMPAT=y | ||
| 910 | CONFIG_USB_SUPPORT=y | 941 | CONFIG_USB_SUPPORT=y |
| 911 | CONFIG_USB_ARCH_HAS_HCD=y | 942 | CONFIG_USB_ARCH_HAS_HCD=y |
| 912 | CONFIG_USB_ARCH_HAS_OHCI=y | 943 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -920,7 +951,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 920 | # | 951 | # |
| 921 | 952 | ||
| 922 | # | 953 | # |
| 923 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 954 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 924 | # | 955 | # |
| 925 | # CONFIG_USB_GADGET is not set | 956 | # CONFIG_USB_GADGET is not set |
| 926 | 957 | ||
| @@ -988,8 +1019,9 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 988 | # | 1019 | # |
| 989 | # on-CPU RTC drivers | 1020 | # on-CPU RTC drivers |
| 990 | # | 1021 | # |
| 991 | # CONFIG_RTC_DRV_PPC is not set | 1022 | # CONFIG_RTC_DRV_GENERIC is not set |
| 992 | # CONFIG_DMADEVICES is not set | 1023 | # CONFIG_DMADEVICES is not set |
| 1024 | # CONFIG_AUXDISPLAY is not set | ||
| 993 | # CONFIG_UIO is not set | 1025 | # CONFIG_UIO is not set |
| 994 | # CONFIG_STAGING is not set | 1026 | # CONFIG_STAGING is not set |
| 995 | 1027 | ||
| @@ -1000,6 +1032,7 @@ CONFIG_EXT2_FS=y | |||
| 1000 | # CONFIG_EXT2_FS_XATTR is not set | 1032 | # CONFIG_EXT2_FS_XATTR is not set |
| 1001 | # CONFIG_EXT2_FS_XIP is not set | 1033 | # CONFIG_EXT2_FS_XIP is not set |
| 1002 | CONFIG_EXT3_FS=y | 1034 | CONFIG_EXT3_FS=y |
| 1035 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1003 | CONFIG_EXT3_FS_XATTR=y | 1036 | CONFIG_EXT3_FS_XATTR=y |
| 1004 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1037 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1005 | # CONFIG_EXT3_FS_SECURITY is not set | 1038 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1022,6 +1055,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1022 | # CONFIG_FUSE_FS is not set | 1055 | # CONFIG_FUSE_FS is not set |
| 1023 | 1056 | ||
| 1024 | # | 1057 | # |
| 1058 | # Caches | ||
| 1059 | # | ||
| 1060 | # CONFIG_FSCACHE is not set | ||
| 1061 | |||
| 1062 | # | ||
| 1025 | # CD-ROM/DVD Filesystems | 1063 | # CD-ROM/DVD Filesystems |
| 1026 | # | 1064 | # |
| 1027 | # CONFIG_ISO9660_FS is not set | 1065 | # CONFIG_ISO9660_FS is not set |
| @@ -1064,6 +1102,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1064 | # CONFIG_ROMFS_FS is not set | 1102 | # CONFIG_ROMFS_FS is not set |
| 1065 | # CONFIG_SYSV_FS is not set | 1103 | # CONFIG_SYSV_FS is not set |
| 1066 | # CONFIG_UFS_FS is not set | 1104 | # CONFIG_UFS_FS is not set |
| 1105 | # CONFIG_NILFS2_FS is not set | ||
| 1067 | CONFIG_NETWORK_FILESYSTEMS=y | 1106 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1068 | CONFIG_NFS_FS=y | 1107 | CONFIG_NFS_FS=y |
| 1069 | CONFIG_NFS_V3=y | 1108 | CONFIG_NFS_V3=y |
| @@ -1076,7 +1115,6 @@ CONFIG_LOCKD_V4=y | |||
| 1076 | CONFIG_NFS_COMMON=y | 1115 | CONFIG_NFS_COMMON=y |
| 1077 | CONFIG_SUNRPC=y | 1116 | CONFIG_SUNRPC=y |
| 1078 | CONFIG_SUNRPC_GSS=y | 1117 | CONFIG_SUNRPC_GSS=y |
| 1079 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1080 | CONFIG_RPCSEC_GSS_KRB5=y | 1118 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1081 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1119 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1082 | # CONFIG_SMB_FS is not set | 1120 | # CONFIG_SMB_FS is not set |
| @@ -1106,6 +1144,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1106 | # CONFIG_DLM is not set | 1144 | # CONFIG_DLM is not set |
| 1107 | CONFIG_UCC_FAST=y | 1145 | CONFIG_UCC_FAST=y |
| 1108 | CONFIG_UCC=y | 1146 | CONFIG_UCC=y |
| 1147 | # CONFIG_BINARY_PRINTF is not set | ||
| 1109 | 1148 | ||
| 1110 | # | 1149 | # |
| 1111 | # Library routines | 1150 | # Library routines |
| @@ -1119,11 +1158,13 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 1119 | CONFIG_CRC32=y | 1158 | CONFIG_CRC32=y |
| 1120 | # CONFIG_CRC7 is not set | 1159 | # CONFIG_CRC7 is not set |
| 1121 | # CONFIG_LIBCRC32C is not set | 1160 | # CONFIG_LIBCRC32C is not set |
| 1122 | CONFIG_PLIST=y | 1161 | CONFIG_ZLIB_INFLATE=y |
| 1162 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1123 | CONFIG_HAS_IOMEM=y | 1163 | CONFIG_HAS_IOMEM=y |
| 1124 | CONFIG_HAS_IOPORT=y | 1164 | CONFIG_HAS_IOPORT=y |
| 1125 | CONFIG_HAS_DMA=y | 1165 | CONFIG_HAS_DMA=y |
| 1126 | CONFIG_HAVE_LMB=y | 1166 | CONFIG_HAVE_LMB=y |
| 1167 | CONFIG_NLATTR=y | ||
| 1127 | 1168 | ||
| 1128 | # | 1169 | # |
| 1129 | # Kernel hacking | 1170 | # Kernel hacking |
| @@ -1145,13 +1186,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1145 | # CONFIG_LATENCYTOP is not set | 1186 | # CONFIG_LATENCYTOP is not set |
| 1146 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1187 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1147 | CONFIG_HAVE_FUNCTION_TRACER=y | 1188 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1189 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1148 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1190 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1149 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1191 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1192 | CONFIG_TRACING_SUPPORT=y | ||
| 1150 | 1193 | ||
| 1151 | # | 1194 | # |
| 1152 | # Tracers | 1195 | # Tracers |
| 1153 | # | 1196 | # |
| 1154 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1197 | # CONFIG_FUNCTION_TRACER is not set |
| 1198 | # CONFIG_SCHED_TRACER is not set | ||
| 1199 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1200 | # CONFIG_EVENT_TRACER is not set | ||
| 1201 | # CONFIG_BOOT_TRACER is not set | ||
| 1202 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1203 | # CONFIG_STACK_TRACER is not set | ||
| 1204 | # CONFIG_KMEMTRACE is not set | ||
| 1205 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1206 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1155 | # CONFIG_SAMPLES is not set | 1207 | # CONFIG_SAMPLES is not set |
| 1156 | CONFIG_HAVE_ARCH_KGDB=y | 1208 | CONFIG_HAVE_ARCH_KGDB=y |
| 1157 | CONFIG_PRINT_STACK_DEPTH=64 | 1209 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1180,10 +1232,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1180 | CONFIG_CRYPTO_HASH=y | 1232 | CONFIG_CRYPTO_HASH=y |
| 1181 | CONFIG_CRYPTO_HASH2=y | 1233 | CONFIG_CRYPTO_HASH2=y |
| 1182 | CONFIG_CRYPTO_RNG2=y | 1234 | CONFIG_CRYPTO_RNG2=y |
| 1235 | CONFIG_CRYPTO_PCOMP=y | ||
| 1183 | CONFIG_CRYPTO_MANAGER=y | 1236 | CONFIG_CRYPTO_MANAGER=y |
| 1184 | CONFIG_CRYPTO_MANAGER2=y | 1237 | CONFIG_CRYPTO_MANAGER2=y |
| 1185 | # CONFIG_CRYPTO_GF128MUL is not set | 1238 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1186 | # CONFIG_CRYPTO_NULL is not set | 1239 | # CONFIG_CRYPTO_NULL is not set |
| 1240 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1187 | # CONFIG_CRYPTO_CRYPTD is not set | 1241 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1188 | # CONFIG_CRYPTO_AUTHENC is not set | 1242 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1189 | # CONFIG_CRYPTO_TEST is not set | 1243 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1252,6 +1306,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1252 | # Compression | 1306 | # Compression |
| 1253 | # | 1307 | # |
| 1254 | # CONFIG_CRYPTO_DEFLATE is not set | 1308 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1309 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1255 | # CONFIG_CRYPTO_LZO is not set | 1310 | # CONFIG_CRYPTO_LZO is not set |
| 1256 | 1311 | ||
| 1257 | # | 1312 | # |
diff --git a/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig b/arch/powerpc/configs/83xx/mpc832x_rdb_defconfig index a012ce235203..227dbba76795 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:52 2009 | 4 | # Wed May 13 17:22:08 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -56,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 87 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 89 | CONFIG_GROUP_SCHED=y |
| @@ -87,19 +98,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | # CONFIG_KALLSYMS is not set | 109 | # CONFIG_KALLSYMS is not set |
| 110 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 95 | CONFIG_HOTPLUG=y | 111 | CONFIG_HOTPLUG=y |
| 96 | CONFIG_PRINTK=y | 112 | CONFIG_PRINTK=y |
| 97 | CONFIG_BUG=y | 113 | CONFIG_BUG=y |
| 98 | CONFIG_ELF_CORE=y | 114 | CONFIG_ELF_CORE=y |
| 99 | CONFIG_COMPAT_BRK=y | ||
| 100 | CONFIG_BASE_FULL=y | 115 | CONFIG_BASE_FULL=y |
| 101 | CONFIG_FUTEX=y | 116 | CONFIG_FUTEX=y |
| 102 | CONFIG_ANON_INODES=y | ||
| 103 | # CONFIG_EPOLL is not set | 117 | # CONFIG_EPOLL is not set |
| 104 | CONFIG_SIGNALFD=y | 118 | CONFIG_SIGNALFD=y |
| 105 | CONFIG_TIMERFD=y | 119 | CONFIG_TIMERFD=y |
| @@ -109,16 +123,19 @@ CONFIG_AIO=y | |||
| 109 | CONFIG_VM_EVENT_COUNTERS=y | 123 | CONFIG_VM_EVENT_COUNTERS=y |
| 110 | CONFIG_PCI_QUIRKS=y | 124 | CONFIG_PCI_QUIRKS=y |
| 111 | CONFIG_SLUB_DEBUG=y | 125 | CONFIG_SLUB_DEBUG=y |
| 126 | CONFIG_COMPAT_BRK=y | ||
| 112 | # CONFIG_SLAB is not set | 127 | # CONFIG_SLAB is not set |
| 113 | CONFIG_SLUB=y | 128 | CONFIG_SLUB=y |
| 114 | # CONFIG_SLOB is not set | 129 | # CONFIG_SLOB is not set |
| 115 | # CONFIG_PROFILING is not set | 130 | # CONFIG_PROFILING is not set |
| 131 | # CONFIG_MARKERS is not set | ||
| 116 | CONFIG_HAVE_OPROFILE=y | 132 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 133 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | 134 | CONFIG_HAVE_IOREMAP_PROT=y |
| 119 | CONFIG_HAVE_KPROBES=y | 135 | CONFIG_HAVE_KPROBES=y |
| 120 | CONFIG_HAVE_KRETPROBES=y | 136 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 137 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 138 | # CONFIG_SLOW_WORK is not set | ||
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 139 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 123 | CONFIG_SLABINFO=y | 140 | CONFIG_SLABINFO=y |
| 124 | CONFIG_RT_MUTEXES=y | 141 | CONFIG_RT_MUTEXES=y |
| @@ -131,7 +148,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 148 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 132 | CONFIG_BLOCK=y | 149 | CONFIG_BLOCK=y |
| 133 | # CONFIG_LBD is not set | 150 | # CONFIG_LBD is not set |
| 134 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 135 | # CONFIG_BLK_DEV_BSG is not set | 151 | # CONFIG_BLK_DEV_BSG is not set |
| 136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 152 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 137 | 153 | ||
| @@ -147,18 +163,11 @@ CONFIG_DEFAULT_AS=y | |||
| 147 | # CONFIG_DEFAULT_CFQ is not set | 163 | # CONFIG_DEFAULT_CFQ is not set |
| 148 | # CONFIG_DEFAULT_NOOP is not set | 164 | # CONFIG_DEFAULT_NOOP is not set |
| 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 165 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 150 | CONFIG_CLASSIC_RCU=y | ||
| 151 | # CONFIG_TREE_RCU is not set | ||
| 152 | # CONFIG_PREEMPT_RCU is not set | ||
| 153 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 155 | # CONFIG_FREEZER is not set | 166 | # CONFIG_FREEZER is not set |
| 156 | 167 | ||
| 157 | # | 168 | # |
| 158 | # Platform support | 169 | # Platform support |
| 159 | # | 170 | # |
| 160 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 161 | CONFIG_CLASSIC32=y | ||
| 162 | # CONFIG_PPC_CHRP is not set | 171 | # CONFIG_PPC_CHRP is not set |
| 163 | # CONFIG_MPC5121_ADS is not set | 172 | # CONFIG_MPC5121_ADS is not set |
| 164 | # CONFIG_MPC5121_GENERIC is not set | 173 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -183,6 +192,8 @@ CONFIG_MPC832x_RDB=y | |||
| 183 | CONFIG_PPC_MPC832x=y | 192 | CONFIG_PPC_MPC832x=y |
| 184 | # CONFIG_PPC_86xx is not set | 193 | # CONFIG_PPC_86xx is not set |
| 185 | # CONFIG_EMBEDDED6xx is not set | 194 | # CONFIG_EMBEDDED6xx is not set |
| 195 | # CONFIG_AMIGAONE is not set | ||
| 196 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 186 | CONFIG_IPIC=y | 197 | CONFIG_IPIC=y |
| 187 | # CONFIG_MPIC is not set | 198 | # CONFIG_MPIC is not set |
| 188 | # CONFIG_MPIC_WEIRD is not set | 199 | # CONFIG_MPIC_WEIRD is not set |
| @@ -245,9 +256,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 245 | CONFIG_BOUNCE=y | 256 | CONFIG_BOUNCE=y |
| 246 | CONFIG_VIRT_TO_BUS=y | 257 | CONFIG_VIRT_TO_BUS=y |
| 247 | CONFIG_UNEVICTABLE_LRU=y | 258 | CONFIG_UNEVICTABLE_LRU=y |
| 259 | CONFIG_HAVE_MLOCK=y | ||
| 260 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 248 | CONFIG_PPC_4K_PAGES=y | 261 | CONFIG_PPC_4K_PAGES=y |
| 249 | # CONFIG_PPC_16K_PAGES is not set | 262 | # CONFIG_PPC_16K_PAGES is not set |
| 250 | # CONFIG_PPC_64K_PAGES is not set | 263 | # CONFIG_PPC_64K_PAGES is not set |
| 264 | # CONFIG_PPC_256K_PAGES is not set | ||
| 251 | CONFIG_FORCE_MAX_ZONEORDER=11 | 265 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 252 | CONFIG_PROC_DEVICETREE=y | 266 | CONFIG_PROC_DEVICETREE=y |
| 253 | # CONFIG_CMDLINE_BOOL is not set | 267 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -273,6 +287,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 273 | # CONFIG_PCI_MSI is not set | 287 | # CONFIG_PCI_MSI is not set |
| 274 | # CONFIG_PCI_LEGACY is not set | 288 | # CONFIG_PCI_LEGACY is not set |
| 275 | # CONFIG_PCI_STUB is not set | 289 | # CONFIG_PCI_STUB is not set |
| 290 | # CONFIG_PCI_IOV is not set | ||
| 276 | # CONFIG_PCCARD is not set | 291 | # CONFIG_PCCARD is not set |
| 277 | # CONFIG_HOTPLUG_PCI is not set | 292 | # CONFIG_HOTPLUG_PCI is not set |
| 278 | # CONFIG_HAS_RAPIDIO is not set | 293 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -295,7 +310,6 @@ CONFIG_NET=y | |||
| 295 | # | 310 | # |
| 296 | # Networking options | 311 | # Networking options |
| 297 | # | 312 | # |
| 298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 299 | CONFIG_PACKET=y | 313 | CONFIG_PACKET=y |
| 300 | # CONFIG_PACKET_MMAP is not set | 314 | # CONFIG_PACKET_MMAP is not set |
| 301 | CONFIG_UNIX=y | 315 | CONFIG_UNIX=y |
| @@ -351,6 +365,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 351 | # CONFIG_LAPB is not set | 365 | # CONFIG_LAPB is not set |
| 352 | # CONFIG_ECONET is not set | 366 | # CONFIG_ECONET is not set |
| 353 | # CONFIG_WAN_ROUTER is not set | 367 | # CONFIG_WAN_ROUTER is not set |
| 368 | # CONFIG_PHONET is not set | ||
| 354 | # CONFIG_NET_SCHED is not set | 369 | # CONFIG_NET_SCHED is not set |
| 355 | # CONFIG_DCB is not set | 370 | # CONFIG_DCB is not set |
| 356 | 371 | ||
| @@ -363,7 +378,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 363 | # CONFIG_IRDA is not set | 378 | # CONFIG_IRDA is not set |
| 364 | # CONFIG_BT is not set | 379 | # CONFIG_BT is not set |
| 365 | # CONFIG_AF_RXRPC is not set | 380 | # CONFIG_AF_RXRPC is not set |
| 366 | # CONFIG_PHONET is not set | ||
| 367 | CONFIG_WIRELESS=y | 381 | CONFIG_WIRELESS=y |
| 368 | # CONFIG_CFG80211 is not set | 382 | # CONFIG_CFG80211 is not set |
| 369 | CONFIG_WIRELESS_OLD_REGULATORY=y | 383 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -413,13 +427,21 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 413 | # CONFIG_BLK_DEV_HD is not set | 427 | # CONFIG_BLK_DEV_HD is not set |
| 414 | CONFIG_MISC_DEVICES=y | 428 | CONFIG_MISC_DEVICES=y |
| 415 | # CONFIG_PHANTOM is not set | 429 | # CONFIG_PHANTOM is not set |
| 416 | # CONFIG_EEPROM_93CX6 is not set | ||
| 417 | # CONFIG_SGI_IOC4 is not set | 430 | # CONFIG_SGI_IOC4 is not set |
| 418 | # CONFIG_TIFM_CORE is not set | 431 | # CONFIG_TIFM_CORE is not set |
| 419 | # CONFIG_ICS932S401 is not set | 432 | # CONFIG_ICS932S401 is not set |
| 420 | # CONFIG_ENCLOSURE_SERVICES is not set | 433 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 421 | # CONFIG_HP_ILO is not set | 434 | # CONFIG_HP_ILO is not set |
| 435 | # CONFIG_ISL29003 is not set | ||
| 422 | # CONFIG_C2PORT is not set | 436 | # CONFIG_C2PORT is not set |
| 437 | |||
| 438 | # | ||
| 439 | # EEPROM support | ||
| 440 | # | ||
| 441 | # CONFIG_EEPROM_AT24 is not set | ||
| 442 | # CONFIG_EEPROM_AT25 is not set | ||
| 443 | # CONFIG_EEPROM_LEGACY is not set | ||
| 444 | # CONFIG_EEPROM_93CX6 is not set | ||
| 423 | CONFIG_HAVE_IDE=y | 445 | CONFIG_HAVE_IDE=y |
| 424 | # CONFIG_IDE is not set | 446 | # CONFIG_IDE is not set |
| 425 | 447 | ||
| @@ -477,9 +499,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 477 | # CONFIG_MEGARAID_NEWGEN is not set | 499 | # CONFIG_MEGARAID_NEWGEN is not set |
| 478 | # CONFIG_MEGARAID_LEGACY is not set | 500 | # CONFIG_MEGARAID_LEGACY is not set |
| 479 | # CONFIG_MEGARAID_SAS is not set | 501 | # CONFIG_MEGARAID_SAS is not set |
| 502 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 480 | # CONFIG_SCSI_HPTIOP is not set | 503 | # CONFIG_SCSI_HPTIOP is not set |
| 481 | # CONFIG_SCSI_BUSLOGIC is not set | 504 | # CONFIG_SCSI_BUSLOGIC is not set |
| 482 | # CONFIG_LIBFC is not set | 505 | # CONFIG_LIBFC is not set |
| 506 | # CONFIG_LIBFCOE is not set | ||
| 483 | # CONFIG_FCOE is not set | 507 | # CONFIG_FCOE is not set |
| 484 | # CONFIG_SCSI_DMX3191D is not set | 508 | # CONFIG_SCSI_DMX3191D is not set |
| 485 | # CONFIG_SCSI_EATA is not set | 509 | # CONFIG_SCSI_EATA is not set |
| @@ -501,6 +525,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 501 | # CONFIG_SCSI_DEBUG is not set | 525 | # CONFIG_SCSI_DEBUG is not set |
| 502 | # CONFIG_SCSI_SRP is not set | 526 | # CONFIG_SCSI_SRP is not set |
| 503 | # CONFIG_SCSI_DH is not set | 527 | # CONFIG_SCSI_DH is not set |
| 528 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 504 | # CONFIG_ATA is not set | 529 | # CONFIG_ATA is not set |
| 505 | # CONFIG_MD is not set | 530 | # CONFIG_MD is not set |
| 506 | # CONFIG_FUSION is not set | 531 | # CONFIG_FUSION is not set |
| @@ -517,6 +542,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 517 | # CONFIG_I2O is not set | 542 | # CONFIG_I2O is not set |
| 518 | # CONFIG_MACINTOSH_DRIVERS is not set | 543 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 519 | CONFIG_NETDEVICES=y | 544 | CONFIG_NETDEVICES=y |
| 545 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 520 | # CONFIG_DUMMY is not set | 546 | # CONFIG_DUMMY is not set |
| 521 | # CONFIG_BONDING is not set | 547 | # CONFIG_BONDING is not set |
| 522 | # CONFIG_MACVLAN is not set | 548 | # CONFIG_MACVLAN is not set |
| @@ -551,6 +577,8 @@ CONFIG_MII=y | |||
| 551 | # CONFIG_CASSINI is not set | 577 | # CONFIG_CASSINI is not set |
| 552 | # CONFIG_NET_VENDOR_3COM is not set | 578 | # CONFIG_NET_VENDOR_3COM is not set |
| 553 | # CONFIG_ENC28J60 is not set | 579 | # CONFIG_ENC28J60 is not set |
| 580 | # CONFIG_ETHOC is not set | ||
| 581 | # CONFIG_DNET is not set | ||
| 554 | # CONFIG_NET_TULIP is not set | 582 | # CONFIG_NET_TULIP is not set |
| 555 | # CONFIG_HP100 is not set | 583 | # CONFIG_HP100 is not set |
| 556 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 584 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -570,6 +598,7 @@ CONFIG_E1000=y | |||
| 570 | # CONFIG_E1000E is not set | 598 | # CONFIG_E1000E is not set |
| 571 | # CONFIG_IP1000 is not set | 599 | # CONFIG_IP1000 is not set |
| 572 | # CONFIG_IGB is not set | 600 | # CONFIG_IGB is not set |
| 601 | # CONFIG_IGBVF is not set | ||
| 573 | # CONFIG_NS83820 is not set | 602 | # CONFIG_NS83820 is not set |
| 574 | # CONFIG_HAMACHI is not set | 603 | # CONFIG_HAMACHI is not set |
| 575 | # CONFIG_YELLOWFIN is not set | 604 | # CONFIG_YELLOWFIN is not set |
| @@ -580,14 +609,15 @@ CONFIG_E1000=y | |||
| 580 | # CONFIG_VIA_VELOCITY is not set | 609 | # CONFIG_VIA_VELOCITY is not set |
| 581 | # CONFIG_TIGON3 is not set | 610 | # CONFIG_TIGON3 is not set |
| 582 | # CONFIG_BNX2 is not set | 611 | # CONFIG_BNX2 is not set |
| 612 | CONFIG_FSL_PQ_MDIO=y | ||
| 583 | # CONFIG_GIANFAR is not set | 613 | # CONFIG_GIANFAR is not set |
| 584 | CONFIG_UCC_GETH=y | 614 | CONFIG_UCC_GETH=y |
| 585 | # CONFIG_UGETH_MAGIC_PACKET is not set | 615 | # CONFIG_UGETH_MAGIC_PACKET is not set |
| 586 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 616 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
| 587 | # CONFIG_MV643XX_ETH is not set | ||
| 588 | # CONFIG_QLA3XXX is not set | 617 | # CONFIG_QLA3XXX is not set |
| 589 | # CONFIG_ATL1 is not set | 618 | # CONFIG_ATL1 is not set |
| 590 | # CONFIG_ATL1E is not set | 619 | # CONFIG_ATL1E is not set |
| 620 | # CONFIG_ATL1C is not set | ||
| 591 | # CONFIG_JME is not set | 621 | # CONFIG_JME is not set |
| 592 | CONFIG_NETDEV_10000=y | 622 | CONFIG_NETDEV_10000=y |
| 593 | # CONFIG_CHELSIO_T1 is not set | 623 | # CONFIG_CHELSIO_T1 is not set |
| @@ -597,6 +627,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 597 | # CONFIG_IXGBE is not set | 627 | # CONFIG_IXGBE is not set |
| 598 | # CONFIG_IXGB is not set | 628 | # CONFIG_IXGB is not set |
| 599 | # CONFIG_S2IO is not set | 629 | # CONFIG_S2IO is not set |
| 630 | # CONFIG_VXGE is not set | ||
| 600 | # CONFIG_MYRI10GE is not set | 631 | # CONFIG_MYRI10GE is not set |
| 601 | # CONFIG_NETXEN_NIC is not set | 632 | # CONFIG_NETXEN_NIC is not set |
| 602 | # CONFIG_NIU is not set | 633 | # CONFIG_NIU is not set |
| @@ -606,6 +637,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 606 | # CONFIG_BNX2X is not set | 637 | # CONFIG_BNX2X is not set |
| 607 | # CONFIG_QLGE is not set | 638 | # CONFIG_QLGE is not set |
| 608 | # CONFIG_SFC is not set | 639 | # CONFIG_SFC is not set |
| 640 | # CONFIG_BE2NET is not set | ||
| 609 | # CONFIG_TR is not set | 641 | # CONFIG_TR is not set |
| 610 | 642 | ||
| 611 | # | 643 | # |
| @@ -613,7 +645,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 613 | # | 645 | # |
| 614 | # CONFIG_WLAN_PRE80211 is not set | 646 | # CONFIG_WLAN_PRE80211 is not set |
| 615 | # CONFIG_WLAN_80211 is not set | 647 | # CONFIG_WLAN_80211 is not set |
| 616 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 617 | 648 | ||
| 618 | # | 649 | # |
| 619 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 650 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -691,6 +722,7 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 691 | # | 722 | # |
| 692 | # Non-8250 serial port support | 723 | # Non-8250 serial port support |
| 693 | # | 724 | # |
| 725 | # CONFIG_SERIAL_MAX3100 is not set | ||
| 694 | # CONFIG_SERIAL_UARTLITE is not set | 726 | # CONFIG_SERIAL_UARTLITE is not set |
| 695 | CONFIG_SERIAL_CORE=y | 727 | CONFIG_SERIAL_CORE=y |
| 696 | CONFIG_SERIAL_CORE_CONSOLE=y | 728 | CONFIG_SERIAL_CORE_CONSOLE=y |
| @@ -704,6 +736,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 704 | # CONFIG_HVC_UDBG is not set | 736 | # CONFIG_HVC_UDBG is not set |
| 705 | # CONFIG_IPMI_HANDLER is not set | 737 | # CONFIG_IPMI_HANDLER is not set |
| 706 | CONFIG_HW_RANDOM=y | 738 | CONFIG_HW_RANDOM=y |
| 739 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 707 | # CONFIG_NVRAM is not set | 740 | # CONFIG_NVRAM is not set |
| 708 | CONFIG_GEN_RTC=y | 741 | CONFIG_GEN_RTC=y |
| 709 | # CONFIG_GEN_RTC_X is not set | 742 | # CONFIG_GEN_RTC_X is not set |
| @@ -768,12 +801,9 @@ CONFIG_I2C_MPC=y | |||
| 768 | # Miscellaneous I2C Chip support | 801 | # Miscellaneous I2C Chip support |
| 769 | # | 802 | # |
| 770 | # CONFIG_DS1682 is not set | 803 | # CONFIG_DS1682 is not set |
| 771 | # CONFIG_EEPROM_AT24 is not set | ||
| 772 | # CONFIG_EEPROM_LEGACY is not set | ||
| 773 | # CONFIG_SENSORS_PCF8574 is not set | 804 | # CONFIG_SENSORS_PCF8574 is not set |
| 774 | # CONFIG_PCF8575 is not set | 805 | # CONFIG_PCF8575 is not set |
| 775 | # CONFIG_SENSORS_PCA9539 is not set | 806 | # CONFIG_SENSORS_PCA9539 is not set |
| 776 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 777 | # CONFIG_SENSORS_MAX6875 is not set | 807 | # CONFIG_SENSORS_MAX6875 is not set |
| 778 | # CONFIG_SENSORS_TSL2550 is not set | 808 | # CONFIG_SENSORS_TSL2550 is not set |
| 779 | # CONFIG_I2C_DEBUG_CORE is not set | 809 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -792,7 +822,6 @@ CONFIG_SPI_MPC83xx=y | |||
| 792 | # | 822 | # |
| 793 | # SPI Protocol Masters | 823 | # SPI Protocol Masters |
| 794 | # | 824 | # |
| 795 | # CONFIG_EEPROM_AT25 is not set | ||
| 796 | # CONFIG_SPI_SPIDEV is not set | 825 | # CONFIG_SPI_SPIDEV is not set |
| 797 | # CONFIG_SPI_TLE62X0 is not set | 826 | # CONFIG_SPI_TLE62X0 is not set |
| 798 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 827 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
| @@ -820,6 +849,7 @@ CONFIG_HWMON=y | |||
| 820 | # CONFIG_SENSORS_F71805F is not set | 849 | # CONFIG_SENSORS_F71805F is not set |
| 821 | # CONFIG_SENSORS_F71882FG is not set | 850 | # CONFIG_SENSORS_F71882FG is not set |
| 822 | # CONFIG_SENSORS_F75375S is not set | 851 | # CONFIG_SENSORS_F75375S is not set |
| 852 | # CONFIG_SENSORS_G760A is not set | ||
| 823 | # CONFIG_SENSORS_GL518SM is not set | 853 | # CONFIG_SENSORS_GL518SM is not set |
| 824 | # CONFIG_SENSORS_GL520SM is not set | 854 | # CONFIG_SENSORS_GL520SM is not set |
| 825 | # CONFIG_SENSORS_IT87 is not set | 855 | # CONFIG_SENSORS_IT87 is not set |
| @@ -835,12 +865,15 @@ CONFIG_HWMON=y | |||
| 835 | # CONFIG_SENSORS_LM90 is not set | 865 | # CONFIG_SENSORS_LM90 is not set |
| 836 | # CONFIG_SENSORS_LM92 is not set | 866 | # CONFIG_SENSORS_LM92 is not set |
| 837 | # CONFIG_SENSORS_LM93 is not set | 867 | # CONFIG_SENSORS_LM93 is not set |
| 868 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 838 | # CONFIG_SENSORS_LTC4245 is not set | 869 | # CONFIG_SENSORS_LTC4245 is not set |
| 870 | # CONFIG_SENSORS_LM95241 is not set | ||
| 839 | # CONFIG_SENSORS_MAX1111 is not set | 871 | # CONFIG_SENSORS_MAX1111 is not set |
| 840 | # CONFIG_SENSORS_MAX1619 is not set | 872 | # CONFIG_SENSORS_MAX1619 is not set |
| 841 | # CONFIG_SENSORS_MAX6650 is not set | 873 | # CONFIG_SENSORS_MAX6650 is not set |
| 842 | # CONFIG_SENSORS_PC87360 is not set | 874 | # CONFIG_SENSORS_PC87360 is not set |
| 843 | # CONFIG_SENSORS_PC87427 is not set | 875 | # CONFIG_SENSORS_PC87427 is not set |
| 876 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 844 | # CONFIG_SENSORS_SIS5595 is not set | 877 | # CONFIG_SENSORS_SIS5595 is not set |
| 845 | # CONFIG_SENSORS_DME1737 is not set | 878 | # CONFIG_SENSORS_DME1737 is not set |
| 846 | # CONFIG_SENSORS_SMSC47M1 is not set | 879 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -859,6 +892,7 @@ CONFIG_HWMON=y | |||
| 859 | # CONFIG_SENSORS_W83L786NG is not set | 892 | # CONFIG_SENSORS_W83L786NG is not set |
| 860 | # CONFIG_SENSORS_W83627HF is not set | 893 | # CONFIG_SENSORS_W83627HF is not set |
| 861 | # CONFIG_SENSORS_W83627EHF is not set | 894 | # CONFIG_SENSORS_W83627EHF is not set |
| 895 | # CONFIG_SENSORS_LIS3_SPI is not set | ||
| 862 | # CONFIG_HWMON_DEBUG_CHIP is not set | 896 | # CONFIG_HWMON_DEBUG_CHIP is not set |
| 863 | # CONFIG_THERMAL is not set | 897 | # CONFIG_THERMAL is not set |
| 864 | # CONFIG_THERMAL_HWMON is not set | 898 | # CONFIG_THERMAL_HWMON is not set |
| @@ -955,7 +989,6 @@ CONFIG_HID=y | |||
| 955 | # | 989 | # |
| 956 | # Special HID drivers | 990 | # Special HID drivers |
| 957 | # | 991 | # |
| 958 | CONFIG_HID_COMPAT=y | ||
| 959 | CONFIG_USB_SUPPORT=y | 992 | CONFIG_USB_SUPPORT=y |
| 960 | CONFIG_USB_ARCH_HAS_HCD=y | 993 | CONFIG_USB_ARCH_HAS_HCD=y |
| 961 | CONFIG_USB_ARCH_HAS_OHCI=y | 994 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1012,11 +1045,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1012 | # CONFIG_USB_TMC is not set | 1045 | # CONFIG_USB_TMC is not set |
| 1013 | 1046 | ||
| 1014 | # | 1047 | # |
| 1015 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1048 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1016 | # | 1049 | # |
| 1017 | 1050 | ||
| 1018 | # | 1051 | # |
| 1019 | # see USB_STORAGE Help for more information | 1052 | # also be needed; see USB_STORAGE Help for more info |
| 1020 | # | 1053 | # |
| 1021 | CONFIG_USB_STORAGE=y | 1054 | CONFIG_USB_STORAGE=y |
| 1022 | # CONFIG_USB_STORAGE_DEBUG is not set | 1055 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1058,7 +1091,6 @@ CONFIG_USB_STORAGE=y | |||
| 1058 | # CONFIG_USB_LED is not set | 1091 | # CONFIG_USB_LED is not set |
| 1059 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1092 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1060 | # CONFIG_USB_CYTHERM is not set | 1093 | # CONFIG_USB_CYTHERM is not set |
| 1061 | # CONFIG_USB_PHIDGET is not set | ||
| 1062 | # CONFIG_USB_IDMOUSE is not set | 1094 | # CONFIG_USB_IDMOUSE is not set |
| 1063 | # CONFIG_USB_FTDI_ELAN is not set | 1095 | # CONFIG_USB_FTDI_ELAN is not set |
| 1064 | # CONFIG_USB_APPLEDISPLAY is not set | 1096 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1074,6 +1106,7 @@ CONFIG_USB_STORAGE=y | |||
| 1074 | # | 1106 | # |
| 1075 | # OTG and related infrastructure | 1107 | # OTG and related infrastructure |
| 1076 | # | 1108 | # |
| 1109 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1077 | # CONFIG_UWB is not set | 1110 | # CONFIG_UWB is not set |
| 1078 | CONFIG_MMC=y | 1111 | CONFIG_MMC=y |
| 1079 | # CONFIG_MMC_DEBUG is not set | 1112 | # CONFIG_MMC_DEBUG is not set |
| @@ -1101,6 +1134,7 @@ CONFIG_MMC_SPI=y | |||
| 1101 | # CONFIG_EDAC is not set | 1134 | # CONFIG_EDAC is not set |
| 1102 | # CONFIG_RTC_CLASS is not set | 1135 | # CONFIG_RTC_CLASS is not set |
| 1103 | # CONFIG_DMADEVICES is not set | 1136 | # CONFIG_DMADEVICES is not set |
| 1137 | # CONFIG_AUXDISPLAY is not set | ||
| 1104 | # CONFIG_UIO is not set | 1138 | # CONFIG_UIO is not set |
| 1105 | # CONFIG_STAGING is not set | 1139 | # CONFIG_STAGING is not set |
| 1106 | 1140 | ||
| @@ -1111,6 +1145,7 @@ CONFIG_EXT2_FS=y | |||
| 1111 | # CONFIG_EXT2_FS_XATTR is not set | 1145 | # CONFIG_EXT2_FS_XATTR is not set |
| 1112 | # CONFIG_EXT2_FS_XIP is not set | 1146 | # CONFIG_EXT2_FS_XIP is not set |
| 1113 | CONFIG_EXT3_FS=y | 1147 | CONFIG_EXT3_FS=y |
| 1148 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1114 | CONFIG_EXT3_FS_XATTR=y | 1149 | CONFIG_EXT3_FS_XATTR=y |
| 1115 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1150 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1116 | # CONFIG_EXT3_FS_SECURITY is not set | 1151 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1133,6 +1168,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1133 | # CONFIG_FUSE_FS is not set | 1168 | # CONFIG_FUSE_FS is not set |
| 1134 | 1169 | ||
| 1135 | # | 1170 | # |
| 1171 | # Caches | ||
| 1172 | # | ||
| 1173 | # CONFIG_FSCACHE is not set | ||
| 1174 | |||
| 1175 | # | ||
| 1136 | # CD-ROM/DVD Filesystems | 1176 | # CD-ROM/DVD Filesystems |
| 1137 | # | 1177 | # |
| 1138 | # CONFIG_ISO9660_FS is not set | 1178 | # CONFIG_ISO9660_FS is not set |
| @@ -1178,6 +1218,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1178 | # CONFIG_ROMFS_FS is not set | 1218 | # CONFIG_ROMFS_FS is not set |
| 1179 | # CONFIG_SYSV_FS is not set | 1219 | # CONFIG_SYSV_FS is not set |
| 1180 | # CONFIG_UFS_FS is not set | 1220 | # CONFIG_UFS_FS is not set |
| 1221 | # CONFIG_NILFS2_FS is not set | ||
| 1181 | CONFIG_NETWORK_FILESYSTEMS=y | 1222 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1182 | CONFIG_NFS_FS=y | 1223 | CONFIG_NFS_FS=y |
| 1183 | CONFIG_NFS_V3=y | 1224 | CONFIG_NFS_V3=y |
| @@ -1190,7 +1231,6 @@ CONFIG_LOCKD_V4=y | |||
| 1190 | CONFIG_NFS_COMMON=y | 1231 | CONFIG_NFS_COMMON=y |
| 1191 | CONFIG_SUNRPC=y | 1232 | CONFIG_SUNRPC=y |
| 1192 | CONFIG_SUNRPC_GSS=y | 1233 | CONFIG_SUNRPC_GSS=y |
| 1193 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1194 | CONFIG_RPCSEC_GSS_KRB5=y | 1234 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1195 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1235 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1196 | # CONFIG_SMB_FS is not set | 1236 | # CONFIG_SMB_FS is not set |
| @@ -1264,6 +1304,7 @@ CONFIG_NLS_ISO8859_1=y | |||
| 1264 | # CONFIG_DLM is not set | 1304 | # CONFIG_DLM is not set |
| 1265 | CONFIG_UCC_FAST=y | 1305 | CONFIG_UCC_FAST=y |
| 1266 | CONFIG_UCC=y | 1306 | CONFIG_UCC=y |
| 1307 | # CONFIG_BINARY_PRINTF is not set | ||
| 1267 | 1308 | ||
| 1268 | # | 1309 | # |
| 1269 | # Library routines | 1310 | # Library routines |
| @@ -1277,11 +1318,13 @@ CONFIG_CRC_ITU_T=y | |||
| 1277 | CONFIG_CRC32=y | 1318 | CONFIG_CRC32=y |
| 1278 | CONFIG_CRC7=y | 1319 | CONFIG_CRC7=y |
| 1279 | # CONFIG_LIBCRC32C is not set | 1320 | # CONFIG_LIBCRC32C is not set |
| 1280 | CONFIG_PLIST=y | 1321 | CONFIG_ZLIB_INFLATE=y |
| 1322 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1281 | CONFIG_HAS_IOMEM=y | 1323 | CONFIG_HAS_IOMEM=y |
| 1282 | CONFIG_HAS_IOPORT=y | 1324 | CONFIG_HAS_IOPORT=y |
| 1283 | CONFIG_HAS_DMA=y | 1325 | CONFIG_HAS_DMA=y |
| 1284 | CONFIG_HAVE_LMB=y | 1326 | CONFIG_HAVE_LMB=y |
| 1327 | CONFIG_NLATTR=y | ||
| 1285 | 1328 | ||
| 1286 | # | 1329 | # |
| 1287 | # Kernel hacking | 1330 | # Kernel hacking |
| @@ -1303,13 +1346,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1303 | # CONFIG_LATENCYTOP is not set | 1346 | # CONFIG_LATENCYTOP is not set |
| 1304 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1347 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1305 | CONFIG_HAVE_FUNCTION_TRACER=y | 1348 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1349 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1306 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1350 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1307 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1351 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1352 | CONFIG_TRACING_SUPPORT=y | ||
| 1308 | 1353 | ||
| 1309 | # | 1354 | # |
| 1310 | # Tracers | 1355 | # Tracers |
| 1311 | # | 1356 | # |
| 1312 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1357 | # CONFIG_FUNCTION_TRACER is not set |
| 1358 | # CONFIG_SCHED_TRACER is not set | ||
| 1359 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1360 | # CONFIG_EVENT_TRACER is not set | ||
| 1361 | # CONFIG_BOOT_TRACER is not set | ||
| 1362 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1363 | # CONFIG_STACK_TRACER is not set | ||
| 1364 | # CONFIG_KMEMTRACE is not set | ||
| 1365 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1366 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1313 | # CONFIG_SAMPLES is not set | 1367 | # CONFIG_SAMPLES is not set |
| 1314 | CONFIG_HAVE_ARCH_KGDB=y | 1368 | CONFIG_HAVE_ARCH_KGDB=y |
| 1315 | CONFIG_PRINT_STACK_DEPTH=64 | 1369 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1338,10 +1392,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1338 | CONFIG_CRYPTO_HASH=y | 1392 | CONFIG_CRYPTO_HASH=y |
| 1339 | CONFIG_CRYPTO_HASH2=y | 1393 | CONFIG_CRYPTO_HASH2=y |
| 1340 | CONFIG_CRYPTO_RNG2=y | 1394 | CONFIG_CRYPTO_RNG2=y |
| 1395 | CONFIG_CRYPTO_PCOMP=y | ||
| 1341 | CONFIG_CRYPTO_MANAGER=y | 1396 | CONFIG_CRYPTO_MANAGER=y |
| 1342 | CONFIG_CRYPTO_MANAGER2=y | 1397 | CONFIG_CRYPTO_MANAGER2=y |
| 1343 | # CONFIG_CRYPTO_GF128MUL is not set | 1398 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1344 | # CONFIG_CRYPTO_NULL is not set | 1399 | # CONFIG_CRYPTO_NULL is not set |
| 1400 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1345 | # CONFIG_CRYPTO_CRYPTD is not set | 1401 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1346 | # CONFIG_CRYPTO_AUTHENC is not set | 1402 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1347 | # CONFIG_CRYPTO_TEST is not set | 1403 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1410,6 +1466,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1410 | # Compression | 1466 | # Compression |
| 1411 | # | 1467 | # |
| 1412 | # CONFIG_CRYPTO_DEFLATE is not set | 1468 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1469 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1413 | # CONFIG_CRYPTO_LZO is not set | 1470 | # CONFIG_CRYPTO_LZO is not set |
| 1414 | 1471 | ||
| 1415 | # | 1472 | # |
diff --git a/arch/powerpc/configs/83xx/mpc834x_itx_defconfig b/arch/powerpc/configs/83xx/mpc834x_itx_defconfig index 4bcc4a1ff308..24ee7fcac87e 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:53 2009 | 4 | # Wed May 13 17:22:09 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -56,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 87 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 89 | CONFIG_GROUP_SCHED=y |
| @@ -87,19 +98,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | # CONFIG_KALLSYMS is not set | 109 | # CONFIG_KALLSYMS is not set |
| 110 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 95 | CONFIG_HOTPLUG=y | 111 | CONFIG_HOTPLUG=y |
| 96 | CONFIG_PRINTK=y | 112 | CONFIG_PRINTK=y |
| 97 | CONFIG_BUG=y | 113 | CONFIG_BUG=y |
| 98 | CONFIG_ELF_CORE=y | 114 | CONFIG_ELF_CORE=y |
| 99 | CONFIG_COMPAT_BRK=y | ||
| 100 | CONFIG_BASE_FULL=y | 115 | CONFIG_BASE_FULL=y |
| 101 | CONFIG_FUTEX=y | 116 | CONFIG_FUTEX=y |
| 102 | CONFIG_ANON_INODES=y | ||
| 103 | # CONFIG_EPOLL is not set | 117 | # CONFIG_EPOLL is not set |
| 104 | CONFIG_SIGNALFD=y | 118 | CONFIG_SIGNALFD=y |
| 105 | CONFIG_TIMERFD=y | 119 | CONFIG_TIMERFD=y |
| @@ -109,16 +123,19 @@ CONFIG_AIO=y | |||
| 109 | CONFIG_VM_EVENT_COUNTERS=y | 123 | CONFIG_VM_EVENT_COUNTERS=y |
| 110 | CONFIG_PCI_QUIRKS=y | 124 | CONFIG_PCI_QUIRKS=y |
| 111 | CONFIG_SLUB_DEBUG=y | 125 | CONFIG_SLUB_DEBUG=y |
| 126 | CONFIG_COMPAT_BRK=y | ||
| 112 | # CONFIG_SLAB is not set | 127 | # CONFIG_SLAB is not set |
| 113 | CONFIG_SLUB=y | 128 | CONFIG_SLUB=y |
| 114 | # CONFIG_SLOB is not set | 129 | # CONFIG_SLOB is not set |
| 115 | # CONFIG_PROFILING is not set | 130 | # CONFIG_PROFILING is not set |
| 131 | # CONFIG_MARKERS is not set | ||
| 116 | CONFIG_HAVE_OPROFILE=y | 132 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 133 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | 134 | CONFIG_HAVE_IOREMAP_PROT=y |
| 119 | CONFIG_HAVE_KPROBES=y | 135 | CONFIG_HAVE_KPROBES=y |
| 120 | CONFIG_HAVE_KRETPROBES=y | 136 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 137 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 138 | # CONFIG_SLOW_WORK is not set | ||
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 139 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 123 | CONFIG_SLABINFO=y | 140 | CONFIG_SLABINFO=y |
| 124 | CONFIG_RT_MUTEXES=y | 141 | CONFIG_RT_MUTEXES=y |
| @@ -131,7 +148,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 148 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 132 | CONFIG_BLOCK=y | 149 | CONFIG_BLOCK=y |
| 133 | # CONFIG_LBD is not set | 150 | # CONFIG_LBD is not set |
| 134 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 135 | # CONFIG_BLK_DEV_BSG is not set | 151 | # CONFIG_BLK_DEV_BSG is not set |
| 136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 152 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 137 | 153 | ||
| @@ -147,18 +163,11 @@ CONFIG_DEFAULT_AS=y | |||
| 147 | # CONFIG_DEFAULT_CFQ is not set | 163 | # CONFIG_DEFAULT_CFQ is not set |
| 148 | # CONFIG_DEFAULT_NOOP is not set | 164 | # CONFIG_DEFAULT_NOOP is not set |
| 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 165 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 150 | CONFIG_CLASSIC_RCU=y | ||
| 151 | # CONFIG_TREE_RCU is not set | ||
| 152 | # CONFIG_PREEMPT_RCU is not set | ||
| 153 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 155 | # CONFIG_FREEZER is not set | 166 | # CONFIG_FREEZER is not set |
| 156 | 167 | ||
| 157 | # | 168 | # |
| 158 | # Platform support | 169 | # Platform support |
| 159 | # | 170 | # |
| 160 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 161 | CONFIG_CLASSIC32=y | ||
| 162 | # CONFIG_PPC_CHRP is not set | 171 | # CONFIG_PPC_CHRP is not set |
| 163 | # CONFIG_MPC5121_ADS is not set | 172 | # CONFIG_MPC5121_ADS is not set |
| 164 | # CONFIG_MPC5121_GENERIC is not set | 173 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -183,6 +192,8 @@ CONFIG_MPC834x_ITX=y | |||
| 183 | CONFIG_PPC_MPC834x=y | 192 | CONFIG_PPC_MPC834x=y |
| 184 | # CONFIG_PPC_86xx is not set | 193 | # CONFIG_PPC_86xx is not set |
| 185 | # CONFIG_EMBEDDED6xx is not set | 194 | # CONFIG_EMBEDDED6xx is not set |
| 195 | # CONFIG_AMIGAONE is not set | ||
| 196 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 186 | CONFIG_IPIC=y | 197 | CONFIG_IPIC=y |
| 187 | # CONFIG_MPIC is not set | 198 | # CONFIG_MPIC is not set |
| 188 | # CONFIG_MPIC_WEIRD is not set | 199 | # CONFIG_MPIC_WEIRD is not set |
| @@ -244,9 +255,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 244 | CONFIG_BOUNCE=y | 255 | CONFIG_BOUNCE=y |
| 245 | CONFIG_VIRT_TO_BUS=y | 256 | CONFIG_VIRT_TO_BUS=y |
| 246 | CONFIG_UNEVICTABLE_LRU=y | 257 | CONFIG_UNEVICTABLE_LRU=y |
| 258 | CONFIG_HAVE_MLOCK=y | ||
| 259 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 247 | CONFIG_PPC_4K_PAGES=y | 260 | CONFIG_PPC_4K_PAGES=y |
| 248 | # CONFIG_PPC_16K_PAGES is not set | 261 | # CONFIG_PPC_16K_PAGES is not set |
| 249 | # CONFIG_PPC_64K_PAGES is not set | 262 | # CONFIG_PPC_64K_PAGES is not set |
| 263 | # CONFIG_PPC_256K_PAGES is not set | ||
| 250 | CONFIG_FORCE_MAX_ZONEORDER=11 | 264 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 251 | CONFIG_PROC_DEVICETREE=y | 265 | CONFIG_PROC_DEVICETREE=y |
| 252 | # CONFIG_CMDLINE_BOOL is not set | 266 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -272,6 +286,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 272 | # CONFIG_PCI_MSI is not set | 286 | # CONFIG_PCI_MSI is not set |
| 273 | # CONFIG_PCI_LEGACY is not set | 287 | # CONFIG_PCI_LEGACY is not set |
| 274 | # CONFIG_PCI_STUB is not set | 288 | # CONFIG_PCI_STUB is not set |
| 289 | # CONFIG_PCI_IOV is not set | ||
| 275 | # CONFIG_PCCARD is not set | 290 | # CONFIG_PCCARD is not set |
| 276 | # CONFIG_HOTPLUG_PCI is not set | 291 | # CONFIG_HOTPLUG_PCI is not set |
| 277 | # CONFIG_HAS_RAPIDIO is not set | 292 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -294,7 +309,6 @@ CONFIG_NET=y | |||
| 294 | # | 309 | # |
| 295 | # Networking options | 310 | # Networking options |
| 296 | # | 311 | # |
| 297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 298 | CONFIG_PACKET=y | 312 | CONFIG_PACKET=y |
| 299 | # CONFIG_PACKET_MMAP is not set | 313 | # CONFIG_PACKET_MMAP is not set |
| 300 | CONFIG_UNIX=y | 314 | CONFIG_UNIX=y |
| @@ -350,6 +364,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 350 | # CONFIG_LAPB is not set | 364 | # CONFIG_LAPB is not set |
| 351 | # CONFIG_ECONET is not set | 365 | # CONFIG_ECONET is not set |
| 352 | # CONFIG_WAN_ROUTER is not set | 366 | # CONFIG_WAN_ROUTER is not set |
| 367 | # CONFIG_PHONET is not set | ||
| 353 | # CONFIG_NET_SCHED is not set | 368 | # CONFIG_NET_SCHED is not set |
| 354 | # CONFIG_DCB is not set | 369 | # CONFIG_DCB is not set |
| 355 | 370 | ||
| @@ -362,7 +377,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 362 | # CONFIG_IRDA is not set | 377 | # CONFIG_IRDA is not set |
| 363 | # CONFIG_BT is not set | 378 | # CONFIG_BT is not set |
| 364 | # CONFIG_AF_RXRPC is not set | 379 | # CONFIG_AF_RXRPC is not set |
| 365 | # CONFIG_PHONET is not set | ||
| 366 | CONFIG_WIRELESS=y | 380 | CONFIG_WIRELESS=y |
| 367 | # CONFIG_CFG80211 is not set | 381 | # CONFIG_CFG80211 is not set |
| 368 | CONFIG_WIRELESS_OLD_REGULATORY=y | 382 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -465,7 +479,6 @@ CONFIG_MTD_PHYSMAP=y | |||
| 465 | # LPDDR flash memory drivers | 479 | # LPDDR flash memory drivers |
| 466 | # | 480 | # |
| 467 | # CONFIG_MTD_LPDDR is not set | 481 | # CONFIG_MTD_LPDDR is not set |
| 468 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 469 | 482 | ||
| 470 | # | 483 | # |
| 471 | # UBI - Unsorted block images | 484 | # UBI - Unsorted block images |
| @@ -496,13 +509,21 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 496 | # CONFIG_BLK_DEV_HD is not set | 509 | # CONFIG_BLK_DEV_HD is not set |
| 497 | CONFIG_MISC_DEVICES=y | 510 | CONFIG_MISC_DEVICES=y |
| 498 | # CONFIG_PHANTOM is not set | 511 | # CONFIG_PHANTOM is not set |
| 499 | # CONFIG_EEPROM_93CX6 is not set | ||
| 500 | # CONFIG_SGI_IOC4 is not set | 512 | # CONFIG_SGI_IOC4 is not set |
| 501 | # CONFIG_TIFM_CORE is not set | 513 | # CONFIG_TIFM_CORE is not set |
| 502 | # CONFIG_ICS932S401 is not set | 514 | # CONFIG_ICS932S401 is not set |
| 503 | # CONFIG_ENCLOSURE_SERVICES is not set | 515 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 504 | # CONFIG_HP_ILO is not set | 516 | # CONFIG_HP_ILO is not set |
| 517 | # CONFIG_ISL29003 is not set | ||
| 505 | # CONFIG_C2PORT is not set | 518 | # CONFIG_C2PORT is not set |
| 519 | |||
| 520 | # | ||
| 521 | # EEPROM support | ||
| 522 | # | ||
| 523 | # CONFIG_EEPROM_AT24 is not set | ||
| 524 | # CONFIG_EEPROM_AT25 is not set | ||
| 525 | # CONFIG_EEPROM_LEGACY is not set | ||
| 526 | # CONFIG_EEPROM_93CX6 is not set | ||
| 506 | CONFIG_HAVE_IDE=y | 527 | CONFIG_HAVE_IDE=y |
| 507 | CONFIG_IDE=y | 528 | CONFIG_IDE=y |
| 508 | 529 | ||
| @@ -608,9 +629,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 608 | # CONFIG_MEGARAID_NEWGEN is not set | 629 | # CONFIG_MEGARAID_NEWGEN is not set |
| 609 | # CONFIG_MEGARAID_LEGACY is not set | 630 | # CONFIG_MEGARAID_LEGACY is not set |
| 610 | # CONFIG_MEGARAID_SAS is not set | 631 | # CONFIG_MEGARAID_SAS is not set |
| 632 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 611 | # CONFIG_SCSI_HPTIOP is not set | 633 | # CONFIG_SCSI_HPTIOP is not set |
| 612 | # CONFIG_SCSI_BUSLOGIC is not set | 634 | # CONFIG_SCSI_BUSLOGIC is not set |
| 613 | # CONFIG_LIBFC is not set | 635 | # CONFIG_LIBFC is not set |
| 636 | # CONFIG_LIBFCOE is not set | ||
| 614 | # CONFIG_FCOE is not set | 637 | # CONFIG_FCOE is not set |
| 615 | # CONFIG_SCSI_DMX3191D is not set | 638 | # CONFIG_SCSI_DMX3191D is not set |
| 616 | # CONFIG_SCSI_EATA is not set | 639 | # CONFIG_SCSI_EATA is not set |
| @@ -633,6 +656,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 633 | # CONFIG_SCSI_DEBUG is not set | 656 | # CONFIG_SCSI_DEBUG is not set |
| 634 | # CONFIG_SCSI_SRP is not set | 657 | # CONFIG_SCSI_SRP is not set |
| 635 | # CONFIG_SCSI_DH is not set | 658 | # CONFIG_SCSI_DH is not set |
| 659 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 636 | CONFIG_ATA=y | 660 | CONFIG_ATA=y |
| 637 | # CONFIG_ATA_NONSTANDARD is not set | 661 | # CONFIG_ATA_NONSTANDARD is not set |
| 638 | CONFIG_SATA_PMP=y | 662 | CONFIG_SATA_PMP=y |
| @@ -720,6 +744,7 @@ CONFIG_MD_RAID1=y | |||
| 720 | # CONFIG_I2O is not set | 744 | # CONFIG_I2O is not set |
| 721 | # CONFIG_MACINTOSH_DRIVERS is not set | 745 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 722 | CONFIG_NETDEVICES=y | 746 | CONFIG_NETDEVICES=y |
| 747 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 723 | # CONFIG_DUMMY is not set | 748 | # CONFIG_DUMMY is not set |
| 724 | # CONFIG_BONDING is not set | 749 | # CONFIG_BONDING is not set |
| 725 | # CONFIG_MACVLAN is not set | 750 | # CONFIG_MACVLAN is not set |
| @@ -755,6 +780,7 @@ CONFIG_NETDEV_1000=y | |||
| 755 | # CONFIG_E1000E is not set | 780 | # CONFIG_E1000E is not set |
| 756 | # CONFIG_IP1000 is not set | 781 | # CONFIG_IP1000 is not set |
| 757 | # CONFIG_IGB is not set | 782 | # CONFIG_IGB is not set |
| 783 | # CONFIG_IGBVF is not set | ||
| 758 | # CONFIG_NS83820 is not set | 784 | # CONFIG_NS83820 is not set |
| 759 | # CONFIG_HAMACHI is not set | 785 | # CONFIG_HAMACHI is not set |
| 760 | # CONFIG_YELLOWFIN is not set | 786 | # CONFIG_YELLOWFIN is not set |
| @@ -765,11 +791,12 @@ CONFIG_NETDEV_1000=y | |||
| 765 | # CONFIG_VIA_VELOCITY is not set | 791 | # CONFIG_VIA_VELOCITY is not set |
| 766 | # CONFIG_TIGON3 is not set | 792 | # CONFIG_TIGON3 is not set |
| 767 | # CONFIG_BNX2 is not set | 793 | # CONFIG_BNX2 is not set |
| 794 | CONFIG_FSL_PQ_MDIO=y | ||
| 768 | CONFIG_GIANFAR=y | 795 | CONFIG_GIANFAR=y |
| 769 | # CONFIG_MV643XX_ETH is not set | ||
| 770 | # CONFIG_QLA3XXX is not set | 796 | # CONFIG_QLA3XXX is not set |
| 771 | # CONFIG_ATL1 is not set | 797 | # CONFIG_ATL1 is not set |
| 772 | # CONFIG_ATL1E is not set | 798 | # CONFIG_ATL1E is not set |
| 799 | # CONFIG_ATL1C is not set | ||
| 773 | # CONFIG_JME is not set | 800 | # CONFIG_JME is not set |
| 774 | CONFIG_NETDEV_10000=y | 801 | CONFIG_NETDEV_10000=y |
| 775 | # CONFIG_CHELSIO_T1 is not set | 802 | # CONFIG_CHELSIO_T1 is not set |
| @@ -779,6 +806,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 779 | # CONFIG_IXGBE is not set | 806 | # CONFIG_IXGBE is not set |
| 780 | # CONFIG_IXGB is not set | 807 | # CONFIG_IXGB is not set |
| 781 | # CONFIG_S2IO is not set | 808 | # CONFIG_S2IO is not set |
| 809 | # CONFIG_VXGE is not set | ||
| 782 | # CONFIG_MYRI10GE is not set | 810 | # CONFIG_MYRI10GE is not set |
| 783 | # CONFIG_NETXEN_NIC is not set | 811 | # CONFIG_NETXEN_NIC is not set |
| 784 | # CONFIG_NIU is not set | 812 | # CONFIG_NIU is not set |
| @@ -788,6 +816,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 788 | # CONFIG_BNX2X is not set | 816 | # CONFIG_BNX2X is not set |
| 789 | # CONFIG_QLGE is not set | 817 | # CONFIG_QLGE is not set |
| 790 | # CONFIG_SFC is not set | 818 | # CONFIG_SFC is not set |
| 819 | # CONFIG_BE2NET is not set | ||
| 791 | # CONFIG_TR is not set | 820 | # CONFIG_TR is not set |
| 792 | 821 | ||
| 793 | # | 822 | # |
| @@ -795,7 +824,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 795 | # | 824 | # |
| 796 | # CONFIG_WLAN_PRE80211 is not set | 825 | # CONFIG_WLAN_PRE80211 is not set |
| 797 | # CONFIG_WLAN_80211 is not set | 826 | # CONFIG_WLAN_80211 is not set |
| 798 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 799 | 827 | ||
| 800 | # | 828 | # |
| 801 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 829 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -853,6 +881,7 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 853 | # | 881 | # |
| 854 | # Non-8250 serial port support | 882 | # Non-8250 serial port support |
| 855 | # | 883 | # |
| 884 | # CONFIG_SERIAL_MAX3100 is not set | ||
| 856 | # CONFIG_SERIAL_UARTLITE is not set | 885 | # CONFIG_SERIAL_UARTLITE is not set |
| 857 | CONFIG_SERIAL_CORE=y | 886 | CONFIG_SERIAL_CORE=y |
| 858 | CONFIG_SERIAL_CORE_CONSOLE=y | 887 | CONFIG_SERIAL_CORE_CONSOLE=y |
| @@ -865,6 +894,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 865 | # CONFIG_HVC_UDBG is not set | 894 | # CONFIG_HVC_UDBG is not set |
| 866 | # CONFIG_IPMI_HANDLER is not set | 895 | # CONFIG_IPMI_HANDLER is not set |
| 867 | CONFIG_HW_RANDOM=y | 896 | CONFIG_HW_RANDOM=y |
| 897 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 868 | # CONFIG_NVRAM is not set | 898 | # CONFIG_NVRAM is not set |
| 869 | # CONFIG_R3964 is not set | 899 | # CONFIG_R3964 is not set |
| 870 | # CONFIG_APPLICOM is not set | 900 | # CONFIG_APPLICOM is not set |
| @@ -927,12 +957,9 @@ CONFIG_I2C_MPC=y | |||
| 927 | # Miscellaneous I2C Chip support | 957 | # Miscellaneous I2C Chip support |
| 928 | # | 958 | # |
| 929 | # CONFIG_DS1682 is not set | 959 | # CONFIG_DS1682 is not set |
| 930 | # CONFIG_EEPROM_AT24 is not set | ||
| 931 | # CONFIG_EEPROM_LEGACY is not set | ||
| 932 | CONFIG_SENSORS_PCF8574=y | 960 | CONFIG_SENSORS_PCF8574=y |
| 933 | # CONFIG_PCF8575 is not set | 961 | # CONFIG_PCF8575 is not set |
| 934 | # CONFIG_SENSORS_PCA9539 is not set | 962 | # CONFIG_SENSORS_PCA9539 is not set |
| 935 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 936 | # CONFIG_SENSORS_MAX6875 is not set | 963 | # CONFIG_SENSORS_MAX6875 is not set |
| 937 | # CONFIG_SENSORS_TSL2550 is not set | 964 | # CONFIG_SENSORS_TSL2550 is not set |
| 938 | # CONFIG_I2C_DEBUG_CORE is not set | 965 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -951,7 +978,6 @@ CONFIG_SPI_MPC83xx=y | |||
| 951 | # | 978 | # |
| 952 | # SPI Protocol Masters | 979 | # SPI Protocol Masters |
| 953 | # | 980 | # |
| 954 | # CONFIG_EEPROM_AT25 is not set | ||
| 955 | # CONFIG_SPI_SPIDEV is not set | 981 | # CONFIG_SPI_SPIDEV is not set |
| 956 | # CONFIG_SPI_TLE62X0 is not set | 982 | # CONFIG_SPI_TLE62X0 is not set |
| 957 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 983 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
| @@ -1083,11 +1109,11 @@ CONFIG_USB_UHCI_HCD=y | |||
| 1083 | # CONFIG_USB_TMC is not set | 1109 | # CONFIG_USB_TMC is not set |
| 1084 | 1110 | ||
| 1085 | # | 1111 | # |
| 1086 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1112 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1087 | # | 1113 | # |
| 1088 | 1114 | ||
| 1089 | # | 1115 | # |
| 1090 | # see USB_STORAGE Help for more information | 1116 | # also be needed; see USB_STORAGE Help for more info |
| 1091 | # | 1117 | # |
| 1092 | CONFIG_USB_STORAGE=y | 1118 | CONFIG_USB_STORAGE=y |
| 1093 | # CONFIG_USB_STORAGE_DEBUG is not set | 1119 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1128,7 +1154,6 @@ CONFIG_USB_STORAGE=y | |||
| 1128 | # CONFIG_USB_LED is not set | 1154 | # CONFIG_USB_LED is not set |
| 1129 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1155 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1130 | # CONFIG_USB_CYTHERM is not set | 1156 | # CONFIG_USB_CYTHERM is not set |
| 1131 | # CONFIG_USB_PHIDGET is not set | ||
| 1132 | # CONFIG_USB_IDMOUSE is not set | 1157 | # CONFIG_USB_IDMOUSE is not set |
| 1133 | # CONFIG_USB_FTDI_ELAN is not set | 1158 | # CONFIG_USB_FTDI_ELAN is not set |
| 1134 | # CONFIG_USB_APPLEDISPLAY is not set | 1159 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1144,6 +1169,7 @@ CONFIG_USB_STORAGE=y | |||
| 1144 | # | 1169 | # |
| 1145 | # OTG and related infrastructure | 1170 | # OTG and related infrastructure |
| 1146 | # | 1171 | # |
| 1172 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1147 | # CONFIG_UWB is not set | 1173 | # CONFIG_UWB is not set |
| 1148 | # CONFIG_MMC is not set | 1174 | # CONFIG_MMC is not set |
| 1149 | # CONFIG_MEMSTICK is not set | 1175 | # CONFIG_MEMSTICK is not set |
| @@ -1212,8 +1238,9 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1212 | # | 1238 | # |
| 1213 | # on-CPU RTC drivers | 1239 | # on-CPU RTC drivers |
| 1214 | # | 1240 | # |
| 1215 | # CONFIG_RTC_DRV_PPC is not set | 1241 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1216 | # CONFIG_DMADEVICES is not set | 1242 | # CONFIG_DMADEVICES is not set |
| 1243 | # CONFIG_AUXDISPLAY is not set | ||
| 1217 | # CONFIG_UIO is not set | 1244 | # CONFIG_UIO is not set |
| 1218 | # CONFIG_STAGING is not set | 1245 | # CONFIG_STAGING is not set |
| 1219 | 1246 | ||
| @@ -1224,6 +1251,7 @@ CONFIG_EXT2_FS=y | |||
| 1224 | # CONFIG_EXT2_FS_XATTR is not set | 1251 | # CONFIG_EXT2_FS_XATTR is not set |
| 1225 | # CONFIG_EXT2_FS_XIP is not set | 1252 | # CONFIG_EXT2_FS_XIP is not set |
| 1226 | CONFIG_EXT3_FS=y | 1253 | CONFIG_EXT3_FS=y |
| 1254 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1227 | CONFIG_EXT3_FS_XATTR=y | 1255 | CONFIG_EXT3_FS_XATTR=y |
| 1228 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1256 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1229 | # CONFIG_EXT3_FS_SECURITY is not set | 1257 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1246,6 +1274,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1246 | # CONFIG_FUSE_FS is not set | 1274 | # CONFIG_FUSE_FS is not set |
| 1247 | 1275 | ||
| 1248 | # | 1276 | # |
| 1277 | # Caches | ||
| 1278 | # | ||
| 1279 | # CONFIG_FSCACHE is not set | ||
| 1280 | |||
| 1281 | # | ||
| 1249 | # CD-ROM/DVD Filesystems | 1282 | # CD-ROM/DVD Filesystems |
| 1250 | # | 1283 | # |
| 1251 | # CONFIG_ISO9660_FS is not set | 1284 | # CONFIG_ISO9660_FS is not set |
| @@ -1292,6 +1325,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1292 | # CONFIG_ROMFS_FS is not set | 1325 | # CONFIG_ROMFS_FS is not set |
| 1293 | # CONFIG_SYSV_FS is not set | 1326 | # CONFIG_SYSV_FS is not set |
| 1294 | # CONFIG_UFS_FS is not set | 1327 | # CONFIG_UFS_FS is not set |
| 1328 | # CONFIG_NILFS2_FS is not set | ||
| 1295 | CONFIG_NETWORK_FILESYSTEMS=y | 1329 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1296 | CONFIG_NFS_FS=y | 1330 | CONFIG_NFS_FS=y |
| 1297 | CONFIG_NFS_V3=y | 1331 | CONFIG_NFS_V3=y |
| @@ -1304,7 +1338,6 @@ CONFIG_LOCKD_V4=y | |||
| 1304 | CONFIG_NFS_COMMON=y | 1338 | CONFIG_NFS_COMMON=y |
| 1305 | CONFIG_SUNRPC=y | 1339 | CONFIG_SUNRPC=y |
| 1306 | CONFIG_SUNRPC_GSS=y | 1340 | CONFIG_SUNRPC_GSS=y |
| 1307 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1308 | CONFIG_RPCSEC_GSS_KRB5=y | 1341 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1309 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1342 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1310 | # CONFIG_SMB_FS is not set | 1343 | # CONFIG_SMB_FS is not set |
| @@ -1375,6 +1408,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1375 | # CONFIG_NLS_KOI8_U is not set | 1408 | # CONFIG_NLS_KOI8_U is not set |
| 1376 | # CONFIG_NLS_UTF8 is not set | 1409 | # CONFIG_NLS_UTF8 is not set |
| 1377 | # CONFIG_DLM is not set | 1410 | # CONFIG_DLM is not set |
| 1411 | # CONFIG_BINARY_PRINTF is not set | ||
| 1378 | 1412 | ||
| 1379 | # | 1413 | # |
| 1380 | # Library routines | 1414 | # Library routines |
| @@ -1388,11 +1422,13 @@ CONFIG_CRC_T10DIF=y | |||
| 1388 | CONFIG_CRC32=y | 1422 | CONFIG_CRC32=y |
| 1389 | # CONFIG_CRC7 is not set | 1423 | # CONFIG_CRC7 is not set |
| 1390 | # CONFIG_LIBCRC32C is not set | 1424 | # CONFIG_LIBCRC32C is not set |
| 1391 | CONFIG_PLIST=y | 1425 | CONFIG_ZLIB_INFLATE=y |
| 1426 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1392 | CONFIG_HAS_IOMEM=y | 1427 | CONFIG_HAS_IOMEM=y |
| 1393 | CONFIG_HAS_IOPORT=y | 1428 | CONFIG_HAS_IOPORT=y |
| 1394 | CONFIG_HAS_DMA=y | 1429 | CONFIG_HAS_DMA=y |
| 1395 | CONFIG_HAVE_LMB=y | 1430 | CONFIG_HAVE_LMB=y |
| 1431 | CONFIG_NLATTR=y | ||
| 1396 | 1432 | ||
| 1397 | # | 1433 | # |
| 1398 | # Kernel hacking | 1434 | # Kernel hacking |
| @@ -1414,13 +1450,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1414 | # CONFIG_LATENCYTOP is not set | 1450 | # CONFIG_LATENCYTOP is not set |
| 1415 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1451 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1416 | CONFIG_HAVE_FUNCTION_TRACER=y | 1452 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1453 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1417 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1454 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1418 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1455 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1456 | CONFIG_TRACING_SUPPORT=y | ||
| 1419 | 1457 | ||
| 1420 | # | 1458 | # |
| 1421 | # Tracers | 1459 | # Tracers |
| 1422 | # | 1460 | # |
| 1423 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1461 | # CONFIG_FUNCTION_TRACER is not set |
| 1462 | # CONFIG_SCHED_TRACER is not set | ||
| 1463 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1464 | # CONFIG_EVENT_TRACER is not set | ||
| 1465 | # CONFIG_BOOT_TRACER is not set | ||
| 1466 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1467 | # CONFIG_STACK_TRACER is not set | ||
| 1468 | # CONFIG_KMEMTRACE is not set | ||
| 1469 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1470 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1424 | # CONFIG_SAMPLES is not set | 1471 | # CONFIG_SAMPLES is not set |
| 1425 | CONFIG_HAVE_ARCH_KGDB=y | 1472 | CONFIG_HAVE_ARCH_KGDB=y |
| 1426 | CONFIG_PRINT_STACK_DEPTH=64 | 1473 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1449,10 +1496,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1449 | CONFIG_CRYPTO_HASH=y | 1496 | CONFIG_CRYPTO_HASH=y |
| 1450 | CONFIG_CRYPTO_HASH2=y | 1497 | CONFIG_CRYPTO_HASH2=y |
| 1451 | CONFIG_CRYPTO_RNG2=y | 1498 | CONFIG_CRYPTO_RNG2=y |
| 1499 | CONFIG_CRYPTO_PCOMP=y | ||
| 1452 | CONFIG_CRYPTO_MANAGER=y | 1500 | CONFIG_CRYPTO_MANAGER=y |
| 1453 | CONFIG_CRYPTO_MANAGER2=y | 1501 | CONFIG_CRYPTO_MANAGER2=y |
| 1454 | # CONFIG_CRYPTO_GF128MUL is not set | 1502 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1455 | # CONFIG_CRYPTO_NULL is not set | 1503 | # CONFIG_CRYPTO_NULL is not set |
| 1504 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1456 | # CONFIG_CRYPTO_CRYPTD is not set | 1505 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1457 | # CONFIG_CRYPTO_AUTHENC is not set | 1506 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1458 | # CONFIG_CRYPTO_TEST is not set | 1507 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1521,6 +1570,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1521 | # Compression | 1570 | # Compression |
| 1522 | # | 1571 | # |
| 1523 | # CONFIG_CRYPTO_DEFLATE is not set | 1572 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1573 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1524 | # CONFIG_CRYPTO_LZO is not set | 1574 | # CONFIG_CRYPTO_LZO is not set |
| 1525 | 1575 | ||
| 1526 | # | 1576 | # |
diff --git a/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig b/arch/powerpc/configs/83xx/mpc834x_itxgp_defconfig index 9ba5518ce8df..7f39543205a9 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:55 2009 | 4 | # Wed May 13 17:22:10 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -56,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 87 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 89 | CONFIG_GROUP_SCHED=y |
| @@ -87,19 +98,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | # CONFIG_KALLSYMS is not set | 109 | # CONFIG_KALLSYMS is not set |
| 110 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 95 | CONFIG_HOTPLUG=y | 111 | CONFIG_HOTPLUG=y |
| 96 | CONFIG_PRINTK=y | 112 | CONFIG_PRINTK=y |
| 97 | CONFIG_BUG=y | 113 | CONFIG_BUG=y |
| 98 | CONFIG_ELF_CORE=y | 114 | CONFIG_ELF_CORE=y |
| 99 | CONFIG_COMPAT_BRK=y | ||
| 100 | CONFIG_BASE_FULL=y | 115 | CONFIG_BASE_FULL=y |
| 101 | CONFIG_FUTEX=y | 116 | CONFIG_FUTEX=y |
| 102 | CONFIG_ANON_INODES=y | ||
| 103 | # CONFIG_EPOLL is not set | 117 | # CONFIG_EPOLL is not set |
| 104 | CONFIG_SIGNALFD=y | 118 | CONFIG_SIGNALFD=y |
| 105 | CONFIG_TIMERFD=y | 119 | CONFIG_TIMERFD=y |
| @@ -109,16 +123,19 @@ CONFIG_AIO=y | |||
| 109 | CONFIG_VM_EVENT_COUNTERS=y | 123 | CONFIG_VM_EVENT_COUNTERS=y |
| 110 | CONFIG_PCI_QUIRKS=y | 124 | CONFIG_PCI_QUIRKS=y |
| 111 | CONFIG_SLUB_DEBUG=y | 125 | CONFIG_SLUB_DEBUG=y |
| 126 | CONFIG_COMPAT_BRK=y | ||
| 112 | # CONFIG_SLAB is not set | 127 | # CONFIG_SLAB is not set |
| 113 | CONFIG_SLUB=y | 128 | CONFIG_SLUB=y |
| 114 | # CONFIG_SLOB is not set | 129 | # CONFIG_SLOB is not set |
| 115 | # CONFIG_PROFILING is not set | 130 | # CONFIG_PROFILING is not set |
| 131 | # CONFIG_MARKERS is not set | ||
| 116 | CONFIG_HAVE_OPROFILE=y | 132 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 133 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | 134 | CONFIG_HAVE_IOREMAP_PROT=y |
| 119 | CONFIG_HAVE_KPROBES=y | 135 | CONFIG_HAVE_KPROBES=y |
| 120 | CONFIG_HAVE_KRETPROBES=y | 136 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 137 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 138 | # CONFIG_SLOW_WORK is not set | ||
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 139 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 123 | CONFIG_SLABINFO=y | 140 | CONFIG_SLABINFO=y |
| 124 | CONFIG_RT_MUTEXES=y | 141 | CONFIG_RT_MUTEXES=y |
| @@ -131,7 +148,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 148 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 132 | CONFIG_BLOCK=y | 149 | CONFIG_BLOCK=y |
| 133 | # CONFIG_LBD is not set | 150 | # CONFIG_LBD is not set |
| 134 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 135 | # CONFIG_BLK_DEV_BSG is not set | 151 | # CONFIG_BLK_DEV_BSG is not set |
| 136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 152 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 137 | 153 | ||
| @@ -147,18 +163,11 @@ CONFIG_DEFAULT_AS=y | |||
| 147 | # CONFIG_DEFAULT_CFQ is not set | 163 | # CONFIG_DEFAULT_CFQ is not set |
| 148 | # CONFIG_DEFAULT_NOOP is not set | 164 | # CONFIG_DEFAULT_NOOP is not set |
| 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 165 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 150 | CONFIG_CLASSIC_RCU=y | ||
| 151 | # CONFIG_TREE_RCU is not set | ||
| 152 | # CONFIG_PREEMPT_RCU is not set | ||
| 153 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 155 | # CONFIG_FREEZER is not set | 166 | # CONFIG_FREEZER is not set |
| 156 | 167 | ||
| 157 | # | 168 | # |
| 158 | # Platform support | 169 | # Platform support |
| 159 | # | 170 | # |
| 160 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 161 | CONFIG_CLASSIC32=y | ||
| 162 | # CONFIG_PPC_CHRP is not set | 171 | # CONFIG_PPC_CHRP is not set |
| 163 | # CONFIG_MPC5121_ADS is not set | 172 | # CONFIG_MPC5121_ADS is not set |
| 164 | # CONFIG_MPC5121_GENERIC is not set | 173 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -183,6 +192,8 @@ CONFIG_MPC834x_ITX=y | |||
| 183 | CONFIG_PPC_MPC834x=y | 192 | CONFIG_PPC_MPC834x=y |
| 184 | # CONFIG_PPC_86xx is not set | 193 | # CONFIG_PPC_86xx is not set |
| 185 | # CONFIG_EMBEDDED6xx is not set | 194 | # CONFIG_EMBEDDED6xx is not set |
| 195 | # CONFIG_AMIGAONE is not set | ||
| 196 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 186 | CONFIG_IPIC=y | 197 | CONFIG_IPIC=y |
| 187 | # CONFIG_MPIC is not set | 198 | # CONFIG_MPIC is not set |
| 188 | # CONFIG_MPIC_WEIRD is not set | 199 | # CONFIG_MPIC_WEIRD is not set |
| @@ -244,9 +255,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 244 | CONFIG_BOUNCE=y | 255 | CONFIG_BOUNCE=y |
| 245 | CONFIG_VIRT_TO_BUS=y | 256 | CONFIG_VIRT_TO_BUS=y |
| 246 | CONFIG_UNEVICTABLE_LRU=y | 257 | CONFIG_UNEVICTABLE_LRU=y |
| 258 | CONFIG_HAVE_MLOCK=y | ||
| 259 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 247 | CONFIG_PPC_4K_PAGES=y | 260 | CONFIG_PPC_4K_PAGES=y |
| 248 | # CONFIG_PPC_16K_PAGES is not set | 261 | # CONFIG_PPC_16K_PAGES is not set |
| 249 | # CONFIG_PPC_64K_PAGES is not set | 262 | # CONFIG_PPC_64K_PAGES is not set |
| 263 | # CONFIG_PPC_256K_PAGES is not set | ||
| 250 | CONFIG_FORCE_MAX_ZONEORDER=11 | 264 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 251 | CONFIG_PROC_DEVICETREE=y | 265 | CONFIG_PROC_DEVICETREE=y |
| 252 | # CONFIG_CMDLINE_BOOL is not set | 266 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -272,6 +286,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 272 | # CONFIG_PCI_MSI is not set | 286 | # CONFIG_PCI_MSI is not set |
| 273 | # CONFIG_PCI_LEGACY is not set | 287 | # CONFIG_PCI_LEGACY is not set |
| 274 | # CONFIG_PCI_STUB is not set | 288 | # CONFIG_PCI_STUB is not set |
| 289 | # CONFIG_PCI_IOV is not set | ||
| 275 | # CONFIG_PCCARD is not set | 290 | # CONFIG_PCCARD is not set |
| 276 | # CONFIG_HOTPLUG_PCI is not set | 291 | # CONFIG_HOTPLUG_PCI is not set |
| 277 | # CONFIG_HAS_RAPIDIO is not set | 292 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -294,7 +309,6 @@ CONFIG_NET=y | |||
| 294 | # | 309 | # |
| 295 | # Networking options | 310 | # Networking options |
| 296 | # | 311 | # |
| 297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 298 | CONFIG_PACKET=y | 312 | CONFIG_PACKET=y |
| 299 | # CONFIG_PACKET_MMAP is not set | 313 | # CONFIG_PACKET_MMAP is not set |
| 300 | CONFIG_UNIX=y | 314 | CONFIG_UNIX=y |
| @@ -350,6 +364,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 350 | # CONFIG_LAPB is not set | 364 | # CONFIG_LAPB is not set |
| 351 | # CONFIG_ECONET is not set | 365 | # CONFIG_ECONET is not set |
| 352 | # CONFIG_WAN_ROUTER is not set | 366 | # CONFIG_WAN_ROUTER is not set |
| 367 | # CONFIG_PHONET is not set | ||
| 353 | # CONFIG_NET_SCHED is not set | 368 | # CONFIG_NET_SCHED is not set |
| 354 | # CONFIG_DCB is not set | 369 | # CONFIG_DCB is not set |
| 355 | 370 | ||
| @@ -362,7 +377,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 362 | # CONFIG_IRDA is not set | 377 | # CONFIG_IRDA is not set |
| 363 | # CONFIG_BT is not set | 378 | # CONFIG_BT is not set |
| 364 | # CONFIG_AF_RXRPC is not set | 379 | # CONFIG_AF_RXRPC is not set |
| 365 | # CONFIG_PHONET is not set | ||
| 366 | CONFIG_WIRELESS=y | 380 | CONFIG_WIRELESS=y |
| 367 | # CONFIG_CFG80211 is not set | 381 | # CONFIG_CFG80211 is not set |
| 368 | CONFIG_WIRELESS_OLD_REGULATORY=y | 382 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -465,7 +479,6 @@ CONFIG_MTD_PHYSMAP=y | |||
| 465 | # LPDDR flash memory drivers | 479 | # LPDDR flash memory drivers |
| 466 | # | 480 | # |
| 467 | # CONFIG_MTD_LPDDR is not set | 481 | # CONFIG_MTD_LPDDR is not set |
| 468 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 469 | 482 | ||
| 470 | # | 483 | # |
| 471 | # UBI - Unsorted block images | 484 | # UBI - Unsorted block images |
| @@ -496,13 +509,21 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 496 | # CONFIG_BLK_DEV_HD is not set | 509 | # CONFIG_BLK_DEV_HD is not set |
| 497 | CONFIG_MISC_DEVICES=y | 510 | CONFIG_MISC_DEVICES=y |
| 498 | # CONFIG_PHANTOM is not set | 511 | # CONFIG_PHANTOM is not set |
| 499 | # CONFIG_EEPROM_93CX6 is not set | ||
| 500 | # CONFIG_SGI_IOC4 is not set | 512 | # CONFIG_SGI_IOC4 is not set |
| 501 | # CONFIG_TIFM_CORE is not set | 513 | # CONFIG_TIFM_CORE is not set |
| 502 | # CONFIG_ICS932S401 is not set | 514 | # CONFIG_ICS932S401 is not set |
| 503 | # CONFIG_ENCLOSURE_SERVICES is not set | 515 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 504 | # CONFIG_HP_ILO is not set | 516 | # CONFIG_HP_ILO is not set |
| 517 | # CONFIG_ISL29003 is not set | ||
| 505 | # CONFIG_C2PORT is not set | 518 | # CONFIG_C2PORT is not set |
| 519 | |||
| 520 | # | ||
| 521 | # EEPROM support | ||
| 522 | # | ||
| 523 | # CONFIG_EEPROM_AT24 is not set | ||
| 524 | # CONFIG_EEPROM_AT25 is not set | ||
| 525 | # CONFIG_EEPROM_LEGACY is not set | ||
| 526 | # CONFIG_EEPROM_93CX6 is not set | ||
| 506 | CONFIG_HAVE_IDE=y | 527 | CONFIG_HAVE_IDE=y |
| 507 | # CONFIG_IDE is not set | 528 | # CONFIG_IDE is not set |
| 508 | 529 | ||
| @@ -560,9 +581,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 560 | # CONFIG_MEGARAID_NEWGEN is not set | 581 | # CONFIG_MEGARAID_NEWGEN is not set |
| 561 | # CONFIG_MEGARAID_LEGACY is not set | 582 | # CONFIG_MEGARAID_LEGACY is not set |
| 562 | # CONFIG_MEGARAID_SAS is not set | 583 | # CONFIG_MEGARAID_SAS is not set |
| 584 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 563 | # CONFIG_SCSI_HPTIOP is not set | 585 | # CONFIG_SCSI_HPTIOP is not set |
| 564 | # CONFIG_SCSI_BUSLOGIC is not set | 586 | # CONFIG_SCSI_BUSLOGIC is not set |
| 565 | # CONFIG_LIBFC is not set | 587 | # CONFIG_LIBFC is not set |
| 588 | # CONFIG_LIBFCOE is not set | ||
| 566 | # CONFIG_FCOE is not set | 589 | # CONFIG_FCOE is not set |
| 567 | # CONFIG_SCSI_DMX3191D is not set | 590 | # CONFIG_SCSI_DMX3191D is not set |
| 568 | # CONFIG_SCSI_EATA is not set | 591 | # CONFIG_SCSI_EATA is not set |
| @@ -584,6 +607,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 584 | # CONFIG_SCSI_DEBUG is not set | 607 | # CONFIG_SCSI_DEBUG is not set |
| 585 | # CONFIG_SCSI_SRP is not set | 608 | # CONFIG_SCSI_SRP is not set |
| 586 | # CONFIG_SCSI_DH is not set | 609 | # CONFIG_SCSI_DH is not set |
| 610 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 587 | # CONFIG_ATA is not set | 611 | # CONFIG_ATA is not set |
| 588 | # CONFIG_MD is not set | 612 | # CONFIG_MD is not set |
| 589 | # CONFIG_FUSION is not set | 613 | # CONFIG_FUSION is not set |
| @@ -600,6 +624,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 600 | # CONFIG_I2O is not set | 624 | # CONFIG_I2O is not set |
| 601 | # CONFIG_MACINTOSH_DRIVERS is not set | 625 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 602 | CONFIG_NETDEVICES=y | 626 | CONFIG_NETDEVICES=y |
| 627 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 603 | # CONFIG_DUMMY is not set | 628 | # CONFIG_DUMMY is not set |
| 604 | # CONFIG_BONDING is not set | 629 | # CONFIG_BONDING is not set |
| 605 | # CONFIG_MACVLAN is not set | 630 | # CONFIG_MACVLAN is not set |
| @@ -635,6 +660,7 @@ CONFIG_NETDEV_1000=y | |||
| 635 | # CONFIG_E1000E is not set | 660 | # CONFIG_E1000E is not set |
| 636 | # CONFIG_IP1000 is not set | 661 | # CONFIG_IP1000 is not set |
| 637 | # CONFIG_IGB is not set | 662 | # CONFIG_IGB is not set |
| 663 | # CONFIG_IGBVF is not set | ||
| 638 | # CONFIG_NS83820 is not set | 664 | # CONFIG_NS83820 is not set |
| 639 | # CONFIG_HAMACHI is not set | 665 | # CONFIG_HAMACHI is not set |
| 640 | # CONFIG_YELLOWFIN is not set | 666 | # CONFIG_YELLOWFIN is not set |
| @@ -645,11 +671,12 @@ CONFIG_NETDEV_1000=y | |||
| 645 | # CONFIG_VIA_VELOCITY is not set | 671 | # CONFIG_VIA_VELOCITY is not set |
| 646 | # CONFIG_TIGON3 is not set | 672 | # CONFIG_TIGON3 is not set |
| 647 | # CONFIG_BNX2 is not set | 673 | # CONFIG_BNX2 is not set |
| 674 | CONFIG_FSL_PQ_MDIO=y | ||
| 648 | CONFIG_GIANFAR=y | 675 | CONFIG_GIANFAR=y |
| 649 | # CONFIG_MV643XX_ETH is not set | ||
| 650 | # CONFIG_QLA3XXX is not set | 676 | # CONFIG_QLA3XXX is not set |
| 651 | # CONFIG_ATL1 is not set | 677 | # CONFIG_ATL1 is not set |
| 652 | # CONFIG_ATL1E is not set | 678 | # CONFIG_ATL1E is not set |
| 679 | # CONFIG_ATL1C is not set | ||
| 653 | # CONFIG_JME is not set | 680 | # CONFIG_JME is not set |
| 654 | CONFIG_NETDEV_10000=y | 681 | CONFIG_NETDEV_10000=y |
| 655 | # CONFIG_CHELSIO_T1 is not set | 682 | # CONFIG_CHELSIO_T1 is not set |
| @@ -659,6 +686,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 659 | # CONFIG_IXGBE is not set | 686 | # CONFIG_IXGBE is not set |
| 660 | # CONFIG_IXGB is not set | 687 | # CONFIG_IXGB is not set |
| 661 | # CONFIG_S2IO is not set | 688 | # CONFIG_S2IO is not set |
| 689 | # CONFIG_VXGE is not set | ||
| 662 | # CONFIG_MYRI10GE is not set | 690 | # CONFIG_MYRI10GE is not set |
| 663 | # CONFIG_NETXEN_NIC is not set | 691 | # CONFIG_NETXEN_NIC is not set |
| 664 | # CONFIG_NIU is not set | 692 | # CONFIG_NIU is not set |
| @@ -668,6 +696,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 668 | # CONFIG_BNX2X is not set | 696 | # CONFIG_BNX2X is not set |
| 669 | # CONFIG_QLGE is not set | 697 | # CONFIG_QLGE is not set |
| 670 | # CONFIG_SFC is not set | 698 | # CONFIG_SFC is not set |
| 699 | # CONFIG_BE2NET is not set | ||
| 671 | # CONFIG_TR is not set | 700 | # CONFIG_TR is not set |
| 672 | 701 | ||
| 673 | # | 702 | # |
| @@ -675,7 +704,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 675 | # | 704 | # |
| 676 | # CONFIG_WLAN_PRE80211 is not set | 705 | # CONFIG_WLAN_PRE80211 is not set |
| 677 | # CONFIG_WLAN_80211 is not set | 706 | # CONFIG_WLAN_80211 is not set |
| 678 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 679 | 707 | ||
| 680 | # | 708 | # |
| 681 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 709 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -733,6 +761,7 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 733 | # | 761 | # |
| 734 | # Non-8250 serial port support | 762 | # Non-8250 serial port support |
| 735 | # | 763 | # |
| 764 | # CONFIG_SERIAL_MAX3100 is not set | ||
| 736 | # CONFIG_SERIAL_UARTLITE is not set | 765 | # CONFIG_SERIAL_UARTLITE is not set |
| 737 | CONFIG_SERIAL_CORE=y | 766 | CONFIG_SERIAL_CORE=y |
| 738 | CONFIG_SERIAL_CORE_CONSOLE=y | 767 | CONFIG_SERIAL_CORE_CONSOLE=y |
| @@ -745,6 +774,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 745 | # CONFIG_HVC_UDBG is not set | 774 | # CONFIG_HVC_UDBG is not set |
| 746 | # CONFIG_IPMI_HANDLER is not set | 775 | # CONFIG_IPMI_HANDLER is not set |
| 747 | CONFIG_HW_RANDOM=y | 776 | CONFIG_HW_RANDOM=y |
| 777 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 748 | # CONFIG_NVRAM is not set | 778 | # CONFIG_NVRAM is not set |
| 749 | # CONFIG_R3964 is not set | 779 | # CONFIG_R3964 is not set |
| 750 | # CONFIG_APPLICOM is not set | 780 | # CONFIG_APPLICOM is not set |
| @@ -807,12 +837,9 @@ CONFIG_I2C_MPC=y | |||
| 807 | # Miscellaneous I2C Chip support | 837 | # Miscellaneous I2C Chip support |
| 808 | # | 838 | # |
| 809 | # CONFIG_DS1682 is not set | 839 | # CONFIG_DS1682 is not set |
| 810 | # CONFIG_EEPROM_AT24 is not set | ||
| 811 | # CONFIG_EEPROM_LEGACY is not set | ||
| 812 | CONFIG_SENSORS_PCF8574=y | 840 | CONFIG_SENSORS_PCF8574=y |
| 813 | # CONFIG_PCF8575 is not set | 841 | # CONFIG_PCF8575 is not set |
| 814 | # CONFIG_SENSORS_PCA9539 is not set | 842 | # CONFIG_SENSORS_PCA9539 is not set |
| 815 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 816 | # CONFIG_SENSORS_MAX6875 is not set | 843 | # CONFIG_SENSORS_MAX6875 is not set |
| 817 | # CONFIG_SENSORS_TSL2550 is not set | 844 | # CONFIG_SENSORS_TSL2550 is not set |
| 818 | # CONFIG_I2C_DEBUG_CORE is not set | 845 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -831,7 +858,6 @@ CONFIG_SPI_MPC83xx=y | |||
| 831 | # | 858 | # |
| 832 | # SPI Protocol Masters | 859 | # SPI Protocol Masters |
| 833 | # | 860 | # |
| 834 | # CONFIG_EEPROM_AT25 is not set | ||
| 835 | # CONFIG_SPI_SPIDEV is not set | 861 | # CONFIG_SPI_SPIDEV is not set |
| 836 | # CONFIG_SPI_TLE62X0 is not set | 862 | # CONFIG_SPI_TLE62X0 is not set |
| 837 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 863 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
| @@ -963,11 +989,11 @@ CONFIG_USB_UHCI_HCD=y | |||
| 963 | # CONFIG_USB_TMC is not set | 989 | # CONFIG_USB_TMC is not set |
| 964 | 990 | ||
| 965 | # | 991 | # |
| 966 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 992 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 967 | # | 993 | # |
| 968 | 994 | ||
| 969 | # | 995 | # |
| 970 | # see USB_STORAGE Help for more information | 996 | # also be needed; see USB_STORAGE Help for more info |
| 971 | # | 997 | # |
| 972 | CONFIG_USB_STORAGE=y | 998 | CONFIG_USB_STORAGE=y |
| 973 | # CONFIG_USB_STORAGE_DEBUG is not set | 999 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1008,7 +1034,6 @@ CONFIG_USB_STORAGE=y | |||
| 1008 | # CONFIG_USB_LED is not set | 1034 | # CONFIG_USB_LED is not set |
| 1009 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1035 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1010 | # CONFIG_USB_CYTHERM is not set | 1036 | # CONFIG_USB_CYTHERM is not set |
| 1011 | # CONFIG_USB_PHIDGET is not set | ||
| 1012 | # CONFIG_USB_IDMOUSE is not set | 1037 | # CONFIG_USB_IDMOUSE is not set |
| 1013 | # CONFIG_USB_FTDI_ELAN is not set | 1038 | # CONFIG_USB_FTDI_ELAN is not set |
| 1014 | # CONFIG_USB_APPLEDISPLAY is not set | 1039 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1023,6 +1048,7 @@ CONFIG_USB_STORAGE=y | |||
| 1023 | # | 1048 | # |
| 1024 | # OTG and related infrastructure | 1049 | # OTG and related infrastructure |
| 1025 | # | 1050 | # |
| 1051 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1026 | # CONFIG_UWB is not set | 1052 | # CONFIG_UWB is not set |
| 1027 | # CONFIG_MMC is not set | 1053 | # CONFIG_MMC is not set |
| 1028 | # CONFIG_MEMSTICK is not set | 1054 | # CONFIG_MEMSTICK is not set |
| @@ -1091,8 +1117,9 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1091 | # | 1117 | # |
| 1092 | # on-CPU RTC drivers | 1118 | # on-CPU RTC drivers |
| 1093 | # | 1119 | # |
| 1094 | # CONFIG_RTC_DRV_PPC is not set | 1120 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1095 | # CONFIG_DMADEVICES is not set | 1121 | # CONFIG_DMADEVICES is not set |
| 1122 | # CONFIG_AUXDISPLAY is not set | ||
| 1096 | # CONFIG_UIO is not set | 1123 | # CONFIG_UIO is not set |
| 1097 | # CONFIG_STAGING is not set | 1124 | # CONFIG_STAGING is not set |
| 1098 | 1125 | ||
| @@ -1103,6 +1130,7 @@ CONFIG_EXT2_FS=y | |||
| 1103 | # CONFIG_EXT2_FS_XATTR is not set | 1130 | # CONFIG_EXT2_FS_XATTR is not set |
| 1104 | # CONFIG_EXT2_FS_XIP is not set | 1131 | # CONFIG_EXT2_FS_XIP is not set |
| 1105 | CONFIG_EXT3_FS=y | 1132 | CONFIG_EXT3_FS=y |
| 1133 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1106 | CONFIG_EXT3_FS_XATTR=y | 1134 | CONFIG_EXT3_FS_XATTR=y |
| 1107 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1135 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1108 | # CONFIG_EXT3_FS_SECURITY is not set | 1136 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1125,6 +1153,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1125 | # CONFIG_FUSE_FS is not set | 1153 | # CONFIG_FUSE_FS is not set |
| 1126 | 1154 | ||
| 1127 | # | 1155 | # |
| 1156 | # Caches | ||
| 1157 | # | ||
| 1158 | # CONFIG_FSCACHE is not set | ||
| 1159 | |||
| 1160 | # | ||
| 1128 | # CD-ROM/DVD Filesystems | 1161 | # CD-ROM/DVD Filesystems |
| 1129 | # | 1162 | # |
| 1130 | # CONFIG_ISO9660_FS is not set | 1163 | # CONFIG_ISO9660_FS is not set |
| @@ -1171,6 +1204,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1171 | # CONFIG_ROMFS_FS is not set | 1204 | # CONFIG_ROMFS_FS is not set |
| 1172 | # CONFIG_SYSV_FS is not set | 1205 | # CONFIG_SYSV_FS is not set |
| 1173 | # CONFIG_UFS_FS is not set | 1206 | # CONFIG_UFS_FS is not set |
| 1207 | # CONFIG_NILFS2_FS is not set | ||
| 1174 | CONFIG_NETWORK_FILESYSTEMS=y | 1208 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1175 | CONFIG_NFS_FS=y | 1209 | CONFIG_NFS_FS=y |
| 1176 | CONFIG_NFS_V3=y | 1210 | CONFIG_NFS_V3=y |
| @@ -1183,7 +1217,6 @@ CONFIG_LOCKD_V4=y | |||
| 1183 | CONFIG_NFS_COMMON=y | 1217 | CONFIG_NFS_COMMON=y |
| 1184 | CONFIG_SUNRPC=y | 1218 | CONFIG_SUNRPC=y |
| 1185 | CONFIG_SUNRPC_GSS=y | 1219 | CONFIG_SUNRPC_GSS=y |
| 1186 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1187 | CONFIG_RPCSEC_GSS_KRB5=y | 1220 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1188 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1221 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1189 | # CONFIG_SMB_FS is not set | 1222 | # CONFIG_SMB_FS is not set |
| @@ -1254,6 +1287,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1254 | # CONFIG_NLS_KOI8_U is not set | 1287 | # CONFIG_NLS_KOI8_U is not set |
| 1255 | # CONFIG_NLS_UTF8 is not set | 1288 | # CONFIG_NLS_UTF8 is not set |
| 1256 | # CONFIG_DLM is not set | 1289 | # CONFIG_DLM is not set |
| 1290 | # CONFIG_BINARY_PRINTF is not set | ||
| 1257 | 1291 | ||
| 1258 | # | 1292 | # |
| 1259 | # Library routines | 1293 | # Library routines |
| @@ -1267,11 +1301,13 @@ CONFIG_CRC_T10DIF=y | |||
| 1267 | CONFIG_CRC32=y | 1301 | CONFIG_CRC32=y |
| 1268 | # CONFIG_CRC7 is not set | 1302 | # CONFIG_CRC7 is not set |
| 1269 | # CONFIG_LIBCRC32C is not set | 1303 | # CONFIG_LIBCRC32C is not set |
| 1270 | CONFIG_PLIST=y | 1304 | CONFIG_ZLIB_INFLATE=y |
| 1305 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1271 | CONFIG_HAS_IOMEM=y | 1306 | CONFIG_HAS_IOMEM=y |
| 1272 | CONFIG_HAS_IOPORT=y | 1307 | CONFIG_HAS_IOPORT=y |
| 1273 | CONFIG_HAS_DMA=y | 1308 | CONFIG_HAS_DMA=y |
| 1274 | CONFIG_HAVE_LMB=y | 1309 | CONFIG_HAVE_LMB=y |
| 1310 | CONFIG_NLATTR=y | ||
| 1275 | 1311 | ||
| 1276 | # | 1312 | # |
| 1277 | # Kernel hacking | 1313 | # Kernel hacking |
| @@ -1293,13 +1329,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1293 | # CONFIG_LATENCYTOP is not set | 1329 | # CONFIG_LATENCYTOP is not set |
| 1294 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1330 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1295 | CONFIG_HAVE_FUNCTION_TRACER=y | 1331 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1332 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1296 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1333 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1297 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1334 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1335 | CONFIG_TRACING_SUPPORT=y | ||
| 1298 | 1336 | ||
| 1299 | # | 1337 | # |
| 1300 | # Tracers | 1338 | # Tracers |
| 1301 | # | 1339 | # |
| 1302 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1340 | # CONFIG_FUNCTION_TRACER is not set |
| 1341 | # CONFIG_SCHED_TRACER is not set | ||
| 1342 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1343 | # CONFIG_EVENT_TRACER is not set | ||
| 1344 | # CONFIG_BOOT_TRACER is not set | ||
| 1345 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1346 | # CONFIG_STACK_TRACER is not set | ||
| 1347 | # CONFIG_KMEMTRACE is not set | ||
| 1348 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1349 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1303 | # CONFIG_SAMPLES is not set | 1350 | # CONFIG_SAMPLES is not set |
| 1304 | CONFIG_HAVE_ARCH_KGDB=y | 1351 | CONFIG_HAVE_ARCH_KGDB=y |
| 1305 | CONFIG_PRINT_STACK_DEPTH=64 | 1352 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1328,10 +1375,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1328 | CONFIG_CRYPTO_HASH=y | 1375 | CONFIG_CRYPTO_HASH=y |
| 1329 | CONFIG_CRYPTO_HASH2=y | 1376 | CONFIG_CRYPTO_HASH2=y |
| 1330 | CONFIG_CRYPTO_RNG2=y | 1377 | CONFIG_CRYPTO_RNG2=y |
| 1378 | CONFIG_CRYPTO_PCOMP=y | ||
| 1331 | CONFIG_CRYPTO_MANAGER=y | 1379 | CONFIG_CRYPTO_MANAGER=y |
| 1332 | CONFIG_CRYPTO_MANAGER2=y | 1380 | CONFIG_CRYPTO_MANAGER2=y |
| 1333 | # CONFIG_CRYPTO_GF128MUL is not set | 1381 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1334 | # CONFIG_CRYPTO_NULL is not set | 1382 | # CONFIG_CRYPTO_NULL is not set |
| 1383 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1335 | # CONFIG_CRYPTO_CRYPTD is not set | 1384 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1336 | # CONFIG_CRYPTO_AUTHENC is not set | 1385 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1337 | # CONFIG_CRYPTO_TEST is not set | 1386 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1400,6 +1449,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1400 | # Compression | 1449 | # Compression |
| 1401 | # | 1450 | # |
| 1402 | # CONFIG_CRYPTO_DEFLATE is not set | 1451 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1452 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1403 | # CONFIG_CRYPTO_LZO is not set | 1453 | # CONFIG_CRYPTO_LZO is not set |
| 1404 | 1454 | ||
| 1405 | # | 1455 | # |
diff --git a/arch/powerpc/configs/83xx/mpc834x_mds_defconfig b/arch/powerpc/configs/83xx/mpc834x_mds_defconfig index 18e4bc0b3c11..1cd1fcac22c8 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:56 2009 | 4 | # Wed May 13 17:22:11 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -56,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 87 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 89 | CONFIG_GROUP_SCHED=y |
| @@ -87,19 +98,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | # CONFIG_KALLSYMS is not set | 109 | # CONFIG_KALLSYMS is not set |
| 110 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 95 | CONFIG_HOTPLUG=y | 111 | CONFIG_HOTPLUG=y |
| 96 | CONFIG_PRINTK=y | 112 | CONFIG_PRINTK=y |
| 97 | CONFIG_BUG=y | 113 | CONFIG_BUG=y |
| 98 | CONFIG_ELF_CORE=y | 114 | CONFIG_ELF_CORE=y |
| 99 | CONFIG_COMPAT_BRK=y | ||
| 100 | CONFIG_BASE_FULL=y | 115 | CONFIG_BASE_FULL=y |
| 101 | CONFIG_FUTEX=y | 116 | CONFIG_FUTEX=y |
| 102 | CONFIG_ANON_INODES=y | ||
| 103 | # CONFIG_EPOLL is not set | 117 | # CONFIG_EPOLL is not set |
| 104 | CONFIG_SIGNALFD=y | 118 | CONFIG_SIGNALFD=y |
| 105 | CONFIG_TIMERFD=y | 119 | CONFIG_TIMERFD=y |
| @@ -109,16 +123,19 @@ CONFIG_AIO=y | |||
| 109 | CONFIG_VM_EVENT_COUNTERS=y | 123 | CONFIG_VM_EVENT_COUNTERS=y |
| 110 | CONFIG_PCI_QUIRKS=y | 124 | CONFIG_PCI_QUIRKS=y |
| 111 | CONFIG_SLUB_DEBUG=y | 125 | CONFIG_SLUB_DEBUG=y |
| 126 | CONFIG_COMPAT_BRK=y | ||
| 112 | # CONFIG_SLAB is not set | 127 | # CONFIG_SLAB is not set |
| 113 | CONFIG_SLUB=y | 128 | CONFIG_SLUB=y |
| 114 | # CONFIG_SLOB is not set | 129 | # CONFIG_SLOB is not set |
| 115 | # CONFIG_PROFILING is not set | 130 | # CONFIG_PROFILING is not set |
| 131 | # CONFIG_MARKERS is not set | ||
| 116 | CONFIG_HAVE_OPROFILE=y | 132 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 133 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | 134 | CONFIG_HAVE_IOREMAP_PROT=y |
| 119 | CONFIG_HAVE_KPROBES=y | 135 | CONFIG_HAVE_KPROBES=y |
| 120 | CONFIG_HAVE_KRETPROBES=y | 136 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 137 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 138 | # CONFIG_SLOW_WORK is not set | ||
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 139 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 123 | CONFIG_SLABINFO=y | 140 | CONFIG_SLABINFO=y |
| 124 | CONFIG_RT_MUTEXES=y | 141 | CONFIG_RT_MUTEXES=y |
| @@ -131,7 +148,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 148 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 132 | CONFIG_BLOCK=y | 149 | CONFIG_BLOCK=y |
| 133 | # CONFIG_LBD is not set | 150 | # CONFIG_LBD is not set |
| 134 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 135 | # CONFIG_BLK_DEV_BSG is not set | 151 | # CONFIG_BLK_DEV_BSG is not set |
| 136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 152 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 137 | 153 | ||
| @@ -147,18 +163,11 @@ CONFIG_DEFAULT_AS=y | |||
| 147 | # CONFIG_DEFAULT_CFQ is not set | 163 | # CONFIG_DEFAULT_CFQ is not set |
| 148 | # CONFIG_DEFAULT_NOOP is not set | 164 | # CONFIG_DEFAULT_NOOP is not set |
| 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 165 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 150 | CONFIG_CLASSIC_RCU=y | ||
| 151 | # CONFIG_TREE_RCU is not set | ||
| 152 | # CONFIG_PREEMPT_RCU is not set | ||
| 153 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 155 | # CONFIG_FREEZER is not set | 166 | # CONFIG_FREEZER is not set |
| 156 | 167 | ||
| 157 | # | 168 | # |
| 158 | # Platform support | 169 | # Platform support |
| 159 | # | 170 | # |
| 160 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 161 | CONFIG_CLASSIC32=y | ||
| 162 | # CONFIG_PPC_CHRP is not set | 171 | # CONFIG_PPC_CHRP is not set |
| 163 | # CONFIG_MPC5121_ADS is not set | 172 | # CONFIG_MPC5121_ADS is not set |
| 164 | # CONFIG_MPC5121_GENERIC is not set | 173 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -183,6 +192,8 @@ CONFIG_MPC834x_MDS=y | |||
| 183 | CONFIG_PPC_MPC834x=y | 192 | CONFIG_PPC_MPC834x=y |
| 184 | # CONFIG_PPC_86xx is not set | 193 | # CONFIG_PPC_86xx is not set |
| 185 | # CONFIG_EMBEDDED6xx is not set | 194 | # CONFIG_EMBEDDED6xx is not set |
| 195 | # CONFIG_AMIGAONE is not set | ||
| 196 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 186 | CONFIG_IPIC=y | 197 | CONFIG_IPIC=y |
| 187 | # CONFIG_MPIC is not set | 198 | # CONFIG_MPIC is not set |
| 188 | # CONFIG_MPIC_WEIRD is not set | 199 | # CONFIG_MPIC_WEIRD is not set |
| @@ -244,9 +255,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 244 | CONFIG_BOUNCE=y | 255 | CONFIG_BOUNCE=y |
| 245 | CONFIG_VIRT_TO_BUS=y | 256 | CONFIG_VIRT_TO_BUS=y |
| 246 | CONFIG_UNEVICTABLE_LRU=y | 257 | CONFIG_UNEVICTABLE_LRU=y |
| 258 | CONFIG_HAVE_MLOCK=y | ||
| 259 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 247 | CONFIG_PPC_4K_PAGES=y | 260 | CONFIG_PPC_4K_PAGES=y |
| 248 | # CONFIG_PPC_16K_PAGES is not set | 261 | # CONFIG_PPC_16K_PAGES is not set |
| 249 | # CONFIG_PPC_64K_PAGES is not set | 262 | # CONFIG_PPC_64K_PAGES is not set |
| 263 | # CONFIG_PPC_256K_PAGES is not set | ||
| 250 | CONFIG_FORCE_MAX_ZONEORDER=11 | 264 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 251 | CONFIG_PROC_DEVICETREE=y | 265 | CONFIG_PROC_DEVICETREE=y |
| 252 | # CONFIG_CMDLINE_BOOL is not set | 266 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -272,6 +286,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 272 | # CONFIG_PCI_MSI is not set | 286 | # CONFIG_PCI_MSI is not set |
| 273 | # CONFIG_PCI_LEGACY is not set | 287 | # CONFIG_PCI_LEGACY is not set |
| 274 | # CONFIG_PCI_STUB is not set | 288 | # CONFIG_PCI_STUB is not set |
| 289 | # CONFIG_PCI_IOV is not set | ||
| 275 | # CONFIG_PCCARD is not set | 290 | # CONFIG_PCCARD is not set |
| 276 | # CONFIG_HOTPLUG_PCI is not set | 291 | # CONFIG_HOTPLUG_PCI is not set |
| 277 | # CONFIG_HAS_RAPIDIO is not set | 292 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -294,7 +309,6 @@ CONFIG_NET=y | |||
| 294 | # | 309 | # |
| 295 | # Networking options | 310 | # Networking options |
| 296 | # | 311 | # |
| 297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 298 | CONFIG_PACKET=y | 312 | CONFIG_PACKET=y |
| 299 | # CONFIG_PACKET_MMAP is not set | 313 | # CONFIG_PACKET_MMAP is not set |
| 300 | CONFIG_UNIX=y | 314 | CONFIG_UNIX=y |
| @@ -350,6 +364,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 350 | # CONFIG_LAPB is not set | 364 | # CONFIG_LAPB is not set |
| 351 | # CONFIG_ECONET is not set | 365 | # CONFIG_ECONET is not set |
| 352 | # CONFIG_WAN_ROUTER is not set | 366 | # CONFIG_WAN_ROUTER is not set |
| 367 | # CONFIG_PHONET is not set | ||
| 353 | # CONFIG_NET_SCHED is not set | 368 | # CONFIG_NET_SCHED is not set |
| 354 | # CONFIG_DCB is not set | 369 | # CONFIG_DCB is not set |
| 355 | 370 | ||
| @@ -362,7 +377,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 362 | # CONFIG_IRDA is not set | 377 | # CONFIG_IRDA is not set |
| 363 | # CONFIG_BT is not set | 378 | # CONFIG_BT is not set |
| 364 | # CONFIG_AF_RXRPC is not set | 379 | # CONFIG_AF_RXRPC is not set |
| 365 | # CONFIG_PHONET is not set | ||
| 366 | CONFIG_WIRELESS=y | 380 | CONFIG_WIRELESS=y |
| 367 | # CONFIG_CFG80211 is not set | 381 | # CONFIG_CFG80211 is not set |
| 368 | CONFIG_WIRELESS_OLD_REGULATORY=y | 382 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -410,13 +424,20 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 410 | # CONFIG_BLK_DEV_HD is not set | 424 | # CONFIG_BLK_DEV_HD is not set |
| 411 | CONFIG_MISC_DEVICES=y | 425 | CONFIG_MISC_DEVICES=y |
| 412 | # CONFIG_PHANTOM is not set | 426 | # CONFIG_PHANTOM is not set |
| 413 | # CONFIG_EEPROM_93CX6 is not set | ||
| 414 | # CONFIG_SGI_IOC4 is not set | 427 | # CONFIG_SGI_IOC4 is not set |
| 415 | # CONFIG_TIFM_CORE is not set | 428 | # CONFIG_TIFM_CORE is not set |
| 416 | # CONFIG_ICS932S401 is not set | 429 | # CONFIG_ICS932S401 is not set |
| 417 | # CONFIG_ENCLOSURE_SERVICES is not set | 430 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 418 | # CONFIG_HP_ILO is not set | 431 | # CONFIG_HP_ILO is not set |
| 432 | # CONFIG_ISL29003 is not set | ||
| 419 | # CONFIG_C2PORT is not set | 433 | # CONFIG_C2PORT is not set |
| 434 | |||
| 435 | # | ||
| 436 | # EEPROM support | ||
| 437 | # | ||
| 438 | # CONFIG_EEPROM_AT24 is not set | ||
| 439 | # CONFIG_EEPROM_LEGACY is not set | ||
| 440 | # CONFIG_EEPROM_93CX6 is not set | ||
| 420 | CONFIG_HAVE_IDE=y | 441 | CONFIG_HAVE_IDE=y |
| 421 | # CONFIG_IDE is not set | 442 | # CONFIG_IDE is not set |
| 422 | 443 | ||
| @@ -443,6 +464,7 @@ CONFIG_HAVE_IDE=y | |||
| 443 | # CONFIG_I2O is not set | 464 | # CONFIG_I2O is not set |
| 444 | # CONFIG_MACINTOSH_DRIVERS is not set | 465 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 445 | CONFIG_NETDEVICES=y | 466 | CONFIG_NETDEVICES=y |
| 467 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 446 | # CONFIG_DUMMY is not set | 468 | # CONFIG_DUMMY is not set |
| 447 | # CONFIG_BONDING is not set | 469 | # CONFIG_BONDING is not set |
| 448 | # CONFIG_MACVLAN is not set | 470 | # CONFIG_MACVLAN is not set |
| @@ -476,6 +498,8 @@ CONFIG_MII=y | |||
| 476 | # CONFIG_SUNGEM is not set | 498 | # CONFIG_SUNGEM is not set |
| 477 | # CONFIG_CASSINI is not set | 499 | # CONFIG_CASSINI is not set |
| 478 | # CONFIG_NET_VENDOR_3COM is not set | 500 | # CONFIG_NET_VENDOR_3COM is not set |
| 501 | # CONFIG_ETHOC is not set | ||
| 502 | # CONFIG_DNET is not set | ||
| 479 | # CONFIG_NET_TULIP is not set | 503 | # CONFIG_NET_TULIP is not set |
| 480 | # CONFIG_HP100 is not set | 504 | # CONFIG_HP100 is not set |
| 481 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 505 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -513,6 +537,7 @@ CONFIG_NETDEV_1000=y | |||
| 513 | # CONFIG_E1000E is not set | 537 | # CONFIG_E1000E is not set |
| 514 | # CONFIG_IP1000 is not set | 538 | # CONFIG_IP1000 is not set |
| 515 | # CONFIG_IGB is not set | 539 | # CONFIG_IGB is not set |
| 540 | # CONFIG_IGBVF is not set | ||
| 516 | # CONFIG_NS83820 is not set | 541 | # CONFIG_NS83820 is not set |
| 517 | # CONFIG_HAMACHI is not set | 542 | # CONFIG_HAMACHI is not set |
| 518 | # CONFIG_YELLOWFIN is not set | 543 | # CONFIG_YELLOWFIN is not set |
| @@ -523,11 +548,12 @@ CONFIG_NETDEV_1000=y | |||
| 523 | # CONFIG_VIA_VELOCITY is not set | 548 | # CONFIG_VIA_VELOCITY is not set |
| 524 | # CONFIG_TIGON3 is not set | 549 | # CONFIG_TIGON3 is not set |
| 525 | # CONFIG_BNX2 is not set | 550 | # CONFIG_BNX2 is not set |
| 551 | CONFIG_FSL_PQ_MDIO=y | ||
| 526 | CONFIG_GIANFAR=y | 552 | CONFIG_GIANFAR=y |
| 527 | # CONFIG_MV643XX_ETH is not set | ||
| 528 | # CONFIG_QLA3XXX is not set | 553 | # CONFIG_QLA3XXX is not set |
| 529 | # CONFIG_ATL1 is not set | 554 | # CONFIG_ATL1 is not set |
| 530 | # CONFIG_ATL1E is not set | 555 | # CONFIG_ATL1E is not set |
| 556 | # CONFIG_ATL1C is not set | ||
| 531 | # CONFIG_JME is not set | 557 | # CONFIG_JME is not set |
| 532 | CONFIG_NETDEV_10000=y | 558 | CONFIG_NETDEV_10000=y |
| 533 | # CONFIG_CHELSIO_T1 is not set | 559 | # CONFIG_CHELSIO_T1 is not set |
| @@ -537,6 +563,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 537 | # CONFIG_IXGBE is not set | 563 | # CONFIG_IXGBE is not set |
| 538 | # CONFIG_IXGB is not set | 564 | # CONFIG_IXGB is not set |
| 539 | # CONFIG_S2IO is not set | 565 | # CONFIG_S2IO is not set |
| 566 | # CONFIG_VXGE is not set | ||
| 540 | # CONFIG_MYRI10GE is not set | 567 | # CONFIG_MYRI10GE is not set |
| 541 | # CONFIG_NETXEN_NIC is not set | 568 | # CONFIG_NETXEN_NIC is not set |
| 542 | # CONFIG_NIU is not set | 569 | # CONFIG_NIU is not set |
| @@ -546,6 +573,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 546 | # CONFIG_BNX2X is not set | 573 | # CONFIG_BNX2X is not set |
| 547 | # CONFIG_QLGE is not set | 574 | # CONFIG_QLGE is not set |
| 548 | # CONFIG_SFC is not set | 575 | # CONFIG_SFC is not set |
| 576 | # CONFIG_BE2NET is not set | ||
| 549 | # CONFIG_TR is not set | 577 | # CONFIG_TR is not set |
| 550 | 578 | ||
| 551 | # | 579 | # |
| @@ -553,7 +581,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 553 | # | 581 | # |
| 554 | # CONFIG_WLAN_PRE80211 is not set | 582 | # CONFIG_WLAN_PRE80211 is not set |
| 555 | # CONFIG_WLAN_80211 is not set | 583 | # CONFIG_WLAN_80211 is not set |
| 556 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 557 | 584 | ||
| 558 | # | 585 | # |
| 559 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 586 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -694,12 +721,9 @@ CONFIG_I2C_MPC=y | |||
| 694 | # Miscellaneous I2C Chip support | 721 | # Miscellaneous I2C Chip support |
| 695 | # | 722 | # |
| 696 | # CONFIG_DS1682 is not set | 723 | # CONFIG_DS1682 is not set |
| 697 | # CONFIG_EEPROM_AT24 is not set | ||
| 698 | # CONFIG_EEPROM_LEGACY is not set | ||
| 699 | # CONFIG_SENSORS_PCF8574 is not set | 724 | # CONFIG_SENSORS_PCF8574 is not set |
| 700 | # CONFIG_PCF8575 is not set | 725 | # CONFIG_PCF8575 is not set |
| 701 | # CONFIG_SENSORS_PCA9539 is not set | 726 | # CONFIG_SENSORS_PCA9539 is not set |
| 702 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 703 | # CONFIG_SENSORS_MAX6875 is not set | 727 | # CONFIG_SENSORS_MAX6875 is not set |
| 704 | # CONFIG_SENSORS_TSL2550 is not set | 728 | # CONFIG_SENSORS_TSL2550 is not set |
| 705 | # CONFIG_I2C_DEBUG_CORE is not set | 729 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -731,6 +755,7 @@ CONFIG_HWMON=y | |||
| 731 | # CONFIG_SENSORS_F71805F is not set | 755 | # CONFIG_SENSORS_F71805F is not set |
| 732 | # CONFIG_SENSORS_F71882FG is not set | 756 | # CONFIG_SENSORS_F71882FG is not set |
| 733 | # CONFIG_SENSORS_F75375S is not set | 757 | # CONFIG_SENSORS_F75375S is not set |
| 758 | # CONFIG_SENSORS_G760A is not set | ||
| 734 | # CONFIG_SENSORS_GL518SM is not set | 759 | # CONFIG_SENSORS_GL518SM is not set |
| 735 | # CONFIG_SENSORS_GL520SM is not set | 760 | # CONFIG_SENSORS_GL520SM is not set |
| 736 | # CONFIG_SENSORS_IT87 is not set | 761 | # CONFIG_SENSORS_IT87 is not set |
| @@ -745,11 +770,14 @@ CONFIG_HWMON=y | |||
| 745 | # CONFIG_SENSORS_LM90 is not set | 770 | # CONFIG_SENSORS_LM90 is not set |
| 746 | # CONFIG_SENSORS_LM92 is not set | 771 | # CONFIG_SENSORS_LM92 is not set |
| 747 | # CONFIG_SENSORS_LM93 is not set | 772 | # CONFIG_SENSORS_LM93 is not set |
| 773 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 748 | # CONFIG_SENSORS_LTC4245 is not set | 774 | # CONFIG_SENSORS_LTC4245 is not set |
| 775 | # CONFIG_SENSORS_LM95241 is not set | ||
| 749 | # CONFIG_SENSORS_MAX1619 is not set | 776 | # CONFIG_SENSORS_MAX1619 is not set |
| 750 | # CONFIG_SENSORS_MAX6650 is not set | 777 | # CONFIG_SENSORS_MAX6650 is not set |
| 751 | # CONFIG_SENSORS_PC87360 is not set | 778 | # CONFIG_SENSORS_PC87360 is not set |
| 752 | # CONFIG_SENSORS_PC87427 is not set | 779 | # CONFIG_SENSORS_PC87427 is not set |
| 780 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 753 | # CONFIG_SENSORS_SIS5595 is not set | 781 | # CONFIG_SENSORS_SIS5595 is not set |
| 754 | # CONFIG_SENSORS_DME1737 is not set | 782 | # CONFIG_SENSORS_DME1737 is not set |
| 755 | # CONFIG_SENSORS_SMSC47M1 is not set | 783 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -847,7 +875,6 @@ CONFIG_HID=y | |||
| 847 | # | 875 | # |
| 848 | # Special HID drivers | 876 | # Special HID drivers |
| 849 | # | 877 | # |
| 850 | CONFIG_HID_COMPAT=y | ||
| 851 | CONFIG_USB_SUPPORT=y | 878 | CONFIG_USB_SUPPORT=y |
| 852 | CONFIG_USB_ARCH_HAS_HCD=y | 879 | CONFIG_USB_ARCH_HAS_HCD=y |
| 853 | CONFIG_USB_ARCH_HAS_OHCI=y | 880 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -861,7 +888,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 861 | # | 888 | # |
| 862 | 889 | ||
| 863 | # | 890 | # |
| 864 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 891 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 865 | # | 892 | # |
| 866 | # CONFIG_USB_GADGET is not set | 893 | # CONFIG_USB_GADGET is not set |
| 867 | 894 | ||
| @@ -929,8 +956,9 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 929 | # | 956 | # |
| 930 | # on-CPU RTC drivers | 957 | # on-CPU RTC drivers |
| 931 | # | 958 | # |
| 932 | # CONFIG_RTC_DRV_PPC is not set | 959 | # CONFIG_RTC_DRV_GENERIC is not set |
| 933 | # CONFIG_DMADEVICES is not set | 960 | # CONFIG_DMADEVICES is not set |
| 961 | # CONFIG_AUXDISPLAY is not set | ||
| 934 | # CONFIG_UIO is not set | 962 | # CONFIG_UIO is not set |
| 935 | # CONFIG_STAGING is not set | 963 | # CONFIG_STAGING is not set |
| 936 | 964 | ||
| @@ -941,6 +969,7 @@ CONFIG_EXT2_FS=y | |||
| 941 | # CONFIG_EXT2_FS_XATTR is not set | 969 | # CONFIG_EXT2_FS_XATTR is not set |
| 942 | # CONFIG_EXT2_FS_XIP is not set | 970 | # CONFIG_EXT2_FS_XIP is not set |
| 943 | CONFIG_EXT3_FS=y | 971 | CONFIG_EXT3_FS=y |
| 972 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 944 | CONFIG_EXT3_FS_XATTR=y | 973 | CONFIG_EXT3_FS_XATTR=y |
| 945 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 974 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 946 | # CONFIG_EXT3_FS_SECURITY is not set | 975 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -963,6 +992,11 @@ CONFIG_INOTIFY_USER=y | |||
| 963 | # CONFIG_FUSE_FS is not set | 992 | # CONFIG_FUSE_FS is not set |
| 964 | 993 | ||
| 965 | # | 994 | # |
| 995 | # Caches | ||
| 996 | # | ||
| 997 | # CONFIG_FSCACHE is not set | ||
| 998 | |||
| 999 | # | ||
| 966 | # CD-ROM/DVD Filesystems | 1000 | # CD-ROM/DVD Filesystems |
| 967 | # | 1001 | # |
| 968 | # CONFIG_ISO9660_FS is not set | 1002 | # CONFIG_ISO9660_FS is not set |
| @@ -1005,6 +1039,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1005 | # CONFIG_ROMFS_FS is not set | 1039 | # CONFIG_ROMFS_FS is not set |
| 1006 | # CONFIG_SYSV_FS is not set | 1040 | # CONFIG_SYSV_FS is not set |
| 1007 | # CONFIG_UFS_FS is not set | 1041 | # CONFIG_UFS_FS is not set |
| 1042 | # CONFIG_NILFS2_FS is not set | ||
| 1008 | CONFIG_NETWORK_FILESYSTEMS=y | 1043 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1009 | CONFIG_NFS_FS=y | 1044 | CONFIG_NFS_FS=y |
| 1010 | CONFIG_NFS_V3=y | 1045 | CONFIG_NFS_V3=y |
| @@ -1017,7 +1052,6 @@ CONFIG_LOCKD_V4=y | |||
| 1017 | CONFIG_NFS_COMMON=y | 1052 | CONFIG_NFS_COMMON=y |
| 1018 | CONFIG_SUNRPC=y | 1053 | CONFIG_SUNRPC=y |
| 1019 | CONFIG_SUNRPC_GSS=y | 1054 | CONFIG_SUNRPC_GSS=y |
| 1020 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1021 | CONFIG_RPCSEC_GSS_KRB5=y | 1055 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1022 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1056 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1023 | # CONFIG_SMB_FS is not set | 1057 | # CONFIG_SMB_FS is not set |
| @@ -1045,6 +1079,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1045 | # CONFIG_SYSV68_PARTITION is not set | 1079 | # CONFIG_SYSV68_PARTITION is not set |
| 1046 | # CONFIG_NLS is not set | 1080 | # CONFIG_NLS is not set |
| 1047 | # CONFIG_DLM is not set | 1081 | # CONFIG_DLM is not set |
| 1082 | # CONFIG_BINARY_PRINTF is not set | ||
| 1048 | 1083 | ||
| 1049 | # | 1084 | # |
| 1050 | # Library routines | 1085 | # Library routines |
| @@ -1058,11 +1093,13 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 1058 | CONFIG_CRC32=y | 1093 | CONFIG_CRC32=y |
| 1059 | # CONFIG_CRC7 is not set | 1094 | # CONFIG_CRC7 is not set |
| 1060 | # CONFIG_LIBCRC32C is not set | 1095 | # CONFIG_LIBCRC32C is not set |
| 1061 | CONFIG_PLIST=y | 1096 | CONFIG_ZLIB_INFLATE=y |
| 1097 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1062 | CONFIG_HAS_IOMEM=y | 1098 | CONFIG_HAS_IOMEM=y |
| 1063 | CONFIG_HAS_IOPORT=y | 1099 | CONFIG_HAS_IOPORT=y |
| 1064 | CONFIG_HAS_DMA=y | 1100 | CONFIG_HAS_DMA=y |
| 1065 | CONFIG_HAVE_LMB=y | 1101 | CONFIG_HAVE_LMB=y |
| 1102 | CONFIG_NLATTR=y | ||
| 1066 | 1103 | ||
| 1067 | # | 1104 | # |
| 1068 | # Kernel hacking | 1105 | # Kernel hacking |
| @@ -1084,13 +1121,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1084 | # CONFIG_LATENCYTOP is not set | 1121 | # CONFIG_LATENCYTOP is not set |
| 1085 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1122 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1086 | CONFIG_HAVE_FUNCTION_TRACER=y | 1123 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1124 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1087 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1125 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1088 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1126 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1127 | CONFIG_TRACING_SUPPORT=y | ||
| 1089 | 1128 | ||
| 1090 | # | 1129 | # |
| 1091 | # Tracers | 1130 | # Tracers |
| 1092 | # | 1131 | # |
| 1093 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1132 | # CONFIG_FUNCTION_TRACER is not set |
| 1133 | # CONFIG_SCHED_TRACER is not set | ||
| 1134 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1135 | # CONFIG_EVENT_TRACER is not set | ||
| 1136 | # CONFIG_BOOT_TRACER is not set | ||
| 1137 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1138 | # CONFIG_STACK_TRACER is not set | ||
| 1139 | # CONFIG_KMEMTRACE is not set | ||
| 1140 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1141 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1094 | # CONFIG_SAMPLES is not set | 1142 | # CONFIG_SAMPLES is not set |
| 1095 | CONFIG_HAVE_ARCH_KGDB=y | 1143 | CONFIG_HAVE_ARCH_KGDB=y |
| 1096 | CONFIG_PRINT_STACK_DEPTH=64 | 1144 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1119,10 +1167,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1119 | CONFIG_CRYPTO_HASH=y | 1167 | CONFIG_CRYPTO_HASH=y |
| 1120 | CONFIG_CRYPTO_HASH2=y | 1168 | CONFIG_CRYPTO_HASH2=y |
| 1121 | CONFIG_CRYPTO_RNG2=y | 1169 | CONFIG_CRYPTO_RNG2=y |
| 1170 | CONFIG_CRYPTO_PCOMP=y | ||
| 1122 | CONFIG_CRYPTO_MANAGER=y | 1171 | CONFIG_CRYPTO_MANAGER=y |
| 1123 | CONFIG_CRYPTO_MANAGER2=y | 1172 | CONFIG_CRYPTO_MANAGER2=y |
| 1124 | # CONFIG_CRYPTO_GF128MUL is not set | 1173 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1125 | # CONFIG_CRYPTO_NULL is not set | 1174 | # CONFIG_CRYPTO_NULL is not set |
| 1175 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1126 | # CONFIG_CRYPTO_CRYPTD is not set | 1176 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1127 | # CONFIG_CRYPTO_AUTHENC is not set | 1177 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1128 | # CONFIG_CRYPTO_TEST is not set | 1178 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1191,6 +1241,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1191 | # Compression | 1241 | # Compression |
| 1192 | # | 1242 | # |
| 1193 | # CONFIG_CRYPTO_DEFLATE is not set | 1243 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1244 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1194 | # CONFIG_CRYPTO_LZO is not set | 1245 | # CONFIG_CRYPTO_LZO is not set |
| 1195 | 1246 | ||
| 1196 | # | 1247 | # |
diff --git a/arch/powerpc/configs/83xx/mpc836x_mds_defconfig b/arch/powerpc/configs/83xx/mpc836x_mds_defconfig index 76db8138eac7..ce5177393a0d 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:58 2009 | 4 | # Wed May 13 17:22:12 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -56,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 87 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 89 | CONFIG_GROUP_SCHED=y |
| @@ -87,19 +98,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | # CONFIG_KALLSYMS is not set | 109 | # CONFIG_KALLSYMS is not set |
| 110 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 95 | CONFIG_HOTPLUG=y | 111 | CONFIG_HOTPLUG=y |
| 96 | CONFIG_PRINTK=y | 112 | CONFIG_PRINTK=y |
| 97 | CONFIG_BUG=y | 113 | CONFIG_BUG=y |
| 98 | CONFIG_ELF_CORE=y | 114 | CONFIG_ELF_CORE=y |
| 99 | CONFIG_COMPAT_BRK=y | ||
| 100 | CONFIG_BASE_FULL=y | 115 | CONFIG_BASE_FULL=y |
| 101 | CONFIG_FUTEX=y | 116 | CONFIG_FUTEX=y |
| 102 | CONFIG_ANON_INODES=y | ||
| 103 | # CONFIG_EPOLL is not set | 117 | # CONFIG_EPOLL is not set |
| 104 | CONFIG_SIGNALFD=y | 118 | CONFIG_SIGNALFD=y |
| 105 | CONFIG_TIMERFD=y | 119 | CONFIG_TIMERFD=y |
| @@ -109,16 +123,19 @@ CONFIG_AIO=y | |||
| 109 | CONFIG_VM_EVENT_COUNTERS=y | 123 | CONFIG_VM_EVENT_COUNTERS=y |
| 110 | CONFIG_PCI_QUIRKS=y | 124 | CONFIG_PCI_QUIRKS=y |
| 111 | CONFIG_SLUB_DEBUG=y | 125 | CONFIG_SLUB_DEBUG=y |
| 126 | CONFIG_COMPAT_BRK=y | ||
| 112 | # CONFIG_SLAB is not set | 127 | # CONFIG_SLAB is not set |
| 113 | CONFIG_SLUB=y | 128 | CONFIG_SLUB=y |
| 114 | # CONFIG_SLOB is not set | 129 | # CONFIG_SLOB is not set |
| 115 | # CONFIG_PROFILING is not set | 130 | # CONFIG_PROFILING is not set |
| 131 | # CONFIG_MARKERS is not set | ||
| 116 | CONFIG_HAVE_OPROFILE=y | 132 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 133 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | 134 | CONFIG_HAVE_IOREMAP_PROT=y |
| 119 | CONFIG_HAVE_KPROBES=y | 135 | CONFIG_HAVE_KPROBES=y |
| 120 | CONFIG_HAVE_KRETPROBES=y | 136 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 137 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 138 | # CONFIG_SLOW_WORK is not set | ||
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 139 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 123 | CONFIG_SLABINFO=y | 140 | CONFIG_SLABINFO=y |
| 124 | CONFIG_RT_MUTEXES=y | 141 | CONFIG_RT_MUTEXES=y |
| @@ -131,7 +148,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 131 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 148 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 132 | CONFIG_BLOCK=y | 149 | CONFIG_BLOCK=y |
| 133 | # CONFIG_LBD is not set | 150 | # CONFIG_LBD is not set |
| 134 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 135 | # CONFIG_BLK_DEV_BSG is not set | 151 | # CONFIG_BLK_DEV_BSG is not set |
| 136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 152 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 137 | 153 | ||
| @@ -147,18 +163,11 @@ CONFIG_DEFAULT_AS=y | |||
| 147 | # CONFIG_DEFAULT_CFQ is not set | 163 | # CONFIG_DEFAULT_CFQ is not set |
| 148 | # CONFIG_DEFAULT_NOOP is not set | 164 | # CONFIG_DEFAULT_NOOP is not set |
| 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 165 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 150 | CONFIG_CLASSIC_RCU=y | ||
| 151 | # CONFIG_TREE_RCU is not set | ||
| 152 | # CONFIG_PREEMPT_RCU is not set | ||
| 153 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 155 | # CONFIG_FREEZER is not set | 166 | # CONFIG_FREEZER is not set |
| 156 | 167 | ||
| 157 | # | 168 | # |
| 158 | # Platform support | 169 | # Platform support |
| 159 | # | 170 | # |
| 160 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 161 | CONFIG_CLASSIC32=y | ||
| 162 | # CONFIG_PPC_CHRP is not set | 171 | # CONFIG_PPC_CHRP is not set |
| 163 | # CONFIG_MPC5121_ADS is not set | 172 | # CONFIG_MPC5121_ADS is not set |
| 164 | # CONFIG_MPC5121_GENERIC is not set | 173 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -182,6 +191,8 @@ CONFIG_MPC836x_MDS=y | |||
| 182 | # CONFIG_ASP834x is not set | 191 | # CONFIG_ASP834x is not set |
| 183 | # CONFIG_PPC_86xx is not set | 192 | # CONFIG_PPC_86xx is not set |
| 184 | # CONFIG_EMBEDDED6xx is not set | 193 | # CONFIG_EMBEDDED6xx is not set |
| 194 | # CONFIG_AMIGAONE is not set | ||
| 195 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 185 | CONFIG_IPIC=y | 196 | CONFIG_IPIC=y |
| 186 | # CONFIG_MPIC is not set | 197 | # CONFIG_MPIC is not set |
| 187 | # CONFIG_MPIC_WEIRD is not set | 198 | # CONFIG_MPIC_WEIRD is not set |
| @@ -243,9 +254,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 243 | CONFIG_BOUNCE=y | 254 | CONFIG_BOUNCE=y |
| 244 | CONFIG_VIRT_TO_BUS=y | 255 | CONFIG_VIRT_TO_BUS=y |
| 245 | CONFIG_UNEVICTABLE_LRU=y | 256 | CONFIG_UNEVICTABLE_LRU=y |
| 257 | CONFIG_HAVE_MLOCK=y | ||
| 258 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 246 | CONFIG_PPC_4K_PAGES=y | 259 | CONFIG_PPC_4K_PAGES=y |
| 247 | # CONFIG_PPC_16K_PAGES is not set | 260 | # CONFIG_PPC_16K_PAGES is not set |
| 248 | # CONFIG_PPC_64K_PAGES is not set | 261 | # CONFIG_PPC_64K_PAGES is not set |
| 262 | # CONFIG_PPC_256K_PAGES is not set | ||
| 249 | CONFIG_FORCE_MAX_ZONEORDER=11 | 263 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 250 | CONFIG_PROC_DEVICETREE=y | 264 | CONFIG_PROC_DEVICETREE=y |
| 251 | # CONFIG_CMDLINE_BOOL is not set | 265 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -271,6 +285,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 271 | # CONFIG_PCI_MSI is not set | 285 | # CONFIG_PCI_MSI is not set |
| 272 | # CONFIG_PCI_LEGACY is not set | 286 | # CONFIG_PCI_LEGACY is not set |
| 273 | # CONFIG_PCI_STUB is not set | 287 | # CONFIG_PCI_STUB is not set |
| 288 | # CONFIG_PCI_IOV is not set | ||
| 274 | # CONFIG_PCCARD is not set | 289 | # CONFIG_PCCARD is not set |
| 275 | # CONFIG_HOTPLUG_PCI is not set | 290 | # CONFIG_HOTPLUG_PCI is not set |
| 276 | # CONFIG_HAS_RAPIDIO is not set | 291 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -293,7 +308,6 @@ CONFIG_NET=y | |||
| 293 | # | 308 | # |
| 294 | # Networking options | 309 | # Networking options |
| 295 | # | 310 | # |
| 296 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 297 | CONFIG_PACKET=y | 311 | CONFIG_PACKET=y |
| 298 | # CONFIG_PACKET_MMAP is not set | 312 | # CONFIG_PACKET_MMAP is not set |
| 299 | CONFIG_UNIX=y | 313 | CONFIG_UNIX=y |
| @@ -349,6 +363,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 349 | # CONFIG_LAPB is not set | 363 | # CONFIG_LAPB is not set |
| 350 | # CONFIG_ECONET is not set | 364 | # CONFIG_ECONET is not set |
| 351 | # CONFIG_WAN_ROUTER is not set | 365 | # CONFIG_WAN_ROUTER is not set |
| 366 | # CONFIG_PHONET is not set | ||
| 352 | # CONFIG_NET_SCHED is not set | 367 | # CONFIG_NET_SCHED is not set |
| 353 | # CONFIG_DCB is not set | 368 | # CONFIG_DCB is not set |
| 354 | 369 | ||
| @@ -361,7 +376,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 361 | # CONFIG_IRDA is not set | 376 | # CONFIG_IRDA is not set |
| 362 | # CONFIG_BT is not set | 377 | # CONFIG_BT is not set |
| 363 | # CONFIG_AF_RXRPC is not set | 378 | # CONFIG_AF_RXRPC is not set |
| 364 | # CONFIG_PHONET is not set | ||
| 365 | CONFIG_WIRELESS=y | 379 | CONFIG_WIRELESS=y |
| 366 | # CONFIG_CFG80211 is not set | 380 | # CONFIG_CFG80211 is not set |
| 367 | CONFIG_WIRELESS_OLD_REGULATORY=y | 381 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -464,7 +478,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 464 | # LPDDR flash memory drivers | 478 | # LPDDR flash memory drivers |
| 465 | # | 479 | # |
| 466 | # CONFIG_MTD_LPDDR is not set | 480 | # CONFIG_MTD_LPDDR is not set |
| 467 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 468 | 481 | ||
| 469 | # | 482 | # |
| 470 | # UBI - Unsorted block images | 483 | # UBI - Unsorted block images |
| @@ -493,13 +506,20 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 493 | # CONFIG_BLK_DEV_HD is not set | 506 | # CONFIG_BLK_DEV_HD is not set |
| 494 | CONFIG_MISC_DEVICES=y | 507 | CONFIG_MISC_DEVICES=y |
| 495 | # CONFIG_PHANTOM is not set | 508 | # CONFIG_PHANTOM is not set |
| 496 | # CONFIG_EEPROM_93CX6 is not set | ||
| 497 | # CONFIG_SGI_IOC4 is not set | 509 | # CONFIG_SGI_IOC4 is not set |
| 498 | # CONFIG_TIFM_CORE is not set | 510 | # CONFIG_TIFM_CORE is not set |
| 499 | # CONFIG_ICS932S401 is not set | 511 | # CONFIG_ICS932S401 is not set |
| 500 | # CONFIG_ENCLOSURE_SERVICES is not set | 512 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 501 | # CONFIG_HP_ILO is not set | 513 | # CONFIG_HP_ILO is not set |
| 514 | # CONFIG_ISL29003 is not set | ||
| 502 | # CONFIG_C2PORT is not set | 515 | # CONFIG_C2PORT is not set |
| 516 | |||
| 517 | # | ||
| 518 | # EEPROM support | ||
| 519 | # | ||
| 520 | # CONFIG_EEPROM_AT24 is not set | ||
| 521 | # CONFIG_EEPROM_LEGACY is not set | ||
| 522 | # CONFIG_EEPROM_93CX6 is not set | ||
| 503 | CONFIG_HAVE_IDE=y | 523 | CONFIG_HAVE_IDE=y |
| 504 | # CONFIG_IDE is not set | 524 | # CONFIG_IDE is not set |
| 505 | 525 | ||
| @@ -557,9 +577,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 557 | # CONFIG_MEGARAID_NEWGEN is not set | 577 | # CONFIG_MEGARAID_NEWGEN is not set |
| 558 | # CONFIG_MEGARAID_LEGACY is not set | 578 | # CONFIG_MEGARAID_LEGACY is not set |
| 559 | # CONFIG_MEGARAID_SAS is not set | 579 | # CONFIG_MEGARAID_SAS is not set |
| 580 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 560 | # CONFIG_SCSI_HPTIOP is not set | 581 | # CONFIG_SCSI_HPTIOP is not set |
| 561 | # CONFIG_SCSI_BUSLOGIC is not set | 582 | # CONFIG_SCSI_BUSLOGIC is not set |
| 562 | # CONFIG_LIBFC is not set | 583 | # CONFIG_LIBFC is not set |
| 584 | # CONFIG_LIBFCOE is not set | ||
| 563 | # CONFIG_FCOE is not set | 585 | # CONFIG_FCOE is not set |
| 564 | # CONFIG_SCSI_DMX3191D is not set | 586 | # CONFIG_SCSI_DMX3191D is not set |
| 565 | # CONFIG_SCSI_EATA is not set | 587 | # CONFIG_SCSI_EATA is not set |
| @@ -581,6 +603,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 581 | # CONFIG_SCSI_DEBUG is not set | 603 | # CONFIG_SCSI_DEBUG is not set |
| 582 | # CONFIG_SCSI_SRP is not set | 604 | # CONFIG_SCSI_SRP is not set |
| 583 | # CONFIG_SCSI_DH is not set | 605 | # CONFIG_SCSI_DH is not set |
| 606 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 584 | # CONFIG_ATA is not set | 607 | # CONFIG_ATA is not set |
| 585 | # CONFIG_MD is not set | 608 | # CONFIG_MD is not set |
| 586 | # CONFIG_FUSION is not set | 609 | # CONFIG_FUSION is not set |
| @@ -597,6 +620,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 597 | # CONFIG_I2O is not set | 620 | # CONFIG_I2O is not set |
| 598 | # CONFIG_MACINTOSH_DRIVERS is not set | 621 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 599 | CONFIG_NETDEVICES=y | 622 | CONFIG_NETDEVICES=y |
| 623 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 600 | # CONFIG_DUMMY is not set | 624 | # CONFIG_DUMMY is not set |
| 601 | # CONFIG_BONDING is not set | 625 | # CONFIG_BONDING is not set |
| 602 | # CONFIG_MACVLAN is not set | 626 | # CONFIG_MACVLAN is not set |
| @@ -630,6 +654,8 @@ CONFIG_MII=y | |||
| 630 | # CONFIG_SUNGEM is not set | 654 | # CONFIG_SUNGEM is not set |
| 631 | # CONFIG_CASSINI is not set | 655 | # CONFIG_CASSINI is not set |
| 632 | # CONFIG_NET_VENDOR_3COM is not set | 656 | # CONFIG_NET_VENDOR_3COM is not set |
| 657 | # CONFIG_ETHOC is not set | ||
| 658 | # CONFIG_DNET is not set | ||
| 633 | # CONFIG_NET_TULIP is not set | 659 | # CONFIG_NET_TULIP is not set |
| 634 | # CONFIG_HP100 is not set | 660 | # CONFIG_HP100 is not set |
| 635 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 661 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -649,6 +675,7 @@ CONFIG_NETDEV_1000=y | |||
| 649 | # CONFIG_E1000E is not set | 675 | # CONFIG_E1000E is not set |
| 650 | # CONFIG_IP1000 is not set | 676 | # CONFIG_IP1000 is not set |
| 651 | # CONFIG_IGB is not set | 677 | # CONFIG_IGB is not set |
| 678 | # CONFIG_IGBVF is not set | ||
| 652 | # CONFIG_NS83820 is not set | 679 | # CONFIG_NS83820 is not set |
| 653 | # CONFIG_HAMACHI is not set | 680 | # CONFIG_HAMACHI is not set |
| 654 | # CONFIG_YELLOWFIN is not set | 681 | # CONFIG_YELLOWFIN is not set |
| @@ -659,14 +686,15 @@ CONFIG_NETDEV_1000=y | |||
| 659 | # CONFIG_VIA_VELOCITY is not set | 686 | # CONFIG_VIA_VELOCITY is not set |
| 660 | # CONFIG_TIGON3 is not set | 687 | # CONFIG_TIGON3 is not set |
| 661 | # CONFIG_BNX2 is not set | 688 | # CONFIG_BNX2 is not set |
| 689 | CONFIG_FSL_PQ_MDIO=y | ||
| 662 | # CONFIG_GIANFAR is not set | 690 | # CONFIG_GIANFAR is not set |
| 663 | CONFIG_UCC_GETH=y | 691 | CONFIG_UCC_GETH=y |
| 664 | # CONFIG_UGETH_MAGIC_PACKET is not set | 692 | # CONFIG_UGETH_MAGIC_PACKET is not set |
| 665 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 693 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
| 666 | # CONFIG_MV643XX_ETH is not set | ||
| 667 | # CONFIG_QLA3XXX is not set | 694 | # CONFIG_QLA3XXX is not set |
| 668 | # CONFIG_ATL1 is not set | 695 | # CONFIG_ATL1 is not set |
| 669 | # CONFIG_ATL1E is not set | 696 | # CONFIG_ATL1E is not set |
| 697 | # CONFIG_ATL1C is not set | ||
| 670 | # CONFIG_JME is not set | 698 | # CONFIG_JME is not set |
| 671 | CONFIG_NETDEV_10000=y | 699 | CONFIG_NETDEV_10000=y |
| 672 | # CONFIG_CHELSIO_T1 is not set | 700 | # CONFIG_CHELSIO_T1 is not set |
| @@ -676,6 +704,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 676 | # CONFIG_IXGBE is not set | 704 | # CONFIG_IXGBE is not set |
| 677 | # CONFIG_IXGB is not set | 705 | # CONFIG_IXGB is not set |
| 678 | # CONFIG_S2IO is not set | 706 | # CONFIG_S2IO is not set |
| 707 | # CONFIG_VXGE is not set | ||
| 679 | # CONFIG_MYRI10GE is not set | 708 | # CONFIG_MYRI10GE is not set |
| 680 | # CONFIG_NETXEN_NIC is not set | 709 | # CONFIG_NETXEN_NIC is not set |
| 681 | # CONFIG_NIU is not set | 710 | # CONFIG_NIU is not set |
| @@ -685,6 +714,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 685 | # CONFIG_BNX2X is not set | 714 | # CONFIG_BNX2X is not set |
| 686 | # CONFIG_QLGE is not set | 715 | # CONFIG_QLGE is not set |
| 687 | # CONFIG_SFC is not set | 716 | # CONFIG_SFC is not set |
| 717 | # CONFIG_BE2NET is not set | ||
| 688 | # CONFIG_TR is not set | 718 | # CONFIG_TR is not set |
| 689 | 719 | ||
| 690 | # | 720 | # |
| @@ -692,7 +722,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 692 | # | 722 | # |
| 693 | # CONFIG_WLAN_PRE80211 is not set | 723 | # CONFIG_WLAN_PRE80211 is not set |
| 694 | # CONFIG_WLAN_80211 is not set | 724 | # CONFIG_WLAN_80211 is not set |
| 695 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 696 | 725 | ||
| 697 | # | 726 | # |
| 698 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 727 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -774,6 +803,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 774 | # CONFIG_HVC_UDBG is not set | 803 | # CONFIG_HVC_UDBG is not set |
| 775 | # CONFIG_IPMI_HANDLER is not set | 804 | # CONFIG_IPMI_HANDLER is not set |
| 776 | CONFIG_HW_RANDOM=y | 805 | CONFIG_HW_RANDOM=y |
| 806 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 777 | # CONFIG_NVRAM is not set | 807 | # CONFIG_NVRAM is not set |
| 778 | # CONFIG_R3964 is not set | 808 | # CONFIG_R3964 is not set |
| 779 | # CONFIG_APPLICOM is not set | 809 | # CONFIG_APPLICOM is not set |
| @@ -835,12 +865,9 @@ CONFIG_I2C_MPC=y | |||
| 835 | # Miscellaneous I2C Chip support | 865 | # Miscellaneous I2C Chip support |
| 836 | # | 866 | # |
| 837 | # CONFIG_DS1682 is not set | 867 | # CONFIG_DS1682 is not set |
| 838 | # CONFIG_EEPROM_AT24 is not set | ||
| 839 | # CONFIG_EEPROM_LEGACY is not set | ||
| 840 | # CONFIG_SENSORS_PCF8574 is not set | 868 | # CONFIG_SENSORS_PCF8574 is not set |
| 841 | # CONFIG_PCF8575 is not set | 869 | # CONFIG_PCF8575 is not set |
| 842 | # CONFIG_SENSORS_PCA9539 is not set | 870 | # CONFIG_SENSORS_PCA9539 is not set |
| 843 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 844 | # CONFIG_SENSORS_MAX6875 is not set | 871 | # CONFIG_SENSORS_MAX6875 is not set |
| 845 | # CONFIG_SENSORS_TSL2550 is not set | 872 | # CONFIG_SENSORS_TSL2550 is not set |
| 846 | # CONFIG_I2C_DEBUG_CORE is not set | 873 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -872,6 +899,7 @@ CONFIG_HWMON=y | |||
| 872 | # CONFIG_SENSORS_F71805F is not set | 899 | # CONFIG_SENSORS_F71805F is not set |
| 873 | # CONFIG_SENSORS_F71882FG is not set | 900 | # CONFIG_SENSORS_F71882FG is not set |
| 874 | # CONFIG_SENSORS_F75375S is not set | 901 | # CONFIG_SENSORS_F75375S is not set |
| 902 | # CONFIG_SENSORS_G760A is not set | ||
| 875 | # CONFIG_SENSORS_GL518SM is not set | 903 | # CONFIG_SENSORS_GL518SM is not set |
| 876 | # CONFIG_SENSORS_GL520SM is not set | 904 | # CONFIG_SENSORS_GL520SM is not set |
| 877 | # CONFIG_SENSORS_IT87 is not set | 905 | # CONFIG_SENSORS_IT87 is not set |
| @@ -886,11 +914,14 @@ CONFIG_HWMON=y | |||
| 886 | # CONFIG_SENSORS_LM90 is not set | 914 | # CONFIG_SENSORS_LM90 is not set |
| 887 | # CONFIG_SENSORS_LM92 is not set | 915 | # CONFIG_SENSORS_LM92 is not set |
| 888 | # CONFIG_SENSORS_LM93 is not set | 916 | # CONFIG_SENSORS_LM93 is not set |
| 917 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 889 | # CONFIG_SENSORS_LTC4245 is not set | 918 | # CONFIG_SENSORS_LTC4245 is not set |
| 919 | # CONFIG_SENSORS_LM95241 is not set | ||
| 890 | # CONFIG_SENSORS_MAX1619 is not set | 920 | # CONFIG_SENSORS_MAX1619 is not set |
| 891 | # CONFIG_SENSORS_MAX6650 is not set | 921 | # CONFIG_SENSORS_MAX6650 is not set |
| 892 | # CONFIG_SENSORS_PC87360 is not set | 922 | # CONFIG_SENSORS_PC87360 is not set |
| 893 | # CONFIG_SENSORS_PC87427 is not set | 923 | # CONFIG_SENSORS_PC87427 is not set |
| 924 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 894 | # CONFIG_SENSORS_SIS5595 is not set | 925 | # CONFIG_SENSORS_SIS5595 is not set |
| 895 | # CONFIG_SENSORS_DME1737 is not set | 926 | # CONFIG_SENSORS_DME1737 is not set |
| 896 | # CONFIG_SENSORS_SMSC47M1 is not set | 927 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -988,7 +1019,6 @@ CONFIG_HID=y | |||
| 988 | # | 1019 | # |
| 989 | # Special HID drivers | 1020 | # Special HID drivers |
| 990 | # | 1021 | # |
| 991 | CONFIG_HID_COMPAT=y | ||
| 992 | CONFIG_USB_SUPPORT=y | 1022 | CONFIG_USB_SUPPORT=y |
| 993 | CONFIG_USB_ARCH_HAS_HCD=y | 1023 | CONFIG_USB_ARCH_HAS_HCD=y |
| 994 | CONFIG_USB_ARCH_HAS_OHCI=y | 1024 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1002,7 +1032,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1002 | # | 1032 | # |
| 1003 | 1033 | ||
| 1004 | # | 1034 | # |
| 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1035 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1006 | # | 1036 | # |
| 1007 | # CONFIG_USB_GADGET is not set | 1037 | # CONFIG_USB_GADGET is not set |
| 1008 | 1038 | ||
| @@ -1070,8 +1100,9 @@ CONFIG_RTC_DRV_DS1374=y | |||
| 1070 | # | 1100 | # |
| 1071 | # on-CPU RTC drivers | 1101 | # on-CPU RTC drivers |
| 1072 | # | 1102 | # |
| 1073 | # CONFIG_RTC_DRV_PPC is not set | 1103 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1074 | # CONFIG_DMADEVICES is not set | 1104 | # CONFIG_DMADEVICES is not set |
| 1105 | # CONFIG_AUXDISPLAY is not set | ||
| 1075 | # CONFIG_UIO is not set | 1106 | # CONFIG_UIO is not set |
| 1076 | # CONFIG_STAGING is not set | 1107 | # CONFIG_STAGING is not set |
| 1077 | 1108 | ||
| @@ -1082,6 +1113,7 @@ CONFIG_EXT2_FS=y | |||
| 1082 | # CONFIG_EXT2_FS_XATTR is not set | 1113 | # CONFIG_EXT2_FS_XATTR is not set |
| 1083 | # CONFIG_EXT2_FS_XIP is not set | 1114 | # CONFIG_EXT2_FS_XIP is not set |
| 1084 | CONFIG_EXT3_FS=y | 1115 | CONFIG_EXT3_FS=y |
| 1116 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1085 | CONFIG_EXT3_FS_XATTR=y | 1117 | CONFIG_EXT3_FS_XATTR=y |
| 1086 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1118 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1087 | # CONFIG_EXT3_FS_SECURITY is not set | 1119 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1104,6 +1136,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1104 | # CONFIG_FUSE_FS is not set | 1136 | # CONFIG_FUSE_FS is not set |
| 1105 | 1137 | ||
| 1106 | # | 1138 | # |
| 1139 | # Caches | ||
| 1140 | # | ||
| 1141 | # CONFIG_FSCACHE is not set | ||
| 1142 | |||
| 1143 | # | ||
| 1107 | # CD-ROM/DVD Filesystems | 1144 | # CD-ROM/DVD Filesystems |
| 1108 | # | 1145 | # |
| 1109 | # CONFIG_ISO9660_FS is not set | 1146 | # CONFIG_ISO9660_FS is not set |
| @@ -1147,6 +1184,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1147 | # CONFIG_ROMFS_FS is not set | 1184 | # CONFIG_ROMFS_FS is not set |
| 1148 | # CONFIG_SYSV_FS is not set | 1185 | # CONFIG_SYSV_FS is not set |
| 1149 | # CONFIG_UFS_FS is not set | 1186 | # CONFIG_UFS_FS is not set |
| 1187 | # CONFIG_NILFS2_FS is not set | ||
| 1150 | CONFIG_NETWORK_FILESYSTEMS=y | 1188 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1151 | CONFIG_NFS_FS=y | 1189 | CONFIG_NFS_FS=y |
| 1152 | CONFIG_NFS_V3=y | 1190 | CONFIG_NFS_V3=y |
| @@ -1159,7 +1197,6 @@ CONFIG_LOCKD_V4=y | |||
| 1159 | CONFIG_NFS_COMMON=y | 1197 | CONFIG_NFS_COMMON=y |
| 1160 | CONFIG_SUNRPC=y | 1198 | CONFIG_SUNRPC=y |
| 1161 | CONFIG_SUNRPC_GSS=y | 1199 | CONFIG_SUNRPC_GSS=y |
| 1162 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1163 | CONFIG_RPCSEC_GSS_KRB5=y | 1200 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1164 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1201 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1165 | # CONFIG_SMB_FS is not set | 1202 | # CONFIG_SMB_FS is not set |
| @@ -1189,6 +1226,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1189 | # CONFIG_DLM is not set | 1226 | # CONFIG_DLM is not set |
| 1190 | CONFIG_UCC_FAST=y | 1227 | CONFIG_UCC_FAST=y |
| 1191 | CONFIG_UCC=y | 1228 | CONFIG_UCC=y |
| 1229 | # CONFIG_BINARY_PRINTF is not set | ||
| 1192 | 1230 | ||
| 1193 | # | 1231 | # |
| 1194 | # Library routines | 1232 | # Library routines |
| @@ -1202,11 +1240,13 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 1202 | CONFIG_CRC32=y | 1240 | CONFIG_CRC32=y |
| 1203 | # CONFIG_CRC7 is not set | 1241 | # CONFIG_CRC7 is not set |
| 1204 | # CONFIG_LIBCRC32C is not set | 1242 | # CONFIG_LIBCRC32C is not set |
| 1205 | CONFIG_PLIST=y | 1243 | CONFIG_ZLIB_INFLATE=y |
| 1244 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1206 | CONFIG_HAS_IOMEM=y | 1245 | CONFIG_HAS_IOMEM=y |
| 1207 | CONFIG_HAS_IOPORT=y | 1246 | CONFIG_HAS_IOPORT=y |
| 1208 | CONFIG_HAS_DMA=y | 1247 | CONFIG_HAS_DMA=y |
| 1209 | CONFIG_HAVE_LMB=y | 1248 | CONFIG_HAVE_LMB=y |
| 1249 | CONFIG_NLATTR=y | ||
| 1210 | 1250 | ||
| 1211 | # | 1251 | # |
| 1212 | # Kernel hacking | 1252 | # Kernel hacking |
| @@ -1228,13 +1268,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1228 | # CONFIG_LATENCYTOP is not set | 1268 | # CONFIG_LATENCYTOP is not set |
| 1229 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1269 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1230 | CONFIG_HAVE_FUNCTION_TRACER=y | 1270 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1271 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1231 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1272 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1232 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1273 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1274 | CONFIG_TRACING_SUPPORT=y | ||
| 1233 | 1275 | ||
| 1234 | # | 1276 | # |
| 1235 | # Tracers | 1277 | # Tracers |
| 1236 | # | 1278 | # |
| 1237 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1279 | # CONFIG_FUNCTION_TRACER is not set |
| 1280 | # CONFIG_SCHED_TRACER is not set | ||
| 1281 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1282 | # CONFIG_EVENT_TRACER is not set | ||
| 1283 | # CONFIG_BOOT_TRACER is not set | ||
| 1284 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1285 | # CONFIG_STACK_TRACER is not set | ||
| 1286 | # CONFIG_KMEMTRACE is not set | ||
| 1287 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1288 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1238 | # CONFIG_SAMPLES is not set | 1289 | # CONFIG_SAMPLES is not set |
| 1239 | CONFIG_HAVE_ARCH_KGDB=y | 1290 | CONFIG_HAVE_ARCH_KGDB=y |
| 1240 | CONFIG_PRINT_STACK_DEPTH=64 | 1291 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1263,10 +1314,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1263 | CONFIG_CRYPTO_HASH=y | 1314 | CONFIG_CRYPTO_HASH=y |
| 1264 | CONFIG_CRYPTO_HASH2=y | 1315 | CONFIG_CRYPTO_HASH2=y |
| 1265 | CONFIG_CRYPTO_RNG2=y | 1316 | CONFIG_CRYPTO_RNG2=y |
| 1317 | CONFIG_CRYPTO_PCOMP=y | ||
| 1266 | CONFIG_CRYPTO_MANAGER=y | 1318 | CONFIG_CRYPTO_MANAGER=y |
| 1267 | CONFIG_CRYPTO_MANAGER2=y | 1319 | CONFIG_CRYPTO_MANAGER2=y |
| 1268 | # CONFIG_CRYPTO_GF128MUL is not set | 1320 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1269 | # CONFIG_CRYPTO_NULL is not set | 1321 | # CONFIG_CRYPTO_NULL is not set |
| 1322 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1270 | # CONFIG_CRYPTO_CRYPTD is not set | 1323 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1271 | # CONFIG_CRYPTO_AUTHENC is not set | 1324 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1272 | # CONFIG_CRYPTO_TEST is not set | 1325 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1335,6 +1388,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1335 | # Compression | 1388 | # Compression |
| 1336 | # | 1389 | # |
| 1337 | # CONFIG_CRYPTO_DEFLATE is not set | 1390 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1391 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1338 | # CONFIG_CRYPTO_LZO is not set | 1392 | # CONFIG_CRYPTO_LZO is not set |
| 1339 | 1393 | ||
| 1340 | # | 1394 | # |
diff --git a/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig b/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig index 0dc11c44306b..7f1d1383a249 100644 --- a/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig +++ b/arch/powerpc/configs/83xx/mpc836x_rdk_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:01 2009 | 4 | # Wed May 13 17:22:13 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -57,6 +58,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 58 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 59 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 61 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 61 | 63 | ||
| 62 | # | 64 | # |
| @@ -74,6 +76,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 74 | # CONFIG_BSD_PROCESS_ACCT is not set | 76 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 75 | # CONFIG_TASKSTATS is not set | 77 | # CONFIG_TASKSTATS is not set |
| 76 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
| 79 | |||
| 80 | # | ||
| 81 | # RCU Subsystem | ||
| 82 | # | ||
| 83 | CONFIG_CLASSIC_RCU=y | ||
| 84 | # CONFIG_TREE_RCU is not set | ||
| 85 | # CONFIG_PREEMPT_RCU is not set | ||
| 86 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 87 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 77 | # CONFIG_IKCONFIG is not set | 88 | # CONFIG_IKCONFIG is not set |
| 78 | CONFIG_LOG_BUF_SHIFT=14 | 89 | CONFIG_LOG_BUF_SHIFT=14 |
| 79 | CONFIG_GROUP_SCHED=y | 90 | CONFIG_GROUP_SCHED=y |
| @@ -88,19 +99,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 88 | # CONFIG_NAMESPACES is not set | 99 | # CONFIG_NAMESPACES is not set |
| 89 | CONFIG_BLK_DEV_INITRD=y | 100 | CONFIG_BLK_DEV_INITRD=y |
| 90 | CONFIG_INITRAMFS_SOURCE="" | 101 | CONFIG_INITRAMFS_SOURCE="" |
| 102 | CONFIG_RD_GZIP=y | ||
| 103 | # CONFIG_RD_BZIP2 is not set | ||
| 104 | # CONFIG_RD_LZMA is not set | ||
| 91 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 105 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 92 | CONFIG_SYSCTL=y | 106 | CONFIG_SYSCTL=y |
| 107 | CONFIG_ANON_INODES=y | ||
| 93 | CONFIG_EMBEDDED=y | 108 | CONFIG_EMBEDDED=y |
| 94 | CONFIG_SYSCTL_SYSCALL=y | 109 | CONFIG_SYSCTL_SYSCALL=y |
| 95 | # CONFIG_KALLSYMS is not set | 110 | # CONFIG_KALLSYMS is not set |
| 111 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 96 | CONFIG_HOTPLUG=y | 112 | CONFIG_HOTPLUG=y |
| 97 | CONFIG_PRINTK=y | 113 | CONFIG_PRINTK=y |
| 98 | CONFIG_BUG=y | 114 | CONFIG_BUG=y |
| 99 | CONFIG_ELF_CORE=y | 115 | CONFIG_ELF_CORE=y |
| 100 | CONFIG_COMPAT_BRK=y | ||
| 101 | CONFIG_BASE_FULL=y | 116 | CONFIG_BASE_FULL=y |
| 102 | CONFIG_FUTEX=y | 117 | CONFIG_FUTEX=y |
| 103 | CONFIG_ANON_INODES=y | ||
| 104 | # CONFIG_EPOLL is not set | 118 | # CONFIG_EPOLL is not set |
| 105 | CONFIG_SIGNALFD=y | 119 | CONFIG_SIGNALFD=y |
| 106 | CONFIG_TIMERFD=y | 120 | CONFIG_TIMERFD=y |
| @@ -110,16 +124,19 @@ CONFIG_AIO=y | |||
| 110 | CONFIG_VM_EVENT_COUNTERS=y | 124 | CONFIG_VM_EVENT_COUNTERS=y |
| 111 | CONFIG_PCI_QUIRKS=y | 125 | CONFIG_PCI_QUIRKS=y |
| 112 | CONFIG_SLUB_DEBUG=y | 126 | CONFIG_SLUB_DEBUG=y |
| 127 | CONFIG_COMPAT_BRK=y | ||
| 113 | # CONFIG_SLAB is not set | 128 | # CONFIG_SLAB is not set |
| 114 | CONFIG_SLUB=y | 129 | CONFIG_SLUB=y |
| 115 | # CONFIG_SLOB is not set | 130 | # CONFIG_SLOB is not set |
| 116 | # CONFIG_PROFILING is not set | 131 | # CONFIG_PROFILING is not set |
| 132 | # CONFIG_MARKERS is not set | ||
| 117 | CONFIG_HAVE_OPROFILE=y | 133 | CONFIG_HAVE_OPROFILE=y |
| 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 134 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 119 | CONFIG_HAVE_IOREMAP_PROT=y | 135 | CONFIG_HAVE_IOREMAP_PROT=y |
| 120 | CONFIG_HAVE_KPROBES=y | 136 | CONFIG_HAVE_KPROBES=y |
| 121 | CONFIG_HAVE_KRETPROBES=y | 137 | CONFIG_HAVE_KRETPROBES=y |
| 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 138 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 139 | # CONFIG_SLOW_WORK is not set | ||
| 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 140 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 124 | CONFIG_SLABINFO=y | 141 | CONFIG_SLABINFO=y |
| 125 | CONFIG_RT_MUTEXES=y | 142 | CONFIG_RT_MUTEXES=y |
| @@ -132,7 +149,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 149 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 133 | CONFIG_BLOCK=y | 150 | CONFIG_BLOCK=y |
| 134 | # CONFIG_LBD is not set | 151 | # CONFIG_LBD is not set |
| 135 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 136 | # CONFIG_BLK_DEV_BSG is not set | 152 | # CONFIG_BLK_DEV_BSG is not set |
| 137 | # CONFIG_BLK_DEV_INTEGRITY is not set | 153 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 138 | 154 | ||
| @@ -148,18 +164,11 @@ CONFIG_DEFAULT_AS=y | |||
| 148 | # CONFIG_DEFAULT_CFQ is not set | 164 | # CONFIG_DEFAULT_CFQ is not set |
| 149 | # CONFIG_DEFAULT_NOOP is not set | 165 | # CONFIG_DEFAULT_NOOP is not set |
| 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 166 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 151 | CONFIG_CLASSIC_RCU=y | ||
| 152 | # CONFIG_TREE_RCU is not set | ||
| 153 | # CONFIG_PREEMPT_RCU is not set | ||
| 154 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 156 | # CONFIG_FREEZER is not set | 167 | # CONFIG_FREEZER is not set |
| 157 | 168 | ||
| 158 | # | 169 | # |
| 159 | # Platform support | 170 | # Platform support |
| 160 | # | 171 | # |
| 161 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 162 | CONFIG_CLASSIC32=y | ||
| 163 | # CONFIG_PPC_CHRP is not set | 172 | # CONFIG_PPC_CHRP is not set |
| 164 | # CONFIG_MPC5121_ADS is not set | 173 | # CONFIG_MPC5121_ADS is not set |
| 165 | # CONFIG_MPC5121_GENERIC is not set | 174 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -183,6 +192,8 @@ CONFIG_MPC836x_RDK=y | |||
| 183 | # CONFIG_ASP834x is not set | 192 | # CONFIG_ASP834x is not set |
| 184 | # CONFIG_PPC_86xx is not set | 193 | # CONFIG_PPC_86xx is not set |
| 185 | # CONFIG_EMBEDDED6xx is not set | 194 | # CONFIG_EMBEDDED6xx is not set |
| 195 | # CONFIG_AMIGAONE is not set | ||
| 196 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 186 | CONFIG_IPIC=y | 197 | CONFIG_IPIC=y |
| 187 | # CONFIG_MPIC is not set | 198 | # CONFIG_MPIC is not set |
| 188 | # CONFIG_MPIC_WEIRD is not set | 199 | # CONFIG_MPIC_WEIRD is not set |
| @@ -243,9 +254,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 243 | CONFIG_BOUNCE=y | 254 | CONFIG_BOUNCE=y |
| 244 | CONFIG_VIRT_TO_BUS=y | 255 | CONFIG_VIRT_TO_BUS=y |
| 245 | CONFIG_UNEVICTABLE_LRU=y | 256 | CONFIG_UNEVICTABLE_LRU=y |
| 257 | CONFIG_HAVE_MLOCK=y | ||
| 258 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 246 | CONFIG_PPC_4K_PAGES=y | 259 | CONFIG_PPC_4K_PAGES=y |
| 247 | # CONFIG_PPC_16K_PAGES is not set | 260 | # CONFIG_PPC_16K_PAGES is not set |
| 248 | # CONFIG_PPC_64K_PAGES is not set | 261 | # CONFIG_PPC_64K_PAGES is not set |
| 262 | # CONFIG_PPC_256K_PAGES is not set | ||
| 249 | CONFIG_FORCE_MAX_ZONEORDER=11 | 263 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 250 | CONFIG_PROC_DEVICETREE=y | 264 | CONFIG_PROC_DEVICETREE=y |
| 251 | # CONFIG_CMDLINE_BOOL is not set | 265 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -273,6 +287,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 273 | # CONFIG_PCI_MSI is not set | 287 | # CONFIG_PCI_MSI is not set |
| 274 | # CONFIG_PCI_LEGACY is not set | 288 | # CONFIG_PCI_LEGACY is not set |
| 275 | # CONFIG_PCI_STUB is not set | 289 | # CONFIG_PCI_STUB is not set |
| 290 | # CONFIG_PCI_IOV is not set | ||
| 276 | # CONFIG_PCCARD is not set | 291 | # CONFIG_PCCARD is not set |
| 277 | # CONFIG_HOTPLUG_PCI is not set | 292 | # CONFIG_HOTPLUG_PCI is not set |
| 278 | # CONFIG_HAS_RAPIDIO is not set | 293 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -295,7 +310,6 @@ CONFIG_NET=y | |||
| 295 | # | 310 | # |
| 296 | # Networking options | 311 | # Networking options |
| 297 | # | 312 | # |
| 298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 299 | CONFIG_PACKET=y | 313 | CONFIG_PACKET=y |
| 300 | # CONFIG_PACKET_MMAP is not set | 314 | # CONFIG_PACKET_MMAP is not set |
| 301 | CONFIG_UNIX=y | 315 | CONFIG_UNIX=y |
| @@ -351,6 +365,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 351 | # CONFIG_LAPB is not set | 365 | # CONFIG_LAPB is not set |
| 352 | # CONFIG_ECONET is not set | 366 | # CONFIG_ECONET is not set |
| 353 | # CONFIG_WAN_ROUTER is not set | 367 | # CONFIG_WAN_ROUTER is not set |
| 368 | # CONFIG_PHONET is not set | ||
| 354 | # CONFIG_NET_SCHED is not set | 369 | # CONFIG_NET_SCHED is not set |
| 355 | # CONFIG_DCB is not set | 370 | # CONFIG_DCB is not set |
| 356 | 371 | ||
| @@ -363,7 +378,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 363 | # CONFIG_IRDA is not set | 378 | # CONFIG_IRDA is not set |
| 364 | # CONFIG_BT is not set | 379 | # CONFIG_BT is not set |
| 365 | # CONFIG_AF_RXRPC is not set | 380 | # CONFIG_AF_RXRPC is not set |
| 366 | # CONFIG_PHONET is not set | ||
| 367 | CONFIG_WIRELESS=y | 381 | CONFIG_WIRELESS=y |
| 368 | # CONFIG_CFG80211 is not set | 382 | # CONFIG_CFG80211 is not set |
| 369 | CONFIG_WIRELESS_OLD_REGULATORY=y | 383 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -475,7 +489,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 475 | # LPDDR flash memory drivers | 489 | # LPDDR flash memory drivers |
| 476 | # | 490 | # |
| 477 | # CONFIG_MTD_LPDDR is not set | 491 | # CONFIG_MTD_LPDDR is not set |
| 478 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 479 | 492 | ||
| 480 | # | 493 | # |
| 481 | # UBI - Unsorted block images | 494 | # UBI - Unsorted block images |
| @@ -506,13 +519,21 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 506 | # CONFIG_BLK_DEV_HD is not set | 519 | # CONFIG_BLK_DEV_HD is not set |
| 507 | CONFIG_MISC_DEVICES=y | 520 | CONFIG_MISC_DEVICES=y |
| 508 | # CONFIG_PHANTOM is not set | 521 | # CONFIG_PHANTOM is not set |
| 509 | # CONFIG_EEPROM_93CX6 is not set | ||
| 510 | # CONFIG_SGI_IOC4 is not set | 522 | # CONFIG_SGI_IOC4 is not set |
| 511 | # CONFIG_TIFM_CORE is not set | 523 | # CONFIG_TIFM_CORE is not set |
| 512 | # CONFIG_ICS932S401 is not set | 524 | # CONFIG_ICS932S401 is not set |
| 513 | # CONFIG_ENCLOSURE_SERVICES is not set | 525 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 514 | # CONFIG_HP_ILO is not set | 526 | # CONFIG_HP_ILO is not set |
| 527 | # CONFIG_ISL29003 is not set | ||
| 515 | # CONFIG_C2PORT is not set | 528 | # CONFIG_C2PORT is not set |
| 529 | |||
| 530 | # | ||
| 531 | # EEPROM support | ||
| 532 | # | ||
| 533 | # CONFIG_EEPROM_AT24 is not set | ||
| 534 | # CONFIG_EEPROM_AT25 is not set | ||
| 535 | # CONFIG_EEPROM_LEGACY is not set | ||
| 536 | # CONFIG_EEPROM_93CX6 is not set | ||
| 516 | CONFIG_HAVE_IDE=y | 537 | CONFIG_HAVE_IDE=y |
| 517 | # CONFIG_IDE is not set | 538 | # CONFIG_IDE is not set |
| 518 | 539 | ||
| @@ -539,6 +560,7 @@ CONFIG_HAVE_IDE=y | |||
| 539 | # CONFIG_I2O is not set | 560 | # CONFIG_I2O is not set |
| 540 | # CONFIG_MACINTOSH_DRIVERS is not set | 561 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 541 | CONFIG_NETDEVICES=y | 562 | CONFIG_NETDEVICES=y |
| 563 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 542 | # CONFIG_DUMMY is not set | 564 | # CONFIG_DUMMY is not set |
| 543 | # CONFIG_BONDING is not set | 565 | # CONFIG_BONDING is not set |
| 544 | # CONFIG_MACVLAN is not set | 566 | # CONFIG_MACVLAN is not set |
| @@ -574,6 +596,7 @@ CONFIG_NETDEV_1000=y | |||
| 574 | # CONFIG_E1000E is not set | 596 | # CONFIG_E1000E is not set |
| 575 | # CONFIG_IP1000 is not set | 597 | # CONFIG_IP1000 is not set |
| 576 | # CONFIG_IGB is not set | 598 | # CONFIG_IGB is not set |
| 599 | # CONFIG_IGBVF is not set | ||
| 577 | # CONFIG_NS83820 is not set | 600 | # CONFIG_NS83820 is not set |
| 578 | # CONFIG_HAMACHI is not set | 601 | # CONFIG_HAMACHI is not set |
| 579 | # CONFIG_YELLOWFIN is not set | 602 | # CONFIG_YELLOWFIN is not set |
| @@ -584,14 +607,15 @@ CONFIG_NETDEV_1000=y | |||
| 584 | # CONFIG_VIA_VELOCITY is not set | 607 | # CONFIG_VIA_VELOCITY is not set |
| 585 | # CONFIG_TIGON3 is not set | 608 | # CONFIG_TIGON3 is not set |
| 586 | # CONFIG_BNX2 is not set | 609 | # CONFIG_BNX2 is not set |
| 610 | CONFIG_FSL_PQ_MDIO=y | ||
| 587 | # CONFIG_GIANFAR is not set | 611 | # CONFIG_GIANFAR is not set |
| 588 | CONFIG_UCC_GETH=y | 612 | CONFIG_UCC_GETH=y |
| 589 | # CONFIG_UGETH_MAGIC_PACKET is not set | 613 | # CONFIG_UGETH_MAGIC_PACKET is not set |
| 590 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 614 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
| 591 | # CONFIG_MV643XX_ETH is not set | ||
| 592 | # CONFIG_QLA3XXX is not set | 615 | # CONFIG_QLA3XXX is not set |
| 593 | # CONFIG_ATL1 is not set | 616 | # CONFIG_ATL1 is not set |
| 594 | # CONFIG_ATL1E is not set | 617 | # CONFIG_ATL1E is not set |
| 618 | # CONFIG_ATL1C is not set | ||
| 595 | # CONFIG_JME is not set | 619 | # CONFIG_JME is not set |
| 596 | # CONFIG_NETDEV_10000 is not set | 620 | # CONFIG_NETDEV_10000 is not set |
| 597 | # CONFIG_TR is not set | 621 | # CONFIG_TR is not set |
| @@ -601,7 +625,6 @@ CONFIG_UCC_GETH=y | |||
| 601 | # | 625 | # |
| 602 | # CONFIG_WLAN_PRE80211 is not set | 626 | # CONFIG_WLAN_PRE80211 is not set |
| 603 | # CONFIG_WLAN_80211 is not set | 627 | # CONFIG_WLAN_80211 is not set |
| 604 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 605 | 628 | ||
| 606 | # | 629 | # |
| 607 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 630 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -673,6 +696,7 @@ CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | |||
| 673 | # | 696 | # |
| 674 | # Non-8250 serial port support | 697 | # Non-8250 serial port support |
| 675 | # | 698 | # |
| 699 | # CONFIG_SERIAL_MAX3100 is not set | ||
| 676 | # CONFIG_SERIAL_UARTLITE is not set | 700 | # CONFIG_SERIAL_UARTLITE is not set |
| 677 | CONFIG_SERIAL_CORE=y | 701 | CONFIG_SERIAL_CORE=y |
| 678 | CONFIG_SERIAL_CORE_CONSOLE=y | 702 | CONFIG_SERIAL_CORE_CONSOLE=y |
| @@ -686,6 +710,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 686 | # CONFIG_HVC_UDBG is not set | 710 | # CONFIG_HVC_UDBG is not set |
| 687 | # CONFIG_IPMI_HANDLER is not set | 711 | # CONFIG_IPMI_HANDLER is not set |
| 688 | CONFIG_HW_RANDOM=y | 712 | CONFIG_HW_RANDOM=y |
| 713 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 689 | # CONFIG_NVRAM is not set | 714 | # CONFIG_NVRAM is not set |
| 690 | # CONFIG_GEN_RTC is not set | 715 | # CONFIG_GEN_RTC is not set |
| 691 | # CONFIG_R3964 is not set | 716 | # CONFIG_R3964 is not set |
| @@ -749,12 +774,9 @@ CONFIG_I2C_MPC=y | |||
| 749 | # Miscellaneous I2C Chip support | 774 | # Miscellaneous I2C Chip support |
| 750 | # | 775 | # |
| 751 | # CONFIG_DS1682 is not set | 776 | # CONFIG_DS1682 is not set |
| 752 | # CONFIG_EEPROM_AT24 is not set | ||
| 753 | # CONFIG_EEPROM_LEGACY is not set | ||
| 754 | # CONFIG_SENSORS_PCF8574 is not set | 777 | # CONFIG_SENSORS_PCF8574 is not set |
| 755 | # CONFIG_PCF8575 is not set | 778 | # CONFIG_PCF8575 is not set |
| 756 | # CONFIG_SENSORS_PCA9539 is not set | 779 | # CONFIG_SENSORS_PCA9539 is not set |
| 757 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 758 | # CONFIG_SENSORS_MAX6875 is not set | 780 | # CONFIG_SENSORS_MAX6875 is not set |
| 759 | # CONFIG_SENSORS_TSL2550 is not set | 781 | # CONFIG_SENSORS_TSL2550 is not set |
| 760 | # CONFIG_I2C_DEBUG_CORE is not set | 782 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -774,7 +796,6 @@ CONFIG_SPI_MPC83xx=y | |||
| 774 | # | 796 | # |
| 775 | # SPI Protocol Masters | 797 | # SPI Protocol Masters |
| 776 | # | 798 | # |
| 777 | # CONFIG_EEPROM_AT25 is not set | ||
| 778 | CONFIG_SPI_SPIDEV=y | 799 | CONFIG_SPI_SPIDEV=y |
| 779 | # CONFIG_SPI_TLE62X0 is not set | 800 | # CONFIG_SPI_TLE62X0 is not set |
| 780 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 801 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
| @@ -924,6 +945,7 @@ CONFIG_FB_OF=y | |||
| 924 | # CONFIG_FB_VIRTUAL is not set | 945 | # CONFIG_FB_VIRTUAL is not set |
| 925 | # CONFIG_FB_METRONOME is not set | 946 | # CONFIG_FB_METRONOME is not set |
| 926 | # CONFIG_FB_MB862XX is not set | 947 | # CONFIG_FB_MB862XX is not set |
| 948 | # CONFIG_FB_BROADSHEET is not set | ||
| 927 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 949 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 928 | 950 | ||
| 929 | # | 951 | # |
| @@ -956,7 +978,6 @@ CONFIG_HID=y | |||
| 956 | # | 978 | # |
| 957 | # Special HID drivers | 979 | # Special HID drivers |
| 958 | # | 980 | # |
| 959 | CONFIG_HID_COMPAT=y | ||
| 960 | # CONFIG_USB_SUPPORT is not set | 981 | # CONFIG_USB_SUPPORT is not set |
| 961 | # CONFIG_UWB is not set | 982 | # CONFIG_UWB is not set |
| 962 | # CONFIG_MMC is not set | 983 | # CONFIG_MMC is not set |
| @@ -967,6 +988,7 @@ CONFIG_HID_COMPAT=y | |||
| 967 | # CONFIG_EDAC is not set | 988 | # CONFIG_EDAC is not set |
| 968 | # CONFIG_RTC_CLASS is not set | 989 | # CONFIG_RTC_CLASS is not set |
| 969 | # CONFIG_DMADEVICES is not set | 990 | # CONFIG_DMADEVICES is not set |
| 991 | # CONFIG_AUXDISPLAY is not set | ||
| 970 | # CONFIG_UIO is not set | 992 | # CONFIG_UIO is not set |
| 971 | # CONFIG_STAGING is not set | 993 | # CONFIG_STAGING is not set |
| 972 | 994 | ||
| @@ -977,6 +999,7 @@ CONFIG_EXT2_FS=y | |||
| 977 | # CONFIG_EXT2_FS_XATTR is not set | 999 | # CONFIG_EXT2_FS_XATTR is not set |
| 978 | # CONFIG_EXT2_FS_XIP is not set | 1000 | # CONFIG_EXT2_FS_XIP is not set |
| 979 | CONFIG_EXT3_FS=y | 1001 | CONFIG_EXT3_FS=y |
| 1002 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 980 | CONFIG_EXT3_FS_XATTR=y | 1003 | CONFIG_EXT3_FS_XATTR=y |
| 981 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1004 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 982 | # CONFIG_EXT3_FS_SECURITY is not set | 1005 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -999,6 +1022,11 @@ CONFIG_INOTIFY_USER=y | |||
| 999 | # CONFIG_FUSE_FS is not set | 1022 | # CONFIG_FUSE_FS is not set |
| 1000 | 1023 | ||
| 1001 | # | 1024 | # |
| 1025 | # Caches | ||
| 1026 | # | ||
| 1027 | # CONFIG_FSCACHE is not set | ||
| 1028 | |||
| 1029 | # | ||
| 1002 | # CD-ROM/DVD Filesystems | 1030 | # CD-ROM/DVD Filesystems |
| 1003 | # | 1031 | # |
| 1004 | # CONFIG_ISO9660_FS is not set | 1032 | # CONFIG_ISO9660_FS is not set |
| @@ -1052,6 +1080,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1052 | # CONFIG_ROMFS_FS is not set | 1080 | # CONFIG_ROMFS_FS is not set |
| 1053 | # CONFIG_SYSV_FS is not set | 1081 | # CONFIG_SYSV_FS is not set |
| 1054 | # CONFIG_UFS_FS is not set | 1082 | # CONFIG_UFS_FS is not set |
| 1083 | # CONFIG_NILFS2_FS is not set | ||
| 1055 | CONFIG_NETWORK_FILESYSTEMS=y | 1084 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1056 | CONFIG_NFS_FS=y | 1085 | CONFIG_NFS_FS=y |
| 1057 | CONFIG_NFS_V3=y | 1086 | CONFIG_NFS_V3=y |
| @@ -1064,7 +1093,6 @@ CONFIG_LOCKD_V4=y | |||
| 1064 | CONFIG_NFS_COMMON=y | 1093 | CONFIG_NFS_COMMON=y |
| 1065 | CONFIG_SUNRPC=y | 1094 | CONFIG_SUNRPC=y |
| 1066 | CONFIG_SUNRPC_GSS=y | 1095 | CONFIG_SUNRPC_GSS=y |
| 1067 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1068 | CONFIG_RPCSEC_GSS_KRB5=y | 1096 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1069 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1097 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1070 | # CONFIG_SMB_FS is not set | 1098 | # CONFIG_SMB_FS is not set |
| @@ -1095,6 +1123,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1095 | CONFIG_UCC_SLOW=y | 1123 | CONFIG_UCC_SLOW=y |
| 1096 | CONFIG_UCC_FAST=y | 1124 | CONFIG_UCC_FAST=y |
| 1097 | CONFIG_UCC=y | 1125 | CONFIG_UCC=y |
| 1126 | # CONFIG_BINARY_PRINTF is not set | ||
| 1098 | 1127 | ||
| 1099 | # | 1128 | # |
| 1100 | # Library routines | 1129 | # Library routines |
| @@ -1110,11 +1139,12 @@ CONFIG_CRC32=y | |||
| 1110 | # CONFIG_LIBCRC32C is not set | 1139 | # CONFIG_LIBCRC32C is not set |
| 1111 | CONFIG_ZLIB_INFLATE=y | 1140 | CONFIG_ZLIB_INFLATE=y |
| 1112 | CONFIG_ZLIB_DEFLATE=y | 1141 | CONFIG_ZLIB_DEFLATE=y |
| 1113 | CONFIG_PLIST=y | 1142 | CONFIG_DECOMPRESS_GZIP=y |
| 1114 | CONFIG_HAS_IOMEM=y | 1143 | CONFIG_HAS_IOMEM=y |
| 1115 | CONFIG_HAS_IOPORT=y | 1144 | CONFIG_HAS_IOPORT=y |
| 1116 | CONFIG_HAS_DMA=y | 1145 | CONFIG_HAS_DMA=y |
| 1117 | CONFIG_HAVE_LMB=y | 1146 | CONFIG_HAVE_LMB=y |
| 1147 | CONFIG_NLATTR=y | ||
| 1118 | 1148 | ||
| 1119 | # | 1149 | # |
| 1120 | # Kernel hacking | 1150 | # Kernel hacking |
| @@ -1136,13 +1166,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1136 | # CONFIG_LATENCYTOP is not set | 1166 | # CONFIG_LATENCYTOP is not set |
| 1137 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1167 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1138 | CONFIG_HAVE_FUNCTION_TRACER=y | 1168 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1169 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1139 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1170 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1140 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1171 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1172 | CONFIG_TRACING_SUPPORT=y | ||
| 1141 | 1173 | ||
| 1142 | # | 1174 | # |
| 1143 | # Tracers | 1175 | # Tracers |
| 1144 | # | 1176 | # |
| 1145 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1177 | # CONFIG_FUNCTION_TRACER is not set |
| 1178 | # CONFIG_SCHED_TRACER is not set | ||
| 1179 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1180 | # CONFIG_EVENT_TRACER is not set | ||
| 1181 | # CONFIG_BOOT_TRACER is not set | ||
| 1182 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1183 | # CONFIG_STACK_TRACER is not set | ||
| 1184 | # CONFIG_KMEMTRACE is not set | ||
| 1185 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1186 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1146 | # CONFIG_SAMPLES is not set | 1187 | # CONFIG_SAMPLES is not set |
| 1147 | CONFIG_HAVE_ARCH_KGDB=y | 1188 | CONFIG_HAVE_ARCH_KGDB=y |
| 1148 | CONFIG_PRINT_STACK_DEPTH=64 | 1189 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1182,10 +1223,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1182 | CONFIG_CRYPTO_HASH=y | 1223 | CONFIG_CRYPTO_HASH=y |
| 1183 | CONFIG_CRYPTO_HASH2=y | 1224 | CONFIG_CRYPTO_HASH2=y |
| 1184 | CONFIG_CRYPTO_RNG2=y | 1225 | CONFIG_CRYPTO_RNG2=y |
| 1226 | CONFIG_CRYPTO_PCOMP=y | ||
| 1185 | CONFIG_CRYPTO_MANAGER=y | 1227 | CONFIG_CRYPTO_MANAGER=y |
| 1186 | CONFIG_CRYPTO_MANAGER2=y | 1228 | CONFIG_CRYPTO_MANAGER2=y |
| 1187 | # CONFIG_CRYPTO_GF128MUL is not set | 1229 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1188 | # CONFIG_CRYPTO_NULL is not set | 1230 | # CONFIG_CRYPTO_NULL is not set |
| 1231 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1189 | # CONFIG_CRYPTO_CRYPTD is not set | 1232 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1190 | # CONFIG_CRYPTO_AUTHENC is not set | 1233 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1191 | # CONFIG_CRYPTO_TEST is not set | 1234 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1254,6 +1297,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1254 | # Compression | 1297 | # Compression |
| 1255 | # | 1298 | # |
| 1256 | # CONFIG_CRYPTO_DEFLATE is not set | 1299 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1300 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1257 | # CONFIG_CRYPTO_LZO is not set | 1301 | # CONFIG_CRYPTO_LZO is not set |
| 1258 | 1302 | ||
| 1259 | # | 1303 | # |
diff --git a/arch/powerpc/configs/83xx/mpc837x_mds_defconfig b/arch/powerpc/configs/83xx/mpc837x_mds_defconfig index e42f6b3917d2..bf636fd560ad 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:59 2009 | 4 | # Wed May 13 17:22:12 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -56,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 87 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 89 | CONFIG_GROUP_SCHED=y |
| @@ -87,20 +98,23 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | CONFIG_KALLSYMS=y | 109 | CONFIG_KALLSYMS=y |
| 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 110 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 111 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 96 | CONFIG_HOTPLUG=y | 112 | CONFIG_HOTPLUG=y |
| 97 | CONFIG_PRINTK=y | 113 | CONFIG_PRINTK=y |
| 98 | CONFIG_BUG=y | 114 | CONFIG_BUG=y |
| 99 | CONFIG_ELF_CORE=y | 115 | CONFIG_ELF_CORE=y |
| 100 | CONFIG_COMPAT_BRK=y | ||
| 101 | CONFIG_BASE_FULL=y | 116 | CONFIG_BASE_FULL=y |
| 102 | CONFIG_FUTEX=y | 117 | CONFIG_FUTEX=y |
| 103 | CONFIG_ANON_INODES=y | ||
| 104 | # CONFIG_EPOLL is not set | 118 | # CONFIG_EPOLL is not set |
| 105 | CONFIG_SIGNALFD=y | 119 | CONFIG_SIGNALFD=y |
| 106 | CONFIG_TIMERFD=y | 120 | CONFIG_TIMERFD=y |
| @@ -109,10 +123,12 @@ CONFIG_SHMEM=y | |||
| 109 | CONFIG_AIO=y | 123 | CONFIG_AIO=y |
| 110 | CONFIG_VM_EVENT_COUNTERS=y | 124 | CONFIG_VM_EVENT_COUNTERS=y |
| 111 | CONFIG_PCI_QUIRKS=y | 125 | CONFIG_PCI_QUIRKS=y |
| 126 | CONFIG_COMPAT_BRK=y | ||
| 112 | CONFIG_SLAB=y | 127 | CONFIG_SLAB=y |
| 113 | # CONFIG_SLUB is not set | 128 | # CONFIG_SLUB is not set |
| 114 | # CONFIG_SLOB is not set | 129 | # CONFIG_SLOB is not set |
| 115 | # CONFIG_PROFILING is not set | 130 | # CONFIG_PROFILING is not set |
| 131 | # CONFIG_MARKERS is not set | ||
| 116 | CONFIG_HAVE_OPROFILE=y | 132 | CONFIG_HAVE_OPROFILE=y |
| 117 | # CONFIG_KPROBES is not set | 133 | # CONFIG_KPROBES is not set |
| 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 134 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -120,6 +136,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
| 120 | CONFIG_HAVE_KPROBES=y | 136 | CONFIG_HAVE_KPROBES=y |
| 121 | CONFIG_HAVE_KRETPROBES=y | 137 | CONFIG_HAVE_KRETPROBES=y |
| 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 138 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 139 | # CONFIG_SLOW_WORK is not set | ||
| 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 140 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 124 | CONFIG_SLABINFO=y | 141 | CONFIG_SLABINFO=y |
| 125 | CONFIG_RT_MUTEXES=y | 142 | CONFIG_RT_MUTEXES=y |
| @@ -132,7 +149,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 149 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 133 | CONFIG_BLOCK=y | 150 | CONFIG_BLOCK=y |
| 134 | # CONFIG_LBD is not set | 151 | # CONFIG_LBD is not set |
| 135 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 136 | # CONFIG_BLK_DEV_BSG is not set | 152 | # CONFIG_BLK_DEV_BSG is not set |
| 137 | # CONFIG_BLK_DEV_INTEGRITY is not set | 153 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 138 | 154 | ||
| @@ -148,18 +164,11 @@ CONFIG_DEFAULT_AS=y | |||
| 148 | # CONFIG_DEFAULT_CFQ is not set | 164 | # CONFIG_DEFAULT_CFQ is not set |
| 149 | # CONFIG_DEFAULT_NOOP is not set | 165 | # CONFIG_DEFAULT_NOOP is not set |
| 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 166 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 151 | CONFIG_CLASSIC_RCU=y | ||
| 152 | # CONFIG_TREE_RCU is not set | ||
| 153 | # CONFIG_PREEMPT_RCU is not set | ||
| 154 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 156 | # CONFIG_FREEZER is not set | 167 | # CONFIG_FREEZER is not set |
| 157 | 168 | ||
| 158 | # | 169 | # |
| 159 | # Platform support | 170 | # Platform support |
| 160 | # | 171 | # |
| 161 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 162 | CONFIG_CLASSIC32=y | ||
| 163 | # CONFIG_PPC_CHRP is not set | 172 | # CONFIG_PPC_CHRP is not set |
| 164 | # CONFIG_MPC5121_ADS is not set | 173 | # CONFIG_MPC5121_ADS is not set |
| 165 | # CONFIG_MPC5121_GENERIC is not set | 174 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -184,6 +193,8 @@ CONFIG_MPC837x_MDS=y | |||
| 184 | CONFIG_PPC_MPC837x=y | 193 | CONFIG_PPC_MPC837x=y |
| 185 | # CONFIG_PPC_86xx is not set | 194 | # CONFIG_PPC_86xx is not set |
| 186 | # CONFIG_EMBEDDED6xx is not set | 195 | # CONFIG_EMBEDDED6xx is not set |
| 196 | # CONFIG_AMIGAONE is not set | ||
| 197 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 187 | CONFIG_IPIC=y | 198 | CONFIG_IPIC=y |
| 188 | # CONFIG_MPIC is not set | 199 | # CONFIG_MPIC is not set |
| 189 | # CONFIG_MPIC_WEIRD is not set | 200 | # CONFIG_MPIC_WEIRD is not set |
| @@ -244,9 +255,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 244 | CONFIG_BOUNCE=y | 255 | CONFIG_BOUNCE=y |
| 245 | CONFIG_VIRT_TO_BUS=y | 256 | CONFIG_VIRT_TO_BUS=y |
| 246 | CONFIG_UNEVICTABLE_LRU=y | 257 | CONFIG_UNEVICTABLE_LRU=y |
| 258 | CONFIG_HAVE_MLOCK=y | ||
| 259 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 247 | CONFIG_PPC_4K_PAGES=y | 260 | CONFIG_PPC_4K_PAGES=y |
| 248 | # CONFIG_PPC_16K_PAGES is not set | 261 | # CONFIG_PPC_16K_PAGES is not set |
| 249 | # CONFIG_PPC_64K_PAGES is not set | 262 | # CONFIG_PPC_64K_PAGES is not set |
| 263 | # CONFIG_PPC_256K_PAGES is not set | ||
| 250 | CONFIG_FORCE_MAX_ZONEORDER=11 | 264 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 251 | CONFIG_PROC_DEVICETREE=y | 265 | CONFIG_PROC_DEVICETREE=y |
| 252 | # CONFIG_CMDLINE_BOOL is not set | 266 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -272,6 +286,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 272 | # CONFIG_PCI_MSI is not set | 286 | # CONFIG_PCI_MSI is not set |
| 273 | # CONFIG_PCI_LEGACY is not set | 287 | # CONFIG_PCI_LEGACY is not set |
| 274 | # CONFIG_PCI_STUB is not set | 288 | # CONFIG_PCI_STUB is not set |
| 289 | # CONFIG_PCI_IOV is not set | ||
| 275 | # CONFIG_PCCARD is not set | 290 | # CONFIG_PCCARD is not set |
| 276 | # CONFIG_HOTPLUG_PCI is not set | 291 | # CONFIG_HOTPLUG_PCI is not set |
| 277 | # CONFIG_HAS_RAPIDIO is not set | 292 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -294,7 +309,6 @@ CONFIG_NET=y | |||
| 294 | # | 309 | # |
| 295 | # Networking options | 310 | # Networking options |
| 296 | # | 311 | # |
| 297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 298 | CONFIG_PACKET=y | 312 | CONFIG_PACKET=y |
| 299 | # CONFIG_PACKET_MMAP is not set | 313 | # CONFIG_PACKET_MMAP is not set |
| 300 | CONFIG_UNIX=y | 314 | CONFIG_UNIX=y |
| @@ -350,6 +364,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 350 | # CONFIG_LAPB is not set | 364 | # CONFIG_LAPB is not set |
| 351 | # CONFIG_ECONET is not set | 365 | # CONFIG_ECONET is not set |
| 352 | # CONFIG_WAN_ROUTER is not set | 366 | # CONFIG_WAN_ROUTER is not set |
| 367 | # CONFIG_PHONET is not set | ||
| 353 | # CONFIG_NET_SCHED is not set | 368 | # CONFIG_NET_SCHED is not set |
| 354 | # CONFIG_DCB is not set | 369 | # CONFIG_DCB is not set |
| 355 | 370 | ||
| @@ -362,7 +377,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 362 | # CONFIG_IRDA is not set | 377 | # CONFIG_IRDA is not set |
| 363 | # CONFIG_BT is not set | 378 | # CONFIG_BT is not set |
| 364 | # CONFIG_AF_RXRPC is not set | 379 | # CONFIG_AF_RXRPC is not set |
| 365 | # CONFIG_PHONET is not set | ||
| 366 | CONFIG_WIRELESS=y | 380 | CONFIG_WIRELESS=y |
| 367 | # CONFIG_CFG80211 is not set | 381 | # CONFIG_CFG80211 is not set |
| 368 | CONFIG_WIRELESS_OLD_REGULATORY=y | 382 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -410,13 +424,20 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 410 | # CONFIG_BLK_DEV_HD is not set | 424 | # CONFIG_BLK_DEV_HD is not set |
| 411 | CONFIG_MISC_DEVICES=y | 425 | CONFIG_MISC_DEVICES=y |
| 412 | # CONFIG_PHANTOM is not set | 426 | # CONFIG_PHANTOM is not set |
| 413 | # CONFIG_EEPROM_93CX6 is not set | ||
| 414 | # CONFIG_SGI_IOC4 is not set | 427 | # CONFIG_SGI_IOC4 is not set |
| 415 | # CONFIG_TIFM_CORE is not set | 428 | # CONFIG_TIFM_CORE is not set |
| 416 | # CONFIG_ICS932S401 is not set | 429 | # CONFIG_ICS932S401 is not set |
| 417 | # CONFIG_ENCLOSURE_SERVICES is not set | 430 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 418 | # CONFIG_HP_ILO is not set | 431 | # CONFIG_HP_ILO is not set |
| 432 | # CONFIG_ISL29003 is not set | ||
| 419 | # CONFIG_C2PORT is not set | 433 | # CONFIG_C2PORT is not set |
| 434 | |||
| 435 | # | ||
| 436 | # EEPROM support | ||
| 437 | # | ||
| 438 | # CONFIG_EEPROM_AT24 is not set | ||
| 439 | # CONFIG_EEPROM_LEGACY is not set | ||
| 440 | # CONFIG_EEPROM_93CX6 is not set | ||
| 420 | CONFIG_HAVE_IDE=y | 441 | CONFIG_HAVE_IDE=y |
| 421 | # CONFIG_IDE is not set | 442 | # CONFIG_IDE is not set |
| 422 | 443 | ||
| @@ -474,9 +495,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 474 | # CONFIG_MEGARAID_NEWGEN is not set | 495 | # CONFIG_MEGARAID_NEWGEN is not set |
| 475 | # CONFIG_MEGARAID_LEGACY is not set | 496 | # CONFIG_MEGARAID_LEGACY is not set |
| 476 | # CONFIG_MEGARAID_SAS is not set | 497 | # CONFIG_MEGARAID_SAS is not set |
| 498 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 477 | # CONFIG_SCSI_HPTIOP is not set | 499 | # CONFIG_SCSI_HPTIOP is not set |
| 478 | # CONFIG_SCSI_BUSLOGIC is not set | 500 | # CONFIG_SCSI_BUSLOGIC is not set |
| 479 | # CONFIG_LIBFC is not set | 501 | # CONFIG_LIBFC is not set |
| 502 | # CONFIG_LIBFCOE is not set | ||
| 480 | # CONFIG_FCOE is not set | 503 | # CONFIG_FCOE is not set |
| 481 | # CONFIG_SCSI_DMX3191D is not set | 504 | # CONFIG_SCSI_DMX3191D is not set |
| 482 | # CONFIG_SCSI_EATA is not set | 505 | # CONFIG_SCSI_EATA is not set |
| @@ -499,6 +522,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 499 | # CONFIG_SCSI_DEBUG is not set | 522 | # CONFIG_SCSI_DEBUG is not set |
| 500 | # CONFIG_SCSI_SRP is not set | 523 | # CONFIG_SCSI_SRP is not set |
| 501 | # CONFIG_SCSI_DH is not set | 524 | # CONFIG_SCSI_DH is not set |
| 525 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 502 | CONFIG_ATA=y | 526 | CONFIG_ATA=y |
| 503 | # CONFIG_ATA_NONSTANDARD is not set | 527 | # CONFIG_ATA_NONSTANDARD is not set |
| 504 | CONFIG_SATA_PMP=y | 528 | CONFIG_SATA_PMP=y |
| @@ -575,6 +599,7 @@ CONFIG_ATA_SFF=y | |||
| 575 | # CONFIG_I2O is not set | 599 | # CONFIG_I2O is not set |
| 576 | # CONFIG_MACINTOSH_DRIVERS is not set | 600 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 577 | CONFIG_NETDEVICES=y | 601 | CONFIG_NETDEVICES=y |
| 602 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 578 | # CONFIG_DUMMY is not set | 603 | # CONFIG_DUMMY is not set |
| 579 | # CONFIG_BONDING is not set | 604 | # CONFIG_BONDING is not set |
| 580 | # CONFIG_MACVLAN is not set | 605 | # CONFIG_MACVLAN is not set |
| @@ -608,6 +633,8 @@ CONFIG_MII=y | |||
| 608 | # CONFIG_SUNGEM is not set | 633 | # CONFIG_SUNGEM is not set |
| 609 | # CONFIG_CASSINI is not set | 634 | # CONFIG_CASSINI is not set |
| 610 | # CONFIG_NET_VENDOR_3COM is not set | 635 | # CONFIG_NET_VENDOR_3COM is not set |
| 636 | # CONFIG_ETHOC is not set | ||
| 637 | # CONFIG_DNET is not set | ||
| 611 | # CONFIG_NET_TULIP is not set | 638 | # CONFIG_NET_TULIP is not set |
| 612 | # CONFIG_HP100 is not set | 639 | # CONFIG_HP100 is not set |
| 613 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 640 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -627,6 +654,7 @@ CONFIG_NETDEV_1000=y | |||
| 627 | # CONFIG_E1000E is not set | 654 | # CONFIG_E1000E is not set |
| 628 | # CONFIG_IP1000 is not set | 655 | # CONFIG_IP1000 is not set |
| 629 | # CONFIG_IGB is not set | 656 | # CONFIG_IGB is not set |
| 657 | # CONFIG_IGBVF is not set | ||
| 630 | # CONFIG_NS83820 is not set | 658 | # CONFIG_NS83820 is not set |
| 631 | # CONFIG_HAMACHI is not set | 659 | # CONFIG_HAMACHI is not set |
| 632 | # CONFIG_YELLOWFIN is not set | 660 | # CONFIG_YELLOWFIN is not set |
| @@ -637,11 +665,12 @@ CONFIG_NETDEV_1000=y | |||
| 637 | # CONFIG_VIA_VELOCITY is not set | 665 | # CONFIG_VIA_VELOCITY is not set |
| 638 | # CONFIG_TIGON3 is not set | 666 | # CONFIG_TIGON3 is not set |
| 639 | # CONFIG_BNX2 is not set | 667 | # CONFIG_BNX2 is not set |
| 668 | CONFIG_FSL_PQ_MDIO=y | ||
| 640 | CONFIG_GIANFAR=y | 669 | CONFIG_GIANFAR=y |
| 641 | # CONFIG_MV643XX_ETH is not set | ||
| 642 | # CONFIG_QLA3XXX is not set | 670 | # CONFIG_QLA3XXX is not set |
| 643 | # CONFIG_ATL1 is not set | 671 | # CONFIG_ATL1 is not set |
| 644 | # CONFIG_ATL1E is not set | 672 | # CONFIG_ATL1E is not set |
| 673 | # CONFIG_ATL1C is not set | ||
| 645 | # CONFIG_JME is not set | 674 | # CONFIG_JME is not set |
| 646 | CONFIG_NETDEV_10000=y | 675 | CONFIG_NETDEV_10000=y |
| 647 | # CONFIG_CHELSIO_T1 is not set | 676 | # CONFIG_CHELSIO_T1 is not set |
| @@ -651,6 +680,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 651 | # CONFIG_IXGBE is not set | 680 | # CONFIG_IXGBE is not set |
| 652 | # CONFIG_IXGB is not set | 681 | # CONFIG_IXGB is not set |
| 653 | # CONFIG_S2IO is not set | 682 | # CONFIG_S2IO is not set |
| 683 | # CONFIG_VXGE is not set | ||
| 654 | # CONFIG_MYRI10GE is not set | 684 | # CONFIG_MYRI10GE is not set |
| 655 | # CONFIG_NETXEN_NIC is not set | 685 | # CONFIG_NETXEN_NIC is not set |
| 656 | # CONFIG_NIU is not set | 686 | # CONFIG_NIU is not set |
| @@ -660,6 +690,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 660 | # CONFIG_BNX2X is not set | 690 | # CONFIG_BNX2X is not set |
| 661 | # CONFIG_QLGE is not set | 691 | # CONFIG_QLGE is not set |
| 662 | # CONFIG_SFC is not set | 692 | # CONFIG_SFC is not set |
| 693 | # CONFIG_BE2NET is not set | ||
| 663 | # CONFIG_TR is not set | 694 | # CONFIG_TR is not set |
| 664 | 695 | ||
| 665 | # | 696 | # |
| @@ -667,7 +698,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 667 | # | 698 | # |
| 668 | # CONFIG_WLAN_PRE80211 is not set | 699 | # CONFIG_WLAN_PRE80211 is not set |
| 669 | # CONFIG_WLAN_80211 is not set | 700 | # CONFIG_WLAN_80211 is not set |
| 670 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 671 | 701 | ||
| 672 | # | 702 | # |
| 673 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 703 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -811,12 +841,9 @@ CONFIG_I2C_MPC=y | |||
| 811 | # Miscellaneous I2C Chip support | 841 | # Miscellaneous I2C Chip support |
| 812 | # | 842 | # |
| 813 | # CONFIG_DS1682 is not set | 843 | # CONFIG_DS1682 is not set |
| 814 | # CONFIG_EEPROM_AT24 is not set | ||
| 815 | # CONFIG_EEPROM_LEGACY is not set | ||
| 816 | # CONFIG_SENSORS_PCF8574 is not set | 844 | # CONFIG_SENSORS_PCF8574 is not set |
| 817 | # CONFIG_PCF8575 is not set | 845 | # CONFIG_PCF8575 is not set |
| 818 | # CONFIG_SENSORS_PCA9539 is not set | 846 | # CONFIG_SENSORS_PCA9539 is not set |
| 819 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 820 | # CONFIG_SENSORS_MAX6875 is not set | 847 | # CONFIG_SENSORS_MAX6875 is not set |
| 821 | # CONFIG_SENSORS_TSL2550 is not set | 848 | # CONFIG_SENSORS_TSL2550 is not set |
| 822 | # CONFIG_I2C_DEBUG_CORE is not set | 849 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -848,6 +875,7 @@ CONFIG_HWMON=y | |||
| 848 | # CONFIG_SENSORS_F71805F is not set | 875 | # CONFIG_SENSORS_F71805F is not set |
| 849 | # CONFIG_SENSORS_F71882FG is not set | 876 | # CONFIG_SENSORS_F71882FG is not set |
| 850 | # CONFIG_SENSORS_F75375S is not set | 877 | # CONFIG_SENSORS_F75375S is not set |
| 878 | # CONFIG_SENSORS_G760A is not set | ||
| 851 | # CONFIG_SENSORS_GL518SM is not set | 879 | # CONFIG_SENSORS_GL518SM is not set |
| 852 | # CONFIG_SENSORS_GL520SM is not set | 880 | # CONFIG_SENSORS_GL520SM is not set |
| 853 | # CONFIG_SENSORS_IT87 is not set | 881 | # CONFIG_SENSORS_IT87 is not set |
| @@ -862,11 +890,14 @@ CONFIG_HWMON=y | |||
| 862 | # CONFIG_SENSORS_LM90 is not set | 890 | # CONFIG_SENSORS_LM90 is not set |
| 863 | # CONFIG_SENSORS_LM92 is not set | 891 | # CONFIG_SENSORS_LM92 is not set |
| 864 | # CONFIG_SENSORS_LM93 is not set | 892 | # CONFIG_SENSORS_LM93 is not set |
| 893 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 865 | # CONFIG_SENSORS_LTC4245 is not set | 894 | # CONFIG_SENSORS_LTC4245 is not set |
| 895 | # CONFIG_SENSORS_LM95241 is not set | ||
| 866 | # CONFIG_SENSORS_MAX1619 is not set | 896 | # CONFIG_SENSORS_MAX1619 is not set |
| 867 | # CONFIG_SENSORS_MAX6650 is not set | 897 | # CONFIG_SENSORS_MAX6650 is not set |
| 868 | # CONFIG_SENSORS_PC87360 is not set | 898 | # CONFIG_SENSORS_PC87360 is not set |
| 869 | # CONFIG_SENSORS_PC87427 is not set | 899 | # CONFIG_SENSORS_PC87427 is not set |
| 900 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 870 | # CONFIG_SENSORS_SIS5595 is not set | 901 | # CONFIG_SENSORS_SIS5595 is not set |
| 871 | # CONFIG_SENSORS_DME1737 is not set | 902 | # CONFIG_SENSORS_DME1737 is not set |
| 872 | # CONFIG_SENSORS_SMSC47M1 is not set | 903 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -964,7 +995,6 @@ CONFIG_HID=y | |||
| 964 | # | 995 | # |
| 965 | # Special HID drivers | 996 | # Special HID drivers |
| 966 | # | 997 | # |
| 967 | CONFIG_HID_COMPAT=y | ||
| 968 | CONFIG_USB_SUPPORT=y | 998 | CONFIG_USB_SUPPORT=y |
| 969 | CONFIG_USB_ARCH_HAS_HCD=y | 999 | CONFIG_USB_ARCH_HAS_HCD=y |
| 970 | CONFIG_USB_ARCH_HAS_OHCI=y | 1000 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -978,7 +1008,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 978 | # | 1008 | # |
| 979 | 1009 | ||
| 980 | # | 1010 | # |
| 981 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1011 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 982 | # | 1012 | # |
| 983 | # CONFIG_USB_GADGET is not set | 1013 | # CONFIG_USB_GADGET is not set |
| 984 | 1014 | ||
| @@ -994,6 +1024,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 994 | # CONFIG_EDAC is not set | 1024 | # CONFIG_EDAC is not set |
| 995 | # CONFIG_RTC_CLASS is not set | 1025 | # CONFIG_RTC_CLASS is not set |
| 996 | # CONFIG_DMADEVICES is not set | 1026 | # CONFIG_DMADEVICES is not set |
| 1027 | # CONFIG_AUXDISPLAY is not set | ||
| 997 | # CONFIG_UIO is not set | 1028 | # CONFIG_UIO is not set |
| 998 | # CONFIG_STAGING is not set | 1029 | # CONFIG_STAGING is not set |
| 999 | 1030 | ||
| @@ -1004,6 +1035,7 @@ CONFIG_EXT2_FS=y | |||
| 1004 | # CONFIG_EXT2_FS_XATTR is not set | 1035 | # CONFIG_EXT2_FS_XATTR is not set |
| 1005 | # CONFIG_EXT2_FS_XIP is not set | 1036 | # CONFIG_EXT2_FS_XIP is not set |
| 1006 | CONFIG_EXT3_FS=y | 1037 | CONFIG_EXT3_FS=y |
| 1038 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1007 | CONFIG_EXT3_FS_XATTR=y | 1039 | CONFIG_EXT3_FS_XATTR=y |
| 1008 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1040 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1009 | # CONFIG_EXT3_FS_SECURITY is not set | 1041 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1026,6 +1058,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1026 | # CONFIG_FUSE_FS is not set | 1058 | # CONFIG_FUSE_FS is not set |
| 1027 | 1059 | ||
| 1028 | # | 1060 | # |
| 1061 | # Caches | ||
| 1062 | # | ||
| 1063 | # CONFIG_FSCACHE is not set | ||
| 1064 | |||
| 1065 | # | ||
| 1029 | # CD-ROM/DVD Filesystems | 1066 | # CD-ROM/DVD Filesystems |
| 1030 | # | 1067 | # |
| 1031 | # CONFIG_ISO9660_FS is not set | 1068 | # CONFIG_ISO9660_FS is not set |
| @@ -1068,6 +1105,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1068 | # CONFIG_ROMFS_FS is not set | 1105 | # CONFIG_ROMFS_FS is not set |
| 1069 | # CONFIG_SYSV_FS is not set | 1106 | # CONFIG_SYSV_FS is not set |
| 1070 | # CONFIG_UFS_FS is not set | 1107 | # CONFIG_UFS_FS is not set |
| 1108 | # CONFIG_NILFS2_FS is not set | ||
| 1071 | CONFIG_NETWORK_FILESYSTEMS=y | 1109 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1072 | CONFIG_NFS_FS=y | 1110 | CONFIG_NFS_FS=y |
| 1073 | CONFIG_NFS_V3=y | 1111 | CONFIG_NFS_V3=y |
| @@ -1080,7 +1118,6 @@ CONFIG_LOCKD_V4=y | |||
| 1080 | CONFIG_NFS_COMMON=y | 1118 | CONFIG_NFS_COMMON=y |
| 1081 | CONFIG_SUNRPC=y | 1119 | CONFIG_SUNRPC=y |
| 1082 | CONFIG_SUNRPC_GSS=y | 1120 | CONFIG_SUNRPC_GSS=y |
| 1083 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1084 | CONFIG_RPCSEC_GSS_KRB5=y | 1121 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1085 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1122 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1086 | # CONFIG_SMB_FS is not set | 1123 | # CONFIG_SMB_FS is not set |
| @@ -1112,6 +1149,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1112 | # CONFIG_SYSV68_PARTITION is not set | 1149 | # CONFIG_SYSV68_PARTITION is not set |
| 1113 | # CONFIG_NLS is not set | 1150 | # CONFIG_NLS is not set |
| 1114 | # CONFIG_DLM is not set | 1151 | # CONFIG_DLM is not set |
| 1152 | # CONFIG_BINARY_PRINTF is not set | ||
| 1115 | 1153 | ||
| 1116 | # | 1154 | # |
| 1117 | # Library routines | 1155 | # Library routines |
| @@ -1125,11 +1163,13 @@ CONFIG_CRC_T10DIF=y | |||
| 1125 | CONFIG_CRC32=y | 1163 | CONFIG_CRC32=y |
| 1126 | # CONFIG_CRC7 is not set | 1164 | # CONFIG_CRC7 is not set |
| 1127 | # CONFIG_LIBCRC32C is not set | 1165 | # CONFIG_LIBCRC32C is not set |
| 1128 | CONFIG_PLIST=y | 1166 | CONFIG_ZLIB_INFLATE=y |
| 1167 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1129 | CONFIG_HAS_IOMEM=y | 1168 | CONFIG_HAS_IOMEM=y |
| 1130 | CONFIG_HAS_IOPORT=y | 1169 | CONFIG_HAS_IOPORT=y |
| 1131 | CONFIG_HAS_DMA=y | 1170 | CONFIG_HAS_DMA=y |
| 1132 | CONFIG_HAVE_LMB=y | 1171 | CONFIG_HAVE_LMB=y |
| 1172 | CONFIG_NLATTR=y | ||
| 1133 | 1173 | ||
| 1134 | # | 1174 | # |
| 1135 | # Kernel hacking | 1175 | # Kernel hacking |
| @@ -1149,13 +1189,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1149 | # CONFIG_LATENCYTOP is not set | 1189 | # CONFIG_LATENCYTOP is not set |
| 1150 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1190 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1151 | CONFIG_HAVE_FUNCTION_TRACER=y | 1191 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1192 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1152 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1193 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1153 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1194 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1195 | CONFIG_TRACING_SUPPORT=y | ||
| 1154 | 1196 | ||
| 1155 | # | 1197 | # |
| 1156 | # Tracers | 1198 | # Tracers |
| 1157 | # | 1199 | # |
| 1158 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1200 | # CONFIG_FUNCTION_TRACER is not set |
| 1201 | # CONFIG_SCHED_TRACER is not set | ||
| 1202 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1203 | # CONFIG_EVENT_TRACER is not set | ||
| 1204 | # CONFIG_BOOT_TRACER is not set | ||
| 1205 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1206 | # CONFIG_STACK_TRACER is not set | ||
| 1207 | # CONFIG_KMEMTRACE is not set | ||
| 1208 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1209 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1159 | # CONFIG_SAMPLES is not set | 1210 | # CONFIG_SAMPLES is not set |
| 1160 | CONFIG_HAVE_ARCH_KGDB=y | 1211 | CONFIG_HAVE_ARCH_KGDB=y |
| 1161 | CONFIG_PRINT_STACK_DEPTH=64 | 1212 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1184,10 +1235,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1184 | CONFIG_CRYPTO_HASH=y | 1235 | CONFIG_CRYPTO_HASH=y |
| 1185 | CONFIG_CRYPTO_HASH2=y | 1236 | CONFIG_CRYPTO_HASH2=y |
| 1186 | CONFIG_CRYPTO_RNG2=y | 1237 | CONFIG_CRYPTO_RNG2=y |
| 1238 | CONFIG_CRYPTO_PCOMP=y | ||
| 1187 | CONFIG_CRYPTO_MANAGER=y | 1239 | CONFIG_CRYPTO_MANAGER=y |
| 1188 | CONFIG_CRYPTO_MANAGER2=y | 1240 | CONFIG_CRYPTO_MANAGER2=y |
| 1189 | # CONFIG_CRYPTO_GF128MUL is not set | 1241 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1190 | # CONFIG_CRYPTO_NULL is not set | 1242 | # CONFIG_CRYPTO_NULL is not set |
| 1243 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1191 | # CONFIG_CRYPTO_CRYPTD is not set | 1244 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1192 | # CONFIG_CRYPTO_AUTHENC is not set | 1245 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1193 | # CONFIG_CRYPTO_TEST is not set | 1246 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1256,6 +1309,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1256 | # Compression | 1309 | # Compression |
| 1257 | # | 1310 | # |
| 1258 | # CONFIG_CRYPTO_DEFLATE is not set | 1311 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1312 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1259 | # CONFIG_CRYPTO_LZO is not set | 1313 | # CONFIG_CRYPTO_LZO is not set |
| 1260 | 1314 | ||
| 1261 | # | 1315 | # |
diff --git a/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig b/arch/powerpc/configs/83xx/mpc837x_rdb_defconfig index 408022f79a50..fe6454eacbdb 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:01 2009 | 4 | # Wed May 13 17:22:14 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -56,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 87 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 89 | CONFIG_GROUP_SCHED=y |
| @@ -87,20 +98,23 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | CONFIG_KALLSYMS=y | 109 | CONFIG_KALLSYMS=y |
| 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 110 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 111 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 96 | CONFIG_HOTPLUG=y | 112 | CONFIG_HOTPLUG=y |
| 97 | CONFIG_PRINTK=y | 113 | CONFIG_PRINTK=y |
| 98 | CONFIG_BUG=y | 114 | CONFIG_BUG=y |
| 99 | CONFIG_ELF_CORE=y | 115 | CONFIG_ELF_CORE=y |
| 100 | CONFIG_COMPAT_BRK=y | ||
| 101 | CONFIG_BASE_FULL=y | 116 | CONFIG_BASE_FULL=y |
| 102 | CONFIG_FUTEX=y | 117 | CONFIG_FUTEX=y |
| 103 | CONFIG_ANON_INODES=y | ||
| 104 | # CONFIG_EPOLL is not set | 118 | # CONFIG_EPOLL is not set |
| 105 | CONFIG_SIGNALFD=y | 119 | CONFIG_SIGNALFD=y |
| 106 | CONFIG_TIMERFD=y | 120 | CONFIG_TIMERFD=y |
| @@ -109,10 +123,12 @@ CONFIG_SHMEM=y | |||
| 109 | CONFIG_AIO=y | 123 | CONFIG_AIO=y |
| 110 | CONFIG_VM_EVENT_COUNTERS=y | 124 | CONFIG_VM_EVENT_COUNTERS=y |
| 111 | CONFIG_PCI_QUIRKS=y | 125 | CONFIG_PCI_QUIRKS=y |
| 126 | CONFIG_COMPAT_BRK=y | ||
| 112 | CONFIG_SLAB=y | 127 | CONFIG_SLAB=y |
| 113 | # CONFIG_SLUB is not set | 128 | # CONFIG_SLUB is not set |
| 114 | # CONFIG_SLOB is not set | 129 | # CONFIG_SLOB is not set |
| 115 | # CONFIG_PROFILING is not set | 130 | # CONFIG_PROFILING is not set |
| 131 | # CONFIG_MARKERS is not set | ||
| 116 | CONFIG_HAVE_OPROFILE=y | 132 | CONFIG_HAVE_OPROFILE=y |
| 117 | # CONFIG_KPROBES is not set | 133 | # CONFIG_KPROBES is not set |
| 118 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 134 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -120,6 +136,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
| 120 | CONFIG_HAVE_KPROBES=y | 136 | CONFIG_HAVE_KPROBES=y |
| 121 | CONFIG_HAVE_KRETPROBES=y | 137 | CONFIG_HAVE_KRETPROBES=y |
| 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 138 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 139 | # CONFIG_SLOW_WORK is not set | ||
| 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 140 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 124 | CONFIG_SLABINFO=y | 141 | CONFIG_SLABINFO=y |
| 125 | CONFIG_RT_MUTEXES=y | 142 | CONFIG_RT_MUTEXES=y |
| @@ -132,7 +149,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 149 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 133 | CONFIG_BLOCK=y | 150 | CONFIG_BLOCK=y |
| 134 | # CONFIG_LBD is not set | 151 | # CONFIG_LBD is not set |
| 135 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 136 | # CONFIG_BLK_DEV_BSG is not set | 152 | # CONFIG_BLK_DEV_BSG is not set |
| 137 | # CONFIG_BLK_DEV_INTEGRITY is not set | 153 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 138 | 154 | ||
| @@ -148,18 +164,11 @@ CONFIG_DEFAULT_AS=y | |||
| 148 | # CONFIG_DEFAULT_CFQ is not set | 164 | # CONFIG_DEFAULT_CFQ is not set |
| 149 | # CONFIG_DEFAULT_NOOP is not set | 165 | # CONFIG_DEFAULT_NOOP is not set |
| 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 166 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 151 | CONFIG_CLASSIC_RCU=y | ||
| 152 | # CONFIG_TREE_RCU is not set | ||
| 153 | # CONFIG_PREEMPT_RCU is not set | ||
| 154 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 156 | # CONFIG_FREEZER is not set | 167 | # CONFIG_FREEZER is not set |
| 157 | 168 | ||
| 158 | # | 169 | # |
| 159 | # Platform support | 170 | # Platform support |
| 160 | # | 171 | # |
| 161 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 162 | CONFIG_CLASSIC32=y | ||
| 163 | # CONFIG_PPC_CHRP is not set | 172 | # CONFIG_PPC_CHRP is not set |
| 164 | # CONFIG_MPC5121_ADS is not set | 173 | # CONFIG_MPC5121_ADS is not set |
| 165 | # CONFIG_MPC5121_GENERIC is not set | 174 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -184,6 +193,8 @@ CONFIG_MPC837x_RDB=y | |||
| 184 | CONFIG_PPC_MPC837x=y | 193 | CONFIG_PPC_MPC837x=y |
| 185 | # CONFIG_PPC_86xx is not set | 194 | # CONFIG_PPC_86xx is not set |
| 186 | # CONFIG_EMBEDDED6xx is not set | 195 | # CONFIG_EMBEDDED6xx is not set |
| 196 | # CONFIG_AMIGAONE is not set | ||
| 197 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 187 | CONFIG_IPIC=y | 198 | CONFIG_IPIC=y |
| 188 | # CONFIG_MPIC is not set | 199 | # CONFIG_MPIC is not set |
| 189 | # CONFIG_MPIC_WEIRD is not set | 200 | # CONFIG_MPIC_WEIRD is not set |
| @@ -244,9 +255,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 244 | CONFIG_BOUNCE=y | 255 | CONFIG_BOUNCE=y |
| 245 | CONFIG_VIRT_TO_BUS=y | 256 | CONFIG_VIRT_TO_BUS=y |
| 246 | CONFIG_UNEVICTABLE_LRU=y | 257 | CONFIG_UNEVICTABLE_LRU=y |
| 258 | CONFIG_HAVE_MLOCK=y | ||
| 259 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 247 | CONFIG_PPC_4K_PAGES=y | 260 | CONFIG_PPC_4K_PAGES=y |
| 248 | # CONFIG_PPC_16K_PAGES is not set | 261 | # CONFIG_PPC_16K_PAGES is not set |
| 249 | # CONFIG_PPC_64K_PAGES is not set | 262 | # CONFIG_PPC_64K_PAGES is not set |
| 263 | # CONFIG_PPC_256K_PAGES is not set | ||
| 250 | CONFIG_FORCE_MAX_ZONEORDER=11 | 264 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 251 | CONFIG_PROC_DEVICETREE=y | 265 | CONFIG_PROC_DEVICETREE=y |
| 252 | # CONFIG_CMDLINE_BOOL is not set | 266 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -272,6 +286,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 272 | # CONFIG_PCI_MSI is not set | 286 | # CONFIG_PCI_MSI is not set |
| 273 | # CONFIG_PCI_LEGACY is not set | 287 | # CONFIG_PCI_LEGACY is not set |
| 274 | # CONFIG_PCI_STUB is not set | 288 | # CONFIG_PCI_STUB is not set |
| 289 | # CONFIG_PCI_IOV is not set | ||
| 275 | # CONFIG_PCCARD is not set | 290 | # CONFIG_PCCARD is not set |
| 276 | # CONFIG_HOTPLUG_PCI is not set | 291 | # CONFIG_HOTPLUG_PCI is not set |
| 277 | # CONFIG_HAS_RAPIDIO is not set | 292 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -294,7 +309,6 @@ CONFIG_NET=y | |||
| 294 | # | 309 | # |
| 295 | # Networking options | 310 | # Networking options |
| 296 | # | 311 | # |
| 297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 298 | CONFIG_PACKET=y | 312 | CONFIG_PACKET=y |
| 299 | # CONFIG_PACKET_MMAP is not set | 313 | # CONFIG_PACKET_MMAP is not set |
| 300 | CONFIG_UNIX=y | 314 | CONFIG_UNIX=y |
| @@ -345,6 +359,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 345 | # CONFIG_LAPB is not set | 359 | # CONFIG_LAPB is not set |
| 346 | # CONFIG_ECONET is not set | 360 | # CONFIG_ECONET is not set |
| 347 | # CONFIG_WAN_ROUTER is not set | 361 | # CONFIG_WAN_ROUTER is not set |
| 362 | # CONFIG_PHONET is not set | ||
| 348 | # CONFIG_NET_SCHED is not set | 363 | # CONFIG_NET_SCHED is not set |
| 349 | # CONFIG_DCB is not set | 364 | # CONFIG_DCB is not set |
| 350 | 365 | ||
| @@ -357,7 +372,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 357 | # CONFIG_IRDA is not set | 372 | # CONFIG_IRDA is not set |
| 358 | # CONFIG_BT is not set | 373 | # CONFIG_BT is not set |
| 359 | # CONFIG_AF_RXRPC is not set | 374 | # CONFIG_AF_RXRPC is not set |
| 360 | # CONFIG_PHONET is not set | ||
| 361 | CONFIG_WIRELESS=y | 375 | CONFIG_WIRELESS=y |
| 362 | # CONFIG_CFG80211 is not set | 376 | # CONFIG_CFG80211 is not set |
| 363 | CONFIG_WIRELESS_OLD_REGULATORY=y | 377 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -406,13 +420,20 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 406 | # CONFIG_BLK_DEV_HD is not set | 420 | # CONFIG_BLK_DEV_HD is not set |
| 407 | CONFIG_MISC_DEVICES=y | 421 | CONFIG_MISC_DEVICES=y |
| 408 | # CONFIG_PHANTOM is not set | 422 | # CONFIG_PHANTOM is not set |
| 409 | # CONFIG_EEPROM_93CX6 is not set | ||
| 410 | # CONFIG_SGI_IOC4 is not set | 423 | # CONFIG_SGI_IOC4 is not set |
| 411 | # CONFIG_TIFM_CORE is not set | 424 | # CONFIG_TIFM_CORE is not set |
| 412 | # CONFIG_ICS932S401 is not set | 425 | # CONFIG_ICS932S401 is not set |
| 413 | # CONFIG_ENCLOSURE_SERVICES is not set | 426 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 414 | # CONFIG_HP_ILO is not set | 427 | # CONFIG_HP_ILO is not set |
| 428 | # CONFIG_ISL29003 is not set | ||
| 415 | # CONFIG_C2PORT is not set | 429 | # CONFIG_C2PORT is not set |
| 430 | |||
| 431 | # | ||
| 432 | # EEPROM support | ||
| 433 | # | ||
| 434 | # CONFIG_EEPROM_AT24 is not set | ||
| 435 | # CONFIG_EEPROM_LEGACY is not set | ||
| 436 | # CONFIG_EEPROM_93CX6 is not set | ||
| 416 | CONFIG_HAVE_IDE=y | 437 | CONFIG_HAVE_IDE=y |
| 417 | # CONFIG_IDE is not set | 438 | # CONFIG_IDE is not set |
| 418 | 439 | ||
| @@ -469,9 +490,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 469 | # CONFIG_MEGARAID_NEWGEN is not set | 490 | # CONFIG_MEGARAID_NEWGEN is not set |
| 470 | # CONFIG_MEGARAID_LEGACY is not set | 491 | # CONFIG_MEGARAID_LEGACY is not set |
| 471 | # CONFIG_MEGARAID_SAS is not set | 492 | # CONFIG_MEGARAID_SAS is not set |
| 493 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 472 | # CONFIG_SCSI_HPTIOP is not set | 494 | # CONFIG_SCSI_HPTIOP is not set |
| 473 | # CONFIG_SCSI_BUSLOGIC is not set | 495 | # CONFIG_SCSI_BUSLOGIC is not set |
| 474 | # CONFIG_LIBFC is not set | 496 | # CONFIG_LIBFC is not set |
| 497 | # CONFIG_LIBFCOE is not set | ||
| 475 | # CONFIG_FCOE is not set | 498 | # CONFIG_FCOE is not set |
| 476 | # CONFIG_SCSI_DMX3191D is not set | 499 | # CONFIG_SCSI_DMX3191D is not set |
| 477 | # CONFIG_SCSI_EATA is not set | 500 | # CONFIG_SCSI_EATA is not set |
| @@ -494,6 +517,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 494 | # CONFIG_SCSI_DEBUG is not set | 517 | # CONFIG_SCSI_DEBUG is not set |
| 495 | # CONFIG_SCSI_SRP is not set | 518 | # CONFIG_SCSI_SRP is not set |
| 496 | # CONFIG_SCSI_DH is not set | 519 | # CONFIG_SCSI_DH is not set |
| 520 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 497 | CONFIG_ATA=y | 521 | CONFIG_ATA=y |
| 498 | # CONFIG_ATA_NONSTANDARD is not set | 522 | # CONFIG_ATA_NONSTANDARD is not set |
| 499 | CONFIG_SATA_PMP=y | 523 | CONFIG_SATA_PMP=y |
| @@ -563,7 +587,7 @@ CONFIG_MD_AUTODETECT=y | |||
| 563 | CONFIG_MD_RAID1=y | 587 | CONFIG_MD_RAID1=y |
| 564 | # CONFIG_MD_RAID10 is not set | 588 | # CONFIG_MD_RAID10 is not set |
| 565 | CONFIG_MD_RAID456=y | 589 | CONFIG_MD_RAID456=y |
| 566 | CONFIG_MD_RAID5_RESHAPE=y | 590 | CONFIG_MD_RAID6_PQ=y |
| 567 | # CONFIG_MD_MULTIPATH is not set | 591 | # CONFIG_MD_MULTIPATH is not set |
| 568 | # CONFIG_MD_FAULTY is not set | 592 | # CONFIG_MD_FAULTY is not set |
| 569 | # CONFIG_BLK_DEV_DM is not set | 593 | # CONFIG_BLK_DEV_DM is not set |
| @@ -581,6 +605,7 @@ CONFIG_MD_RAID5_RESHAPE=y | |||
| 581 | # CONFIG_I2O is not set | 605 | # CONFIG_I2O is not set |
| 582 | # CONFIG_MACINTOSH_DRIVERS is not set | 606 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 583 | CONFIG_NETDEVICES=y | 607 | CONFIG_NETDEVICES=y |
| 608 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 584 | # CONFIG_DUMMY is not set | 609 | # CONFIG_DUMMY is not set |
| 585 | # CONFIG_BONDING is not set | 610 | # CONFIG_BONDING is not set |
| 586 | # CONFIG_MACVLAN is not set | 611 | # CONFIG_MACVLAN is not set |
| @@ -614,6 +639,8 @@ CONFIG_MII=y | |||
| 614 | # CONFIG_SUNGEM is not set | 639 | # CONFIG_SUNGEM is not set |
| 615 | # CONFIG_CASSINI is not set | 640 | # CONFIG_CASSINI is not set |
| 616 | # CONFIG_NET_VENDOR_3COM is not set | 641 | # CONFIG_NET_VENDOR_3COM is not set |
| 642 | # CONFIG_ETHOC is not set | ||
| 643 | # CONFIG_DNET is not set | ||
| 617 | # CONFIG_NET_TULIP is not set | 644 | # CONFIG_NET_TULIP is not set |
| 618 | # CONFIG_HP100 is not set | 645 | # CONFIG_HP100 is not set |
| 619 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 646 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -633,6 +660,7 @@ CONFIG_NETDEV_1000=y | |||
| 633 | # CONFIG_E1000E is not set | 660 | # CONFIG_E1000E is not set |
| 634 | # CONFIG_IP1000 is not set | 661 | # CONFIG_IP1000 is not set |
| 635 | # CONFIG_IGB is not set | 662 | # CONFIG_IGB is not set |
| 663 | # CONFIG_IGBVF is not set | ||
| 636 | # CONFIG_NS83820 is not set | 664 | # CONFIG_NS83820 is not set |
| 637 | # CONFIG_HAMACHI is not set | 665 | # CONFIG_HAMACHI is not set |
| 638 | # CONFIG_YELLOWFIN is not set | 666 | # CONFIG_YELLOWFIN is not set |
| @@ -643,11 +671,12 @@ CONFIG_NETDEV_1000=y | |||
| 643 | # CONFIG_VIA_VELOCITY is not set | 671 | # CONFIG_VIA_VELOCITY is not set |
| 644 | # CONFIG_TIGON3 is not set | 672 | # CONFIG_TIGON3 is not set |
| 645 | # CONFIG_BNX2 is not set | 673 | # CONFIG_BNX2 is not set |
| 674 | CONFIG_FSL_PQ_MDIO=y | ||
| 646 | CONFIG_GIANFAR=y | 675 | CONFIG_GIANFAR=y |
| 647 | # CONFIG_MV643XX_ETH is not set | ||
| 648 | # CONFIG_QLA3XXX is not set | 676 | # CONFIG_QLA3XXX is not set |
| 649 | # CONFIG_ATL1 is not set | 677 | # CONFIG_ATL1 is not set |
| 650 | # CONFIG_ATL1E is not set | 678 | # CONFIG_ATL1E is not set |
| 679 | # CONFIG_ATL1C is not set | ||
| 651 | # CONFIG_JME is not set | 680 | # CONFIG_JME is not set |
| 652 | # CONFIG_NETDEV_10000 is not set | 681 | # CONFIG_NETDEV_10000 is not set |
| 653 | # CONFIG_TR is not set | 682 | # CONFIG_TR is not set |
| @@ -657,7 +686,6 @@ CONFIG_GIANFAR=y | |||
| 657 | # | 686 | # |
| 658 | # CONFIG_WLAN_PRE80211 is not set | 687 | # CONFIG_WLAN_PRE80211 is not set |
| 659 | # CONFIG_WLAN_80211 is not set | 688 | # CONFIG_WLAN_80211 is not set |
| 660 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 661 | 689 | ||
| 662 | # | 690 | # |
| 663 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 691 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -811,12 +839,9 @@ CONFIG_I2C_MPC=y | |||
| 811 | # Miscellaneous I2C Chip support | 839 | # Miscellaneous I2C Chip support |
| 812 | # | 840 | # |
| 813 | # CONFIG_DS1682 is not set | 841 | # CONFIG_DS1682 is not set |
| 814 | # CONFIG_EEPROM_AT24 is not set | ||
| 815 | # CONFIG_EEPROM_LEGACY is not set | ||
| 816 | # CONFIG_SENSORS_PCF8574 is not set | 842 | # CONFIG_SENSORS_PCF8574 is not set |
| 817 | # CONFIG_PCF8575 is not set | 843 | # CONFIG_PCF8575 is not set |
| 818 | # CONFIG_SENSORS_PCA9539 is not set | 844 | # CONFIG_SENSORS_PCA9539 is not set |
| 819 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 820 | # CONFIG_SENSORS_MAX6875 is not set | 845 | # CONFIG_SENSORS_MAX6875 is not set |
| 821 | # CONFIG_SENSORS_TSL2550 is not set | 846 | # CONFIG_SENSORS_TSL2550 is not set |
| 822 | # CONFIG_I2C_DEBUG_CORE is not set | 847 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -848,6 +873,7 @@ CONFIG_HWMON=y | |||
| 848 | # CONFIG_SENSORS_F71805F is not set | 873 | # CONFIG_SENSORS_F71805F is not set |
| 849 | # CONFIG_SENSORS_F71882FG is not set | 874 | # CONFIG_SENSORS_F71882FG is not set |
| 850 | # CONFIG_SENSORS_F75375S is not set | 875 | # CONFIG_SENSORS_F75375S is not set |
| 876 | # CONFIG_SENSORS_G760A is not set | ||
| 851 | # CONFIG_SENSORS_GL518SM is not set | 877 | # CONFIG_SENSORS_GL518SM is not set |
| 852 | # CONFIG_SENSORS_GL520SM is not set | 878 | # CONFIG_SENSORS_GL520SM is not set |
| 853 | # CONFIG_SENSORS_IT87 is not set | 879 | # CONFIG_SENSORS_IT87 is not set |
| @@ -862,11 +888,14 @@ CONFIG_HWMON=y | |||
| 862 | # CONFIG_SENSORS_LM90 is not set | 888 | # CONFIG_SENSORS_LM90 is not set |
| 863 | # CONFIG_SENSORS_LM92 is not set | 889 | # CONFIG_SENSORS_LM92 is not set |
| 864 | # CONFIG_SENSORS_LM93 is not set | 890 | # CONFIG_SENSORS_LM93 is not set |
| 891 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 865 | # CONFIG_SENSORS_LTC4245 is not set | 892 | # CONFIG_SENSORS_LTC4245 is not set |
| 893 | # CONFIG_SENSORS_LM95241 is not set | ||
| 866 | # CONFIG_SENSORS_MAX1619 is not set | 894 | # CONFIG_SENSORS_MAX1619 is not set |
| 867 | # CONFIG_SENSORS_MAX6650 is not set | 895 | # CONFIG_SENSORS_MAX6650 is not set |
| 868 | # CONFIG_SENSORS_PC87360 is not set | 896 | # CONFIG_SENSORS_PC87360 is not set |
| 869 | # CONFIG_SENSORS_PC87427 is not set | 897 | # CONFIG_SENSORS_PC87427 is not set |
| 898 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 870 | # CONFIG_SENSORS_SIS5595 is not set | 899 | # CONFIG_SENSORS_SIS5595 is not set |
| 871 | # CONFIG_SENSORS_DME1737 is not set | 900 | # CONFIG_SENSORS_DME1737 is not set |
| 872 | # CONFIG_SENSORS_SMSC47M1 is not set | 901 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -976,15 +1005,17 @@ CONFIG_USB_HID=y | |||
| 976 | # | 1005 | # |
| 977 | # Special HID drivers | 1006 | # Special HID drivers |
| 978 | # | 1007 | # |
| 979 | CONFIG_HID_COMPAT=y | ||
| 980 | CONFIG_HID_A4TECH=y | 1008 | CONFIG_HID_A4TECH=y |
| 981 | CONFIG_HID_APPLE=y | 1009 | CONFIG_HID_APPLE=y |
| 982 | CONFIG_HID_BELKIN=y | 1010 | CONFIG_HID_BELKIN=y |
| 983 | CONFIG_HID_CHERRY=y | 1011 | CONFIG_HID_CHERRY=y |
| 984 | CONFIG_HID_CHICONY=y | 1012 | CONFIG_HID_CHICONY=y |
| 985 | CONFIG_HID_CYPRESS=y | 1013 | CONFIG_HID_CYPRESS=y |
| 1014 | # CONFIG_DRAGONRISE_FF is not set | ||
| 986 | CONFIG_HID_EZKEY=y | 1015 | CONFIG_HID_EZKEY=y |
| 1016 | # CONFIG_HID_KYE is not set | ||
| 987 | CONFIG_HID_GYRATION=y | 1017 | CONFIG_HID_GYRATION=y |
| 1018 | # CONFIG_HID_KENSINGTON is not set | ||
| 988 | CONFIG_HID_LOGITECH=y | 1019 | CONFIG_HID_LOGITECH=y |
| 989 | # CONFIG_LOGITECH_FF is not set | 1020 | # CONFIG_LOGITECH_FF is not set |
| 990 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1021 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
| @@ -1050,11 +1081,11 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 1050 | # CONFIG_USB_TMC is not set | 1081 | # CONFIG_USB_TMC is not set |
| 1051 | 1082 | ||
| 1052 | # | 1083 | # |
| 1053 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1084 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1054 | # | 1085 | # |
| 1055 | 1086 | ||
| 1056 | # | 1087 | # |
| 1057 | # see USB_STORAGE Help for more information | 1088 | # also be needed; see USB_STORAGE Help for more info |
| 1058 | # | 1089 | # |
| 1059 | # CONFIG_USB_STORAGE is not set | 1090 | # CONFIG_USB_STORAGE is not set |
| 1060 | # CONFIG_USB_LIBUSUAL is not set | 1091 | # CONFIG_USB_LIBUSUAL is not set |
| @@ -1084,7 +1115,6 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 1084 | # CONFIG_USB_LED is not set | 1115 | # CONFIG_USB_LED is not set |
| 1085 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1116 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1086 | # CONFIG_USB_CYTHERM is not set | 1117 | # CONFIG_USB_CYTHERM is not set |
| 1087 | # CONFIG_USB_PHIDGET is not set | ||
| 1088 | # CONFIG_USB_IDMOUSE is not set | 1118 | # CONFIG_USB_IDMOUSE is not set |
| 1089 | # CONFIG_USB_FTDI_ELAN is not set | 1119 | # CONFIG_USB_FTDI_ELAN is not set |
| 1090 | # CONFIG_USB_APPLEDISPLAY is not set | 1120 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1099,6 +1129,7 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 1099 | # | 1129 | # |
| 1100 | # OTG and related infrastructure | 1130 | # OTG and related infrastructure |
| 1101 | # | 1131 | # |
| 1132 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1102 | # CONFIG_UWB is not set | 1133 | # CONFIG_UWB is not set |
| 1103 | # CONFIG_MMC is not set | 1134 | # CONFIG_MMC is not set |
| 1104 | # CONFIG_MEMSTICK is not set | 1135 | # CONFIG_MEMSTICK is not set |
| @@ -1108,6 +1139,7 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 1108 | # CONFIG_EDAC is not set | 1139 | # CONFIG_EDAC is not set |
| 1109 | # CONFIG_RTC_CLASS is not set | 1140 | # CONFIG_RTC_CLASS is not set |
| 1110 | # CONFIG_DMADEVICES is not set | 1141 | # CONFIG_DMADEVICES is not set |
| 1142 | # CONFIG_AUXDISPLAY is not set | ||
| 1111 | # CONFIG_UIO is not set | 1143 | # CONFIG_UIO is not set |
| 1112 | # CONFIG_STAGING is not set | 1144 | # CONFIG_STAGING is not set |
| 1113 | 1145 | ||
| @@ -1118,6 +1150,7 @@ CONFIG_EXT2_FS=y | |||
| 1118 | # CONFIG_EXT2_FS_XATTR is not set | 1150 | # CONFIG_EXT2_FS_XATTR is not set |
| 1119 | # CONFIG_EXT2_FS_XIP is not set | 1151 | # CONFIG_EXT2_FS_XIP is not set |
| 1120 | CONFIG_EXT3_FS=y | 1152 | CONFIG_EXT3_FS=y |
| 1153 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1121 | CONFIG_EXT3_FS_XATTR=y | 1154 | CONFIG_EXT3_FS_XATTR=y |
| 1122 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1155 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1123 | # CONFIG_EXT3_FS_SECURITY is not set | 1156 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1140,6 +1173,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1140 | # CONFIG_FUSE_FS is not set | 1173 | # CONFIG_FUSE_FS is not set |
| 1141 | 1174 | ||
| 1142 | # | 1175 | # |
| 1176 | # Caches | ||
| 1177 | # | ||
| 1178 | # CONFIG_FSCACHE is not set | ||
| 1179 | |||
| 1180 | # | ||
| 1143 | # CD-ROM/DVD Filesystems | 1181 | # CD-ROM/DVD Filesystems |
| 1144 | # | 1182 | # |
| 1145 | # CONFIG_ISO9660_FS is not set | 1183 | # CONFIG_ISO9660_FS is not set |
| @@ -1182,6 +1220,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1182 | # CONFIG_ROMFS_FS is not set | 1220 | # CONFIG_ROMFS_FS is not set |
| 1183 | # CONFIG_SYSV_FS is not set | 1221 | # CONFIG_SYSV_FS is not set |
| 1184 | # CONFIG_UFS_FS is not set | 1222 | # CONFIG_UFS_FS is not set |
| 1223 | # CONFIG_NILFS2_FS is not set | ||
| 1185 | CONFIG_NETWORK_FILESYSTEMS=y | 1224 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1186 | CONFIG_NFS_FS=y | 1225 | CONFIG_NFS_FS=y |
| 1187 | CONFIG_NFS_V3=y | 1226 | CONFIG_NFS_V3=y |
| @@ -1194,7 +1233,6 @@ CONFIG_LOCKD_V4=y | |||
| 1194 | CONFIG_NFS_COMMON=y | 1233 | CONFIG_NFS_COMMON=y |
| 1195 | CONFIG_SUNRPC=y | 1234 | CONFIG_SUNRPC=y |
| 1196 | CONFIG_SUNRPC_GSS=y | 1235 | CONFIG_SUNRPC_GSS=y |
| 1197 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1198 | CONFIG_RPCSEC_GSS_KRB5=y | 1236 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1199 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1237 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1200 | # CONFIG_SMB_FS is not set | 1238 | # CONFIG_SMB_FS is not set |
| @@ -1226,6 +1264,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1226 | # CONFIG_SYSV68_PARTITION is not set | 1264 | # CONFIG_SYSV68_PARTITION is not set |
| 1227 | # CONFIG_NLS is not set | 1265 | # CONFIG_NLS is not set |
| 1228 | # CONFIG_DLM is not set | 1266 | # CONFIG_DLM is not set |
| 1267 | # CONFIG_BINARY_PRINTF is not set | ||
| 1229 | 1268 | ||
| 1230 | # | 1269 | # |
| 1231 | # Library routines | 1270 | # Library routines |
| @@ -1239,11 +1278,13 @@ CONFIG_CRC_T10DIF=y | |||
| 1239 | CONFIG_CRC32=y | 1278 | CONFIG_CRC32=y |
| 1240 | # CONFIG_CRC7 is not set | 1279 | # CONFIG_CRC7 is not set |
| 1241 | # CONFIG_LIBCRC32C is not set | 1280 | # CONFIG_LIBCRC32C is not set |
| 1242 | CONFIG_PLIST=y | 1281 | CONFIG_ZLIB_INFLATE=y |
| 1282 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1243 | CONFIG_HAS_IOMEM=y | 1283 | CONFIG_HAS_IOMEM=y |
| 1244 | CONFIG_HAS_IOPORT=y | 1284 | CONFIG_HAS_IOPORT=y |
| 1245 | CONFIG_HAS_DMA=y | 1285 | CONFIG_HAS_DMA=y |
| 1246 | CONFIG_HAVE_LMB=y | 1286 | CONFIG_HAVE_LMB=y |
| 1287 | CONFIG_NLATTR=y | ||
| 1247 | 1288 | ||
| 1248 | # | 1289 | # |
| 1249 | # Kernel hacking | 1290 | # Kernel hacking |
| @@ -1263,13 +1304,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1263 | # CONFIG_LATENCYTOP is not set | 1304 | # CONFIG_LATENCYTOP is not set |
| 1264 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1305 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1265 | CONFIG_HAVE_FUNCTION_TRACER=y | 1306 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1307 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1266 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1308 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1267 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1309 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1310 | CONFIG_TRACING_SUPPORT=y | ||
| 1268 | 1311 | ||
| 1269 | # | 1312 | # |
| 1270 | # Tracers | 1313 | # Tracers |
| 1271 | # | 1314 | # |
| 1272 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1315 | # CONFIG_FUNCTION_TRACER is not set |
| 1316 | # CONFIG_SCHED_TRACER is not set | ||
| 1317 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1318 | # CONFIG_EVENT_TRACER is not set | ||
| 1319 | # CONFIG_BOOT_TRACER is not set | ||
| 1320 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1321 | # CONFIG_STACK_TRACER is not set | ||
| 1322 | # CONFIG_KMEMTRACE is not set | ||
| 1323 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1324 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1273 | # CONFIG_SAMPLES is not set | 1325 | # CONFIG_SAMPLES is not set |
| 1274 | CONFIG_HAVE_ARCH_KGDB=y | 1326 | CONFIG_HAVE_ARCH_KGDB=y |
| 1275 | CONFIG_PRINT_STACK_DEPTH=64 | 1327 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1302,10 +1354,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1302 | CONFIG_CRYPTO_HASH=y | 1354 | CONFIG_CRYPTO_HASH=y |
| 1303 | CONFIG_CRYPTO_HASH2=y | 1355 | CONFIG_CRYPTO_HASH2=y |
| 1304 | CONFIG_CRYPTO_RNG2=y | 1356 | CONFIG_CRYPTO_RNG2=y |
| 1357 | CONFIG_CRYPTO_PCOMP=y | ||
| 1305 | CONFIG_CRYPTO_MANAGER=y | 1358 | CONFIG_CRYPTO_MANAGER=y |
| 1306 | CONFIG_CRYPTO_MANAGER2=y | 1359 | CONFIG_CRYPTO_MANAGER2=y |
| 1307 | # CONFIG_CRYPTO_GF128MUL is not set | 1360 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1308 | # CONFIG_CRYPTO_NULL is not set | 1361 | # CONFIG_CRYPTO_NULL is not set |
| 1362 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1309 | # CONFIG_CRYPTO_CRYPTD is not set | 1363 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1310 | # CONFIG_CRYPTO_AUTHENC is not set | 1364 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1311 | # CONFIG_CRYPTO_TEST is not set | 1365 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1374,6 +1428,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1374 | # Compression | 1428 | # Compression |
| 1375 | # | 1429 | # |
| 1376 | # CONFIG_CRYPTO_DEFLATE is not set | 1430 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1431 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1377 | # CONFIG_CRYPTO_LZO is not set | 1432 | # CONFIG_CRYPTO_LZO is not set |
| 1378 | 1433 | ||
| 1379 | # | 1434 | # |
diff --git a/arch/powerpc/configs/83xx/sbc834x_defconfig b/arch/powerpc/configs/83xx/sbc834x_defconfig index a0c42fb65cb9..fe08f672cb27 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:02 2009 | 4 | # Wed May 13 17:22:15 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -56,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
| 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 87 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 89 | CONFIG_GROUP_SCHED=y |
| @@ -87,19 +98,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | # CONFIG_KALLSYMS is not set | 109 | # CONFIG_KALLSYMS is not set |
| 110 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 95 | CONFIG_HOTPLUG=y | 111 | CONFIG_HOTPLUG=y |
| 96 | CONFIG_PRINTK=y | 112 | CONFIG_PRINTK=y |
| 97 | CONFIG_BUG=y | 113 | CONFIG_BUG=y |
| 98 | CONFIG_ELF_CORE=y | 114 | CONFIG_ELF_CORE=y |
| 99 | CONFIG_COMPAT_BRK=y | ||
| 100 | CONFIG_BASE_FULL=y | 115 | CONFIG_BASE_FULL=y |
| 101 | CONFIG_FUTEX=y | 116 | CONFIG_FUTEX=y |
| 102 | CONFIG_ANON_INODES=y | ||
| 103 | # CONFIG_EPOLL is not set | 117 | # CONFIG_EPOLL is not set |
| 104 | CONFIG_SIGNALFD=y | 118 | CONFIG_SIGNALFD=y |
| 105 | CONFIG_TIMERFD=y | 119 | CONFIG_TIMERFD=y |
| @@ -108,16 +122,19 @@ CONFIG_SHMEM=y | |||
| 108 | CONFIG_AIO=y | 122 | CONFIG_AIO=y |
| 109 | CONFIG_VM_EVENT_COUNTERS=y | 123 | CONFIG_VM_EVENT_COUNTERS=y |
| 110 | CONFIG_PCI_QUIRKS=y | 124 | CONFIG_PCI_QUIRKS=y |
| 125 | CONFIG_COMPAT_BRK=y | ||
| 111 | CONFIG_SLAB=y | 126 | CONFIG_SLAB=y |
| 112 | # CONFIG_SLUB is not set | 127 | # CONFIG_SLUB is not set |
| 113 | # CONFIG_SLOB is not set | 128 | # CONFIG_SLOB is not set |
| 114 | # CONFIG_PROFILING is not set | 129 | # CONFIG_PROFILING is not set |
| 130 | # CONFIG_MARKERS is not set | ||
| 115 | CONFIG_HAVE_OPROFILE=y | 131 | CONFIG_HAVE_OPROFILE=y |
| 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 132 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 117 | CONFIG_HAVE_IOREMAP_PROT=y | 133 | CONFIG_HAVE_IOREMAP_PROT=y |
| 118 | CONFIG_HAVE_KPROBES=y | 134 | CONFIG_HAVE_KPROBES=y |
| 119 | CONFIG_HAVE_KRETPROBES=y | 135 | CONFIG_HAVE_KRETPROBES=y |
| 120 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 136 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 137 | # CONFIG_SLOW_WORK is not set | ||
| 121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 138 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 122 | CONFIG_SLABINFO=y | 139 | CONFIG_SLABINFO=y |
| 123 | CONFIG_RT_MUTEXES=y | 140 | CONFIG_RT_MUTEXES=y |
| @@ -130,7 +147,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 130 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 147 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 131 | CONFIG_BLOCK=y | 148 | CONFIG_BLOCK=y |
| 132 | # CONFIG_LBD is not set | 149 | # CONFIG_LBD is not set |
| 133 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 134 | # CONFIG_BLK_DEV_BSG is not set | 150 | # CONFIG_BLK_DEV_BSG is not set |
| 135 | # CONFIG_BLK_DEV_INTEGRITY is not set | 151 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 136 | 152 | ||
| @@ -146,18 +162,11 @@ CONFIG_DEFAULT_AS=y | |||
| 146 | # CONFIG_DEFAULT_CFQ is not set | 162 | # CONFIG_DEFAULT_CFQ is not set |
| 147 | # CONFIG_DEFAULT_NOOP is not set | 163 | # CONFIG_DEFAULT_NOOP is not set |
| 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 164 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 149 | CONFIG_CLASSIC_RCU=y | ||
| 150 | # CONFIG_TREE_RCU is not set | ||
| 151 | # CONFIG_PREEMPT_RCU is not set | ||
| 152 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 154 | # CONFIG_FREEZER is not set | 165 | # CONFIG_FREEZER is not set |
| 155 | 166 | ||
| 156 | # | 167 | # |
| 157 | # Platform support | 168 | # Platform support |
| 158 | # | 169 | # |
| 159 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 160 | CONFIG_CLASSIC32=y | ||
| 161 | # CONFIG_PPC_CHRP is not set | 170 | # CONFIG_PPC_CHRP is not set |
| 162 | # CONFIG_MPC5121_ADS is not set | 171 | # CONFIG_MPC5121_ADS is not set |
| 163 | # CONFIG_MPC5121_GENERIC is not set | 172 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -182,6 +191,8 @@ CONFIG_SBC834x=y | |||
| 182 | CONFIG_PPC_MPC834x=y | 191 | CONFIG_PPC_MPC834x=y |
| 183 | # CONFIG_PPC_86xx is not set | 192 | # CONFIG_PPC_86xx is not set |
| 184 | # CONFIG_EMBEDDED6xx is not set | 193 | # CONFIG_EMBEDDED6xx is not set |
| 194 | # CONFIG_AMIGAONE is not set | ||
| 195 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 185 | CONFIG_IPIC=y | 196 | CONFIG_IPIC=y |
| 186 | # CONFIG_MPIC is not set | 197 | # CONFIG_MPIC is not set |
| 187 | # CONFIG_MPIC_WEIRD is not set | 198 | # CONFIG_MPIC_WEIRD is not set |
| @@ -242,9 +253,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 242 | CONFIG_BOUNCE=y | 253 | CONFIG_BOUNCE=y |
| 243 | CONFIG_VIRT_TO_BUS=y | 254 | CONFIG_VIRT_TO_BUS=y |
| 244 | CONFIG_UNEVICTABLE_LRU=y | 255 | CONFIG_UNEVICTABLE_LRU=y |
| 256 | CONFIG_HAVE_MLOCK=y | ||
| 257 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 245 | CONFIG_PPC_4K_PAGES=y | 258 | CONFIG_PPC_4K_PAGES=y |
| 246 | # CONFIG_PPC_16K_PAGES is not set | 259 | # CONFIG_PPC_16K_PAGES is not set |
| 247 | # CONFIG_PPC_64K_PAGES is not set | 260 | # CONFIG_PPC_64K_PAGES is not set |
| 261 | # CONFIG_PPC_256K_PAGES is not set | ||
| 248 | CONFIG_FORCE_MAX_ZONEORDER=11 | 262 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 249 | CONFIG_PROC_DEVICETREE=y | 263 | CONFIG_PROC_DEVICETREE=y |
| 250 | # CONFIG_CMDLINE_BOOL is not set | 264 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -270,6 +284,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 270 | # CONFIG_PCI_MSI is not set | 284 | # CONFIG_PCI_MSI is not set |
| 271 | # CONFIG_PCI_LEGACY is not set | 285 | # CONFIG_PCI_LEGACY is not set |
| 272 | # CONFIG_PCI_STUB is not set | 286 | # CONFIG_PCI_STUB is not set |
| 287 | # CONFIG_PCI_IOV is not set | ||
| 273 | # CONFIG_PCCARD is not set | 288 | # CONFIG_PCCARD is not set |
| 274 | # CONFIG_HOTPLUG_PCI is not set | 289 | # CONFIG_HOTPLUG_PCI is not set |
| 275 | # CONFIG_HAS_RAPIDIO is not set | 290 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -292,7 +307,6 @@ CONFIG_NET=y | |||
| 292 | # | 307 | # |
| 293 | # Networking options | 308 | # Networking options |
| 294 | # | 309 | # |
| 295 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 296 | CONFIG_PACKET=y | 310 | CONFIG_PACKET=y |
| 297 | # CONFIG_PACKET_MMAP is not set | 311 | # CONFIG_PACKET_MMAP is not set |
| 298 | CONFIG_UNIX=y | 312 | CONFIG_UNIX=y |
| @@ -348,6 +362,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 348 | # CONFIG_LAPB is not set | 362 | # CONFIG_LAPB is not set |
| 349 | # CONFIG_ECONET is not set | 363 | # CONFIG_ECONET is not set |
| 350 | # CONFIG_WAN_ROUTER is not set | 364 | # CONFIG_WAN_ROUTER is not set |
| 365 | # CONFIG_PHONET is not set | ||
| 351 | # CONFIG_NET_SCHED is not set | 366 | # CONFIG_NET_SCHED is not set |
| 352 | # CONFIG_DCB is not set | 367 | # CONFIG_DCB is not set |
| 353 | 368 | ||
| @@ -360,7 +375,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 360 | # CONFIG_IRDA is not set | 375 | # CONFIG_IRDA is not set |
| 361 | # CONFIG_BT is not set | 376 | # CONFIG_BT is not set |
| 362 | # CONFIG_AF_RXRPC is not set | 377 | # CONFIG_AF_RXRPC is not set |
| 363 | # CONFIG_PHONET is not set | ||
| 364 | CONFIG_WIRELESS=y | 378 | CONFIG_WIRELESS=y |
| 365 | # CONFIG_CFG80211 is not set | 379 | # CONFIG_CFG80211 is not set |
| 366 | CONFIG_WIRELESS_OLD_REGULATORY=y | 380 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -408,13 +422,20 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 408 | # CONFIG_BLK_DEV_HD is not set | 422 | # CONFIG_BLK_DEV_HD is not set |
| 409 | CONFIG_MISC_DEVICES=y | 423 | CONFIG_MISC_DEVICES=y |
| 410 | # CONFIG_PHANTOM is not set | 424 | # CONFIG_PHANTOM is not set |
| 411 | # CONFIG_EEPROM_93CX6 is not set | ||
| 412 | # CONFIG_SGI_IOC4 is not set | 425 | # CONFIG_SGI_IOC4 is not set |
| 413 | # CONFIG_TIFM_CORE is not set | 426 | # CONFIG_TIFM_CORE is not set |
| 414 | # CONFIG_ICS932S401 is not set | 427 | # CONFIG_ICS932S401 is not set |
| 415 | # CONFIG_ENCLOSURE_SERVICES is not set | 428 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 416 | # CONFIG_HP_ILO is not set | 429 | # CONFIG_HP_ILO is not set |
| 430 | # CONFIG_ISL29003 is not set | ||
| 417 | # CONFIG_C2PORT is not set | 431 | # CONFIG_C2PORT is not set |
| 432 | |||
| 433 | # | ||
| 434 | # EEPROM support | ||
| 435 | # | ||
| 436 | # CONFIG_EEPROM_AT24 is not set | ||
| 437 | # CONFIG_EEPROM_LEGACY is not set | ||
| 438 | # CONFIG_EEPROM_93CX6 is not set | ||
| 418 | CONFIG_HAVE_IDE=y | 439 | CONFIG_HAVE_IDE=y |
| 419 | # CONFIG_IDE is not set | 440 | # CONFIG_IDE is not set |
| 420 | 441 | ||
| @@ -441,6 +462,7 @@ CONFIG_HAVE_IDE=y | |||
| 441 | # CONFIG_I2O is not set | 462 | # CONFIG_I2O is not set |
| 442 | # CONFIG_MACINTOSH_DRIVERS is not set | 463 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 443 | CONFIG_NETDEVICES=y | 464 | CONFIG_NETDEVICES=y |
| 465 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 444 | # CONFIG_DUMMY is not set | 466 | # CONFIG_DUMMY is not set |
| 445 | # CONFIG_BONDING is not set | 467 | # CONFIG_BONDING is not set |
| 446 | # CONFIG_MACVLAN is not set | 468 | # CONFIG_MACVLAN is not set |
| @@ -474,6 +496,8 @@ CONFIG_MII=y | |||
| 474 | # CONFIG_SUNGEM is not set | 496 | # CONFIG_SUNGEM is not set |
| 475 | # CONFIG_CASSINI is not set | 497 | # CONFIG_CASSINI is not set |
| 476 | # CONFIG_NET_VENDOR_3COM is not set | 498 | # CONFIG_NET_VENDOR_3COM is not set |
| 499 | # CONFIG_ETHOC is not set | ||
| 500 | # CONFIG_DNET is not set | ||
| 477 | # CONFIG_NET_TULIP is not set | 501 | # CONFIG_NET_TULIP is not set |
| 478 | # CONFIG_HP100 is not set | 502 | # CONFIG_HP100 is not set |
| 479 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 503 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -493,6 +517,7 @@ CONFIG_NETDEV_1000=y | |||
| 493 | # CONFIG_E1000E is not set | 517 | # CONFIG_E1000E is not set |
| 494 | # CONFIG_IP1000 is not set | 518 | # CONFIG_IP1000 is not set |
| 495 | # CONFIG_IGB is not set | 519 | # CONFIG_IGB is not set |
| 520 | # CONFIG_IGBVF is not set | ||
| 496 | # CONFIG_NS83820 is not set | 521 | # CONFIG_NS83820 is not set |
| 497 | # CONFIG_HAMACHI is not set | 522 | # CONFIG_HAMACHI is not set |
| 498 | # CONFIG_YELLOWFIN is not set | 523 | # CONFIG_YELLOWFIN is not set |
| @@ -503,11 +528,12 @@ CONFIG_NETDEV_1000=y | |||
| 503 | # CONFIG_VIA_VELOCITY is not set | 528 | # CONFIG_VIA_VELOCITY is not set |
| 504 | # CONFIG_TIGON3 is not set | 529 | # CONFIG_TIGON3 is not set |
| 505 | # CONFIG_BNX2 is not set | 530 | # CONFIG_BNX2 is not set |
| 531 | CONFIG_FSL_PQ_MDIO=y | ||
| 506 | CONFIG_GIANFAR=y | 532 | CONFIG_GIANFAR=y |
| 507 | # CONFIG_MV643XX_ETH is not set | ||
| 508 | # CONFIG_QLA3XXX is not set | 533 | # CONFIG_QLA3XXX is not set |
| 509 | # CONFIG_ATL1 is not set | 534 | # CONFIG_ATL1 is not set |
| 510 | # CONFIG_ATL1E is not set | 535 | # CONFIG_ATL1E is not set |
| 536 | # CONFIG_ATL1C is not set | ||
| 511 | # CONFIG_JME is not set | 537 | # CONFIG_JME is not set |
| 512 | # CONFIG_NETDEV_10000 is not set | 538 | # CONFIG_NETDEV_10000 is not set |
| 513 | # CONFIG_TR is not set | 539 | # CONFIG_TR is not set |
| @@ -517,7 +543,6 @@ CONFIG_GIANFAR=y | |||
| 517 | # | 543 | # |
| 518 | # CONFIG_WLAN_PRE80211 is not set | 544 | # CONFIG_WLAN_PRE80211 is not set |
| 519 | # CONFIG_WLAN_80211 is not set | 545 | # CONFIG_WLAN_80211 is not set |
| 520 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 521 | 546 | ||
| 522 | # | 547 | # |
| 523 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 548 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -660,12 +685,9 @@ CONFIG_I2C_MPC=y | |||
| 660 | # Miscellaneous I2C Chip support | 685 | # Miscellaneous I2C Chip support |
| 661 | # | 686 | # |
| 662 | # CONFIG_DS1682 is not set | 687 | # CONFIG_DS1682 is not set |
| 663 | # CONFIG_EEPROM_AT24 is not set | ||
| 664 | # CONFIG_EEPROM_LEGACY is not set | ||
| 665 | # CONFIG_SENSORS_PCF8574 is not set | 688 | # CONFIG_SENSORS_PCF8574 is not set |
| 666 | # CONFIG_PCF8575 is not set | 689 | # CONFIG_PCF8575 is not set |
| 667 | # CONFIG_SENSORS_PCA9539 is not set | 690 | # CONFIG_SENSORS_PCA9539 is not set |
| 668 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 669 | # CONFIG_SENSORS_MAX6875 is not set | 691 | # CONFIG_SENSORS_MAX6875 is not set |
| 670 | # CONFIG_SENSORS_TSL2550 is not set | 692 | # CONFIG_SENSORS_TSL2550 is not set |
| 671 | # CONFIG_I2C_DEBUG_CORE is not set | 693 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -697,6 +719,7 @@ CONFIG_HWMON=y | |||
| 697 | # CONFIG_SENSORS_F71805F is not set | 719 | # CONFIG_SENSORS_F71805F is not set |
| 698 | # CONFIG_SENSORS_F71882FG is not set | 720 | # CONFIG_SENSORS_F71882FG is not set |
| 699 | # CONFIG_SENSORS_F75375S is not set | 721 | # CONFIG_SENSORS_F75375S is not set |
| 722 | # CONFIG_SENSORS_G760A is not set | ||
| 700 | # CONFIG_SENSORS_GL518SM is not set | 723 | # CONFIG_SENSORS_GL518SM is not set |
| 701 | # CONFIG_SENSORS_GL520SM is not set | 724 | # CONFIG_SENSORS_GL520SM is not set |
| 702 | # CONFIG_SENSORS_IT87 is not set | 725 | # CONFIG_SENSORS_IT87 is not set |
| @@ -711,11 +734,14 @@ CONFIG_HWMON=y | |||
| 711 | # CONFIG_SENSORS_LM90 is not set | 734 | # CONFIG_SENSORS_LM90 is not set |
| 712 | # CONFIG_SENSORS_LM92 is not set | 735 | # CONFIG_SENSORS_LM92 is not set |
| 713 | # CONFIG_SENSORS_LM93 is not set | 736 | # CONFIG_SENSORS_LM93 is not set |
| 737 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 714 | # CONFIG_SENSORS_LTC4245 is not set | 738 | # CONFIG_SENSORS_LTC4245 is not set |
| 739 | # CONFIG_SENSORS_LM95241 is not set | ||
| 715 | # CONFIG_SENSORS_MAX1619 is not set | 740 | # CONFIG_SENSORS_MAX1619 is not set |
| 716 | # CONFIG_SENSORS_MAX6650 is not set | 741 | # CONFIG_SENSORS_MAX6650 is not set |
| 717 | # CONFIG_SENSORS_PC87360 is not set | 742 | # CONFIG_SENSORS_PC87360 is not set |
| 718 | # CONFIG_SENSORS_PC87427 is not set | 743 | # CONFIG_SENSORS_PC87427 is not set |
| 744 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 719 | # CONFIG_SENSORS_SIS5595 is not set | 745 | # CONFIG_SENSORS_SIS5595 is not set |
| 720 | # CONFIG_SENSORS_DME1737 is not set | 746 | # CONFIG_SENSORS_DME1737 is not set |
| 721 | # CONFIG_SENSORS_SMSC47M1 is not set | 747 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -813,7 +839,6 @@ CONFIG_HID=y | |||
| 813 | # | 839 | # |
| 814 | # Special HID drivers | 840 | # Special HID drivers |
| 815 | # | 841 | # |
| 816 | CONFIG_HID_COMPAT=y | ||
| 817 | # CONFIG_USB_SUPPORT is not set | 842 | # CONFIG_USB_SUPPORT is not set |
| 818 | # CONFIG_UWB is not set | 843 | # CONFIG_UWB is not set |
| 819 | # CONFIG_MMC is not set | 844 | # CONFIG_MMC is not set |
| @@ -824,6 +849,7 @@ CONFIG_HID_COMPAT=y | |||
| 824 | # CONFIG_EDAC is not set | 849 | # CONFIG_EDAC is not set |
| 825 | # CONFIG_RTC_CLASS is not set | 850 | # CONFIG_RTC_CLASS is not set |
| 826 | # CONFIG_DMADEVICES is not set | 851 | # CONFIG_DMADEVICES is not set |
| 852 | # CONFIG_AUXDISPLAY is not set | ||
| 827 | # CONFIG_UIO is not set | 853 | # CONFIG_UIO is not set |
| 828 | # CONFIG_STAGING is not set | 854 | # CONFIG_STAGING is not set |
| 829 | 855 | ||
| @@ -849,6 +875,11 @@ CONFIG_INOTIFY_USER=y | |||
| 849 | # CONFIG_FUSE_FS is not set | 875 | # CONFIG_FUSE_FS is not set |
| 850 | 876 | ||
| 851 | # | 877 | # |
| 878 | # Caches | ||
| 879 | # | ||
| 880 | # CONFIG_FSCACHE is not set | ||
| 881 | |||
| 882 | # | ||
| 852 | # CD-ROM/DVD Filesystems | 883 | # CD-ROM/DVD Filesystems |
| 853 | # | 884 | # |
| 854 | # CONFIG_ISO9660_FS is not set | 885 | # CONFIG_ISO9660_FS is not set |
| @@ -891,6 +922,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 891 | # CONFIG_ROMFS_FS is not set | 922 | # CONFIG_ROMFS_FS is not set |
| 892 | # CONFIG_SYSV_FS is not set | 923 | # CONFIG_SYSV_FS is not set |
| 893 | # CONFIG_UFS_FS is not set | 924 | # CONFIG_UFS_FS is not set |
| 925 | # CONFIG_NILFS2_FS is not set | ||
| 894 | CONFIG_NETWORK_FILESYSTEMS=y | 926 | CONFIG_NETWORK_FILESYSTEMS=y |
| 895 | CONFIG_NFS_FS=y | 927 | CONFIG_NFS_FS=y |
| 896 | CONFIG_NFS_V3=y | 928 | CONFIG_NFS_V3=y |
| @@ -903,7 +935,6 @@ CONFIG_LOCKD_V4=y | |||
| 903 | CONFIG_NFS_COMMON=y | 935 | CONFIG_NFS_COMMON=y |
| 904 | CONFIG_SUNRPC=y | 936 | CONFIG_SUNRPC=y |
| 905 | CONFIG_SUNRPC_GSS=y | 937 | CONFIG_SUNRPC_GSS=y |
| 906 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 907 | CONFIG_RPCSEC_GSS_KRB5=y | 938 | CONFIG_RPCSEC_GSS_KRB5=y |
| 908 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 939 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 909 | # CONFIG_SMB_FS is not set | 940 | # CONFIG_SMB_FS is not set |
| @@ -919,6 +950,7 @@ CONFIG_RPCSEC_GSS_KRB5=y | |||
| 919 | CONFIG_MSDOS_PARTITION=y | 950 | CONFIG_MSDOS_PARTITION=y |
| 920 | # CONFIG_NLS is not set | 951 | # CONFIG_NLS is not set |
| 921 | # CONFIG_DLM is not set | 952 | # CONFIG_DLM is not set |
| 953 | # CONFIG_BINARY_PRINTF is not set | ||
| 922 | 954 | ||
| 923 | # | 955 | # |
| 924 | # Library routines | 956 | # Library routines |
| @@ -932,11 +964,13 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 932 | CONFIG_CRC32=y | 964 | CONFIG_CRC32=y |
| 933 | # CONFIG_CRC7 is not set | 965 | # CONFIG_CRC7 is not set |
| 934 | # CONFIG_LIBCRC32C is not set | 966 | # CONFIG_LIBCRC32C is not set |
| 935 | CONFIG_PLIST=y | 967 | CONFIG_ZLIB_INFLATE=y |
| 968 | CONFIG_DECOMPRESS_GZIP=y | ||
| 936 | CONFIG_HAS_IOMEM=y | 969 | CONFIG_HAS_IOMEM=y |
| 937 | CONFIG_HAS_IOPORT=y | 970 | CONFIG_HAS_IOPORT=y |
| 938 | CONFIG_HAS_DMA=y | 971 | CONFIG_HAS_DMA=y |
| 939 | CONFIG_HAVE_LMB=y | 972 | CONFIG_HAVE_LMB=y |
| 973 | CONFIG_NLATTR=y | ||
| 940 | 974 | ||
| 941 | # | 975 | # |
| 942 | # Kernel hacking | 976 | # Kernel hacking |
| @@ -956,13 +990,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 956 | # CONFIG_LATENCYTOP is not set | 990 | # CONFIG_LATENCYTOP is not set |
| 957 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 991 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 958 | CONFIG_HAVE_FUNCTION_TRACER=y | 992 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 993 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 959 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 994 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 960 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 995 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 996 | CONFIG_TRACING_SUPPORT=y | ||
| 961 | 997 | ||
| 962 | # | 998 | # |
| 963 | # Tracers | 999 | # Tracers |
| 964 | # | 1000 | # |
| 965 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1001 | # CONFIG_FUNCTION_TRACER is not set |
| 1002 | # CONFIG_SCHED_TRACER is not set | ||
| 1003 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1004 | # CONFIG_EVENT_TRACER is not set | ||
| 1005 | # CONFIG_BOOT_TRACER is not set | ||
| 1006 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1007 | # CONFIG_STACK_TRACER is not set | ||
| 1008 | # CONFIG_KMEMTRACE is not set | ||
| 1009 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1010 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 966 | # CONFIG_SAMPLES is not set | 1011 | # CONFIG_SAMPLES is not set |
| 967 | CONFIG_HAVE_ARCH_KGDB=y | 1012 | CONFIG_HAVE_ARCH_KGDB=y |
| 968 | CONFIG_PRINT_STACK_DEPTH=64 | 1013 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -991,10 +1036,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 991 | CONFIG_CRYPTO_HASH=y | 1036 | CONFIG_CRYPTO_HASH=y |
| 992 | CONFIG_CRYPTO_HASH2=y | 1037 | CONFIG_CRYPTO_HASH2=y |
| 993 | CONFIG_CRYPTO_RNG2=y | 1038 | CONFIG_CRYPTO_RNG2=y |
| 1039 | CONFIG_CRYPTO_PCOMP=y | ||
| 994 | CONFIG_CRYPTO_MANAGER=y | 1040 | CONFIG_CRYPTO_MANAGER=y |
| 995 | CONFIG_CRYPTO_MANAGER2=y | 1041 | CONFIG_CRYPTO_MANAGER2=y |
| 996 | # CONFIG_CRYPTO_GF128MUL is not set | 1042 | # CONFIG_CRYPTO_GF128MUL is not set |
| 997 | # CONFIG_CRYPTO_NULL is not set | 1043 | # CONFIG_CRYPTO_NULL is not set |
| 1044 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 998 | # CONFIG_CRYPTO_CRYPTD is not set | 1045 | # CONFIG_CRYPTO_CRYPTD is not set |
| 999 | # CONFIG_CRYPTO_AUTHENC is not set | 1046 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1000 | # CONFIG_CRYPTO_TEST is not set | 1047 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1063,6 +1110,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1063 | # Compression | 1110 | # Compression |
| 1064 | # | 1111 | # |
| 1065 | # CONFIG_CRYPTO_DEFLATE is not set | 1112 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1113 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1066 | # CONFIG_CRYPTO_LZO is not set | 1114 | # CONFIG_CRYPTO_LZO is not set |
| 1067 | 1115 | ||
| 1068 | # | 1116 | # |
diff --git a/arch/powerpc/configs/85xx/ksi8560_defconfig b/arch/powerpc/configs/85xx/ksi8560_defconfig index 6479bb9f3f57..09146ddaa3ca 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:03 2009 | 4 | # Wed May 13 17:22:16 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
| 22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
| 27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| @@ -59,6 +60,7 @@ CONFIG_GENERIC_BUG=y | |||
| 59 | CONFIG_DEFAULT_UIMAGE=y | 60 | CONFIG_DEFAULT_UIMAGE=y |
| 60 | # CONFIG_PPC_DCR_NATIVE is not set | 61 | # CONFIG_PPC_DCR_NATIVE is not set |
| 61 | # CONFIG_PPC_DCR_MMIO is not set | 62 | # CONFIG_PPC_DCR_MMIO is not set |
| 63 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 64 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 63 | 65 | ||
| 64 | # | 66 | # |
| @@ -76,6 +78,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 76 | # CONFIG_BSD_PROCESS_ACCT is not set | 78 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 77 | # CONFIG_TASKSTATS is not set | 79 | # CONFIG_TASKSTATS is not set |
| 78 | # CONFIG_AUDIT is not set | 80 | # CONFIG_AUDIT is not set |
| 81 | |||
| 82 | # | ||
| 83 | # RCU Subsystem | ||
| 84 | # | ||
| 85 | CONFIG_CLASSIC_RCU=y | ||
| 86 | # CONFIG_TREE_RCU is not set | ||
| 87 | # CONFIG_PREEMPT_RCU is not set | ||
| 88 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 89 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 79 | # CONFIG_IKCONFIG is not set | 90 | # CONFIG_IKCONFIG is not set |
| 80 | CONFIG_LOG_BUF_SHIFT=14 | 91 | CONFIG_LOG_BUF_SHIFT=14 |
| 81 | # CONFIG_GROUP_SCHED is not set | 92 | # CONFIG_GROUP_SCHED is not set |
| @@ -86,21 +97,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 86 | # CONFIG_NAMESPACES is not set | 97 | # CONFIG_NAMESPACES is not set |
| 87 | CONFIG_BLK_DEV_INITRD=y | 98 | CONFIG_BLK_DEV_INITRD=y |
| 88 | CONFIG_INITRAMFS_SOURCE="" | 99 | CONFIG_INITRAMFS_SOURCE="" |
| 100 | CONFIG_RD_GZIP=y | ||
| 101 | # CONFIG_RD_BZIP2 is not set | ||
| 102 | # CONFIG_RD_LZMA is not set | ||
| 89 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 103 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 90 | CONFIG_SYSCTL=y | 104 | CONFIG_SYSCTL=y |
| 105 | CONFIG_ANON_INODES=y | ||
| 91 | CONFIG_EMBEDDED=y | 106 | CONFIG_EMBEDDED=y |
| 92 | CONFIG_SYSCTL_SYSCALL=y | 107 | CONFIG_SYSCTL_SYSCALL=y |
| 93 | CONFIG_KALLSYMS=y | 108 | CONFIG_KALLSYMS=y |
| 94 | # CONFIG_KALLSYMS_ALL is not set | 109 | # CONFIG_KALLSYMS_ALL is not set |
| 95 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 110 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 111 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 96 | CONFIG_HOTPLUG=y | 112 | CONFIG_HOTPLUG=y |
| 97 | CONFIG_PRINTK=y | 113 | CONFIG_PRINTK=y |
| 98 | CONFIG_BUG=y | 114 | CONFIG_BUG=y |
| 99 | CONFIG_ELF_CORE=y | 115 | CONFIG_ELF_CORE=y |
| 100 | CONFIG_COMPAT_BRK=y | ||
| 101 | CONFIG_BASE_FULL=y | 116 | CONFIG_BASE_FULL=y |
| 102 | CONFIG_FUTEX=y | 117 | CONFIG_FUTEX=y |
| 103 | CONFIG_ANON_INODES=y | ||
| 104 | CONFIG_EPOLL=y | 118 | CONFIG_EPOLL=y |
| 105 | CONFIG_SIGNALFD=y | 119 | CONFIG_SIGNALFD=y |
| 106 | CONFIG_TIMERFD=y | 120 | CONFIG_TIMERFD=y |
| @@ -109,10 +123,12 @@ CONFIG_SHMEM=y | |||
| 109 | CONFIG_AIO=y | 123 | CONFIG_AIO=y |
| 110 | CONFIG_VM_EVENT_COUNTERS=y | 124 | CONFIG_VM_EVENT_COUNTERS=y |
| 111 | CONFIG_SLUB_DEBUG=y | 125 | CONFIG_SLUB_DEBUG=y |
| 126 | CONFIG_COMPAT_BRK=y | ||
| 112 | # CONFIG_SLAB is not set | 127 | # CONFIG_SLAB is not set |
| 113 | CONFIG_SLUB=y | 128 | CONFIG_SLUB=y |
| 114 | # CONFIG_SLOB is not set | 129 | # CONFIG_SLOB is not set |
| 115 | # CONFIG_PROFILING is not set | 130 | # CONFIG_PROFILING is not set |
| 131 | # CONFIG_MARKERS is not set | ||
| 116 | CONFIG_HAVE_OPROFILE=y | 132 | CONFIG_HAVE_OPROFILE=y |
| 117 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 133 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 118 | CONFIG_HAVE_IOREMAP_PROT=y | 134 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -120,6 +136,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 120 | CONFIG_HAVE_KRETPROBES=y | 136 | CONFIG_HAVE_KRETPROBES=y |
| 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 137 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 122 | CONFIG_HAVE_CLK=y | 138 | CONFIG_HAVE_CLK=y |
| 139 | # CONFIG_SLOW_WORK is not set | ||
| 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 140 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 124 | CONFIG_SLABINFO=y | 141 | CONFIG_SLABINFO=y |
| 125 | CONFIG_RT_MUTEXES=y | 142 | CONFIG_RT_MUTEXES=y |
| @@ -127,7 +144,6 @@ CONFIG_BASE_SMALL=0 | |||
| 127 | # CONFIG_MODULES is not set | 144 | # CONFIG_MODULES is not set |
| 128 | CONFIG_BLOCK=y | 145 | CONFIG_BLOCK=y |
| 129 | # CONFIG_LBD is not set | 146 | # CONFIG_LBD is not set |
| 130 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 131 | # CONFIG_BLK_DEV_BSG is not set | 147 | # CONFIG_BLK_DEV_BSG is not set |
| 132 | # CONFIG_BLK_DEV_INTEGRITY is not set | 148 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 133 | 149 | ||
| @@ -143,11 +159,6 @@ CONFIG_DEFAULT_AS=y | |||
| 143 | # CONFIG_DEFAULT_CFQ is not set | 159 | # CONFIG_DEFAULT_CFQ is not set |
| 144 | # CONFIG_DEFAULT_NOOP is not set | 160 | # CONFIG_DEFAULT_NOOP is not set |
| 145 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 161 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 146 | CONFIG_CLASSIC_RCU=y | ||
| 147 | # CONFIG_TREE_RCU is not set | ||
| 148 | # CONFIG_PREEMPT_RCU is not set | ||
| 149 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 150 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 151 | # CONFIG_FREEZER is not set | 162 | # CONFIG_FREEZER is not set |
| 152 | 163 | ||
| 153 | # | 164 | # |
| @@ -163,6 +174,7 @@ CONFIG_MPC85xx=y | |||
| 163 | # CONFIG_MPC85xx_MDS is not set | 174 | # CONFIG_MPC85xx_MDS is not set |
| 164 | # CONFIG_MPC8536_DS is not set | 175 | # CONFIG_MPC8536_DS is not set |
| 165 | # CONFIG_MPC85xx_DS is not set | 176 | # CONFIG_MPC85xx_DS is not set |
| 177 | # CONFIG_SOCRATES is not set | ||
| 166 | CONFIG_KSI8560=y | 178 | CONFIG_KSI8560=y |
| 167 | # CONFIG_STX_GP3 is not set | 179 | # CONFIG_STX_GP3 is not set |
| 168 | # CONFIG_TQM8540 is not set | 180 | # CONFIG_TQM8540 is not set |
| @@ -231,9 +243,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 231 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
| 232 | CONFIG_VIRT_TO_BUS=y | 244 | CONFIG_VIRT_TO_BUS=y |
| 233 | CONFIG_UNEVICTABLE_LRU=y | 245 | CONFIG_UNEVICTABLE_LRU=y |
| 246 | CONFIG_HAVE_MLOCK=y | ||
| 247 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 234 | CONFIG_PPC_4K_PAGES=y | 248 | CONFIG_PPC_4K_PAGES=y |
| 235 | # CONFIG_PPC_16K_PAGES is not set | 249 | # CONFIG_PPC_16K_PAGES is not set |
| 236 | # CONFIG_PPC_64K_PAGES is not set | 250 | # CONFIG_PPC_64K_PAGES is not set |
| 251 | # CONFIG_PPC_256K_PAGES is not set | ||
| 237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 252 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 238 | # CONFIG_PROC_DEVICETREE is not set | 253 | # CONFIG_PROC_DEVICETREE is not set |
| 239 | # CONFIG_CMDLINE_BOOL is not set | 254 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -264,17 +279,17 @@ CONFIG_PPC_PCI_CHOICE=y | |||
| 264 | # Default settings for advanced configuration options are used | 279 | # Default settings for advanced configuration options are used |
| 265 | # | 280 | # |
| 266 | CONFIG_LOWMEM_SIZE=0x30000000 | 281 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 282 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 267 | CONFIG_PAGE_OFFSET=0xc0000000 | 283 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 268 | CONFIG_KERNEL_START=0xc0000000 | 284 | CONFIG_KERNEL_START=0xc0000000 |
| 269 | CONFIG_PHYSICAL_START=0x00000000 | 285 | CONFIG_PHYSICAL_START=0x00000000 |
| 270 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 286 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 271 | CONFIG_TASK_SIZE=0xc0000000 | 287 | CONFIG_TASK_SIZE=0xc0000000 |
| 272 | CONFIG_NET=y | 288 | CONFIG_NET=y |
| 273 | 289 | ||
| 274 | # | 290 | # |
| 275 | # Networking options | 291 | # Networking options |
| 276 | # | 292 | # |
| 277 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 278 | CONFIG_PACKET=y | 293 | CONFIG_PACKET=y |
| 279 | # CONFIG_PACKET_MMAP is not set | 294 | # CONFIG_PACKET_MMAP is not set |
| 280 | CONFIG_UNIX=y | 295 | CONFIG_UNIX=y |
| @@ -330,6 +345,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 330 | # CONFIG_LAPB is not set | 345 | # CONFIG_LAPB is not set |
| 331 | # CONFIG_ECONET is not set | 346 | # CONFIG_ECONET is not set |
| 332 | # CONFIG_WAN_ROUTER is not set | 347 | # CONFIG_WAN_ROUTER is not set |
| 348 | # CONFIG_PHONET is not set | ||
| 333 | # CONFIG_NET_SCHED is not set | 349 | # CONFIG_NET_SCHED is not set |
| 334 | # CONFIG_DCB is not set | 350 | # CONFIG_DCB is not set |
| 335 | 351 | ||
| @@ -342,7 +358,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 342 | # CONFIG_IRDA is not set | 358 | # CONFIG_IRDA is not set |
| 343 | # CONFIG_BT is not set | 359 | # CONFIG_BT is not set |
| 344 | # CONFIG_AF_RXRPC is not set | 360 | # CONFIG_AF_RXRPC is not set |
| 345 | # CONFIG_PHONET is not set | ||
| 346 | CONFIG_WIRELESS=y | 361 | CONFIG_WIRELESS=y |
| 347 | # CONFIG_CFG80211 is not set | 362 | # CONFIG_CFG80211 is not set |
| 348 | CONFIG_WIRELESS_OLD_REGULATORY=y | 363 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -444,7 +459,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 444 | # LPDDR flash memory drivers | 459 | # LPDDR flash memory drivers |
| 445 | # | 460 | # |
| 446 | # CONFIG_MTD_LPDDR is not set | 461 | # CONFIG_MTD_LPDDR is not set |
| 447 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 448 | 462 | ||
| 449 | # | 463 | # |
| 450 | # UBI - Unsorted block images | 464 | # UBI - Unsorted block images |
| @@ -467,9 +481,13 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 467 | # CONFIG_ATA_OVER_ETH is not set | 481 | # CONFIG_ATA_OVER_ETH is not set |
| 468 | # CONFIG_BLK_DEV_HD is not set | 482 | # CONFIG_BLK_DEV_HD is not set |
| 469 | CONFIG_MISC_DEVICES=y | 483 | CONFIG_MISC_DEVICES=y |
| 470 | # CONFIG_EEPROM_93CX6 is not set | ||
| 471 | # CONFIG_ENCLOSURE_SERVICES is not set | 484 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 472 | # CONFIG_C2PORT is not set | 485 | # CONFIG_C2PORT is not set |
| 486 | |||
| 487 | # | ||
| 488 | # EEPROM support | ||
| 489 | # | ||
| 490 | # CONFIG_EEPROM_93CX6 is not set | ||
| 473 | CONFIG_HAVE_IDE=y | 491 | CONFIG_HAVE_IDE=y |
| 474 | CONFIG_IDE=y | 492 | CONFIG_IDE=y |
| 475 | 493 | ||
| @@ -502,6 +520,7 @@ CONFIG_IDE_PROC_FS=y | |||
| 502 | # CONFIG_MD is not set | 520 | # CONFIG_MD is not set |
| 503 | # CONFIG_MACINTOSH_DRIVERS is not set | 521 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 504 | CONFIG_NETDEVICES=y | 522 | CONFIG_NETDEVICES=y |
| 523 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 505 | # CONFIG_DUMMY is not set | 524 | # CONFIG_DUMMY is not set |
| 506 | # CONFIG_BONDING is not set | 525 | # CONFIG_BONDING is not set |
| 507 | # CONFIG_MACVLAN is not set | 526 | # CONFIG_MACVLAN is not set |
| @@ -531,6 +550,8 @@ CONFIG_MDIO_BITBANG=y | |||
| 531 | # CONFIG_MDIO_GPIO is not set | 550 | # CONFIG_MDIO_GPIO is not set |
| 532 | CONFIG_NET_ETHERNET=y | 551 | CONFIG_NET_ETHERNET=y |
| 533 | CONFIG_MII=y | 552 | CONFIG_MII=y |
| 553 | # CONFIG_ETHOC is not set | ||
| 554 | # CONFIG_DNET is not set | ||
| 534 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 555 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 535 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 556 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 536 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 557 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -544,6 +565,7 @@ CONFIG_FS_ENET=y | |||
| 544 | CONFIG_FS_ENET_HAS_FCC=y | 565 | CONFIG_FS_ENET_HAS_FCC=y |
| 545 | CONFIG_FS_ENET_MDIO_FCC=y | 566 | CONFIG_FS_ENET_MDIO_FCC=y |
| 546 | CONFIG_NETDEV_1000=y | 567 | CONFIG_NETDEV_1000=y |
| 568 | CONFIG_FSL_PQ_MDIO=y | ||
| 547 | CONFIG_GIANFAR=y | 569 | CONFIG_GIANFAR=y |
| 548 | CONFIG_NETDEV_10000=y | 570 | CONFIG_NETDEV_10000=y |
| 549 | 571 | ||
| @@ -552,7 +574,6 @@ CONFIG_NETDEV_10000=y | |||
| 552 | # | 574 | # |
| 553 | # CONFIG_WLAN_PRE80211 is not set | 575 | # CONFIG_WLAN_PRE80211 is not set |
| 554 | # CONFIG_WLAN_80211 is not set | 576 | # CONFIG_WLAN_80211 is not set |
| 555 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 556 | 577 | ||
| 557 | # | 578 | # |
| 558 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 579 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -624,6 +645,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 624 | # CONFIG_HVC_UDBG is not set | 645 | # CONFIG_HVC_UDBG is not set |
| 625 | # CONFIG_IPMI_HANDLER is not set | 646 | # CONFIG_IPMI_HANDLER is not set |
| 626 | CONFIG_HW_RANDOM=y | 647 | CONFIG_HW_RANDOM=y |
| 648 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 627 | # CONFIG_NVRAM is not set | 649 | # CONFIG_NVRAM is not set |
| 628 | CONFIG_GEN_RTC=y | 650 | CONFIG_GEN_RTC=y |
| 629 | # CONFIG_GEN_RTC_X is not set | 651 | # CONFIG_GEN_RTC_X is not set |
| @@ -663,6 +685,7 @@ CONFIG_HWMON=y | |||
| 663 | # CONFIG_SENSORS_IT87 is not set | 685 | # CONFIG_SENSORS_IT87 is not set |
| 664 | # CONFIG_SENSORS_PC87360 is not set | 686 | # CONFIG_SENSORS_PC87360 is not set |
| 665 | # CONFIG_SENSORS_PC87427 is not set | 687 | # CONFIG_SENSORS_PC87427 is not set |
| 688 | # CONFIG_SENSORS_SHT15 is not set | ||
| 666 | # CONFIG_SENSORS_SMSC47M1 is not set | 689 | # CONFIG_SENSORS_SMSC47M1 is not set |
| 667 | # CONFIG_SENSORS_SMSC47B397 is not set | 690 | # CONFIG_SENSORS_SMSC47B397 is not set |
| 668 | # CONFIG_SENSORS_VT1211 is not set | 691 | # CONFIG_SENSORS_VT1211 is not set |
| @@ -726,7 +749,6 @@ CONFIG_HID=y | |||
| 726 | # | 749 | # |
| 727 | # Special HID drivers | 750 | # Special HID drivers |
| 728 | # | 751 | # |
| 729 | CONFIG_HID_COMPAT=y | ||
| 730 | CONFIG_USB_SUPPORT=y | 752 | CONFIG_USB_SUPPORT=y |
| 731 | # CONFIG_USB_ARCH_HAS_HCD is not set | 753 | # CONFIG_USB_ARCH_HAS_HCD is not set |
| 732 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 754 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
| @@ -739,7 +761,7 @@ CONFIG_USB_SUPPORT=y | |||
| 739 | # | 761 | # |
| 740 | 762 | ||
| 741 | # | 763 | # |
| 742 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 764 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 743 | # | 765 | # |
| 744 | # CONFIG_USB_GADGET is not set | 766 | # CONFIG_USB_GADGET is not set |
| 745 | 767 | ||
| @@ -753,6 +775,7 @@ CONFIG_USB_SUPPORT=y | |||
| 753 | # CONFIG_EDAC is not set | 775 | # CONFIG_EDAC is not set |
| 754 | # CONFIG_RTC_CLASS is not set | 776 | # CONFIG_RTC_CLASS is not set |
| 755 | # CONFIG_DMADEVICES is not set | 777 | # CONFIG_DMADEVICES is not set |
| 778 | # CONFIG_AUXDISPLAY is not set | ||
| 756 | # CONFIG_UIO is not set | 779 | # CONFIG_UIO is not set |
| 757 | # CONFIG_STAGING is not set | 780 | # CONFIG_STAGING is not set |
| 758 | 781 | ||
| @@ -763,6 +786,7 @@ CONFIG_EXT2_FS=y | |||
| 763 | # CONFIG_EXT2_FS_XATTR is not set | 786 | # CONFIG_EXT2_FS_XATTR is not set |
| 764 | # CONFIG_EXT2_FS_XIP is not set | 787 | # CONFIG_EXT2_FS_XIP is not set |
| 765 | CONFIG_EXT3_FS=y | 788 | CONFIG_EXT3_FS=y |
| 789 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 766 | CONFIG_EXT3_FS_XATTR=y | 790 | CONFIG_EXT3_FS_XATTR=y |
| 767 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 791 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 768 | # CONFIG_EXT3_FS_SECURITY is not set | 792 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -786,6 +810,11 @@ CONFIG_INOTIFY_USER=y | |||
| 786 | # CONFIG_FUSE_FS is not set | 810 | # CONFIG_FUSE_FS is not set |
| 787 | 811 | ||
| 788 | # | 812 | # |
| 813 | # Caches | ||
| 814 | # | ||
| 815 | # CONFIG_FSCACHE is not set | ||
| 816 | |||
| 817 | # | ||
| 789 | # CD-ROM/DVD Filesystems | 818 | # CD-ROM/DVD Filesystems |
| 790 | # | 819 | # |
| 791 | # CONFIG_ISO9660_FS is not set | 820 | # CONFIG_ISO9660_FS is not set |
| @@ -829,6 +858,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 829 | # CONFIG_ROMFS_FS is not set | 858 | # CONFIG_ROMFS_FS is not set |
| 830 | # CONFIG_SYSV_FS is not set | 859 | # CONFIG_SYSV_FS is not set |
| 831 | # CONFIG_UFS_FS is not set | 860 | # CONFIG_UFS_FS is not set |
| 861 | # CONFIG_NILFS2_FS is not set | ||
| 832 | CONFIG_NETWORK_FILESYSTEMS=y | 862 | CONFIG_NETWORK_FILESYSTEMS=y |
| 833 | CONFIG_NFS_FS=y | 863 | CONFIG_NFS_FS=y |
| 834 | # CONFIG_NFS_V3 is not set | 864 | # CONFIG_NFS_V3 is not set |
| @@ -838,7 +868,6 @@ CONFIG_ROOT_NFS=y | |||
| 838 | CONFIG_LOCKD=y | 868 | CONFIG_LOCKD=y |
| 839 | CONFIG_NFS_COMMON=y | 869 | CONFIG_NFS_COMMON=y |
| 840 | CONFIG_SUNRPC=y | 870 | CONFIG_SUNRPC=y |
| 841 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 842 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 871 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 843 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 872 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 844 | # CONFIG_SMB_FS is not set | 873 | # CONFIG_SMB_FS is not set |
| @@ -866,6 +895,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 866 | # CONFIG_SYSV68_PARTITION is not set | 895 | # CONFIG_SYSV68_PARTITION is not set |
| 867 | # CONFIG_NLS is not set | 896 | # CONFIG_NLS is not set |
| 868 | # CONFIG_DLM is not set | 897 | # CONFIG_DLM is not set |
| 898 | # CONFIG_BINARY_PRINTF is not set | ||
| 869 | 899 | ||
| 870 | # | 900 | # |
| 871 | # Library routines | 901 | # Library routines |
| @@ -879,11 +909,13 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 879 | CONFIG_CRC32=y | 909 | CONFIG_CRC32=y |
| 880 | # CONFIG_CRC7 is not set | 910 | # CONFIG_CRC7 is not set |
| 881 | # CONFIG_LIBCRC32C is not set | 911 | # CONFIG_LIBCRC32C is not set |
| 882 | CONFIG_PLIST=y | 912 | CONFIG_ZLIB_INFLATE=y |
| 913 | CONFIG_DECOMPRESS_GZIP=y | ||
| 883 | CONFIG_HAS_IOMEM=y | 914 | CONFIG_HAS_IOMEM=y |
| 884 | CONFIG_HAS_IOPORT=y | 915 | CONFIG_HAS_IOPORT=y |
| 885 | CONFIG_HAS_DMA=y | 916 | CONFIG_HAS_DMA=y |
| 886 | CONFIG_HAVE_LMB=y | 917 | CONFIG_HAVE_LMB=y |
| 918 | CONFIG_NLATTR=y | ||
| 887 | 919 | ||
| 888 | # | 920 | # |
| 889 | # Kernel hacking | 921 | # Kernel hacking |
| @@ -901,6 +933,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 901 | CONFIG_DETECT_SOFTLOCKUP=y | 933 | CONFIG_DETECT_SOFTLOCKUP=y |
| 902 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 934 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 903 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 935 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 936 | CONFIG_DETECT_HUNG_TASK=y | ||
| 937 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 938 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 904 | CONFIG_SCHED_DEBUG=y | 939 | CONFIG_SCHED_DEBUG=y |
| 905 | # CONFIG_SCHEDSTATS is not set | 940 | # CONFIG_SCHEDSTATS is not set |
| 906 | # CONFIG_TIMER_STATS is not set | 941 | # CONFIG_TIMER_STATS is not set |
| @@ -931,9 +966,12 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 931 | # CONFIG_FAULT_INJECTION is not set | 966 | # CONFIG_FAULT_INJECTION is not set |
| 932 | # CONFIG_LATENCYTOP is not set | 967 | # CONFIG_LATENCYTOP is not set |
| 933 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 968 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 969 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 934 | CONFIG_HAVE_FUNCTION_TRACER=y | 970 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 971 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 935 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 972 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 936 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 973 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 974 | CONFIG_TRACING_SUPPORT=y | ||
| 937 | 975 | ||
| 938 | # | 976 | # |
| 939 | # Tracers | 977 | # Tracers |
| @@ -941,17 +979,20 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 941 | # CONFIG_FUNCTION_TRACER is not set | 979 | # CONFIG_FUNCTION_TRACER is not set |
| 942 | # CONFIG_SCHED_TRACER is not set | 980 | # CONFIG_SCHED_TRACER is not set |
| 943 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 981 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 982 | # CONFIG_EVENT_TRACER is not set | ||
| 944 | # CONFIG_BOOT_TRACER is not set | 983 | # CONFIG_BOOT_TRACER is not set |
| 945 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 984 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 946 | # CONFIG_STACK_TRACER is not set | 985 | # CONFIG_STACK_TRACER is not set |
| 947 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 986 | # CONFIG_KMEMTRACE is not set |
| 987 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 988 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 989 | # CONFIG_DYNAMIC_DEBUG is not set | ||
| 948 | # CONFIG_SAMPLES is not set | 990 | # CONFIG_SAMPLES is not set |
| 949 | CONFIG_HAVE_ARCH_KGDB=y | 991 | CONFIG_HAVE_ARCH_KGDB=y |
| 950 | # CONFIG_KGDB is not set | 992 | # CONFIG_KGDB is not set |
| 951 | CONFIG_PRINT_STACK_DEPTH=64 | 993 | CONFIG_PRINT_STACK_DEPTH=64 |
| 952 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 994 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 953 | # CONFIG_DEBUG_STACK_USAGE is not set | 995 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 954 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 955 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 996 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 956 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 997 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 957 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 998 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1045,6 +1086,7 @@ CONFIG_CRYPTO=y | |||
| 1045 | # Compression | 1086 | # Compression |
| 1046 | # | 1087 | # |
| 1047 | # CONFIG_CRYPTO_DEFLATE is not set | 1088 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1089 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1048 | # CONFIG_CRYPTO_LZO is not set | 1090 | # CONFIG_CRYPTO_LZO is not set |
| 1049 | 1091 | ||
| 1050 | # | 1092 | # |
diff --git a/arch/powerpc/configs/85xx/mpc8540_ads_defconfig b/arch/powerpc/configs/85xx/mpc8540_ads_defconfig index 905e8a3388d6..7b43be7586b6 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:05 2009 | 4 | # Wed May 13 17:22:17 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
| 22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
| 27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| @@ -58,6 +59,7 @@ CONFIG_GENERIC_BUG=y | |||
| 58 | CONFIG_DEFAULT_UIMAGE=y | 59 | CONFIG_DEFAULT_UIMAGE=y |
| 59 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 60 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 62 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 62 | 64 | ||
| 63 | # | 65 | # |
| @@ -75,6 +77,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 75 | # CONFIG_BSD_PROCESS_ACCT is not set | 77 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 76 | # CONFIG_TASKSTATS is not set | 78 | # CONFIG_TASKSTATS is not set |
| 77 | # CONFIG_AUDIT is not set | 79 | # CONFIG_AUDIT is not set |
| 80 | |||
| 81 | # | ||
| 82 | # RCU Subsystem | ||
| 83 | # | ||
| 84 | CONFIG_CLASSIC_RCU=y | ||
| 85 | # CONFIG_TREE_RCU is not set | ||
| 86 | # CONFIG_PREEMPT_RCU is not set | ||
| 87 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 88 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 78 | # CONFIG_IKCONFIG is not set | 89 | # CONFIG_IKCONFIG is not set |
| 79 | CONFIG_LOG_BUF_SHIFT=14 | 90 | CONFIG_LOG_BUF_SHIFT=14 |
| 80 | CONFIG_GROUP_SCHED=y | 91 | CONFIG_GROUP_SCHED=y |
| @@ -89,21 +100,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 89 | # CONFIG_NAMESPACES is not set | 100 | # CONFIG_NAMESPACES is not set |
| 90 | CONFIG_BLK_DEV_INITRD=y | 101 | CONFIG_BLK_DEV_INITRD=y |
| 91 | CONFIG_INITRAMFS_SOURCE="" | 102 | CONFIG_INITRAMFS_SOURCE="" |
| 103 | CONFIG_RD_GZIP=y | ||
| 104 | # CONFIG_RD_BZIP2 is not set | ||
| 105 | # CONFIG_RD_LZMA is not set | ||
| 92 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 106 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 93 | CONFIG_SYSCTL=y | 107 | CONFIG_SYSCTL=y |
| 108 | CONFIG_ANON_INODES=y | ||
| 94 | CONFIG_EMBEDDED=y | 109 | CONFIG_EMBEDDED=y |
| 95 | CONFIG_SYSCTL_SYSCALL=y | 110 | CONFIG_SYSCTL_SYSCALL=y |
| 96 | CONFIG_KALLSYMS=y | 111 | CONFIG_KALLSYMS=y |
| 97 | # CONFIG_KALLSYMS_ALL is not set | 112 | # CONFIG_KALLSYMS_ALL is not set |
| 98 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 113 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 114 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 99 | CONFIG_HOTPLUG=y | 115 | CONFIG_HOTPLUG=y |
| 100 | CONFIG_PRINTK=y | 116 | CONFIG_PRINTK=y |
| 101 | CONFIG_BUG=y | 117 | CONFIG_BUG=y |
| 102 | CONFIG_ELF_CORE=y | 118 | CONFIG_ELF_CORE=y |
| 103 | CONFIG_COMPAT_BRK=y | ||
| 104 | CONFIG_BASE_FULL=y | 119 | CONFIG_BASE_FULL=y |
| 105 | CONFIG_FUTEX=y | 120 | CONFIG_FUTEX=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 107 | CONFIG_EPOLL=y | 121 | CONFIG_EPOLL=y |
| 108 | CONFIG_SIGNALFD=y | 122 | CONFIG_SIGNALFD=y |
| 109 | CONFIG_TIMERFD=y | 123 | CONFIG_TIMERFD=y |
| @@ -112,16 +126,19 @@ CONFIG_SHMEM=y | |||
| 112 | CONFIG_AIO=y | 126 | CONFIG_AIO=y |
| 113 | CONFIG_VM_EVENT_COUNTERS=y | 127 | CONFIG_VM_EVENT_COUNTERS=y |
| 114 | CONFIG_SLUB_DEBUG=y | 128 | CONFIG_SLUB_DEBUG=y |
| 129 | CONFIG_COMPAT_BRK=y | ||
| 115 | # CONFIG_SLAB is not set | 130 | # CONFIG_SLAB is not set |
| 116 | CONFIG_SLUB=y | 131 | CONFIG_SLUB=y |
| 117 | # CONFIG_SLOB is not set | 132 | # CONFIG_SLOB is not set |
| 118 | # CONFIG_PROFILING is not set | 133 | # CONFIG_PROFILING is not set |
| 134 | # CONFIG_MARKERS is not set | ||
| 119 | CONFIG_HAVE_OPROFILE=y | 135 | CONFIG_HAVE_OPROFILE=y |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 136 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 121 | CONFIG_HAVE_IOREMAP_PROT=y | 137 | CONFIG_HAVE_IOREMAP_PROT=y |
| 122 | CONFIG_HAVE_KPROBES=y | 138 | CONFIG_HAVE_KPROBES=y |
| 123 | CONFIG_HAVE_KRETPROBES=y | 139 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 140 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 141 | # CONFIG_SLOW_WORK is not set | ||
| 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 142 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 126 | CONFIG_SLABINFO=y | 143 | CONFIG_SLABINFO=y |
| 127 | CONFIG_RT_MUTEXES=y | 144 | CONFIG_RT_MUTEXES=y |
| @@ -129,7 +146,6 @@ CONFIG_BASE_SMALL=0 | |||
| 129 | # CONFIG_MODULES is not set | 146 | # CONFIG_MODULES is not set |
| 130 | CONFIG_BLOCK=y | 147 | CONFIG_BLOCK=y |
| 131 | # CONFIG_LBD is not set | 148 | # CONFIG_LBD is not set |
| 132 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 133 | # CONFIG_BLK_DEV_BSG is not set | 149 | # CONFIG_BLK_DEV_BSG is not set |
| 134 | # CONFIG_BLK_DEV_INTEGRITY is not set | 150 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 135 | 151 | ||
| @@ -145,11 +161,6 @@ CONFIG_DEFAULT_AS=y | |||
| 145 | # CONFIG_DEFAULT_CFQ is not set | 161 | # CONFIG_DEFAULT_CFQ is not set |
| 146 | # CONFIG_DEFAULT_NOOP is not set | 162 | # CONFIG_DEFAULT_NOOP is not set |
| 147 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 163 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 148 | CONFIG_CLASSIC_RCU=y | ||
| 149 | # CONFIG_TREE_RCU is not set | ||
| 150 | # CONFIG_PREEMPT_RCU is not set | ||
| 151 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 152 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 153 | # CONFIG_FREEZER is not set | 164 | # CONFIG_FREEZER is not set |
| 154 | 165 | ||
| 155 | # | 166 | # |
| @@ -165,6 +176,7 @@ CONFIG_MPC8540_ADS=y | |||
| 165 | # CONFIG_MPC85xx_MDS is not set | 176 | # CONFIG_MPC85xx_MDS is not set |
| 166 | # CONFIG_MPC8536_DS is not set | 177 | # CONFIG_MPC8536_DS is not set |
| 167 | # CONFIG_MPC85xx_DS is not set | 178 | # CONFIG_MPC85xx_DS is not set |
| 179 | # CONFIG_SOCRATES is not set | ||
| 168 | # CONFIG_KSI8560 is not set | 180 | # CONFIG_KSI8560 is not set |
| 169 | # CONFIG_STX_GP3 is not set | 181 | # CONFIG_STX_GP3 is not set |
| 170 | # CONFIG_TQM8540 is not set | 182 | # CONFIG_TQM8540 is not set |
| @@ -233,9 +245,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 233 | CONFIG_BOUNCE=y | 245 | CONFIG_BOUNCE=y |
| 234 | CONFIG_VIRT_TO_BUS=y | 246 | CONFIG_VIRT_TO_BUS=y |
| 235 | CONFIG_UNEVICTABLE_LRU=y | 247 | CONFIG_UNEVICTABLE_LRU=y |
| 248 | CONFIG_HAVE_MLOCK=y | ||
| 249 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 236 | CONFIG_PPC_4K_PAGES=y | 250 | CONFIG_PPC_4K_PAGES=y |
| 237 | # CONFIG_PPC_16K_PAGES is not set | 251 | # CONFIG_PPC_16K_PAGES is not set |
| 238 | # CONFIG_PPC_64K_PAGES is not set | 252 | # CONFIG_PPC_64K_PAGES is not set |
| 253 | # CONFIG_PPC_256K_PAGES is not set | ||
| 239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 254 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 240 | CONFIG_PROC_DEVICETREE=y | 255 | CONFIG_PROC_DEVICETREE=y |
| 241 | # CONFIG_CMDLINE_BOOL is not set | 256 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -266,17 +281,17 @@ CONFIG_PPC_PCI_CHOICE=y | |||
| 266 | # Default settings for advanced configuration options are used | 281 | # Default settings for advanced configuration options are used |
| 267 | # | 282 | # |
| 268 | CONFIG_LOWMEM_SIZE=0x30000000 | 283 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 284 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 269 | CONFIG_PAGE_OFFSET=0xc0000000 | 285 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 270 | CONFIG_KERNEL_START=0xc0000000 | 286 | CONFIG_KERNEL_START=0xc0000000 |
| 271 | CONFIG_PHYSICAL_START=0x00000000 | 287 | CONFIG_PHYSICAL_START=0x00000000 |
| 272 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 288 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 273 | CONFIG_TASK_SIZE=0xc0000000 | 289 | CONFIG_TASK_SIZE=0xc0000000 |
| 274 | CONFIG_NET=y | 290 | CONFIG_NET=y |
| 275 | 291 | ||
| 276 | # | 292 | # |
| 277 | # Networking options | 293 | # Networking options |
| 278 | # | 294 | # |
| 279 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 280 | CONFIG_PACKET=y | 295 | CONFIG_PACKET=y |
| 281 | # CONFIG_PACKET_MMAP is not set | 296 | # CONFIG_PACKET_MMAP is not set |
| 282 | CONFIG_UNIX=y | 297 | CONFIG_UNIX=y |
| @@ -332,6 +347,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 332 | # CONFIG_LAPB is not set | 347 | # CONFIG_LAPB is not set |
| 333 | # CONFIG_ECONET is not set | 348 | # CONFIG_ECONET is not set |
| 334 | # CONFIG_WAN_ROUTER is not set | 349 | # CONFIG_WAN_ROUTER is not set |
| 350 | # CONFIG_PHONET is not set | ||
| 335 | # CONFIG_NET_SCHED is not set | 351 | # CONFIG_NET_SCHED is not set |
| 336 | # CONFIG_DCB is not set | 352 | # CONFIG_DCB is not set |
| 337 | 353 | ||
| @@ -344,7 +360,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 344 | # CONFIG_IRDA is not set | 360 | # CONFIG_IRDA is not set |
| 345 | # CONFIG_BT is not set | 361 | # CONFIG_BT is not set |
| 346 | # CONFIG_AF_RXRPC is not set | 362 | # CONFIG_AF_RXRPC is not set |
| 347 | # CONFIG_PHONET is not set | ||
| 348 | CONFIG_WIRELESS=y | 363 | CONFIG_WIRELESS=y |
| 349 | # CONFIG_CFG80211 is not set | 364 | # CONFIG_CFG80211 is not set |
| 350 | CONFIG_WIRELESS_OLD_REGULATORY=y | 365 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -387,9 +402,13 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 387 | # CONFIG_ATA_OVER_ETH is not set | 402 | # CONFIG_ATA_OVER_ETH is not set |
| 388 | # CONFIG_BLK_DEV_HD is not set | 403 | # CONFIG_BLK_DEV_HD is not set |
| 389 | CONFIG_MISC_DEVICES=y | 404 | CONFIG_MISC_DEVICES=y |
| 390 | # CONFIG_EEPROM_93CX6 is not set | ||
| 391 | # CONFIG_ENCLOSURE_SERVICES is not set | 405 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 392 | # CONFIG_C2PORT is not set | 406 | # CONFIG_C2PORT is not set |
| 407 | |||
| 408 | # | ||
| 409 | # EEPROM support | ||
| 410 | # | ||
| 411 | # CONFIG_EEPROM_93CX6 is not set | ||
| 393 | CONFIG_HAVE_IDE=y | 412 | CONFIG_HAVE_IDE=y |
| 394 | # CONFIG_IDE is not set | 413 | # CONFIG_IDE is not set |
| 395 | 414 | ||
| @@ -404,6 +423,7 @@ CONFIG_HAVE_IDE=y | |||
| 404 | # CONFIG_MD is not set | 423 | # CONFIG_MD is not set |
| 405 | # CONFIG_MACINTOSH_DRIVERS is not set | 424 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 406 | CONFIG_NETDEVICES=y | 425 | CONFIG_NETDEVICES=y |
| 426 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 407 | # CONFIG_DUMMY is not set | 427 | # CONFIG_DUMMY is not set |
| 408 | # CONFIG_BONDING is not set | 428 | # CONFIG_BONDING is not set |
| 409 | # CONFIG_MACVLAN is not set | 429 | # CONFIG_MACVLAN is not set |
| @@ -432,6 +452,8 @@ CONFIG_PHYLIB=y | |||
| 432 | # CONFIG_MDIO_BITBANG is not set | 452 | # CONFIG_MDIO_BITBANG is not set |
| 433 | CONFIG_NET_ETHERNET=y | 453 | CONFIG_NET_ETHERNET=y |
| 434 | CONFIG_MII=y | 454 | CONFIG_MII=y |
| 455 | # CONFIG_ETHOC is not set | ||
| 456 | # CONFIG_DNET is not set | ||
| 435 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 457 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 436 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 458 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 437 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 459 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -441,6 +463,7 @@ CONFIG_MII=y | |||
| 441 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 463 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
| 442 | # CONFIG_B44 is not set | 464 | # CONFIG_B44 is not set |
| 443 | CONFIG_NETDEV_1000=y | 465 | CONFIG_NETDEV_1000=y |
| 466 | CONFIG_FSL_PQ_MDIO=y | ||
| 444 | CONFIG_GIANFAR=y | 467 | CONFIG_GIANFAR=y |
| 445 | CONFIG_NETDEV_10000=y | 468 | CONFIG_NETDEV_10000=y |
| 446 | 469 | ||
| @@ -449,7 +472,6 @@ CONFIG_NETDEV_10000=y | |||
| 449 | # | 472 | # |
| 450 | # CONFIG_WLAN_PRE80211 is not set | 473 | # CONFIG_WLAN_PRE80211 is not set |
| 451 | # CONFIG_WLAN_80211 is not set | 474 | # CONFIG_WLAN_80211 is not set |
| 452 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 453 | 475 | ||
| 454 | # | 476 | # |
| 455 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 477 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -607,7 +629,6 @@ CONFIG_HID=y | |||
| 607 | # | 629 | # |
| 608 | # Special HID drivers | 630 | # Special HID drivers |
| 609 | # | 631 | # |
| 610 | CONFIG_HID_COMPAT=y | ||
| 611 | CONFIG_USB_SUPPORT=y | 632 | CONFIG_USB_SUPPORT=y |
| 612 | # CONFIG_USB_ARCH_HAS_HCD is not set | 633 | # CONFIG_USB_ARCH_HAS_HCD is not set |
| 613 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 634 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
| @@ -620,7 +641,7 @@ CONFIG_USB_SUPPORT=y | |||
| 620 | # | 641 | # |
| 621 | 642 | ||
| 622 | # | 643 | # |
| 623 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 644 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 624 | # | 645 | # |
| 625 | # CONFIG_USB_GADGET is not set | 646 | # CONFIG_USB_GADGET is not set |
| 626 | 647 | ||
| @@ -634,6 +655,7 @@ CONFIG_USB_SUPPORT=y | |||
| 634 | # CONFIG_EDAC is not set | 655 | # CONFIG_EDAC is not set |
| 635 | # CONFIG_RTC_CLASS is not set | 656 | # CONFIG_RTC_CLASS is not set |
| 636 | # CONFIG_DMADEVICES is not set | 657 | # CONFIG_DMADEVICES is not set |
| 658 | # CONFIG_AUXDISPLAY is not set | ||
| 637 | # CONFIG_UIO is not set | 659 | # CONFIG_UIO is not set |
| 638 | # CONFIG_STAGING is not set | 660 | # CONFIG_STAGING is not set |
| 639 | 661 | ||
| @@ -644,6 +666,7 @@ CONFIG_EXT2_FS=y | |||
| 644 | # CONFIG_EXT2_FS_XATTR is not set | 666 | # CONFIG_EXT2_FS_XATTR is not set |
| 645 | # CONFIG_EXT2_FS_XIP is not set | 667 | # CONFIG_EXT2_FS_XIP is not set |
| 646 | CONFIG_EXT3_FS=y | 668 | CONFIG_EXT3_FS=y |
| 669 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 647 | CONFIG_EXT3_FS_XATTR=y | 670 | CONFIG_EXT3_FS_XATTR=y |
| 648 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 671 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 649 | # CONFIG_EXT3_FS_SECURITY is not set | 672 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -666,6 +689,11 @@ CONFIG_INOTIFY_USER=y | |||
| 666 | # CONFIG_FUSE_FS is not set | 689 | # CONFIG_FUSE_FS is not set |
| 667 | 690 | ||
| 668 | # | 691 | # |
| 692 | # Caches | ||
| 693 | # | ||
| 694 | # CONFIG_FSCACHE is not set | ||
| 695 | |||
| 696 | # | ||
| 669 | # CD-ROM/DVD Filesystems | 697 | # CD-ROM/DVD Filesystems |
| 670 | # | 698 | # |
| 671 | # CONFIG_ISO9660_FS is not set | 699 | # CONFIG_ISO9660_FS is not set |
| @@ -708,6 +736,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 708 | # CONFIG_ROMFS_FS is not set | 736 | # CONFIG_ROMFS_FS is not set |
| 709 | # CONFIG_SYSV_FS is not set | 737 | # CONFIG_SYSV_FS is not set |
| 710 | # CONFIG_UFS_FS is not set | 738 | # CONFIG_UFS_FS is not set |
| 739 | # CONFIG_NILFS2_FS is not set | ||
| 711 | CONFIG_NETWORK_FILESYSTEMS=y | 740 | CONFIG_NETWORK_FILESYSTEMS=y |
| 712 | CONFIG_NFS_FS=y | 741 | CONFIG_NFS_FS=y |
| 713 | # CONFIG_NFS_V3 is not set | 742 | # CONFIG_NFS_V3 is not set |
| @@ -717,7 +746,6 @@ CONFIG_ROOT_NFS=y | |||
| 717 | CONFIG_LOCKD=y | 746 | CONFIG_LOCKD=y |
| 718 | CONFIG_NFS_COMMON=y | 747 | CONFIG_NFS_COMMON=y |
| 719 | CONFIG_SUNRPC=y | 748 | CONFIG_SUNRPC=y |
| 720 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 721 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 749 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 722 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 750 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 723 | # CONFIG_SMB_FS is not set | 751 | # CONFIG_SMB_FS is not set |
| @@ -745,6 +773,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 745 | # CONFIG_SYSV68_PARTITION is not set | 773 | # CONFIG_SYSV68_PARTITION is not set |
| 746 | # CONFIG_NLS is not set | 774 | # CONFIG_NLS is not set |
| 747 | # CONFIG_DLM is not set | 775 | # CONFIG_DLM is not set |
| 776 | # CONFIG_BINARY_PRINTF is not set | ||
| 748 | 777 | ||
| 749 | # | 778 | # |
| 750 | # Library routines | 779 | # Library routines |
| @@ -758,11 +787,13 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 758 | CONFIG_CRC32=y | 787 | CONFIG_CRC32=y |
| 759 | # CONFIG_CRC7 is not set | 788 | # CONFIG_CRC7 is not set |
| 760 | # CONFIG_LIBCRC32C is not set | 789 | # CONFIG_LIBCRC32C is not set |
| 761 | CONFIG_PLIST=y | 790 | CONFIG_ZLIB_INFLATE=y |
| 791 | CONFIG_DECOMPRESS_GZIP=y | ||
| 762 | CONFIG_HAS_IOMEM=y | 792 | CONFIG_HAS_IOMEM=y |
| 763 | CONFIG_HAS_IOPORT=y | 793 | CONFIG_HAS_IOPORT=y |
| 764 | CONFIG_HAS_DMA=y | 794 | CONFIG_HAS_DMA=y |
| 765 | CONFIG_HAVE_LMB=y | 795 | CONFIG_HAVE_LMB=y |
| 796 | CONFIG_NLATTR=y | ||
| 766 | 797 | ||
| 767 | # | 798 | # |
| 768 | # Kernel hacking | 799 | # Kernel hacking |
| @@ -780,6 +811,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 780 | CONFIG_DETECT_SOFTLOCKUP=y | 811 | CONFIG_DETECT_SOFTLOCKUP=y |
| 781 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 812 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 782 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 813 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 814 | CONFIG_DETECT_HUNG_TASK=y | ||
| 815 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 816 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 783 | CONFIG_SCHED_DEBUG=y | 817 | CONFIG_SCHED_DEBUG=y |
| 784 | # CONFIG_SCHEDSTATS is not set | 818 | # CONFIG_SCHEDSTATS is not set |
| 785 | # CONFIG_TIMER_STATS is not set | 819 | # CONFIG_TIMER_STATS is not set |
| @@ -809,9 +843,12 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 809 | # CONFIG_FAULT_INJECTION is not set | 843 | # CONFIG_FAULT_INJECTION is not set |
| 810 | # CONFIG_LATENCYTOP is not set | 844 | # CONFIG_LATENCYTOP is not set |
| 811 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 845 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 846 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 812 | CONFIG_HAVE_FUNCTION_TRACER=y | 847 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 848 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 813 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 849 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 814 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 850 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 851 | CONFIG_TRACING_SUPPORT=y | ||
| 815 | 852 | ||
| 816 | # | 853 | # |
| 817 | # Tracers | 854 | # Tracers |
| @@ -819,17 +856,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 819 | # CONFIG_FUNCTION_TRACER is not set | 856 | # CONFIG_FUNCTION_TRACER is not set |
| 820 | # CONFIG_SCHED_TRACER is not set | 857 | # CONFIG_SCHED_TRACER is not set |
| 821 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 858 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 859 | # CONFIG_EVENT_TRACER is not set | ||
| 822 | # CONFIG_BOOT_TRACER is not set | 860 | # CONFIG_BOOT_TRACER is not set |
| 823 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 861 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 824 | # CONFIG_STACK_TRACER is not set | 862 | # CONFIG_STACK_TRACER is not set |
| 825 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 863 | # CONFIG_KMEMTRACE is not set |
| 864 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 865 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 826 | # CONFIG_SAMPLES is not set | 866 | # CONFIG_SAMPLES is not set |
| 827 | CONFIG_HAVE_ARCH_KGDB=y | 867 | CONFIG_HAVE_ARCH_KGDB=y |
| 828 | # CONFIG_KGDB is not set | 868 | # CONFIG_KGDB is not set |
| 829 | CONFIG_PRINT_STACK_DEPTH=64 | 869 | CONFIG_PRINT_STACK_DEPTH=64 |
| 830 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 870 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 831 | # CONFIG_DEBUG_STACK_USAGE is not set | 871 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 832 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 833 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 872 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 834 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 873 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 835 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 874 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -922,6 +961,7 @@ CONFIG_CRYPTO=y | |||
| 922 | # Compression | 961 | # Compression |
| 923 | # | 962 | # |
| 924 | # CONFIG_CRYPTO_DEFLATE is not set | 963 | # CONFIG_CRYPTO_DEFLATE is not set |
| 964 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 925 | # CONFIG_CRYPTO_LZO is not set | 965 | # CONFIG_CRYPTO_LZO is not set |
| 926 | 966 | ||
| 927 | # | 967 | # |
diff --git a/arch/powerpc/configs/85xx/mpc8560_ads_defconfig b/arch/powerpc/configs/85xx/mpc8560_ads_defconfig index 095e2ded6e8b..62adb71a5d4f 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:09 2009 | 4 | # Wed May 13 17:22:17 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
| 22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
| 27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| @@ -59,6 +60,7 @@ CONFIG_GENERIC_BUG=y | |||
| 59 | CONFIG_DEFAULT_UIMAGE=y | 60 | CONFIG_DEFAULT_UIMAGE=y |
| 60 | # CONFIG_PPC_DCR_NATIVE is not set | 61 | # CONFIG_PPC_DCR_NATIVE is not set |
| 61 | # CONFIG_PPC_DCR_MMIO is not set | 62 | # CONFIG_PPC_DCR_MMIO is not set |
| 63 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 64 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 63 | 65 | ||
| 64 | # | 66 | # |
| @@ -76,6 +78,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 76 | # CONFIG_BSD_PROCESS_ACCT is not set | 78 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 77 | # CONFIG_TASKSTATS is not set | 79 | # CONFIG_TASKSTATS is not set |
| 78 | # CONFIG_AUDIT is not set | 80 | # CONFIG_AUDIT is not set |
| 81 | |||
| 82 | # | ||
| 83 | # RCU Subsystem | ||
| 84 | # | ||
| 85 | CONFIG_CLASSIC_RCU=y | ||
| 86 | # CONFIG_TREE_RCU is not set | ||
| 87 | # CONFIG_PREEMPT_RCU is not set | ||
| 88 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 89 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 79 | # CONFIG_IKCONFIG is not set | 90 | # CONFIG_IKCONFIG is not set |
| 80 | CONFIG_LOG_BUF_SHIFT=14 | 91 | CONFIG_LOG_BUF_SHIFT=14 |
| 81 | CONFIG_GROUP_SCHED=y | 92 | CONFIG_GROUP_SCHED=y |
| @@ -90,21 +101,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 90 | # CONFIG_NAMESPACES is not set | 101 | # CONFIG_NAMESPACES is not set |
| 91 | CONFIG_BLK_DEV_INITRD=y | 102 | CONFIG_BLK_DEV_INITRD=y |
| 92 | CONFIG_INITRAMFS_SOURCE="" | 103 | CONFIG_INITRAMFS_SOURCE="" |
| 104 | CONFIG_RD_GZIP=y | ||
| 105 | # CONFIG_RD_BZIP2 is not set | ||
| 106 | # CONFIG_RD_LZMA is not set | ||
| 93 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 107 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 94 | CONFIG_SYSCTL=y | 108 | CONFIG_SYSCTL=y |
| 109 | CONFIG_ANON_INODES=y | ||
| 95 | CONFIG_EMBEDDED=y | 110 | CONFIG_EMBEDDED=y |
| 96 | CONFIG_SYSCTL_SYSCALL=y | 111 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | CONFIG_KALLSYMS=y | 112 | CONFIG_KALLSYMS=y |
| 98 | # CONFIG_KALLSYMS_ALL is not set | 113 | # CONFIG_KALLSYMS_ALL is not set |
| 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 114 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 115 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 100 | CONFIG_HOTPLUG=y | 116 | CONFIG_HOTPLUG=y |
| 101 | CONFIG_PRINTK=y | 117 | CONFIG_PRINTK=y |
| 102 | CONFIG_BUG=y | 118 | CONFIG_BUG=y |
| 103 | CONFIG_ELF_CORE=y | 119 | CONFIG_ELF_CORE=y |
| 104 | CONFIG_COMPAT_BRK=y | ||
| 105 | CONFIG_BASE_FULL=y | 120 | CONFIG_BASE_FULL=y |
| 106 | CONFIG_FUTEX=y | 121 | CONFIG_FUTEX=y |
| 107 | CONFIG_ANON_INODES=y | ||
| 108 | CONFIG_EPOLL=y | 122 | CONFIG_EPOLL=y |
| 109 | CONFIG_SIGNALFD=y | 123 | CONFIG_SIGNALFD=y |
| 110 | CONFIG_TIMERFD=y | 124 | CONFIG_TIMERFD=y |
| @@ -114,10 +128,12 @@ CONFIG_AIO=y | |||
| 114 | CONFIG_VM_EVENT_COUNTERS=y | 128 | CONFIG_VM_EVENT_COUNTERS=y |
| 115 | CONFIG_PCI_QUIRKS=y | 129 | CONFIG_PCI_QUIRKS=y |
| 116 | CONFIG_SLUB_DEBUG=y | 130 | CONFIG_SLUB_DEBUG=y |
| 131 | CONFIG_COMPAT_BRK=y | ||
| 117 | # CONFIG_SLAB is not set | 132 | # CONFIG_SLAB is not set |
| 118 | CONFIG_SLUB=y | 133 | CONFIG_SLUB=y |
| 119 | # CONFIG_SLOB is not set | 134 | # CONFIG_SLOB is not set |
| 120 | # CONFIG_PROFILING is not set | 135 | # CONFIG_PROFILING is not set |
| 136 | # CONFIG_MARKERS is not set | ||
| 121 | CONFIG_HAVE_OPROFILE=y | 137 | CONFIG_HAVE_OPROFILE=y |
| 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 138 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 123 | CONFIG_HAVE_IOREMAP_PROT=y | 139 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -125,6 +141,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 125 | CONFIG_HAVE_KRETPROBES=y | 141 | CONFIG_HAVE_KRETPROBES=y |
| 126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 142 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 127 | CONFIG_HAVE_CLK=y | 143 | CONFIG_HAVE_CLK=y |
| 144 | # CONFIG_SLOW_WORK is not set | ||
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 145 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 129 | CONFIG_SLABINFO=y | 146 | CONFIG_SLABINFO=y |
| 130 | CONFIG_RT_MUTEXES=y | 147 | CONFIG_RT_MUTEXES=y |
| @@ -132,7 +149,6 @@ CONFIG_BASE_SMALL=0 | |||
| 132 | # CONFIG_MODULES is not set | 149 | # CONFIG_MODULES is not set |
| 133 | CONFIG_BLOCK=y | 150 | CONFIG_BLOCK=y |
| 134 | # CONFIG_LBD is not set | 151 | # CONFIG_LBD is not set |
| 135 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 136 | # CONFIG_BLK_DEV_BSG is not set | 152 | # CONFIG_BLK_DEV_BSG is not set |
| 137 | # CONFIG_BLK_DEV_INTEGRITY is not set | 153 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 138 | 154 | ||
| @@ -148,11 +164,6 @@ CONFIG_DEFAULT_AS=y | |||
| 148 | # CONFIG_DEFAULT_CFQ is not set | 164 | # CONFIG_DEFAULT_CFQ is not set |
| 149 | # CONFIG_DEFAULT_NOOP is not set | 165 | # CONFIG_DEFAULT_NOOP is not set |
| 150 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 166 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 151 | CONFIG_CLASSIC_RCU=y | ||
| 152 | # CONFIG_TREE_RCU is not set | ||
| 153 | # CONFIG_PREEMPT_RCU is not set | ||
| 154 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 155 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 156 | # CONFIG_FREEZER is not set | 167 | # CONFIG_FREEZER is not set |
| 157 | 168 | ||
| 158 | # | 169 | # |
| @@ -168,6 +179,7 @@ CONFIG_MPC8560_ADS=y | |||
| 168 | # CONFIG_MPC85xx_MDS is not set | 179 | # CONFIG_MPC85xx_MDS is not set |
| 169 | # CONFIG_MPC8536_DS is not set | 180 | # CONFIG_MPC8536_DS is not set |
| 170 | # CONFIG_MPC85xx_DS is not set | 181 | # CONFIG_MPC85xx_DS is not set |
| 182 | # CONFIG_SOCRATES is not set | ||
| 171 | # CONFIG_KSI8560 is not set | 183 | # CONFIG_KSI8560 is not set |
| 172 | # CONFIG_STX_GP3 is not set | 184 | # CONFIG_STX_GP3 is not set |
| 173 | # CONFIG_TQM8540 is not set | 185 | # CONFIG_TQM8540 is not set |
| @@ -236,9 +248,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 236 | CONFIG_BOUNCE=y | 248 | CONFIG_BOUNCE=y |
| 237 | CONFIG_VIRT_TO_BUS=y | 249 | CONFIG_VIRT_TO_BUS=y |
| 238 | CONFIG_UNEVICTABLE_LRU=y | 250 | CONFIG_UNEVICTABLE_LRU=y |
| 251 | CONFIG_HAVE_MLOCK=y | ||
| 252 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 239 | CONFIG_PPC_4K_PAGES=y | 253 | CONFIG_PPC_4K_PAGES=y |
| 240 | # CONFIG_PPC_16K_PAGES is not set | 254 | # CONFIG_PPC_16K_PAGES is not set |
| 241 | # CONFIG_PPC_64K_PAGES is not set | 255 | # CONFIG_PPC_64K_PAGES is not set |
| 256 | # CONFIG_PPC_256K_PAGES is not set | ||
| 242 | CONFIG_FORCE_MAX_ZONEORDER=11 | 257 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 243 | # CONFIG_PROC_DEVICETREE is not set | 258 | # CONFIG_PROC_DEVICETREE is not set |
| 244 | # CONFIG_CMDLINE_BOOL is not set | 259 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -264,6 +279,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 264 | # CONFIG_PCI_LEGACY is not set | 279 | # CONFIG_PCI_LEGACY is not set |
| 265 | CONFIG_PCI_DEBUG=y | 280 | CONFIG_PCI_DEBUG=y |
| 266 | # CONFIG_PCI_STUB is not set | 281 | # CONFIG_PCI_STUB is not set |
| 282 | # CONFIG_PCI_IOV is not set | ||
| 267 | # CONFIG_PCCARD is not set | 283 | # CONFIG_PCCARD is not set |
| 268 | # CONFIG_HOTPLUG_PCI is not set | 284 | # CONFIG_HOTPLUG_PCI is not set |
| 269 | # CONFIG_HAS_RAPIDIO is not set | 285 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -277,17 +293,17 @@ CONFIG_PCI_DEBUG=y | |||
| 277 | # Default settings for advanced configuration options are used | 293 | # Default settings for advanced configuration options are used |
| 278 | # | 294 | # |
| 279 | CONFIG_LOWMEM_SIZE=0x30000000 | 295 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 296 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 280 | CONFIG_PAGE_OFFSET=0xc0000000 | 297 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 281 | CONFIG_KERNEL_START=0xc0000000 | 298 | CONFIG_KERNEL_START=0xc0000000 |
| 282 | CONFIG_PHYSICAL_START=0x00000000 | 299 | CONFIG_PHYSICAL_START=0x00000000 |
| 283 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 300 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 284 | CONFIG_TASK_SIZE=0xc0000000 | 301 | CONFIG_TASK_SIZE=0xc0000000 |
| 285 | CONFIG_NET=y | 302 | CONFIG_NET=y |
| 286 | 303 | ||
| 287 | # | 304 | # |
| 288 | # Networking options | 305 | # Networking options |
| 289 | # | 306 | # |
| 290 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 291 | CONFIG_PACKET=y | 307 | CONFIG_PACKET=y |
| 292 | # CONFIG_PACKET_MMAP is not set | 308 | # CONFIG_PACKET_MMAP is not set |
| 293 | CONFIG_UNIX=y | 309 | CONFIG_UNIX=y |
| @@ -343,6 +359,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 343 | # CONFIG_LAPB is not set | 359 | # CONFIG_LAPB is not set |
| 344 | # CONFIG_ECONET is not set | 360 | # CONFIG_ECONET is not set |
| 345 | # CONFIG_WAN_ROUTER is not set | 361 | # CONFIG_WAN_ROUTER is not set |
| 362 | # CONFIG_PHONET is not set | ||
| 346 | # CONFIG_NET_SCHED is not set | 363 | # CONFIG_NET_SCHED is not set |
| 347 | # CONFIG_DCB is not set | 364 | # CONFIG_DCB is not set |
| 348 | 365 | ||
| @@ -355,7 +372,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 355 | # CONFIG_IRDA is not set | 372 | # CONFIG_IRDA is not set |
| 356 | # CONFIG_BT is not set | 373 | # CONFIG_BT is not set |
| 357 | # CONFIG_AF_RXRPC is not set | 374 | # CONFIG_AF_RXRPC is not set |
| 358 | # CONFIG_PHONET is not set | ||
| 359 | CONFIG_WIRELESS=y | 375 | CONFIG_WIRELESS=y |
| 360 | # CONFIG_CFG80211 is not set | 376 | # CONFIG_CFG80211 is not set |
| 361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 377 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -405,12 +421,16 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 405 | # CONFIG_BLK_DEV_HD is not set | 421 | # CONFIG_BLK_DEV_HD is not set |
| 406 | CONFIG_MISC_DEVICES=y | 422 | CONFIG_MISC_DEVICES=y |
| 407 | # CONFIG_PHANTOM is not set | 423 | # CONFIG_PHANTOM is not set |
| 408 | # CONFIG_EEPROM_93CX6 is not set | ||
| 409 | # CONFIG_SGI_IOC4 is not set | 424 | # CONFIG_SGI_IOC4 is not set |
| 410 | # CONFIG_TIFM_CORE is not set | 425 | # CONFIG_TIFM_CORE is not set |
| 411 | # CONFIG_ENCLOSURE_SERVICES is not set | 426 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 412 | # CONFIG_HP_ILO is not set | 427 | # CONFIG_HP_ILO is not set |
| 413 | # CONFIG_C2PORT is not set | 428 | # CONFIG_C2PORT is not set |
| 429 | |||
| 430 | # | ||
| 431 | # EEPROM support | ||
| 432 | # | ||
| 433 | # CONFIG_EEPROM_93CX6 is not set | ||
| 414 | CONFIG_HAVE_IDE=y | 434 | CONFIG_HAVE_IDE=y |
| 415 | # CONFIG_IDE is not set | 435 | # CONFIG_IDE is not set |
| 416 | 436 | ||
| @@ -437,6 +457,7 @@ CONFIG_HAVE_IDE=y | |||
| 437 | # CONFIG_I2O is not set | 457 | # CONFIG_I2O is not set |
| 438 | # CONFIG_MACINTOSH_DRIVERS is not set | 458 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 439 | CONFIG_NETDEVICES=y | 459 | CONFIG_NETDEVICES=y |
| 460 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 440 | # CONFIG_DUMMY is not set | 461 | # CONFIG_DUMMY is not set |
| 441 | # CONFIG_BONDING is not set | 462 | # CONFIG_BONDING is not set |
| 442 | # CONFIG_MACVLAN is not set | 463 | # CONFIG_MACVLAN is not set |
| @@ -470,6 +491,8 @@ CONFIG_MII=y | |||
| 470 | # CONFIG_SUNGEM is not set | 491 | # CONFIG_SUNGEM is not set |
| 471 | # CONFIG_CASSINI is not set | 492 | # CONFIG_CASSINI is not set |
| 472 | # CONFIG_NET_VENDOR_3COM is not set | 493 | # CONFIG_NET_VENDOR_3COM is not set |
| 494 | # CONFIG_ETHOC is not set | ||
| 495 | # CONFIG_DNET is not set | ||
| 473 | # CONFIG_NET_TULIP is not set | 496 | # CONFIG_NET_TULIP is not set |
| 474 | # CONFIG_HP100 is not set | 497 | # CONFIG_HP100 is not set |
| 475 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 498 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -493,6 +516,7 @@ CONFIG_E1000=y | |||
| 493 | # CONFIG_E1000E is not set | 516 | # CONFIG_E1000E is not set |
| 494 | # CONFIG_IP1000 is not set | 517 | # CONFIG_IP1000 is not set |
| 495 | # CONFIG_IGB is not set | 518 | # CONFIG_IGB is not set |
| 519 | # CONFIG_IGBVF is not set | ||
| 496 | # CONFIG_NS83820 is not set | 520 | # CONFIG_NS83820 is not set |
| 497 | # CONFIG_HAMACHI is not set | 521 | # CONFIG_HAMACHI is not set |
| 498 | # CONFIG_YELLOWFIN is not set | 522 | # CONFIG_YELLOWFIN is not set |
| @@ -503,10 +527,12 @@ CONFIG_E1000=y | |||
| 503 | # CONFIG_VIA_VELOCITY is not set | 527 | # CONFIG_VIA_VELOCITY is not set |
| 504 | # CONFIG_TIGON3 is not set | 528 | # CONFIG_TIGON3 is not set |
| 505 | # CONFIG_BNX2 is not set | 529 | # CONFIG_BNX2 is not set |
| 530 | CONFIG_FSL_PQ_MDIO=y | ||
| 506 | CONFIG_GIANFAR=y | 531 | CONFIG_GIANFAR=y |
| 507 | # CONFIG_QLA3XXX is not set | 532 | # CONFIG_QLA3XXX is not set |
| 508 | # CONFIG_ATL1 is not set | 533 | # CONFIG_ATL1 is not set |
| 509 | # CONFIG_ATL1E is not set | 534 | # CONFIG_ATL1E is not set |
| 535 | # CONFIG_ATL1C is not set | ||
| 510 | # CONFIG_JME is not set | 536 | # CONFIG_JME is not set |
| 511 | CONFIG_NETDEV_10000=y | 537 | CONFIG_NETDEV_10000=y |
| 512 | # CONFIG_CHELSIO_T1 is not set | 538 | # CONFIG_CHELSIO_T1 is not set |
| @@ -516,6 +542,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 516 | # CONFIG_IXGBE is not set | 542 | # CONFIG_IXGBE is not set |
| 517 | # CONFIG_IXGB is not set | 543 | # CONFIG_IXGB is not set |
| 518 | # CONFIG_S2IO is not set | 544 | # CONFIG_S2IO is not set |
| 545 | # CONFIG_VXGE is not set | ||
| 519 | # CONFIG_MYRI10GE is not set | 546 | # CONFIG_MYRI10GE is not set |
| 520 | # CONFIG_NETXEN_NIC is not set | 547 | # CONFIG_NETXEN_NIC is not set |
| 521 | # CONFIG_NIU is not set | 548 | # CONFIG_NIU is not set |
| @@ -525,6 +552,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 525 | # CONFIG_BNX2X is not set | 552 | # CONFIG_BNX2X is not set |
| 526 | # CONFIG_QLGE is not set | 553 | # CONFIG_QLGE is not set |
| 527 | # CONFIG_SFC is not set | 554 | # CONFIG_SFC is not set |
| 555 | # CONFIG_BE2NET is not set | ||
| 528 | # CONFIG_TR is not set | 556 | # CONFIG_TR is not set |
| 529 | 557 | ||
| 530 | # | 558 | # |
| @@ -532,7 +560,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 532 | # | 560 | # |
| 533 | # CONFIG_WLAN_PRE80211 is not set | 561 | # CONFIG_WLAN_PRE80211 is not set |
| 534 | # CONFIG_WLAN_80211 is not set | 562 | # CONFIG_WLAN_80211 is not set |
| 535 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 536 | 563 | ||
| 537 | # | 564 | # |
| 538 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 565 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -608,6 +635,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 608 | # CONFIG_HVC_UDBG is not set | 635 | # CONFIG_HVC_UDBG is not set |
| 609 | # CONFIG_IPMI_HANDLER is not set | 636 | # CONFIG_IPMI_HANDLER is not set |
| 610 | CONFIG_HW_RANDOM=y | 637 | CONFIG_HW_RANDOM=y |
| 638 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 611 | # CONFIG_NVRAM is not set | 639 | # CONFIG_NVRAM is not set |
| 612 | CONFIG_GEN_RTC=y | 640 | CONFIG_GEN_RTC=y |
| 613 | # CONFIG_GEN_RTC_X is not set | 641 | # CONFIG_GEN_RTC_X is not set |
| @@ -651,6 +679,7 @@ CONFIG_HWMON=y | |||
| 651 | # CONFIG_SENSORS_IT87 is not set | 679 | # CONFIG_SENSORS_IT87 is not set |
| 652 | # CONFIG_SENSORS_PC87360 is not set | 680 | # CONFIG_SENSORS_PC87360 is not set |
| 653 | # CONFIG_SENSORS_PC87427 is not set | 681 | # CONFIG_SENSORS_PC87427 is not set |
| 682 | # CONFIG_SENSORS_SHT15 is not set | ||
| 654 | # CONFIG_SENSORS_SIS5595 is not set | 683 | # CONFIG_SENSORS_SIS5595 is not set |
| 655 | # CONFIG_SENSORS_SMSC47M1 is not set | 684 | # CONFIG_SENSORS_SMSC47M1 is not set |
| 656 | # CONFIG_SENSORS_SMSC47B397 is not set | 685 | # CONFIG_SENSORS_SMSC47B397 is not set |
| @@ -719,7 +748,6 @@ CONFIG_HID=y | |||
| 719 | # | 748 | # |
| 720 | # Special HID drivers | 749 | # Special HID drivers |
| 721 | # | 750 | # |
| 722 | CONFIG_HID_COMPAT=y | ||
| 723 | CONFIG_USB_SUPPORT=y | 751 | CONFIG_USB_SUPPORT=y |
| 724 | CONFIG_USB_ARCH_HAS_HCD=y | 752 | CONFIG_USB_ARCH_HAS_HCD=y |
| 725 | CONFIG_USB_ARCH_HAS_OHCI=y | 753 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -733,7 +761,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 733 | # | 761 | # |
| 734 | 762 | ||
| 735 | # | 763 | # |
| 736 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 764 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 737 | # | 765 | # |
| 738 | # CONFIG_USB_GADGET is not set | 766 | # CONFIG_USB_GADGET is not set |
| 739 | 767 | ||
| @@ -749,6 +777,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 749 | # CONFIG_EDAC is not set | 777 | # CONFIG_EDAC is not set |
| 750 | # CONFIG_RTC_CLASS is not set | 778 | # CONFIG_RTC_CLASS is not set |
| 751 | # CONFIG_DMADEVICES is not set | 779 | # CONFIG_DMADEVICES is not set |
| 780 | # CONFIG_AUXDISPLAY is not set | ||
| 752 | # CONFIG_UIO is not set | 781 | # CONFIG_UIO is not set |
| 753 | # CONFIG_STAGING is not set | 782 | # CONFIG_STAGING is not set |
| 754 | 783 | ||
| @@ -759,6 +788,7 @@ CONFIG_EXT2_FS=y | |||
| 759 | # CONFIG_EXT2_FS_XATTR is not set | 788 | # CONFIG_EXT2_FS_XATTR is not set |
| 760 | # CONFIG_EXT2_FS_XIP is not set | 789 | # CONFIG_EXT2_FS_XIP is not set |
| 761 | CONFIG_EXT3_FS=y | 790 | CONFIG_EXT3_FS=y |
| 791 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 762 | CONFIG_EXT3_FS_XATTR=y | 792 | CONFIG_EXT3_FS_XATTR=y |
| 763 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 793 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 764 | # CONFIG_EXT3_FS_SECURITY is not set | 794 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -781,6 +811,11 @@ CONFIG_INOTIFY_USER=y | |||
| 781 | # CONFIG_FUSE_FS is not set | 811 | # CONFIG_FUSE_FS is not set |
| 782 | 812 | ||
| 783 | # | 813 | # |
| 814 | # Caches | ||
| 815 | # | ||
| 816 | # CONFIG_FSCACHE is not set | ||
| 817 | |||
| 818 | # | ||
| 784 | # CD-ROM/DVD Filesystems | 819 | # CD-ROM/DVD Filesystems |
| 785 | # | 820 | # |
| 786 | # CONFIG_ISO9660_FS is not set | 821 | # CONFIG_ISO9660_FS is not set |
| @@ -823,6 +858,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 823 | # CONFIG_ROMFS_FS is not set | 858 | # CONFIG_ROMFS_FS is not set |
| 824 | # CONFIG_SYSV_FS is not set | 859 | # CONFIG_SYSV_FS is not set |
| 825 | # CONFIG_UFS_FS is not set | 860 | # CONFIG_UFS_FS is not set |
| 861 | # CONFIG_NILFS2_FS is not set | ||
| 826 | CONFIG_NETWORK_FILESYSTEMS=y | 862 | CONFIG_NETWORK_FILESYSTEMS=y |
| 827 | CONFIG_NFS_FS=y | 863 | CONFIG_NFS_FS=y |
| 828 | # CONFIG_NFS_V3 is not set | 864 | # CONFIG_NFS_V3 is not set |
| @@ -832,7 +868,6 @@ CONFIG_ROOT_NFS=y | |||
| 832 | CONFIG_LOCKD=y | 868 | CONFIG_LOCKD=y |
| 833 | CONFIG_NFS_COMMON=y | 869 | CONFIG_NFS_COMMON=y |
| 834 | CONFIG_SUNRPC=y | 870 | CONFIG_SUNRPC=y |
| 835 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 836 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 871 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 837 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 872 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 838 | # CONFIG_SMB_FS is not set | 873 | # CONFIG_SMB_FS is not set |
| @@ -860,6 +895,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 860 | # CONFIG_SYSV68_PARTITION is not set | 895 | # CONFIG_SYSV68_PARTITION is not set |
| 861 | # CONFIG_NLS is not set | 896 | # CONFIG_NLS is not set |
| 862 | # CONFIG_DLM is not set | 897 | # CONFIG_DLM is not set |
| 898 | # CONFIG_BINARY_PRINTF is not set | ||
| 863 | 899 | ||
| 864 | # | 900 | # |
| 865 | # Library routines | 901 | # Library routines |
| @@ -873,11 +909,13 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 873 | CONFIG_CRC32=y | 909 | CONFIG_CRC32=y |
| 874 | # CONFIG_CRC7 is not set | 910 | # CONFIG_CRC7 is not set |
| 875 | # CONFIG_LIBCRC32C is not set | 911 | # CONFIG_LIBCRC32C is not set |
| 876 | CONFIG_PLIST=y | 912 | CONFIG_ZLIB_INFLATE=y |
| 913 | CONFIG_DECOMPRESS_GZIP=y | ||
| 877 | CONFIG_HAS_IOMEM=y | 914 | CONFIG_HAS_IOMEM=y |
| 878 | CONFIG_HAS_IOPORT=y | 915 | CONFIG_HAS_IOPORT=y |
| 879 | CONFIG_HAS_DMA=y | 916 | CONFIG_HAS_DMA=y |
| 880 | CONFIG_HAVE_LMB=y | 917 | CONFIG_HAVE_LMB=y |
| 918 | CONFIG_NLATTR=y | ||
| 881 | 919 | ||
| 882 | # | 920 | # |
| 883 | # Kernel hacking | 921 | # Kernel hacking |
| @@ -895,6 +933,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 895 | CONFIG_DETECT_SOFTLOCKUP=y | 933 | CONFIG_DETECT_SOFTLOCKUP=y |
| 896 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 934 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 897 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 935 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 936 | CONFIG_DETECT_HUNG_TASK=y | ||
| 937 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 938 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 898 | CONFIG_SCHED_DEBUG=y | 939 | CONFIG_SCHED_DEBUG=y |
| 899 | # CONFIG_SCHEDSTATS is not set | 940 | # CONFIG_SCHEDSTATS is not set |
| 900 | # CONFIG_TIMER_STATS is not set | 941 | # CONFIG_TIMER_STATS is not set |
| @@ -924,9 +965,12 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 924 | # CONFIG_FAULT_INJECTION is not set | 965 | # CONFIG_FAULT_INJECTION is not set |
| 925 | # CONFIG_LATENCYTOP is not set | 966 | # CONFIG_LATENCYTOP is not set |
| 926 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 967 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 968 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 927 | CONFIG_HAVE_FUNCTION_TRACER=y | 969 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 970 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 928 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 971 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 929 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 972 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 973 | CONFIG_TRACING_SUPPORT=y | ||
| 930 | 974 | ||
| 931 | # | 975 | # |
| 932 | # Tracers | 976 | # Tracers |
| @@ -934,17 +978,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 934 | # CONFIG_FUNCTION_TRACER is not set | 978 | # CONFIG_FUNCTION_TRACER is not set |
| 935 | # CONFIG_SCHED_TRACER is not set | 979 | # CONFIG_SCHED_TRACER is not set |
| 936 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 980 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 981 | # CONFIG_EVENT_TRACER is not set | ||
| 937 | # CONFIG_BOOT_TRACER is not set | 982 | # CONFIG_BOOT_TRACER is not set |
| 938 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 983 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 939 | # CONFIG_STACK_TRACER is not set | 984 | # CONFIG_STACK_TRACER is not set |
| 940 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 985 | # CONFIG_KMEMTRACE is not set |
| 986 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 987 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 941 | # CONFIG_SAMPLES is not set | 988 | # CONFIG_SAMPLES is not set |
| 942 | CONFIG_HAVE_ARCH_KGDB=y | 989 | CONFIG_HAVE_ARCH_KGDB=y |
| 943 | # CONFIG_KGDB is not set | 990 | # CONFIG_KGDB is not set |
| 944 | CONFIG_PRINT_STACK_DEPTH=64 | 991 | CONFIG_PRINT_STACK_DEPTH=64 |
| 945 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 992 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 946 | # CONFIG_DEBUG_STACK_USAGE is not set | 993 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 947 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 948 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 994 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 949 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 995 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 950 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 996 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1037,6 +1083,7 @@ CONFIG_CRYPTO=y | |||
| 1037 | # Compression | 1083 | # Compression |
| 1038 | # | 1084 | # |
| 1039 | # CONFIG_CRYPTO_DEFLATE is not set | 1085 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1086 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1040 | # CONFIG_CRYPTO_LZO is not set | 1087 | # CONFIG_CRYPTO_LZO is not set |
| 1041 | 1088 | ||
| 1042 | # | 1089 | # |
diff --git a/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig b/arch/powerpc/configs/85xx/mpc85xx_cds_defconfig index f95961c04a20..41209e3a6545 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:13 2009 | 4 | # Wed May 13 17:22:18 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
| 22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
| 27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| @@ -58,6 +59,7 @@ CONFIG_GENERIC_BUG=y | |||
| 58 | CONFIG_DEFAULT_UIMAGE=y | 59 | CONFIG_DEFAULT_UIMAGE=y |
| 59 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 60 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 62 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 62 | 64 | ||
| 63 | # | 65 | # |
| @@ -75,6 +77,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 75 | # CONFIG_BSD_PROCESS_ACCT is not set | 77 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 76 | # CONFIG_TASKSTATS is not set | 78 | # CONFIG_TASKSTATS is not set |
| 77 | # CONFIG_AUDIT is not set | 79 | # CONFIG_AUDIT is not set |
| 80 | |||
| 81 | # | ||
| 82 | # RCU Subsystem | ||
| 83 | # | ||
| 84 | CONFIG_CLASSIC_RCU=y | ||
| 85 | # CONFIG_TREE_RCU is not set | ||
| 86 | # CONFIG_PREEMPT_RCU is not set | ||
| 87 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 88 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 78 | # CONFIG_IKCONFIG is not set | 89 | # CONFIG_IKCONFIG is not set |
| 79 | CONFIG_LOG_BUF_SHIFT=14 | 90 | CONFIG_LOG_BUF_SHIFT=14 |
| 80 | CONFIG_GROUP_SCHED=y | 91 | CONFIG_GROUP_SCHED=y |
| @@ -89,21 +100,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 89 | # CONFIG_NAMESPACES is not set | 100 | # CONFIG_NAMESPACES is not set |
| 90 | CONFIG_BLK_DEV_INITRD=y | 101 | CONFIG_BLK_DEV_INITRD=y |
| 91 | CONFIG_INITRAMFS_SOURCE="" | 102 | CONFIG_INITRAMFS_SOURCE="" |
| 103 | CONFIG_RD_GZIP=y | ||
| 104 | # CONFIG_RD_BZIP2 is not set | ||
| 105 | # CONFIG_RD_LZMA is not set | ||
| 92 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 106 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 93 | CONFIG_SYSCTL=y | 107 | CONFIG_SYSCTL=y |
| 108 | CONFIG_ANON_INODES=y | ||
| 94 | CONFIG_EMBEDDED=y | 109 | CONFIG_EMBEDDED=y |
| 95 | CONFIG_SYSCTL_SYSCALL=y | 110 | CONFIG_SYSCTL_SYSCALL=y |
| 96 | CONFIG_KALLSYMS=y | 111 | CONFIG_KALLSYMS=y |
| 97 | # CONFIG_KALLSYMS_ALL is not set | 112 | # CONFIG_KALLSYMS_ALL is not set |
| 98 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 113 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 114 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 99 | CONFIG_HOTPLUG=y | 115 | CONFIG_HOTPLUG=y |
| 100 | CONFIG_PRINTK=y | 116 | CONFIG_PRINTK=y |
| 101 | CONFIG_BUG=y | 117 | CONFIG_BUG=y |
| 102 | CONFIG_ELF_CORE=y | 118 | CONFIG_ELF_CORE=y |
| 103 | CONFIG_COMPAT_BRK=y | ||
| 104 | CONFIG_BASE_FULL=y | 119 | CONFIG_BASE_FULL=y |
| 105 | CONFIG_FUTEX=y | 120 | CONFIG_FUTEX=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 107 | CONFIG_EPOLL=y | 121 | CONFIG_EPOLL=y |
| 108 | CONFIG_SIGNALFD=y | 122 | CONFIG_SIGNALFD=y |
| 109 | CONFIG_TIMERFD=y | 123 | CONFIG_TIMERFD=y |
| @@ -113,16 +127,19 @@ CONFIG_AIO=y | |||
| 113 | CONFIG_VM_EVENT_COUNTERS=y | 127 | CONFIG_VM_EVENT_COUNTERS=y |
| 114 | CONFIG_PCI_QUIRKS=y | 128 | CONFIG_PCI_QUIRKS=y |
| 115 | CONFIG_SLUB_DEBUG=y | 129 | CONFIG_SLUB_DEBUG=y |
| 130 | CONFIG_COMPAT_BRK=y | ||
| 116 | # CONFIG_SLAB is not set | 131 | # CONFIG_SLAB is not set |
| 117 | CONFIG_SLUB=y | 132 | CONFIG_SLUB=y |
| 118 | # CONFIG_SLOB is not set | 133 | # CONFIG_SLOB is not set |
| 119 | # CONFIG_PROFILING is not set | 134 | # CONFIG_PROFILING is not set |
| 135 | # CONFIG_MARKERS is not set | ||
| 120 | CONFIG_HAVE_OPROFILE=y | 136 | CONFIG_HAVE_OPROFILE=y |
| 121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 137 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 122 | CONFIG_HAVE_IOREMAP_PROT=y | 138 | CONFIG_HAVE_IOREMAP_PROT=y |
| 123 | CONFIG_HAVE_KPROBES=y | 139 | CONFIG_HAVE_KPROBES=y |
| 124 | CONFIG_HAVE_KRETPROBES=y | 140 | CONFIG_HAVE_KRETPROBES=y |
| 125 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 141 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 142 | # CONFIG_SLOW_WORK is not set | ||
| 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 143 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 127 | CONFIG_SLABINFO=y | 144 | CONFIG_SLABINFO=y |
| 128 | CONFIG_RT_MUTEXES=y | 145 | CONFIG_RT_MUTEXES=y |
| @@ -130,7 +147,6 @@ CONFIG_BASE_SMALL=0 | |||
| 130 | # CONFIG_MODULES is not set | 147 | # CONFIG_MODULES is not set |
| 131 | CONFIG_BLOCK=y | 148 | CONFIG_BLOCK=y |
| 132 | # CONFIG_LBD is not set | 149 | # CONFIG_LBD is not set |
| 133 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 134 | # CONFIG_BLK_DEV_BSG is not set | 150 | # CONFIG_BLK_DEV_BSG is not set |
| 135 | # CONFIG_BLK_DEV_INTEGRITY is not set | 151 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 136 | 152 | ||
| @@ -146,11 +162,6 @@ CONFIG_DEFAULT_AS=y | |||
| 146 | # CONFIG_DEFAULT_CFQ is not set | 162 | # CONFIG_DEFAULT_CFQ is not set |
| 147 | # CONFIG_DEFAULT_NOOP is not set | 163 | # CONFIG_DEFAULT_NOOP is not set |
| 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 164 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 149 | CONFIG_CLASSIC_RCU=y | ||
| 150 | # CONFIG_TREE_RCU is not set | ||
| 151 | # CONFIG_PREEMPT_RCU is not set | ||
| 152 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 154 | # CONFIG_FREEZER is not set | 165 | # CONFIG_FREEZER is not set |
| 155 | 166 | ||
| 156 | # | 167 | # |
| @@ -166,6 +177,7 @@ CONFIG_MPC85xx_CDS=y | |||
| 166 | # CONFIG_MPC85xx_MDS is not set | 177 | # CONFIG_MPC85xx_MDS is not set |
| 167 | # CONFIG_MPC8536_DS is not set | 178 | # CONFIG_MPC8536_DS is not set |
| 168 | # CONFIG_MPC85xx_DS is not set | 179 | # CONFIG_MPC85xx_DS is not set |
| 180 | # CONFIG_SOCRATES is not set | ||
| 169 | # CONFIG_KSI8560 is not set | 181 | # CONFIG_KSI8560 is not set |
| 170 | # CONFIG_STX_GP3 is not set | 182 | # CONFIG_STX_GP3 is not set |
| 171 | # CONFIG_TQM8540 is not set | 183 | # CONFIG_TQM8540 is not set |
| @@ -234,9 +246,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 234 | CONFIG_BOUNCE=y | 246 | CONFIG_BOUNCE=y |
| 235 | CONFIG_VIRT_TO_BUS=y | 247 | CONFIG_VIRT_TO_BUS=y |
| 236 | CONFIG_UNEVICTABLE_LRU=y | 248 | CONFIG_UNEVICTABLE_LRU=y |
| 249 | CONFIG_HAVE_MLOCK=y | ||
| 250 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 237 | CONFIG_PPC_4K_PAGES=y | 251 | CONFIG_PPC_4K_PAGES=y |
| 238 | # CONFIG_PPC_16K_PAGES is not set | 252 | # CONFIG_PPC_16K_PAGES is not set |
| 239 | # CONFIG_PPC_64K_PAGES is not set | 253 | # CONFIG_PPC_64K_PAGES is not set |
| 254 | # CONFIG_PPC_256K_PAGES is not set | ||
| 240 | CONFIG_FORCE_MAX_ZONEORDER=11 | 255 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 241 | CONFIG_PROC_DEVICETREE=y | 256 | CONFIG_PROC_DEVICETREE=y |
| 242 | # CONFIG_CMDLINE_BOOL is not set | 257 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -262,6 +277,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 262 | # CONFIG_PCI_LEGACY is not set | 277 | # CONFIG_PCI_LEGACY is not set |
| 263 | # CONFIG_PCI_DEBUG is not set | 278 | # CONFIG_PCI_DEBUG is not set |
| 264 | # CONFIG_PCI_STUB is not set | 279 | # CONFIG_PCI_STUB is not set |
| 280 | # CONFIG_PCI_IOV is not set | ||
| 265 | # CONFIG_PCCARD is not set | 281 | # CONFIG_PCCARD is not set |
| 266 | # CONFIG_HOTPLUG_PCI is not set | 282 | # CONFIG_HOTPLUG_PCI is not set |
| 267 | # CONFIG_HAS_RAPIDIO is not set | 283 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -275,17 +291,17 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 275 | # Default settings for advanced configuration options are used | 291 | # Default settings for advanced configuration options are used |
| 276 | # | 292 | # |
| 277 | CONFIG_LOWMEM_SIZE=0x30000000 | 293 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 294 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 278 | CONFIG_PAGE_OFFSET=0xc0000000 | 295 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 279 | CONFIG_KERNEL_START=0xc0000000 | 296 | CONFIG_KERNEL_START=0xc0000000 |
| 280 | CONFIG_PHYSICAL_START=0x00000000 | 297 | CONFIG_PHYSICAL_START=0x00000000 |
| 281 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 298 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 282 | CONFIG_TASK_SIZE=0xc0000000 | 299 | CONFIG_TASK_SIZE=0xc0000000 |
| 283 | CONFIG_NET=y | 300 | CONFIG_NET=y |
| 284 | 301 | ||
| 285 | # | 302 | # |
| 286 | # Networking options | 303 | # Networking options |
| 287 | # | 304 | # |
| 288 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 289 | CONFIG_PACKET=y | 305 | CONFIG_PACKET=y |
| 290 | # CONFIG_PACKET_MMAP is not set | 306 | # CONFIG_PACKET_MMAP is not set |
| 291 | CONFIG_UNIX=y | 307 | CONFIG_UNIX=y |
| @@ -341,6 +357,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 341 | # CONFIG_LAPB is not set | 357 | # CONFIG_LAPB is not set |
| 342 | # CONFIG_ECONET is not set | 358 | # CONFIG_ECONET is not set |
| 343 | # CONFIG_WAN_ROUTER is not set | 359 | # CONFIG_WAN_ROUTER is not set |
| 360 | # CONFIG_PHONET is not set | ||
| 344 | # CONFIG_NET_SCHED is not set | 361 | # CONFIG_NET_SCHED is not set |
| 345 | # CONFIG_DCB is not set | 362 | # CONFIG_DCB is not set |
| 346 | 363 | ||
| @@ -353,7 +370,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 353 | # CONFIG_IRDA is not set | 370 | # CONFIG_IRDA is not set |
| 354 | # CONFIG_BT is not set | 371 | # CONFIG_BT is not set |
| 355 | # CONFIG_AF_RXRPC is not set | 372 | # CONFIG_AF_RXRPC is not set |
| 356 | # CONFIG_PHONET is not set | ||
| 357 | CONFIG_WIRELESS=y | 373 | CONFIG_WIRELESS=y |
| 358 | # CONFIG_CFG80211 is not set | 374 | # CONFIG_CFG80211 is not set |
| 359 | CONFIG_WIRELESS_OLD_REGULATORY=y | 375 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -402,18 +418,23 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 402 | # CONFIG_BLK_DEV_HD is not set | 418 | # CONFIG_BLK_DEV_HD is not set |
| 403 | CONFIG_MISC_DEVICES=y | 419 | CONFIG_MISC_DEVICES=y |
| 404 | # CONFIG_PHANTOM is not set | 420 | # CONFIG_PHANTOM is not set |
| 405 | # CONFIG_EEPROM_93CX6 is not set | ||
| 406 | # CONFIG_SGI_IOC4 is not set | 421 | # CONFIG_SGI_IOC4 is not set |
| 407 | # CONFIG_TIFM_CORE is not set | 422 | # CONFIG_TIFM_CORE is not set |
| 408 | # CONFIG_ENCLOSURE_SERVICES is not set | 423 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 409 | # CONFIG_HP_ILO is not set | 424 | # CONFIG_HP_ILO is not set |
| 410 | # CONFIG_C2PORT is not set | 425 | # CONFIG_C2PORT is not set |
| 426 | |||
| 427 | # | ||
| 428 | # EEPROM support | ||
| 429 | # | ||
| 430 | # CONFIG_EEPROM_93CX6 is not set | ||
| 411 | CONFIG_HAVE_IDE=y | 431 | CONFIG_HAVE_IDE=y |
| 412 | CONFIG_IDE=y | 432 | CONFIG_IDE=y |
| 413 | 433 | ||
| 414 | # | 434 | # |
| 415 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 435 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 416 | # | 436 | # |
| 437 | CONFIG_IDE_XFER_MODE=y | ||
| 417 | CONFIG_IDE_TIMINGS=y | 438 | CONFIG_IDE_TIMINGS=y |
| 418 | # CONFIG_BLK_DEV_IDE_SATA is not set | 439 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 419 | CONFIG_IDE_GD=y | 440 | CONFIG_IDE_GD=y |
| @@ -488,6 +509,7 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 488 | # CONFIG_I2O is not set | 509 | # CONFIG_I2O is not set |
| 489 | # CONFIG_MACINTOSH_DRIVERS is not set | 510 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 490 | CONFIG_NETDEVICES=y | 511 | CONFIG_NETDEVICES=y |
| 512 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 491 | # CONFIG_DUMMY is not set | 513 | # CONFIG_DUMMY is not set |
| 492 | # CONFIG_BONDING is not set | 514 | # CONFIG_BONDING is not set |
| 493 | # CONFIG_MACVLAN is not set | 515 | # CONFIG_MACVLAN is not set |
| @@ -521,6 +543,8 @@ CONFIG_MII=y | |||
| 521 | # CONFIG_SUNGEM is not set | 543 | # CONFIG_SUNGEM is not set |
| 522 | # CONFIG_CASSINI is not set | 544 | # CONFIG_CASSINI is not set |
| 523 | # CONFIG_NET_VENDOR_3COM is not set | 545 | # CONFIG_NET_VENDOR_3COM is not set |
| 546 | # CONFIG_ETHOC is not set | ||
| 547 | # CONFIG_DNET is not set | ||
| 524 | # CONFIG_NET_TULIP is not set | 548 | # CONFIG_NET_TULIP is not set |
| 525 | # CONFIG_HP100 is not set | 549 | # CONFIG_HP100 is not set |
| 526 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 550 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -540,6 +564,7 @@ CONFIG_E1000=y | |||
| 540 | # CONFIG_E1000E is not set | 564 | # CONFIG_E1000E is not set |
| 541 | # CONFIG_IP1000 is not set | 565 | # CONFIG_IP1000 is not set |
| 542 | # CONFIG_IGB is not set | 566 | # CONFIG_IGB is not set |
| 567 | # CONFIG_IGBVF is not set | ||
| 543 | # CONFIG_NS83820 is not set | 568 | # CONFIG_NS83820 is not set |
| 544 | # CONFIG_HAMACHI is not set | 569 | # CONFIG_HAMACHI is not set |
| 545 | # CONFIG_YELLOWFIN is not set | 570 | # CONFIG_YELLOWFIN is not set |
| @@ -550,10 +575,12 @@ CONFIG_E1000=y | |||
| 550 | # CONFIG_VIA_VELOCITY is not set | 575 | # CONFIG_VIA_VELOCITY is not set |
| 551 | # CONFIG_TIGON3 is not set | 576 | # CONFIG_TIGON3 is not set |
| 552 | # CONFIG_BNX2 is not set | 577 | # CONFIG_BNX2 is not set |
| 578 | CONFIG_FSL_PQ_MDIO=y | ||
| 553 | CONFIG_GIANFAR=y | 579 | CONFIG_GIANFAR=y |
| 554 | # CONFIG_QLA3XXX is not set | 580 | # CONFIG_QLA3XXX is not set |
| 555 | # CONFIG_ATL1 is not set | 581 | # CONFIG_ATL1 is not set |
| 556 | # CONFIG_ATL1E is not set | 582 | # CONFIG_ATL1E is not set |
| 583 | # CONFIG_ATL1C is not set | ||
| 557 | # CONFIG_JME is not set | 584 | # CONFIG_JME is not set |
| 558 | CONFIG_NETDEV_10000=y | 585 | CONFIG_NETDEV_10000=y |
| 559 | # CONFIG_CHELSIO_T1 is not set | 586 | # CONFIG_CHELSIO_T1 is not set |
| @@ -563,6 +590,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 563 | # CONFIG_IXGBE is not set | 590 | # CONFIG_IXGBE is not set |
| 564 | # CONFIG_IXGB is not set | 591 | # CONFIG_IXGB is not set |
| 565 | # CONFIG_S2IO is not set | 592 | # CONFIG_S2IO is not set |
| 593 | # CONFIG_VXGE is not set | ||
| 566 | # CONFIG_MYRI10GE is not set | 594 | # CONFIG_MYRI10GE is not set |
| 567 | # CONFIG_NETXEN_NIC is not set | 595 | # CONFIG_NETXEN_NIC is not set |
| 568 | # CONFIG_NIU is not set | 596 | # CONFIG_NIU is not set |
| @@ -572,6 +600,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 572 | # CONFIG_BNX2X is not set | 600 | # CONFIG_BNX2X is not set |
| 573 | # CONFIG_QLGE is not set | 601 | # CONFIG_QLGE is not set |
| 574 | # CONFIG_SFC is not set | 602 | # CONFIG_SFC is not set |
| 603 | # CONFIG_BE2NET is not set | ||
| 575 | # CONFIG_TR is not set | 604 | # CONFIG_TR is not set |
| 576 | 605 | ||
| 577 | # | 606 | # |
| @@ -579,7 +608,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 579 | # | 608 | # |
| 580 | # CONFIG_WLAN_PRE80211 is not set | 609 | # CONFIG_WLAN_PRE80211 is not set |
| 581 | # CONFIG_WLAN_80211 is not set | 610 | # CONFIG_WLAN_80211 is not set |
| 582 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 583 | 611 | ||
| 584 | # | 612 | # |
| 585 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 613 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -750,7 +778,6 @@ CONFIG_HID=y | |||
| 750 | # | 778 | # |
| 751 | # Special HID drivers | 779 | # Special HID drivers |
| 752 | # | 780 | # |
| 753 | CONFIG_HID_COMPAT=y | ||
| 754 | CONFIG_USB_SUPPORT=y | 781 | CONFIG_USB_SUPPORT=y |
| 755 | CONFIG_USB_ARCH_HAS_HCD=y | 782 | CONFIG_USB_ARCH_HAS_HCD=y |
| 756 | CONFIG_USB_ARCH_HAS_OHCI=y | 783 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -764,7 +791,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 764 | # | 791 | # |
| 765 | 792 | ||
| 766 | # | 793 | # |
| 767 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 794 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 768 | # | 795 | # |
| 769 | # CONFIG_USB_GADGET is not set | 796 | # CONFIG_USB_GADGET is not set |
| 770 | 797 | ||
| @@ -780,6 +807,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 780 | # CONFIG_EDAC is not set | 807 | # CONFIG_EDAC is not set |
| 781 | # CONFIG_RTC_CLASS is not set | 808 | # CONFIG_RTC_CLASS is not set |
| 782 | # CONFIG_DMADEVICES is not set | 809 | # CONFIG_DMADEVICES is not set |
| 810 | # CONFIG_AUXDISPLAY is not set | ||
| 783 | # CONFIG_UIO is not set | 811 | # CONFIG_UIO is not set |
| 784 | # CONFIG_STAGING is not set | 812 | # CONFIG_STAGING is not set |
| 785 | 813 | ||
| @@ -790,6 +818,7 @@ CONFIG_EXT2_FS=y | |||
| 790 | # CONFIG_EXT2_FS_XATTR is not set | 818 | # CONFIG_EXT2_FS_XATTR is not set |
| 791 | # CONFIG_EXT2_FS_XIP is not set | 819 | # CONFIG_EXT2_FS_XIP is not set |
| 792 | CONFIG_EXT3_FS=y | 820 | CONFIG_EXT3_FS=y |
| 821 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 793 | CONFIG_EXT3_FS_XATTR=y | 822 | CONFIG_EXT3_FS_XATTR=y |
| 794 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 823 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 795 | # CONFIG_EXT3_FS_SECURITY is not set | 824 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -812,6 +841,11 @@ CONFIG_INOTIFY_USER=y | |||
| 812 | # CONFIG_FUSE_FS is not set | 841 | # CONFIG_FUSE_FS is not set |
| 813 | 842 | ||
| 814 | # | 843 | # |
| 844 | # Caches | ||
| 845 | # | ||
| 846 | # CONFIG_FSCACHE is not set | ||
| 847 | |||
| 848 | # | ||
| 815 | # CD-ROM/DVD Filesystems | 849 | # CD-ROM/DVD Filesystems |
| 816 | # | 850 | # |
| 817 | # CONFIG_ISO9660_FS is not set | 851 | # CONFIG_ISO9660_FS is not set |
| @@ -854,6 +888,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 854 | # CONFIG_ROMFS_FS is not set | 888 | # CONFIG_ROMFS_FS is not set |
| 855 | # CONFIG_SYSV_FS is not set | 889 | # CONFIG_SYSV_FS is not set |
| 856 | # CONFIG_UFS_FS is not set | 890 | # CONFIG_UFS_FS is not set |
| 891 | # CONFIG_NILFS2_FS is not set | ||
| 857 | CONFIG_NETWORK_FILESYSTEMS=y | 892 | CONFIG_NETWORK_FILESYSTEMS=y |
| 858 | CONFIG_NFS_FS=y | 893 | CONFIG_NFS_FS=y |
| 859 | # CONFIG_NFS_V3 is not set | 894 | # CONFIG_NFS_V3 is not set |
| @@ -863,7 +898,6 @@ CONFIG_ROOT_NFS=y | |||
| 863 | CONFIG_LOCKD=y | 898 | CONFIG_LOCKD=y |
| 864 | CONFIG_NFS_COMMON=y | 899 | CONFIG_NFS_COMMON=y |
| 865 | CONFIG_SUNRPC=y | 900 | CONFIG_SUNRPC=y |
| 866 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 867 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 901 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 868 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 902 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 869 | # CONFIG_SMB_FS is not set | 903 | # CONFIG_SMB_FS is not set |
| @@ -891,6 +925,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 891 | # CONFIG_SYSV68_PARTITION is not set | 925 | # CONFIG_SYSV68_PARTITION is not set |
| 892 | # CONFIG_NLS is not set | 926 | # CONFIG_NLS is not set |
| 893 | # CONFIG_DLM is not set | 927 | # CONFIG_DLM is not set |
| 928 | # CONFIG_BINARY_PRINTF is not set | ||
| 894 | 929 | ||
| 895 | # | 930 | # |
| 896 | # Library routines | 931 | # Library routines |
| @@ -904,11 +939,13 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 904 | CONFIG_CRC32=y | 939 | CONFIG_CRC32=y |
| 905 | # CONFIG_CRC7 is not set | 940 | # CONFIG_CRC7 is not set |
| 906 | # CONFIG_LIBCRC32C is not set | 941 | # CONFIG_LIBCRC32C is not set |
| 907 | CONFIG_PLIST=y | 942 | CONFIG_ZLIB_INFLATE=y |
| 943 | CONFIG_DECOMPRESS_GZIP=y | ||
| 908 | CONFIG_HAS_IOMEM=y | 944 | CONFIG_HAS_IOMEM=y |
| 909 | CONFIG_HAS_IOPORT=y | 945 | CONFIG_HAS_IOPORT=y |
| 910 | CONFIG_HAS_DMA=y | 946 | CONFIG_HAS_DMA=y |
| 911 | CONFIG_HAVE_LMB=y | 947 | CONFIG_HAVE_LMB=y |
| 948 | CONFIG_NLATTR=y | ||
| 912 | 949 | ||
| 913 | # | 950 | # |
| 914 | # Kernel hacking | 951 | # Kernel hacking |
| @@ -926,6 +963,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 926 | CONFIG_DETECT_SOFTLOCKUP=y | 963 | CONFIG_DETECT_SOFTLOCKUP=y |
| 927 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 964 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 928 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 965 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 966 | CONFIG_DETECT_HUNG_TASK=y | ||
| 967 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 968 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 929 | CONFIG_SCHED_DEBUG=y | 969 | CONFIG_SCHED_DEBUG=y |
| 930 | # CONFIG_SCHEDSTATS is not set | 970 | # CONFIG_SCHEDSTATS is not set |
| 931 | # CONFIG_TIMER_STATS is not set | 971 | # CONFIG_TIMER_STATS is not set |
| @@ -955,9 +995,12 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 955 | # CONFIG_FAULT_INJECTION is not set | 995 | # CONFIG_FAULT_INJECTION is not set |
| 956 | # CONFIG_LATENCYTOP is not set | 996 | # CONFIG_LATENCYTOP is not set |
| 957 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 997 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 998 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 958 | CONFIG_HAVE_FUNCTION_TRACER=y | 999 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1000 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 959 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1001 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 960 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1002 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1003 | CONFIG_TRACING_SUPPORT=y | ||
| 961 | 1004 | ||
| 962 | # | 1005 | # |
| 963 | # Tracers | 1006 | # Tracers |
| @@ -965,17 +1008,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 965 | # CONFIG_FUNCTION_TRACER is not set | 1008 | # CONFIG_FUNCTION_TRACER is not set |
| 966 | # CONFIG_SCHED_TRACER is not set | 1009 | # CONFIG_SCHED_TRACER is not set |
| 967 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1010 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1011 | # CONFIG_EVENT_TRACER is not set | ||
| 968 | # CONFIG_BOOT_TRACER is not set | 1012 | # CONFIG_BOOT_TRACER is not set |
| 969 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1013 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 970 | # CONFIG_STACK_TRACER is not set | 1014 | # CONFIG_STACK_TRACER is not set |
| 971 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1015 | # CONFIG_KMEMTRACE is not set |
| 1016 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1017 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 972 | # CONFIG_SAMPLES is not set | 1018 | # CONFIG_SAMPLES is not set |
| 973 | CONFIG_HAVE_ARCH_KGDB=y | 1019 | CONFIG_HAVE_ARCH_KGDB=y |
| 974 | # CONFIG_KGDB is not set | 1020 | # CONFIG_KGDB is not set |
| 975 | CONFIG_PRINT_STACK_DEPTH=64 | 1021 | CONFIG_PRINT_STACK_DEPTH=64 |
| 976 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1022 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 977 | # CONFIG_DEBUG_STACK_USAGE is not set | 1023 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 978 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 979 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1024 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 980 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1025 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 981 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1026 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1068,6 +1113,7 @@ CONFIG_CRYPTO=y | |||
| 1068 | # Compression | 1113 | # Compression |
| 1069 | # | 1114 | # |
| 1070 | # CONFIG_CRYPTO_DEFLATE is not set | 1115 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1116 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1071 | # CONFIG_CRYPTO_LZO is not set | 1117 | # CONFIG_CRYPTO_LZO is not set |
| 1072 | 1118 | ||
| 1073 | # | 1119 | # |
diff --git a/arch/powerpc/configs/85xx/sbc8548_defconfig b/arch/powerpc/configs/85xx/sbc8548_defconfig index e68e80987aa9..6c36c9c7abfd 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:15 2009 | 4 | # Wed May 13 17:22:19 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
| 22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
| 27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| @@ -58,6 +59,7 @@ CONFIG_GENERIC_BUG=y | |||
| 58 | CONFIG_DEFAULT_UIMAGE=y | 59 | CONFIG_DEFAULT_UIMAGE=y |
| 59 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 60 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 62 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 62 | 64 | ||
| 63 | # | 65 | # |
| @@ -75,6 +77,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 75 | # CONFIG_BSD_PROCESS_ACCT is not set | 77 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 76 | # CONFIG_TASKSTATS is not set | 78 | # CONFIG_TASKSTATS is not set |
| 77 | # CONFIG_AUDIT is not set | 79 | # CONFIG_AUDIT is not set |
| 80 | |||
| 81 | # | ||
| 82 | # RCU Subsystem | ||
| 83 | # | ||
| 84 | CONFIG_CLASSIC_RCU=y | ||
| 85 | # CONFIG_TREE_RCU is not set | ||
| 86 | # CONFIG_PREEMPT_RCU is not set | ||
| 87 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 88 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 78 | # CONFIG_IKCONFIG is not set | 89 | # CONFIG_IKCONFIG is not set |
| 79 | CONFIG_LOG_BUF_SHIFT=14 | 90 | CONFIG_LOG_BUF_SHIFT=14 |
| 80 | CONFIG_GROUP_SCHED=y | 91 | CONFIG_GROUP_SCHED=y |
| @@ -89,20 +100,23 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 89 | # CONFIG_NAMESPACES is not set | 100 | # CONFIG_NAMESPACES is not set |
| 90 | CONFIG_BLK_DEV_INITRD=y | 101 | CONFIG_BLK_DEV_INITRD=y |
| 91 | CONFIG_INITRAMFS_SOURCE="" | 102 | CONFIG_INITRAMFS_SOURCE="" |
| 103 | CONFIG_RD_GZIP=y | ||
| 104 | # CONFIG_RD_BZIP2 is not set | ||
| 105 | # CONFIG_RD_LZMA is not set | ||
| 92 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 106 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 93 | CONFIG_SYSCTL=y | 107 | CONFIG_SYSCTL=y |
| 108 | CONFIG_ANON_INODES=y | ||
| 94 | CONFIG_EMBEDDED=y | 109 | CONFIG_EMBEDDED=y |
| 95 | CONFIG_SYSCTL_SYSCALL=y | 110 | CONFIG_SYSCTL_SYSCALL=y |
| 96 | CONFIG_KALLSYMS=y | 111 | CONFIG_KALLSYMS=y |
| 97 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 112 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 113 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 98 | CONFIG_HOTPLUG=y | 114 | CONFIG_HOTPLUG=y |
| 99 | CONFIG_PRINTK=y | 115 | CONFIG_PRINTK=y |
| 100 | CONFIG_BUG=y | 116 | CONFIG_BUG=y |
| 101 | CONFIG_ELF_CORE=y | 117 | CONFIG_ELF_CORE=y |
| 102 | CONFIG_COMPAT_BRK=y | ||
| 103 | CONFIG_BASE_FULL=y | 118 | CONFIG_BASE_FULL=y |
| 104 | CONFIG_FUTEX=y | 119 | CONFIG_FUTEX=y |
| 105 | CONFIG_ANON_INODES=y | ||
| 106 | CONFIG_EPOLL=y | 120 | CONFIG_EPOLL=y |
| 107 | CONFIG_SIGNALFD=y | 121 | CONFIG_SIGNALFD=y |
| 108 | CONFIG_TIMERFD=y | 122 | CONFIG_TIMERFD=y |
| @@ -111,16 +125,19 @@ CONFIG_SHMEM=y | |||
| 111 | CONFIG_AIO=y | 125 | CONFIG_AIO=y |
| 112 | CONFIG_VM_EVENT_COUNTERS=y | 126 | CONFIG_VM_EVENT_COUNTERS=y |
| 113 | CONFIG_PCI_QUIRKS=y | 127 | CONFIG_PCI_QUIRKS=y |
| 128 | CONFIG_COMPAT_BRK=y | ||
| 114 | CONFIG_SLAB=y | 129 | CONFIG_SLAB=y |
| 115 | # CONFIG_SLUB is not set | 130 | # CONFIG_SLUB is not set |
| 116 | # CONFIG_SLOB is not set | 131 | # CONFIG_SLOB is not set |
| 117 | # CONFIG_PROFILING is not set | 132 | # CONFIG_PROFILING is not set |
| 133 | # CONFIG_MARKERS is not set | ||
| 118 | CONFIG_HAVE_OPROFILE=y | 134 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 135 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | 136 | CONFIG_HAVE_IOREMAP_PROT=y |
| 121 | CONFIG_HAVE_KPROBES=y | 137 | CONFIG_HAVE_KPROBES=y |
| 122 | CONFIG_HAVE_KRETPROBES=y | 138 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 139 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 140 | # CONFIG_SLOW_WORK is not set | ||
| 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 141 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 125 | CONFIG_SLABINFO=y | 142 | CONFIG_SLABINFO=y |
| 126 | CONFIG_RT_MUTEXES=y | 143 | CONFIG_RT_MUTEXES=y |
| @@ -128,7 +145,6 @@ CONFIG_BASE_SMALL=0 | |||
| 128 | # CONFIG_MODULES is not set | 145 | # CONFIG_MODULES is not set |
| 129 | CONFIG_BLOCK=y | 146 | CONFIG_BLOCK=y |
| 130 | # CONFIG_LBD is not set | 147 | # CONFIG_LBD is not set |
| 131 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 132 | # CONFIG_BLK_DEV_BSG is not set | 148 | # CONFIG_BLK_DEV_BSG is not set |
| 133 | # CONFIG_BLK_DEV_INTEGRITY is not set | 149 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 134 | 150 | ||
| @@ -144,11 +160,6 @@ CONFIG_DEFAULT_AS=y | |||
| 144 | # CONFIG_DEFAULT_CFQ is not set | 160 | # CONFIG_DEFAULT_CFQ is not set |
| 145 | # CONFIG_DEFAULT_NOOP is not set | 161 | # CONFIG_DEFAULT_NOOP is not set |
| 146 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 162 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 147 | CONFIG_CLASSIC_RCU=y | ||
| 148 | # CONFIG_TREE_RCU is not set | ||
| 149 | # CONFIG_PREEMPT_RCU is not set | ||
| 150 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 151 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 152 | # CONFIG_FREEZER is not set | 163 | # CONFIG_FREEZER is not set |
| 153 | 164 | ||
| 154 | # | 165 | # |
| @@ -164,6 +175,7 @@ CONFIG_MPC85xx=y | |||
| 164 | # CONFIG_MPC85xx_MDS is not set | 175 | # CONFIG_MPC85xx_MDS is not set |
| 165 | # CONFIG_MPC8536_DS is not set | 176 | # CONFIG_MPC8536_DS is not set |
| 166 | # CONFIG_MPC85xx_DS is not set | 177 | # CONFIG_MPC85xx_DS is not set |
| 178 | # CONFIG_SOCRATES is not set | ||
| 167 | # CONFIG_KSI8560 is not set | 179 | # CONFIG_KSI8560 is not set |
| 168 | # CONFIG_STX_GP3 is not set | 180 | # CONFIG_STX_GP3 is not set |
| 169 | # CONFIG_TQM8540 is not set | 181 | # CONFIG_TQM8540 is not set |
| @@ -231,9 +243,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 231 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
| 232 | CONFIG_VIRT_TO_BUS=y | 244 | CONFIG_VIRT_TO_BUS=y |
| 233 | CONFIG_UNEVICTABLE_LRU=y | 245 | CONFIG_UNEVICTABLE_LRU=y |
| 246 | CONFIG_HAVE_MLOCK=y | ||
| 247 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 234 | CONFIG_PPC_4K_PAGES=y | 248 | CONFIG_PPC_4K_PAGES=y |
| 235 | # CONFIG_PPC_16K_PAGES is not set | 249 | # CONFIG_PPC_16K_PAGES is not set |
| 236 | # CONFIG_PPC_64K_PAGES is not set | 250 | # CONFIG_PPC_64K_PAGES is not set |
| 251 | # CONFIG_PPC_256K_PAGES is not set | ||
| 237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 252 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 238 | CONFIG_PROC_DEVICETREE=y | 253 | CONFIG_PROC_DEVICETREE=y |
| 239 | # CONFIG_CMDLINE_BOOL is not set | 254 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -258,6 +273,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 258 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
| 259 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
| 260 | # CONFIG_PCI_STUB is not set | 275 | # CONFIG_PCI_STUB is not set |
| 276 | # CONFIG_PCI_IOV is not set | ||
| 261 | # CONFIG_PCCARD is not set | 277 | # CONFIG_PCCARD is not set |
| 262 | # CONFIG_HOTPLUG_PCI is not set | 278 | # CONFIG_HOTPLUG_PCI is not set |
| 263 | # CONFIG_HAS_RAPIDIO is not set | 279 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -271,17 +287,17 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 271 | # Default settings for advanced configuration options are used | 287 | # Default settings for advanced configuration options are used |
| 272 | # | 288 | # |
| 273 | CONFIG_LOWMEM_SIZE=0x30000000 | 289 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 290 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 274 | CONFIG_PAGE_OFFSET=0xc0000000 | 291 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 275 | CONFIG_KERNEL_START=0xc0000000 | 292 | CONFIG_KERNEL_START=0xc0000000 |
| 276 | CONFIG_PHYSICAL_START=0x00000000 | 293 | CONFIG_PHYSICAL_START=0x00000000 |
| 277 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 294 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 278 | CONFIG_TASK_SIZE=0xc0000000 | 295 | CONFIG_TASK_SIZE=0xc0000000 |
| 279 | CONFIG_NET=y | 296 | CONFIG_NET=y |
| 280 | 297 | ||
| 281 | # | 298 | # |
| 282 | # Networking options | 299 | # Networking options |
| 283 | # | 300 | # |
| 284 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 285 | CONFIG_PACKET=y | 301 | CONFIG_PACKET=y |
| 286 | # CONFIG_PACKET_MMAP is not set | 302 | # CONFIG_PACKET_MMAP is not set |
| 287 | CONFIG_UNIX=y | 303 | CONFIG_UNIX=y |
| @@ -337,6 +353,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 337 | # CONFIG_LAPB is not set | 353 | # CONFIG_LAPB is not set |
| 338 | # CONFIG_ECONET is not set | 354 | # CONFIG_ECONET is not set |
| 339 | # CONFIG_WAN_ROUTER is not set | 355 | # CONFIG_WAN_ROUTER is not set |
| 356 | # CONFIG_PHONET is not set | ||
| 340 | # CONFIG_NET_SCHED is not set | 357 | # CONFIG_NET_SCHED is not set |
| 341 | # CONFIG_DCB is not set | 358 | # CONFIG_DCB is not set |
| 342 | 359 | ||
| @@ -349,7 +366,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 349 | # CONFIG_IRDA is not set | 366 | # CONFIG_IRDA is not set |
| 350 | # CONFIG_BT is not set | 367 | # CONFIG_BT is not set |
| 351 | # CONFIG_AF_RXRPC is not set | 368 | # CONFIG_AF_RXRPC is not set |
| 352 | # CONFIG_PHONET is not set | ||
| 353 | CONFIG_WIRELESS=y | 369 | CONFIG_WIRELESS=y |
| 354 | # CONFIG_CFG80211 is not set | 370 | # CONFIG_CFG80211 is not set |
| 355 | CONFIG_WIRELESS_OLD_REGULATORY=y | 371 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -396,12 +412,16 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 396 | # CONFIG_BLK_DEV_HD is not set | 412 | # CONFIG_BLK_DEV_HD is not set |
| 397 | CONFIG_MISC_DEVICES=y | 413 | CONFIG_MISC_DEVICES=y |
| 398 | # CONFIG_PHANTOM is not set | 414 | # CONFIG_PHANTOM is not set |
| 399 | # CONFIG_EEPROM_93CX6 is not set | ||
| 400 | # CONFIG_SGI_IOC4 is not set | 415 | # CONFIG_SGI_IOC4 is not set |
| 401 | # CONFIG_TIFM_CORE is not set | 416 | # CONFIG_TIFM_CORE is not set |
| 402 | # CONFIG_ENCLOSURE_SERVICES is not set | 417 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 403 | # CONFIG_HP_ILO is not set | 418 | # CONFIG_HP_ILO is not set |
| 404 | # CONFIG_C2PORT is not set | 419 | # CONFIG_C2PORT is not set |
| 420 | |||
| 421 | # | ||
| 422 | # EEPROM support | ||
| 423 | # | ||
| 424 | # CONFIG_EEPROM_93CX6 is not set | ||
| 405 | CONFIG_HAVE_IDE=y | 425 | CONFIG_HAVE_IDE=y |
| 406 | # CONFIG_IDE is not set | 426 | # CONFIG_IDE is not set |
| 407 | 427 | ||
| @@ -428,6 +448,7 @@ CONFIG_HAVE_IDE=y | |||
| 428 | # CONFIG_I2O is not set | 448 | # CONFIG_I2O is not set |
| 429 | # CONFIG_MACINTOSH_DRIVERS is not set | 449 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 430 | CONFIG_NETDEVICES=y | 450 | CONFIG_NETDEVICES=y |
| 451 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 431 | # CONFIG_DUMMY is not set | 452 | # CONFIG_DUMMY is not set |
| 432 | # CONFIG_BONDING is not set | 453 | # CONFIG_BONDING is not set |
| 433 | # CONFIG_MACVLAN is not set | 454 | # CONFIG_MACVLAN is not set |
| @@ -461,6 +482,8 @@ CONFIG_MII=y | |||
| 461 | # CONFIG_SUNGEM is not set | 482 | # CONFIG_SUNGEM is not set |
| 462 | # CONFIG_CASSINI is not set | 483 | # CONFIG_CASSINI is not set |
| 463 | # CONFIG_NET_VENDOR_3COM is not set | 484 | # CONFIG_NET_VENDOR_3COM is not set |
| 485 | # CONFIG_ETHOC is not set | ||
| 486 | # CONFIG_DNET is not set | ||
| 464 | # CONFIG_NET_TULIP is not set | 487 | # CONFIG_NET_TULIP is not set |
| 465 | # CONFIG_HP100 is not set | 488 | # CONFIG_HP100 is not set |
| 466 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 489 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -480,6 +503,7 @@ CONFIG_NETDEV_1000=y | |||
| 480 | # CONFIG_E1000E is not set | 503 | # CONFIG_E1000E is not set |
| 481 | # CONFIG_IP1000 is not set | 504 | # CONFIG_IP1000 is not set |
| 482 | # CONFIG_IGB is not set | 505 | # CONFIG_IGB is not set |
| 506 | # CONFIG_IGBVF is not set | ||
| 483 | # CONFIG_NS83820 is not set | 507 | # CONFIG_NS83820 is not set |
| 484 | # CONFIG_HAMACHI is not set | 508 | # CONFIG_HAMACHI is not set |
| 485 | # CONFIG_YELLOWFIN is not set | 509 | # CONFIG_YELLOWFIN is not set |
| @@ -490,10 +514,12 @@ CONFIG_NETDEV_1000=y | |||
| 490 | # CONFIG_VIA_VELOCITY is not set | 514 | # CONFIG_VIA_VELOCITY is not set |
| 491 | # CONFIG_TIGON3 is not set | 515 | # CONFIG_TIGON3 is not set |
| 492 | # CONFIG_BNX2 is not set | 516 | # CONFIG_BNX2 is not set |
| 517 | CONFIG_FSL_PQ_MDIO=y | ||
| 493 | CONFIG_GIANFAR=y | 518 | CONFIG_GIANFAR=y |
| 494 | # CONFIG_QLA3XXX is not set | 519 | # CONFIG_QLA3XXX is not set |
| 495 | # CONFIG_ATL1 is not set | 520 | # CONFIG_ATL1 is not set |
| 496 | # CONFIG_ATL1E is not set | 521 | # CONFIG_ATL1E is not set |
| 522 | # CONFIG_ATL1C is not set | ||
| 497 | # CONFIG_JME is not set | 523 | # CONFIG_JME is not set |
| 498 | CONFIG_NETDEV_10000=y | 524 | CONFIG_NETDEV_10000=y |
| 499 | # CONFIG_CHELSIO_T1 is not set | 525 | # CONFIG_CHELSIO_T1 is not set |
| @@ -503,6 +529,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 503 | # CONFIG_IXGBE is not set | 529 | # CONFIG_IXGBE is not set |
| 504 | # CONFIG_IXGB is not set | 530 | # CONFIG_IXGB is not set |
| 505 | # CONFIG_S2IO is not set | 531 | # CONFIG_S2IO is not set |
| 532 | # CONFIG_VXGE is not set | ||
| 506 | # CONFIG_MYRI10GE is not set | 533 | # CONFIG_MYRI10GE is not set |
| 507 | # CONFIG_NETXEN_NIC is not set | 534 | # CONFIG_NETXEN_NIC is not set |
| 508 | # CONFIG_NIU is not set | 535 | # CONFIG_NIU is not set |
| @@ -512,6 +539,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 512 | # CONFIG_BNX2X is not set | 539 | # CONFIG_BNX2X is not set |
| 513 | # CONFIG_QLGE is not set | 540 | # CONFIG_QLGE is not set |
| 514 | # CONFIG_SFC is not set | 541 | # CONFIG_SFC is not set |
| 542 | # CONFIG_BE2NET is not set | ||
| 515 | # CONFIG_TR is not set | 543 | # CONFIG_TR is not set |
| 516 | 544 | ||
| 517 | # | 545 | # |
| @@ -519,7 +547,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 519 | # | 547 | # |
| 520 | # CONFIG_WLAN_PRE80211 is not set | 548 | # CONFIG_WLAN_PRE80211 is not set |
| 521 | # CONFIG_WLAN_80211 is not set | 549 | # CONFIG_WLAN_80211 is not set |
| 522 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 523 | 550 | ||
| 524 | # | 551 | # |
| 525 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 552 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -692,6 +719,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 692 | # CONFIG_EDAC is not set | 719 | # CONFIG_EDAC is not set |
| 693 | # CONFIG_RTC_CLASS is not set | 720 | # CONFIG_RTC_CLASS is not set |
| 694 | # CONFIG_DMADEVICES is not set | 721 | # CONFIG_DMADEVICES is not set |
| 722 | # CONFIG_AUXDISPLAY is not set | ||
| 695 | # CONFIG_UIO is not set | 723 | # CONFIG_UIO is not set |
| 696 | # CONFIG_STAGING is not set | 724 | # CONFIG_STAGING is not set |
| 697 | 725 | ||
| @@ -717,6 +745,11 @@ CONFIG_INOTIFY_USER=y | |||
| 717 | # CONFIG_FUSE_FS is not set | 745 | # CONFIG_FUSE_FS is not set |
| 718 | 746 | ||
| 719 | # | 747 | # |
| 748 | # Caches | ||
| 749 | # | ||
| 750 | # CONFIG_FSCACHE is not set | ||
| 751 | |||
| 752 | # | ||
| 720 | # CD-ROM/DVD Filesystems | 753 | # CD-ROM/DVD Filesystems |
| 721 | # | 754 | # |
| 722 | # CONFIG_ISO9660_FS is not set | 755 | # CONFIG_ISO9660_FS is not set |
| @@ -759,6 +792,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 759 | # CONFIG_ROMFS_FS is not set | 792 | # CONFIG_ROMFS_FS is not set |
| 760 | # CONFIG_SYSV_FS is not set | 793 | # CONFIG_SYSV_FS is not set |
| 761 | # CONFIG_UFS_FS is not set | 794 | # CONFIG_UFS_FS is not set |
| 795 | # CONFIG_NILFS2_FS is not set | ||
| 762 | CONFIG_NETWORK_FILESYSTEMS=y | 796 | CONFIG_NETWORK_FILESYSTEMS=y |
| 763 | CONFIG_NFS_FS=y | 797 | CONFIG_NFS_FS=y |
| 764 | # CONFIG_NFS_V3 is not set | 798 | # CONFIG_NFS_V3 is not set |
| @@ -768,7 +802,6 @@ CONFIG_ROOT_NFS=y | |||
| 768 | CONFIG_LOCKD=y | 802 | CONFIG_LOCKD=y |
| 769 | CONFIG_NFS_COMMON=y | 803 | CONFIG_NFS_COMMON=y |
| 770 | CONFIG_SUNRPC=y | 804 | CONFIG_SUNRPC=y |
| 771 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 772 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 805 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 773 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 806 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 774 | # CONFIG_SMB_FS is not set | 807 | # CONFIG_SMB_FS is not set |
| @@ -784,6 +817,7 @@ CONFIG_SUNRPC=y | |||
| 784 | CONFIG_MSDOS_PARTITION=y | 817 | CONFIG_MSDOS_PARTITION=y |
| 785 | # CONFIG_NLS is not set | 818 | # CONFIG_NLS is not set |
| 786 | # CONFIG_DLM is not set | 819 | # CONFIG_DLM is not set |
| 820 | # CONFIG_BINARY_PRINTF is not set | ||
| 787 | 821 | ||
| 788 | # | 822 | # |
| 789 | # Library routines | 823 | # Library routines |
| @@ -797,11 +831,13 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 797 | CONFIG_CRC32=y | 831 | CONFIG_CRC32=y |
| 798 | # CONFIG_CRC7 is not set | 832 | # CONFIG_CRC7 is not set |
| 799 | # CONFIG_LIBCRC32C is not set | 833 | # CONFIG_LIBCRC32C is not set |
| 800 | CONFIG_PLIST=y | 834 | CONFIG_ZLIB_INFLATE=y |
| 835 | CONFIG_DECOMPRESS_GZIP=y | ||
| 801 | CONFIG_HAS_IOMEM=y | 836 | CONFIG_HAS_IOMEM=y |
| 802 | CONFIG_HAS_IOPORT=y | 837 | CONFIG_HAS_IOPORT=y |
| 803 | CONFIG_HAS_DMA=y | 838 | CONFIG_HAS_DMA=y |
| 804 | CONFIG_HAVE_LMB=y | 839 | CONFIG_HAVE_LMB=y |
| 840 | CONFIG_NLATTR=y | ||
| 805 | 841 | ||
| 806 | # | 842 | # |
| 807 | # Kernel hacking | 843 | # Kernel hacking |
| @@ -821,13 +857,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 821 | # CONFIG_LATENCYTOP is not set | 857 | # CONFIG_LATENCYTOP is not set |
| 822 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 858 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 823 | CONFIG_HAVE_FUNCTION_TRACER=y | 859 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 860 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 824 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 861 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 825 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 862 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 863 | CONFIG_TRACING_SUPPORT=y | ||
| 826 | 864 | ||
| 827 | # | 865 | # |
| 828 | # Tracers | 866 | # Tracers |
| 829 | # | 867 | # |
| 830 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 868 | # CONFIG_FUNCTION_TRACER is not set |
| 869 | # CONFIG_SCHED_TRACER is not set | ||
| 870 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 871 | # CONFIG_EVENT_TRACER is not set | ||
| 872 | # CONFIG_BOOT_TRACER is not set | ||
| 873 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 874 | # CONFIG_STACK_TRACER is not set | ||
| 875 | # CONFIG_KMEMTRACE is not set | ||
| 876 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 877 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 831 | # CONFIG_SAMPLES is not set | 878 | # CONFIG_SAMPLES is not set |
| 832 | CONFIG_HAVE_ARCH_KGDB=y | 879 | CONFIG_HAVE_ARCH_KGDB=y |
| 833 | CONFIG_PRINT_STACK_DEPTH=64 | 880 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -918,6 +965,7 @@ CONFIG_CRYPTO=y | |||
| 918 | # Compression | 965 | # Compression |
| 919 | # | 966 | # |
| 920 | # CONFIG_CRYPTO_DEFLATE is not set | 967 | # CONFIG_CRYPTO_DEFLATE is not set |
| 968 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 921 | # CONFIG_CRYPTO_LZO is not set | 969 | # CONFIG_CRYPTO_LZO is not set |
| 922 | 970 | ||
| 923 | # | 971 | # |
diff --git a/arch/powerpc/configs/85xx/sbc8560_defconfig b/arch/powerpc/configs/85xx/sbc8560_defconfig index b1c766ef7e2e..4aaf1a6bdc7d 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:17 2009 | 4 | # Wed May 13 17:22:20 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
| 22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
| 27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| @@ -58,6 +59,7 @@ CONFIG_GENERIC_BUG=y | |||
| 58 | CONFIG_DEFAULT_UIMAGE=y | 59 | CONFIG_DEFAULT_UIMAGE=y |
| 59 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 60 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 62 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 62 | 64 | ||
| 63 | # | 65 | # |
| @@ -75,6 +77,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 75 | # CONFIG_BSD_PROCESS_ACCT is not set | 77 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 76 | # CONFIG_TASKSTATS is not set | 78 | # CONFIG_TASKSTATS is not set |
| 77 | # CONFIG_AUDIT is not set | 79 | # CONFIG_AUDIT is not set |
| 80 | |||
| 81 | # | ||
| 82 | # RCU Subsystem | ||
| 83 | # | ||
| 84 | CONFIG_CLASSIC_RCU=y | ||
| 85 | # CONFIG_TREE_RCU is not set | ||
| 86 | # CONFIG_PREEMPT_RCU is not set | ||
| 87 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 88 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 78 | # CONFIG_IKCONFIG is not set | 89 | # CONFIG_IKCONFIG is not set |
| 79 | CONFIG_LOG_BUF_SHIFT=14 | 90 | CONFIG_LOG_BUF_SHIFT=14 |
| 80 | CONFIG_GROUP_SCHED=y | 91 | CONFIG_GROUP_SCHED=y |
| @@ -89,21 +100,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 89 | # CONFIG_NAMESPACES is not set | 100 | # CONFIG_NAMESPACES is not set |
| 90 | CONFIG_BLK_DEV_INITRD=y | 101 | CONFIG_BLK_DEV_INITRD=y |
| 91 | CONFIG_INITRAMFS_SOURCE="" | 102 | CONFIG_INITRAMFS_SOURCE="" |
| 103 | CONFIG_RD_GZIP=y | ||
| 104 | # CONFIG_RD_BZIP2 is not set | ||
| 105 | # CONFIG_RD_LZMA is not set | ||
| 92 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 106 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 93 | CONFIG_SYSCTL=y | 107 | CONFIG_SYSCTL=y |
| 108 | CONFIG_ANON_INODES=y | ||
| 94 | CONFIG_EMBEDDED=y | 109 | CONFIG_EMBEDDED=y |
| 95 | CONFIG_SYSCTL_SYSCALL=y | 110 | CONFIG_SYSCTL_SYSCALL=y |
| 96 | CONFIG_KALLSYMS=y | 111 | CONFIG_KALLSYMS=y |
| 97 | # CONFIG_KALLSYMS_ALL is not set | 112 | # CONFIG_KALLSYMS_ALL is not set |
| 98 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 113 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 114 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 99 | CONFIG_HOTPLUG=y | 115 | CONFIG_HOTPLUG=y |
| 100 | CONFIG_PRINTK=y | 116 | CONFIG_PRINTK=y |
| 101 | CONFIG_BUG=y | 117 | CONFIG_BUG=y |
| 102 | CONFIG_ELF_CORE=y | 118 | CONFIG_ELF_CORE=y |
| 103 | CONFIG_COMPAT_BRK=y | ||
| 104 | CONFIG_BASE_FULL=y | 119 | CONFIG_BASE_FULL=y |
| 105 | CONFIG_FUTEX=y | 120 | CONFIG_FUTEX=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 107 | CONFIG_EPOLL=y | 121 | CONFIG_EPOLL=y |
| 108 | CONFIG_SIGNALFD=y | 122 | CONFIG_SIGNALFD=y |
| 109 | CONFIG_TIMERFD=y | 123 | CONFIG_TIMERFD=y |
| @@ -111,16 +125,19 @@ CONFIG_EVENTFD=y | |||
| 111 | CONFIG_SHMEM=y | 125 | CONFIG_SHMEM=y |
| 112 | CONFIG_AIO=y | 126 | CONFIG_AIO=y |
| 113 | CONFIG_VM_EVENT_COUNTERS=y | 127 | CONFIG_VM_EVENT_COUNTERS=y |
| 128 | CONFIG_COMPAT_BRK=y | ||
| 114 | CONFIG_SLAB=y | 129 | CONFIG_SLAB=y |
| 115 | # CONFIG_SLUB is not set | 130 | # CONFIG_SLUB is not set |
| 116 | # CONFIG_SLOB is not set | 131 | # CONFIG_SLOB is not set |
| 117 | # CONFIG_PROFILING is not set | 132 | # CONFIG_PROFILING is not set |
| 133 | # CONFIG_MARKERS is not set | ||
| 118 | CONFIG_HAVE_OPROFILE=y | 134 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 135 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | 136 | CONFIG_HAVE_IOREMAP_PROT=y |
| 121 | CONFIG_HAVE_KPROBES=y | 137 | CONFIG_HAVE_KPROBES=y |
| 122 | CONFIG_HAVE_KRETPROBES=y | 138 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 139 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 140 | # CONFIG_SLOW_WORK is not set | ||
| 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 141 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 125 | CONFIG_SLABINFO=y | 142 | CONFIG_SLABINFO=y |
| 126 | CONFIG_RT_MUTEXES=y | 143 | CONFIG_RT_MUTEXES=y |
| @@ -128,7 +145,6 @@ CONFIG_BASE_SMALL=0 | |||
| 128 | # CONFIG_MODULES is not set | 145 | # CONFIG_MODULES is not set |
| 129 | CONFIG_BLOCK=y | 146 | CONFIG_BLOCK=y |
| 130 | # CONFIG_LBD is not set | 147 | # CONFIG_LBD is not set |
| 131 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 132 | # CONFIG_BLK_DEV_BSG is not set | 148 | # CONFIG_BLK_DEV_BSG is not set |
| 133 | # CONFIG_BLK_DEV_INTEGRITY is not set | 149 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 134 | 150 | ||
| @@ -144,11 +160,6 @@ CONFIG_DEFAULT_AS=y | |||
| 144 | # CONFIG_DEFAULT_CFQ is not set | 160 | # CONFIG_DEFAULT_CFQ is not set |
| 145 | # CONFIG_DEFAULT_NOOP is not set | 161 | # CONFIG_DEFAULT_NOOP is not set |
| 146 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 162 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 147 | CONFIG_CLASSIC_RCU=y | ||
| 148 | # CONFIG_TREE_RCU is not set | ||
| 149 | # CONFIG_PREEMPT_RCU is not set | ||
| 150 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 151 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 152 | # CONFIG_FREEZER is not set | 163 | # CONFIG_FREEZER is not set |
| 153 | 164 | ||
| 154 | # | 165 | # |
| @@ -164,6 +175,7 @@ CONFIG_MPC85xx=y | |||
| 164 | # CONFIG_MPC85xx_MDS is not set | 175 | # CONFIG_MPC85xx_MDS is not set |
| 165 | # CONFIG_MPC8536_DS is not set | 176 | # CONFIG_MPC8536_DS is not set |
| 166 | # CONFIG_MPC85xx_DS is not set | 177 | # CONFIG_MPC85xx_DS is not set |
| 178 | # CONFIG_SOCRATES is not set | ||
| 167 | # CONFIG_KSI8560 is not set | 179 | # CONFIG_KSI8560 is not set |
| 168 | # CONFIG_STX_GP3 is not set | 180 | # CONFIG_STX_GP3 is not set |
| 169 | # CONFIG_TQM8540 is not set | 181 | # CONFIG_TQM8540 is not set |
| @@ -231,9 +243,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 231 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
| 232 | CONFIG_VIRT_TO_BUS=y | 244 | CONFIG_VIRT_TO_BUS=y |
| 233 | CONFIG_UNEVICTABLE_LRU=y | 245 | CONFIG_UNEVICTABLE_LRU=y |
| 246 | CONFIG_HAVE_MLOCK=y | ||
| 247 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 234 | CONFIG_PPC_4K_PAGES=y | 248 | CONFIG_PPC_4K_PAGES=y |
| 235 | # CONFIG_PPC_16K_PAGES is not set | 249 | # CONFIG_PPC_16K_PAGES is not set |
| 236 | # CONFIG_PPC_64K_PAGES is not set | 250 | # CONFIG_PPC_64K_PAGES is not set |
| 251 | # CONFIG_PPC_256K_PAGES is not set | ||
| 237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 252 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 238 | CONFIG_PROC_DEVICETREE=y | 253 | CONFIG_PROC_DEVICETREE=y |
| 239 | # CONFIG_CMDLINE_BOOL is not set | 254 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -264,17 +279,17 @@ CONFIG_PPC_PCI_CHOICE=y | |||
| 264 | # Default settings for advanced configuration options are used | 279 | # Default settings for advanced configuration options are used |
| 265 | # | 280 | # |
| 266 | CONFIG_LOWMEM_SIZE=0x30000000 | 281 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 282 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 267 | CONFIG_PAGE_OFFSET=0xc0000000 | 283 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 268 | CONFIG_KERNEL_START=0xc0000000 | 284 | CONFIG_KERNEL_START=0xc0000000 |
| 269 | CONFIG_PHYSICAL_START=0x00000000 | 285 | CONFIG_PHYSICAL_START=0x00000000 |
| 270 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 286 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 271 | CONFIG_TASK_SIZE=0xc0000000 | 287 | CONFIG_TASK_SIZE=0xc0000000 |
| 272 | CONFIG_NET=y | 288 | CONFIG_NET=y |
| 273 | 289 | ||
| 274 | # | 290 | # |
| 275 | # Networking options | 291 | # Networking options |
| 276 | # | 292 | # |
| 277 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 278 | CONFIG_PACKET=y | 293 | CONFIG_PACKET=y |
| 279 | # CONFIG_PACKET_MMAP is not set | 294 | # CONFIG_PACKET_MMAP is not set |
| 280 | CONFIG_UNIX=y | 295 | CONFIG_UNIX=y |
| @@ -330,6 +345,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 330 | # CONFIG_LAPB is not set | 345 | # CONFIG_LAPB is not set |
| 331 | # CONFIG_ECONET is not set | 346 | # CONFIG_ECONET is not set |
| 332 | # CONFIG_WAN_ROUTER is not set | 347 | # CONFIG_WAN_ROUTER is not set |
| 348 | # CONFIG_PHONET is not set | ||
| 333 | # CONFIG_NET_SCHED is not set | 349 | # CONFIG_NET_SCHED is not set |
| 334 | # CONFIG_DCB is not set | 350 | # CONFIG_DCB is not set |
| 335 | 351 | ||
| @@ -342,7 +358,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 342 | # CONFIG_IRDA is not set | 358 | # CONFIG_IRDA is not set |
| 343 | # CONFIG_BT is not set | 359 | # CONFIG_BT is not set |
| 344 | # CONFIG_AF_RXRPC is not set | 360 | # CONFIG_AF_RXRPC is not set |
| 345 | # CONFIG_PHONET is not set | ||
| 346 | CONFIG_WIRELESS=y | 361 | CONFIG_WIRELESS=y |
| 347 | # CONFIG_CFG80211 is not set | 362 | # CONFIG_CFG80211 is not set |
| 348 | CONFIG_WIRELESS_OLD_REGULATORY=y | 363 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -385,9 +400,13 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 385 | # CONFIG_ATA_OVER_ETH is not set | 400 | # CONFIG_ATA_OVER_ETH is not set |
| 386 | # CONFIG_BLK_DEV_HD is not set | 401 | # CONFIG_BLK_DEV_HD is not set |
| 387 | CONFIG_MISC_DEVICES=y | 402 | CONFIG_MISC_DEVICES=y |
| 388 | # CONFIG_EEPROM_93CX6 is not set | ||
| 389 | # CONFIG_ENCLOSURE_SERVICES is not set | 403 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 390 | # CONFIG_C2PORT is not set | 404 | # CONFIG_C2PORT is not set |
| 405 | |||
| 406 | # | ||
| 407 | # EEPROM support | ||
| 408 | # | ||
| 409 | # CONFIG_EEPROM_93CX6 is not set | ||
| 391 | CONFIG_HAVE_IDE=y | 410 | CONFIG_HAVE_IDE=y |
| 392 | # CONFIG_IDE is not set | 411 | # CONFIG_IDE is not set |
| 393 | 412 | ||
| @@ -402,6 +421,7 @@ CONFIG_HAVE_IDE=y | |||
| 402 | # CONFIG_MD is not set | 421 | # CONFIG_MD is not set |
| 403 | # CONFIG_MACINTOSH_DRIVERS is not set | 422 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 404 | CONFIG_NETDEVICES=y | 423 | CONFIG_NETDEVICES=y |
| 424 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 405 | # CONFIG_DUMMY is not set | 425 | # CONFIG_DUMMY is not set |
| 406 | # CONFIG_BONDING is not set | 426 | # CONFIG_BONDING is not set |
| 407 | # CONFIG_MACVLAN is not set | 427 | # CONFIG_MACVLAN is not set |
| @@ -430,6 +450,8 @@ CONFIG_BROADCOM_PHY=y | |||
| 430 | # CONFIG_MDIO_BITBANG is not set | 450 | # CONFIG_MDIO_BITBANG is not set |
| 431 | CONFIG_NET_ETHERNET=y | 451 | CONFIG_NET_ETHERNET=y |
| 432 | CONFIG_MII=y | 452 | CONFIG_MII=y |
| 453 | # CONFIG_ETHOC is not set | ||
| 454 | # CONFIG_DNET is not set | ||
| 433 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 455 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 434 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 456 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 435 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 457 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -439,6 +461,7 @@ CONFIG_MII=y | |||
| 439 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 461 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
| 440 | # CONFIG_B44 is not set | 462 | # CONFIG_B44 is not set |
| 441 | CONFIG_NETDEV_1000=y | 463 | CONFIG_NETDEV_1000=y |
| 464 | CONFIG_FSL_PQ_MDIO=y | ||
| 442 | CONFIG_GIANFAR=y | 465 | CONFIG_GIANFAR=y |
| 443 | CONFIG_NETDEV_10000=y | 466 | CONFIG_NETDEV_10000=y |
| 444 | 467 | ||
| @@ -447,7 +470,6 @@ CONFIG_NETDEV_10000=y | |||
| 447 | # | 470 | # |
| 448 | # CONFIG_WLAN_PRE80211 is not set | 471 | # CONFIG_WLAN_PRE80211 is not set |
| 449 | # CONFIG_WLAN_80211 is not set | 472 | # CONFIG_WLAN_80211 is not set |
| 450 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 451 | 473 | ||
| 452 | # | 474 | # |
| 453 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 475 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -603,7 +625,6 @@ CONFIG_HID=y | |||
| 603 | # | 625 | # |
| 604 | # Special HID drivers | 626 | # Special HID drivers |
| 605 | # | 627 | # |
| 606 | CONFIG_HID_COMPAT=y | ||
| 607 | CONFIG_USB_SUPPORT=y | 628 | CONFIG_USB_SUPPORT=y |
| 608 | # CONFIG_USB_ARCH_HAS_HCD is not set | 629 | # CONFIG_USB_ARCH_HAS_HCD is not set |
| 609 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 630 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
| @@ -616,7 +637,7 @@ CONFIG_USB_SUPPORT=y | |||
| 616 | # | 637 | # |
| 617 | 638 | ||
| 618 | # | 639 | # |
| 619 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 640 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 620 | # | 641 | # |
| 621 | # CONFIG_USB_GADGET is not set | 642 | # CONFIG_USB_GADGET is not set |
| 622 | 643 | ||
| @@ -665,8 +686,9 @@ CONFIG_RTC_DRV_M48T59=y | |||
| 665 | # | 686 | # |
| 666 | # on-CPU RTC drivers | 687 | # on-CPU RTC drivers |
| 667 | # | 688 | # |
| 668 | # CONFIG_RTC_DRV_PPC is not set | 689 | # CONFIG_RTC_DRV_GENERIC is not set |
| 669 | # CONFIG_DMADEVICES is not set | 690 | # CONFIG_DMADEVICES is not set |
| 691 | # CONFIG_AUXDISPLAY is not set | ||
| 670 | # CONFIG_UIO is not set | 692 | # CONFIG_UIO is not set |
| 671 | # CONFIG_STAGING is not set | 693 | # CONFIG_STAGING is not set |
| 672 | 694 | ||
| @@ -692,6 +714,11 @@ CONFIG_INOTIFY_USER=y | |||
| 692 | # CONFIG_FUSE_FS is not set | 714 | # CONFIG_FUSE_FS is not set |
| 693 | 715 | ||
| 694 | # | 716 | # |
| 717 | # Caches | ||
| 718 | # | ||
| 719 | # CONFIG_FSCACHE is not set | ||
| 720 | |||
| 721 | # | ||
| 695 | # CD-ROM/DVD Filesystems | 722 | # CD-ROM/DVD Filesystems |
| 696 | # | 723 | # |
| 697 | # CONFIG_ISO9660_FS is not set | 724 | # CONFIG_ISO9660_FS is not set |
| @@ -734,6 +761,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 734 | # CONFIG_ROMFS_FS is not set | 761 | # CONFIG_ROMFS_FS is not set |
| 735 | # CONFIG_SYSV_FS is not set | 762 | # CONFIG_SYSV_FS is not set |
| 736 | # CONFIG_UFS_FS is not set | 763 | # CONFIG_UFS_FS is not set |
| 764 | # CONFIG_NILFS2_FS is not set | ||
| 737 | CONFIG_NETWORK_FILESYSTEMS=y | 765 | CONFIG_NETWORK_FILESYSTEMS=y |
| 738 | CONFIG_NFS_FS=y | 766 | CONFIG_NFS_FS=y |
| 739 | # CONFIG_NFS_V3 is not set | 767 | # CONFIG_NFS_V3 is not set |
| @@ -743,7 +771,6 @@ CONFIG_ROOT_NFS=y | |||
| 743 | CONFIG_LOCKD=y | 771 | CONFIG_LOCKD=y |
| 744 | CONFIG_NFS_COMMON=y | 772 | CONFIG_NFS_COMMON=y |
| 745 | CONFIG_SUNRPC=y | 773 | CONFIG_SUNRPC=y |
| 746 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 747 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 774 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 748 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 775 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 749 | # CONFIG_SMB_FS is not set | 776 | # CONFIG_SMB_FS is not set |
| @@ -771,6 +798,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 771 | # CONFIG_SYSV68_PARTITION is not set | 798 | # CONFIG_SYSV68_PARTITION is not set |
| 772 | # CONFIG_NLS is not set | 799 | # CONFIG_NLS is not set |
| 773 | # CONFIG_DLM is not set | 800 | # CONFIG_DLM is not set |
| 801 | # CONFIG_BINARY_PRINTF is not set | ||
| 774 | 802 | ||
| 775 | # | 803 | # |
| 776 | # Library routines | 804 | # Library routines |
| @@ -784,11 +812,13 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 784 | CONFIG_CRC32=y | 812 | CONFIG_CRC32=y |
| 785 | # CONFIG_CRC7 is not set | 813 | # CONFIG_CRC7 is not set |
| 786 | # CONFIG_LIBCRC32C is not set | 814 | # CONFIG_LIBCRC32C is not set |
| 787 | CONFIG_PLIST=y | 815 | CONFIG_ZLIB_INFLATE=y |
| 816 | CONFIG_DECOMPRESS_GZIP=y | ||
| 788 | CONFIG_HAS_IOMEM=y | 817 | CONFIG_HAS_IOMEM=y |
| 789 | CONFIG_HAS_IOPORT=y | 818 | CONFIG_HAS_IOPORT=y |
| 790 | CONFIG_HAS_DMA=y | 819 | CONFIG_HAS_DMA=y |
| 791 | CONFIG_HAVE_LMB=y | 820 | CONFIG_HAVE_LMB=y |
| 821 | CONFIG_NLATTR=y | ||
| 792 | 822 | ||
| 793 | # | 823 | # |
| 794 | # Kernel hacking | 824 | # Kernel hacking |
| @@ -806,6 +836,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 806 | CONFIG_DETECT_SOFTLOCKUP=y | 836 | CONFIG_DETECT_SOFTLOCKUP=y |
| 807 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 837 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 808 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 838 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 839 | CONFIG_DETECT_HUNG_TASK=y | ||
| 840 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 841 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 809 | CONFIG_SCHED_DEBUG=y | 842 | CONFIG_SCHED_DEBUG=y |
| 810 | # CONFIG_SCHEDSTATS is not set | 843 | # CONFIG_SCHEDSTATS is not set |
| 811 | # CONFIG_TIMER_STATS is not set | 844 | # CONFIG_TIMER_STATS is not set |
| @@ -834,9 +867,12 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 834 | # CONFIG_FAULT_INJECTION is not set | 867 | # CONFIG_FAULT_INJECTION is not set |
| 835 | # CONFIG_LATENCYTOP is not set | 868 | # CONFIG_LATENCYTOP is not set |
| 836 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 869 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 870 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 837 | CONFIG_HAVE_FUNCTION_TRACER=y | 871 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 872 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 838 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 873 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 839 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 874 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 875 | CONFIG_TRACING_SUPPORT=y | ||
| 840 | 876 | ||
| 841 | # | 877 | # |
| 842 | # Tracers | 878 | # Tracers |
| @@ -844,17 +880,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 844 | # CONFIG_FUNCTION_TRACER is not set | 880 | # CONFIG_FUNCTION_TRACER is not set |
| 845 | # CONFIG_SCHED_TRACER is not set | 881 | # CONFIG_SCHED_TRACER is not set |
| 846 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 882 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 883 | # CONFIG_EVENT_TRACER is not set | ||
| 847 | # CONFIG_BOOT_TRACER is not set | 884 | # CONFIG_BOOT_TRACER is not set |
| 848 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 885 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 849 | # CONFIG_STACK_TRACER is not set | 886 | # CONFIG_STACK_TRACER is not set |
| 850 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 887 | # CONFIG_KMEMTRACE is not set |
| 888 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 889 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 851 | # CONFIG_SAMPLES is not set | 890 | # CONFIG_SAMPLES is not set |
| 852 | CONFIG_HAVE_ARCH_KGDB=y | 891 | CONFIG_HAVE_ARCH_KGDB=y |
| 853 | # CONFIG_KGDB is not set | 892 | # CONFIG_KGDB is not set |
| 854 | CONFIG_PRINT_STACK_DEPTH=64 | 893 | CONFIG_PRINT_STACK_DEPTH=64 |
| 855 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 894 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 856 | # CONFIG_DEBUG_STACK_USAGE is not set | 895 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 857 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 858 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 896 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 859 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 897 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 860 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 898 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -958,6 +996,7 @@ CONFIG_CRYPTO=y | |||
| 958 | # Compression | 996 | # Compression |
| 959 | # | 997 | # |
| 960 | # CONFIG_CRYPTO_DEFLATE is not set | 998 | # CONFIG_CRYPTO_DEFLATE is not set |
| 999 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 961 | # CONFIG_CRYPTO_LZO is not set | 1000 | # CONFIG_CRYPTO_LZO is not set |
| 962 | 1001 | ||
| 963 | # | 1002 | # |
diff --git a/arch/powerpc/configs/85xx/socrates_defconfig b/arch/powerpc/configs/85xx/socrates_defconfig index 0cc9048290a8..79984589db69 100644 --- a/arch/powerpc/configs/85xx/socrates_defconfig +++ b/arch/powerpc/configs/85xx/socrates_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.2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Sat Oct 18 11:06:13 2008 | 4 | # Wed May 13 17:22:21 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -15,15 +15,19 @@ CONFIG_PPC_85xx=y | |||
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_E500=y | 17 | CONFIG_E500=y |
| 18 | # CONFIG_PPC_E500MC is not set | ||
| 18 | CONFIG_BOOKE=y | 19 | CONFIG_BOOKE=y |
| 19 | CONFIG_FSL_BOOKE=y | 20 | CONFIG_FSL_BOOKE=y |
| 20 | CONFIG_FSL_EMB_PERFMON=y | 21 | CONFIG_FSL_EMB_PERFMON=y |
| 21 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 22 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | ||
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 23 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 27 | # CONFIG_SMP is not set | ||
| 24 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| 25 | CONFIG_WORD_SIZE=32 | 29 | CONFIG_WORD_SIZE=32 |
| 26 | CONFIG_PPC_MERGE=y | 30 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
| 27 | CONFIG_MMU=y | 31 | CONFIG_MMU=y |
| 28 | CONFIG_GENERIC_CMOS_UPDATE=y | 32 | CONFIG_GENERIC_CMOS_UPDATE=y |
| 29 | CONFIG_GENERIC_TIME=y | 33 | CONFIG_GENERIC_TIME=y |
| @@ -33,6 +37,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
| 33 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | 37 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set |
| 34 | CONFIG_IRQ_PER_CPU=y | 38 | CONFIG_IRQ_PER_CPU=y |
| 35 | CONFIG_STACKTRACE_SUPPORT=y | 39 | CONFIG_STACKTRACE_SUPPORT=y |
| 40 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 36 | CONFIG_LOCKDEP_SUPPORT=y | 41 | CONFIG_LOCKDEP_SUPPORT=y |
| 37 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 42 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
| 38 | CONFIG_ARCH_HAS_ILOG2_U32=y | 43 | CONFIG_ARCH_HAS_ILOG2_U32=y |
| @@ -43,7 +48,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
| 43 | CONFIG_PPC=y | 48 | CONFIG_PPC=y |
| 44 | CONFIG_EARLY_PRINTK=y | 49 | CONFIG_EARLY_PRINTK=y |
| 45 | CONFIG_GENERIC_NVRAM=y | 50 | CONFIG_GENERIC_NVRAM=y |
| 46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 51 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
| 47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 52 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
| 48 | CONFIG_PPC_OF=y | 53 | CONFIG_PPC_OF=y |
| 49 | CONFIG_OF=y | 54 | CONFIG_OF=y |
| @@ -54,6 +59,7 @@ CONFIG_GENERIC_BUG=y | |||
| 54 | CONFIG_DEFAULT_UIMAGE=y | 59 | CONFIG_DEFAULT_UIMAGE=y |
| 55 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 56 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 62 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 57 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 58 | 64 | ||
| 59 | # | 65 | # |
| @@ -71,54 +77,70 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 71 | # CONFIG_BSD_PROCESS_ACCT is not set | 77 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 72 | # CONFIG_TASKSTATS is not set | 78 | # CONFIG_TASKSTATS is not set |
| 73 | # CONFIG_AUDIT is not set | 79 | # CONFIG_AUDIT is not set |
| 80 | |||
| 81 | # | ||
| 82 | # RCU Subsystem | ||
| 83 | # | ||
| 84 | CONFIG_CLASSIC_RCU=y | ||
| 85 | # CONFIG_TREE_RCU is not set | ||
| 86 | # CONFIG_PREEMPT_RCU is not set | ||
| 87 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 88 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 74 | # CONFIG_IKCONFIG is not set | 89 | # CONFIG_IKCONFIG is not set |
| 75 | CONFIG_LOG_BUF_SHIFT=16 | 90 | CONFIG_LOG_BUF_SHIFT=16 |
| 76 | # CONFIG_CGROUPS is not set | ||
| 77 | CONFIG_GROUP_SCHED=y | 91 | CONFIG_GROUP_SCHED=y |
| 78 | CONFIG_FAIR_GROUP_SCHED=y | 92 | CONFIG_FAIR_GROUP_SCHED=y |
| 79 | # CONFIG_RT_GROUP_SCHED is not set | 93 | # CONFIG_RT_GROUP_SCHED is not set |
| 80 | CONFIG_USER_SCHED=y | 94 | CONFIG_USER_SCHED=y |
| 81 | # CONFIG_CGROUP_SCHED is not set | 95 | # CONFIG_CGROUP_SCHED is not set |
| 96 | # CONFIG_CGROUPS is not set | ||
| 82 | CONFIG_SYSFS_DEPRECATED=y | 97 | CONFIG_SYSFS_DEPRECATED=y |
| 83 | CONFIG_SYSFS_DEPRECATED_V2=y | 98 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 84 | # CONFIG_RELAY is not set | 99 | # CONFIG_RELAY is not set |
| 85 | # CONFIG_NAMESPACES is not set | 100 | # CONFIG_NAMESPACES is not set |
| 86 | CONFIG_BLK_DEV_INITRD=y | 101 | CONFIG_BLK_DEV_INITRD=y |
| 87 | CONFIG_INITRAMFS_SOURCE="" | 102 | CONFIG_INITRAMFS_SOURCE="" |
| 103 | CONFIG_RD_GZIP=y | ||
| 104 | # CONFIG_RD_BZIP2 is not set | ||
| 105 | # CONFIG_RD_LZMA is not set | ||
| 88 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 106 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 89 | CONFIG_SYSCTL=y | 107 | CONFIG_SYSCTL=y |
| 108 | CONFIG_ANON_INODES=y | ||
| 90 | CONFIG_EMBEDDED=y | 109 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 110 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 93 | # CONFIG_KALLSYMS is not set | 111 | # CONFIG_KALLSYMS is not set |
| 112 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 94 | # CONFIG_HOTPLUG is not set | 113 | # CONFIG_HOTPLUG is not set |
| 95 | CONFIG_PRINTK=y | 114 | CONFIG_PRINTK=y |
| 96 | CONFIG_BUG=y | 115 | CONFIG_BUG=y |
| 97 | CONFIG_ELF_CORE=y | 116 | CONFIG_ELF_CORE=y |
| 98 | CONFIG_COMPAT_BRK=y | ||
| 99 | CONFIG_BASE_FULL=y | 117 | CONFIG_BASE_FULL=y |
| 100 | CONFIG_FUTEX=y | 118 | CONFIG_FUTEX=y |
| 101 | CONFIG_ANON_INODES=y | ||
| 102 | # CONFIG_EPOLL is not set | 119 | # CONFIG_EPOLL is not set |
| 103 | CONFIG_SIGNALFD=y | 120 | CONFIG_SIGNALFD=y |
| 104 | CONFIG_TIMERFD=y | 121 | CONFIG_TIMERFD=y |
| 105 | CONFIG_EVENTFD=y | 122 | CONFIG_EVENTFD=y |
| 106 | CONFIG_SHMEM=y | 123 | CONFIG_SHMEM=y |
| 124 | CONFIG_AIO=y | ||
| 107 | CONFIG_VM_EVENT_COUNTERS=y | 125 | CONFIG_VM_EVENT_COUNTERS=y |
| 126 | CONFIG_PCI_QUIRKS=y | ||
| 108 | CONFIG_SLUB_DEBUG=y | 127 | CONFIG_SLUB_DEBUG=y |
| 128 | CONFIG_COMPAT_BRK=y | ||
| 109 | # CONFIG_SLAB is not set | 129 | # CONFIG_SLAB is not set |
| 110 | CONFIG_SLUB=y | 130 | CONFIG_SLUB=y |
| 111 | # CONFIG_SLOB is not set | 131 | # CONFIG_SLOB is not set |
| 112 | # CONFIG_PROFILING is not set | 132 | # CONFIG_PROFILING is not set |
| 113 | # CONFIG_MARKERS is not set | 133 | # CONFIG_MARKERS is not set |
| 114 | CONFIG_HAVE_OPROFILE=y | 134 | CONFIG_HAVE_OPROFILE=y |
| 135 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
| 136 | CONFIG_HAVE_IOREMAP_PROT=y | ||
| 115 | CONFIG_HAVE_KPROBES=y | 137 | CONFIG_HAVE_KPROBES=y |
| 116 | CONFIG_HAVE_KRETPROBES=y | 138 | CONFIG_HAVE_KRETPROBES=y |
| 117 | # CONFIG_HAVE_DMA_ATTRS is not set | 139 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 118 | CONFIG_PROC_PAGE_MONITOR=y | 140 | # CONFIG_SLOW_WORK is not set |
| 141 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 119 | CONFIG_SLABINFO=y | 142 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 143 | CONFIG_RT_MUTEXES=y |
| 121 | # CONFIG_TINY_SHMEM is not set | ||
| 122 | CONFIG_BASE_SMALL=0 | 144 | CONFIG_BASE_SMALL=0 |
| 123 | CONFIG_MODULES=y | 145 | CONFIG_MODULES=y |
| 124 | # CONFIG_MODULE_FORCE_LOAD is not set | 146 | # CONFIG_MODULE_FORCE_LOAD is not set |
| @@ -126,12 +148,10 @@ CONFIG_MODULE_UNLOAD=y | |||
| 126 | CONFIG_MODULE_FORCE_UNLOAD=y | 148 | CONFIG_MODULE_FORCE_UNLOAD=y |
| 127 | # CONFIG_MODVERSIONS is not set | 149 | # CONFIG_MODVERSIONS is not set |
| 128 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 150 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 129 | # CONFIG_KMOD is not set | ||
| 130 | CONFIG_BLOCK=y | 151 | CONFIG_BLOCK=y |
| 131 | # CONFIG_LBD is not set | 152 | # CONFIG_LBD is not set |
| 132 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 133 | # CONFIG_LSF is not set | ||
| 134 | # CONFIG_BLK_DEV_BSG is not set | 153 | # CONFIG_BLK_DEV_BSG is not set |
| 154 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 135 | 155 | ||
| 136 | # | 156 | # |
| 137 | # IO Schedulers | 157 | # IO Schedulers |
| @@ -145,13 +165,11 @@ CONFIG_DEFAULT_AS=y | |||
| 145 | # CONFIG_DEFAULT_CFQ is not set | 165 | # CONFIG_DEFAULT_CFQ is not set |
| 146 | # CONFIG_DEFAULT_NOOP is not set | 166 | # CONFIG_DEFAULT_NOOP is not set |
| 147 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 167 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 148 | CONFIG_CLASSIC_RCU=y | 168 | # CONFIG_FREEZER is not set |
| 149 | 169 | ||
| 150 | # | 170 | # |
| 151 | # Platform support | 171 | # Platform support |
| 152 | # | 172 | # |
| 153 | # CONFIG_PPC_MPC512x is not set | ||
| 154 | # CONFIG_PPC_MPC5121 is not set | ||
| 155 | # CONFIG_PPC_CELL is not set | 173 | # CONFIG_PPC_CELL is not set |
| 156 | # CONFIG_PPC_CELL_NATIVE is not set | 174 | # CONFIG_PPC_CELL_NATIVE is not set |
| 157 | # CONFIG_PQ2ADS is not set | 175 | # CONFIG_PQ2ADS is not set |
| @@ -160,12 +178,14 @@ CONFIG_MPC85xx=y | |||
| 160 | # CONFIG_MPC8560_ADS is not set | 178 | # CONFIG_MPC8560_ADS is not set |
| 161 | # CONFIG_MPC85xx_CDS is not set | 179 | # CONFIG_MPC85xx_CDS is not set |
| 162 | # CONFIG_MPC85xx_MDS is not set | 180 | # CONFIG_MPC85xx_MDS is not set |
| 181 | # CONFIG_MPC8536_DS is not set | ||
| 163 | # CONFIG_MPC85xx_DS is not set | 182 | # CONFIG_MPC85xx_DS is not set |
| 164 | CONFIG_SOCRATES=y | 183 | CONFIG_SOCRATES=y |
| 165 | # CONFIG_KSI8560 is not set | 184 | # CONFIG_KSI8560 is not set |
| 166 | # CONFIG_STX_GP3 is not set | 185 | # CONFIG_STX_GP3 is not set |
| 167 | # CONFIG_TQM8540 is not set | 186 | # CONFIG_TQM8540 is not set |
| 168 | # CONFIG_TQM8541 is not set | 187 | # CONFIG_TQM8541 is not set |
| 188 | # CONFIG_TQM8548 is not set | ||
| 169 | # CONFIG_TQM8555 is not set | 189 | # CONFIG_TQM8555 is not set |
| 170 | # CONFIG_TQM8560 is not set | 190 | # CONFIG_TQM8560 is not set |
| 171 | # CONFIG_SBC8548 is not set | 191 | # CONFIG_SBC8548 is not set |
| @@ -181,14 +201,16 @@ CONFIG_MPIC=y | |||
| 181 | # CONFIG_PPC_INDIRECT_IO is not set | 201 | # CONFIG_PPC_INDIRECT_IO is not set |
| 182 | # CONFIG_GENERIC_IOMAP is not set | 202 | # CONFIG_GENERIC_IOMAP is not set |
| 183 | # CONFIG_CPU_FREQ is not set | 203 | # CONFIG_CPU_FREQ is not set |
| 204 | # CONFIG_QUICC_ENGINE is not set | ||
| 184 | # CONFIG_CPM2 is not set | 205 | # CONFIG_CPM2 is not set |
| 185 | # CONFIG_FSL_ULI1575 is not set | 206 | # CONFIG_FSL_ULI1575 is not set |
| 207 | # CONFIG_MPC8xxx_GPIO is not set | ||
| 208 | # CONFIG_SIMPLE_GPIO is not set | ||
| 186 | 209 | ||
| 187 | # | 210 | # |
| 188 | # Kernel options | 211 | # Kernel options |
| 189 | # | 212 | # |
| 190 | # CONFIG_HIGHMEM is not set | 213 | # CONFIG_HIGHMEM is not set |
| 191 | # CONFIG_TICK_ONESHOT is not set | ||
| 192 | # CONFIG_NO_HZ is not set | 214 | # CONFIG_NO_HZ is not set |
| 193 | # CONFIG_HIGH_RES_TIMERS is not set | 215 | # CONFIG_HIGH_RES_TIMERS is not set |
| 194 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | 216 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y |
| @@ -202,6 +224,8 @@ CONFIG_PREEMPT_NONE=y | |||
| 202 | # CONFIG_PREEMPT_VOLUNTARY is not set | 224 | # CONFIG_PREEMPT_VOLUNTARY is not set |
| 203 | # CONFIG_PREEMPT is not set | 225 | # CONFIG_PREEMPT is not set |
| 204 | CONFIG_BINFMT_ELF=y | 226 | CONFIG_BINFMT_ELF=y |
| 227 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
| 228 | # CONFIG_HAVE_AOUT is not set | ||
| 205 | # CONFIG_BINFMT_MISC is not set | 229 | # CONFIG_BINFMT_MISC is not set |
| 206 | CONFIG_MATH_EMULATION=y | 230 | CONFIG_MATH_EMULATION=y |
| 207 | # CONFIG_IOMMU_HELPER is not set | 231 | # CONFIG_IOMMU_HELPER is not set |
| @@ -216,17 +240,24 @@ CONFIG_FLATMEM_MANUAL=y | |||
| 216 | # CONFIG_SPARSEMEM_MANUAL is not set | 240 | # CONFIG_SPARSEMEM_MANUAL is not set |
| 217 | CONFIG_FLATMEM=y | 241 | CONFIG_FLATMEM=y |
| 218 | CONFIG_FLAT_NODE_MEM_MAP=y | 242 | CONFIG_FLAT_NODE_MEM_MAP=y |
| 219 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 220 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
| 221 | CONFIG_PAGEFLAGS_EXTENDED=y | 243 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 222 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 244 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 223 | # CONFIG_RESOURCES_64BIT is not set | 245 | CONFIG_MIGRATION=y |
| 246 | # CONFIG_PHYS_ADDR_T_64BIT is not set | ||
| 224 | CONFIG_ZONE_DMA_FLAG=1 | 247 | CONFIG_ZONE_DMA_FLAG=1 |
| 225 | CONFIG_BOUNCE=y | 248 | CONFIG_BOUNCE=y |
| 226 | CONFIG_VIRT_TO_BUS=y | 249 | CONFIG_VIRT_TO_BUS=y |
| 250 | CONFIG_UNEVICTABLE_LRU=y | ||
| 251 | CONFIG_HAVE_MLOCK=y | ||
| 252 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 253 | CONFIG_PPC_4K_PAGES=y | ||
| 254 | # CONFIG_PPC_16K_PAGES is not set | ||
| 255 | # CONFIG_PPC_64K_PAGES is not set | ||
| 256 | # CONFIG_PPC_256K_PAGES is not set | ||
| 227 | CONFIG_FORCE_MAX_ZONEORDER=11 | 257 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 228 | # CONFIG_PROC_DEVICETREE is not set | 258 | # CONFIG_PROC_DEVICETREE is not set |
| 229 | # CONFIG_CMDLINE_BOOL is not set | 259 | # CONFIG_CMDLINE_BOOL is not set |
| 260 | CONFIG_EXTRA_TARGETS="" | ||
| 230 | # CONFIG_PM is not set | 261 | # CONFIG_PM is not set |
| 231 | CONFIG_SECCOMP=y | 262 | CONFIG_SECCOMP=y |
| 232 | CONFIG_ISA_DMA_API=y | 263 | CONFIG_ISA_DMA_API=y |
| @@ -238,6 +269,7 @@ CONFIG_ZONE_DMA=y | |||
| 238 | CONFIG_PPC_INDIRECT_PCI=y | 269 | CONFIG_PPC_INDIRECT_PCI=y |
| 239 | CONFIG_FSL_SOC=y | 270 | CONFIG_FSL_SOC=y |
| 240 | CONFIG_FSL_PCI=y | 271 | CONFIG_FSL_PCI=y |
| 272 | CONFIG_PPC_PCI_CHOICE=y | ||
| 241 | CONFIG_PCI=y | 273 | CONFIG_PCI=y |
| 242 | CONFIG_PCI_DOMAINS=y | 274 | CONFIG_PCI_DOMAINS=y |
| 243 | CONFIG_PCI_SYSCALL=y | 275 | CONFIG_PCI_SYSCALL=y |
| @@ -245,6 +277,8 @@ CONFIG_PCI_SYSCALL=y | |||
| 245 | CONFIG_ARCH_SUPPORTS_MSI=y | 277 | CONFIG_ARCH_SUPPORTS_MSI=y |
| 246 | # CONFIG_PCI_MSI is not set | 278 | # CONFIG_PCI_MSI is not set |
| 247 | CONFIG_PCI_LEGACY=y | 279 | CONFIG_PCI_LEGACY=y |
| 280 | # CONFIG_PCI_STUB is not set | ||
| 281 | # CONFIG_PCI_IOV is not set | ||
| 248 | # CONFIG_HAS_RAPIDIO is not set | 282 | # CONFIG_HAS_RAPIDIO is not set |
| 249 | 283 | ||
| 250 | # | 284 | # |
| @@ -256,15 +290,12 @@ CONFIG_PCI_LEGACY=y | |||
| 256 | # Default settings for advanced configuration options are used | 290 | # Default settings for advanced configuration options are used |
| 257 | # | 291 | # |
| 258 | CONFIG_LOWMEM_SIZE=0x30000000 | 292 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 293 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 259 | CONFIG_PAGE_OFFSET=0xc0000000 | 294 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 260 | CONFIG_KERNEL_START=0xc0000000 | 295 | CONFIG_KERNEL_START=0xc0000000 |
| 261 | CONFIG_PHYSICAL_START=0x00000000 | 296 | CONFIG_PHYSICAL_START=0x00000000 |
| 262 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 297 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 263 | CONFIG_TASK_SIZE=0xc0000000 | 298 | CONFIG_TASK_SIZE=0xc0000000 |
| 264 | |||
| 265 | # | ||
| 266 | # Networking | ||
| 267 | # | ||
| 268 | CONFIG_NET=y | 299 | CONFIG_NET=y |
| 269 | 300 | ||
| 270 | # | 301 | # |
| @@ -315,6 +346,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 315 | # CONFIG_TIPC is not set | 346 | # CONFIG_TIPC is not set |
| 316 | # CONFIG_ATM is not set | 347 | # CONFIG_ATM is not set |
| 317 | # CONFIG_BRIDGE is not set | 348 | # CONFIG_BRIDGE is not set |
| 349 | # CONFIG_NET_DSA is not set | ||
| 318 | # CONFIG_VLAN_8021Q is not set | 350 | # CONFIG_VLAN_8021Q is not set |
| 319 | # CONFIG_DECNET is not set | 351 | # CONFIG_DECNET is not set |
| 320 | # CONFIG_LLC2 is not set | 352 | # CONFIG_LLC2 is not set |
| @@ -324,7 +356,9 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 324 | # CONFIG_LAPB is not set | 356 | # CONFIG_LAPB is not set |
| 325 | # CONFIG_ECONET is not set | 357 | # CONFIG_ECONET is not set |
| 326 | # CONFIG_WAN_ROUTER is not set | 358 | # CONFIG_WAN_ROUTER is not set |
| 359 | # CONFIG_PHONET is not set | ||
| 327 | # CONFIG_NET_SCHED is not set | 360 | # CONFIG_NET_SCHED is not set |
| 361 | # CONFIG_DCB is not set | ||
| 328 | 362 | ||
| 329 | # | 363 | # |
| 330 | # Network testing | 364 | # Network testing |
| @@ -339,27 +373,17 @@ CONFIG_CAN_BCM=y | |||
| 339 | # CAN Device Drivers | 373 | # CAN Device Drivers |
| 340 | # | 374 | # |
| 341 | # CONFIG_CAN_VCAN is not set | 375 | # CONFIG_CAN_VCAN is not set |
| 342 | # CONFIG_CAN_OLD_DRIVERS is not set | ||
| 343 | # CONFIG_CAN_SLCAN is not set | ||
| 344 | CONFIG_CAN_SJA1000=y | ||
| 345 | CONFIG_CAN_SJA1000_MEM_OF=y | ||
| 346 | # CONFIG_CAN_EMS_PCI is not set | ||
| 347 | # CONFIG_CAN_IXXAT_PCI is not set | ||
| 348 | # CONFIG_CAN_PEAK_PCI is not set | ||
| 349 | # CONFIG_CAN_KVASER_PCI is not set | ||
| 350 | # CONFIG_CAN_MSCAN is not set | ||
| 351 | # CONFIG_CAN_DEBUG_DEVICES is not set | 376 | # CONFIG_CAN_DEBUG_DEVICES is not set |
| 352 | # CONFIG_IRDA is not set | 377 | # CONFIG_IRDA is not set |
| 353 | # CONFIG_BT is not set | 378 | # CONFIG_BT is not set |
| 354 | # CONFIG_AF_RXRPC is not set | 379 | # CONFIG_AF_RXRPC is not set |
| 355 | 380 | CONFIG_WIRELESS=y | |
| 356 | # | ||
| 357 | # Wireless | ||
| 358 | # | ||
| 359 | # CONFIG_CFG80211 is not set | 381 | # CONFIG_CFG80211 is not set |
| 382 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
| 360 | # CONFIG_WIRELESS_EXT is not set | 383 | # CONFIG_WIRELESS_EXT is not set |
| 384 | # CONFIG_LIB80211 is not set | ||
| 361 | # CONFIG_MAC80211 is not set | 385 | # CONFIG_MAC80211 is not set |
| 362 | # CONFIG_IEEE80211 is not set | 386 | # CONFIG_WIMAX is not set |
| 363 | # CONFIG_RFKILL is not set | 387 | # CONFIG_RFKILL is not set |
| 364 | # CONFIG_NET_9P is not set | 388 | # CONFIG_NET_9P is not set |
| 365 | 389 | ||
| @@ -378,6 +402,7 @@ CONFIG_MTD=y | |||
| 378 | # CONFIG_MTD_DEBUG is not set | 402 | # CONFIG_MTD_DEBUG is not set |
| 379 | CONFIG_MTD_CONCAT=y | 403 | CONFIG_MTD_CONCAT=y |
| 380 | CONFIG_MTD_PARTITIONS=y | 404 | CONFIG_MTD_PARTITIONS=y |
| 405 | # CONFIG_MTD_TESTS is not set | ||
| 381 | # CONFIG_MTD_REDBOOT_PARTS is not set | 406 | # CONFIG_MTD_REDBOOT_PARTS is not set |
| 382 | CONFIG_MTD_CMDLINE_PARTS=y | 407 | CONFIG_MTD_CMDLINE_PARTS=y |
| 383 | CONFIG_MTD_OF_PARTS=y | 408 | CONFIG_MTD_OF_PARTS=y |
| @@ -458,15 +483,22 @@ CONFIG_MTD_NAND_IDS=y | |||
| 458 | # CONFIG_MTD_NAND_PLATFORM is not set | 483 | # CONFIG_MTD_NAND_PLATFORM is not set |
| 459 | # CONFIG_MTD_ALAUDA is not set | 484 | # CONFIG_MTD_ALAUDA is not set |
| 460 | # CONFIG_MTD_NAND_FSL_ELBC is not set | 485 | # CONFIG_MTD_NAND_FSL_ELBC is not set |
| 486 | # CONFIG_MTD_NAND_FSL_UPM is not set | ||
| 461 | CONFIG_MTD_NAND_SOCRATES=y | 487 | CONFIG_MTD_NAND_SOCRATES=y |
| 462 | # CONFIG_MTD_ONENAND is not set | 488 | # CONFIG_MTD_ONENAND is not set |
| 463 | 489 | ||
| 464 | # | 490 | # |
| 491 | # LPDDR flash memory drivers | ||
| 492 | # | ||
| 493 | # CONFIG_MTD_LPDDR is not set | ||
| 494 | |||
| 495 | # | ||
| 465 | # UBI - Unsorted block images | 496 | # UBI - Unsorted block images |
| 466 | # | 497 | # |
| 467 | # CONFIG_MTD_UBI is not set | 498 | # CONFIG_MTD_UBI is not set |
| 468 | CONFIG_OF_DEVICE=y | 499 | CONFIG_OF_DEVICE=y |
| 469 | CONFIG_OF_I2C=y | 500 | CONFIG_OF_I2C=y |
| 501 | CONFIG_OF_SPI=y | ||
| 470 | # CONFIG_PARPORT is not set | 502 | # CONFIG_PARPORT is not set |
| 471 | CONFIG_BLK_DEV=y | 503 | CONFIG_BLK_DEV=y |
| 472 | # CONFIG_BLK_DEV_FD is not set | 504 | # CONFIG_BLK_DEV_FD is not set |
| @@ -486,12 +518,24 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 486 | # CONFIG_BLK_DEV_XIP is not set | 518 | # CONFIG_BLK_DEV_XIP is not set |
| 487 | # CONFIG_CDROM_PKTCDVD is not set | 519 | # CONFIG_CDROM_PKTCDVD is not set |
| 488 | # CONFIG_ATA_OVER_ETH is not set | 520 | # CONFIG_ATA_OVER_ETH is not set |
| 521 | # CONFIG_BLK_DEV_HD is not set | ||
| 489 | CONFIG_MISC_DEVICES=y | 522 | CONFIG_MISC_DEVICES=y |
| 490 | # CONFIG_PHANTOM is not set | 523 | # CONFIG_PHANTOM is not set |
| 491 | # CONFIG_EEPROM_93CX6 is not set | ||
| 492 | # CONFIG_SGI_IOC4 is not set | 524 | # CONFIG_SGI_IOC4 is not set |
| 493 | # CONFIG_TIFM_CORE is not set | 525 | # CONFIG_TIFM_CORE is not set |
| 526 | # CONFIG_ICS932S401 is not set | ||
| 494 | # CONFIG_ENCLOSURE_SERVICES is not set | 527 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 528 | # CONFIG_HP_ILO is not set | ||
| 529 | # CONFIG_ISL29003 is not set | ||
| 530 | # CONFIG_C2PORT is not set | ||
| 531 | |||
| 532 | # | ||
| 533 | # EEPROM support | ||
| 534 | # | ||
| 535 | # CONFIG_EEPROM_AT24 is not set | ||
| 536 | # CONFIG_EEPROM_AT25 is not set | ||
| 537 | # CONFIG_EEPROM_LEGACY is not set | ||
| 538 | # CONFIG_EEPROM_93CX6 is not set | ||
| 495 | CONFIG_HAVE_IDE=y | 539 | CONFIG_HAVE_IDE=y |
| 496 | # CONFIG_IDE is not set | 540 | # CONFIG_IDE is not set |
| 497 | 541 | ||
| @@ -533,6 +577,8 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 533 | # CONFIG_SCSI_SAS_LIBSAS is not set | 577 | # CONFIG_SCSI_SAS_LIBSAS is not set |
| 534 | # CONFIG_SCSI_SRP_ATTRS is not set | 578 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 535 | # CONFIG_SCSI_LOWLEVEL is not set | 579 | # CONFIG_SCSI_LOWLEVEL is not set |
| 580 | # CONFIG_SCSI_DH is not set | ||
| 581 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 536 | # CONFIG_ATA is not set | 582 | # CONFIG_ATA is not set |
| 537 | # CONFIG_MD is not set | 583 | # CONFIG_MD is not set |
| 538 | # CONFIG_FUSION is not set | 584 | # CONFIG_FUSION is not set |
| @@ -549,7 +595,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 549 | # CONFIG_I2O is not set | 595 | # CONFIG_I2O is not set |
| 550 | # CONFIG_MACINTOSH_DRIVERS is not set | 596 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 551 | CONFIG_NETDEVICES=y | 597 | CONFIG_NETDEVICES=y |
| 552 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | 598 | CONFIG_COMPAT_NET_DEV_OPS=y |
| 553 | # CONFIG_DUMMY is not set | 599 | # CONFIG_DUMMY is not set |
| 554 | # CONFIG_BONDING is not set | 600 | # CONFIG_BONDING is not set |
| 555 | # CONFIG_MACVLAN is not set | 601 | # CONFIG_MACVLAN is not set |
| @@ -572,6 +618,9 @@ CONFIG_MARVELL_PHY=y | |||
| 572 | # CONFIG_BROADCOM_PHY is not set | 618 | # CONFIG_BROADCOM_PHY is not set |
| 573 | # CONFIG_ICPLUS_PHY is not set | 619 | # CONFIG_ICPLUS_PHY is not set |
| 574 | # CONFIG_REALTEK_PHY is not set | 620 | # CONFIG_REALTEK_PHY is not set |
| 621 | # CONFIG_NATIONAL_PHY is not set | ||
| 622 | # CONFIG_STE10XP is not set | ||
| 623 | # CONFIG_LSI_ET1011C_PHY is not set | ||
| 575 | # CONFIG_FIXED_PHY is not set | 624 | # CONFIG_FIXED_PHY is not set |
| 576 | # CONFIG_MDIO_BITBANG is not set | 625 | # CONFIG_MDIO_BITBANG is not set |
| 577 | CONFIG_NET_ETHERNET=y | 626 | CONFIG_NET_ETHERNET=y |
| @@ -581,22 +630,28 @@ CONFIG_MII=y | |||
| 581 | # CONFIG_CASSINI is not set | 630 | # CONFIG_CASSINI is not set |
| 582 | # CONFIG_NET_VENDOR_3COM is not set | 631 | # CONFIG_NET_VENDOR_3COM is not set |
| 583 | # CONFIG_ENC28J60 is not set | 632 | # CONFIG_ENC28J60 is not set |
| 633 | # CONFIG_ETHOC is not set | ||
| 634 | # CONFIG_DNET is not set | ||
| 584 | # CONFIG_NET_TULIP is not set | 635 | # CONFIG_NET_TULIP is not set |
| 585 | # CONFIG_HP100 is not set | 636 | # CONFIG_HP100 is not set |
| 586 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 637 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 587 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 638 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 588 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 639 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| 589 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 640 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
| 641 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
| 642 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
| 643 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
| 590 | # CONFIG_NET_PCI is not set | 644 | # CONFIG_NET_PCI is not set |
| 591 | # CONFIG_B44 is not set | 645 | # CONFIG_B44 is not set |
| 646 | # CONFIG_ATL2 is not set | ||
| 592 | CONFIG_NETDEV_1000=y | 647 | CONFIG_NETDEV_1000=y |
| 593 | # CONFIG_ACENIC is not set | 648 | # CONFIG_ACENIC is not set |
| 594 | # CONFIG_DL2K is not set | 649 | # CONFIG_DL2K is not set |
| 595 | # CONFIG_E1000 is not set | 650 | # CONFIG_E1000 is not set |
| 596 | # CONFIG_E1000E is not set | 651 | # CONFIG_E1000E is not set |
| 597 | # CONFIG_E1000E_ENABLED is not set | ||
| 598 | # CONFIG_IP1000 is not set | 652 | # CONFIG_IP1000 is not set |
| 599 | # CONFIG_IGB is not set | 653 | # CONFIG_IGB is not set |
| 654 | # CONFIG_IGBVF is not set | ||
| 600 | # CONFIG_NS83820 is not set | 655 | # CONFIG_NS83820 is not set |
| 601 | # CONFIG_HAMACHI is not set | 656 | # CONFIG_HAMACHI is not set |
| 602 | # CONFIG_YELLOWFIN is not set | 657 | # CONFIG_YELLOWFIN is not set |
| @@ -607,10 +662,13 @@ CONFIG_NETDEV_1000=y | |||
| 607 | # CONFIG_VIA_VELOCITY is not set | 662 | # CONFIG_VIA_VELOCITY is not set |
| 608 | # CONFIG_TIGON3 is not set | 663 | # CONFIG_TIGON3 is not set |
| 609 | # CONFIG_BNX2 is not set | 664 | # CONFIG_BNX2 is not set |
| 665 | CONFIG_FSL_PQ_MDIO=y | ||
| 610 | CONFIG_GIANFAR=y | 666 | CONFIG_GIANFAR=y |
| 611 | CONFIG_GFAR_NAPI=y | ||
| 612 | # CONFIG_QLA3XXX is not set | 667 | # CONFIG_QLA3XXX is not set |
| 613 | # CONFIG_ATL1 is not set | 668 | # CONFIG_ATL1 is not set |
| 669 | # CONFIG_ATL1E is not set | ||
| 670 | # CONFIG_ATL1C is not set | ||
| 671 | # CONFIG_JME is not set | ||
| 614 | # CONFIG_NETDEV_10000 is not set | 672 | # CONFIG_NETDEV_10000 is not set |
| 615 | # CONFIG_TR is not set | 673 | # CONFIG_TR is not set |
| 616 | 674 | ||
| @@ -619,7 +677,10 @@ CONFIG_GFAR_NAPI=y | |||
| 619 | # | 677 | # |
| 620 | # CONFIG_WLAN_PRE80211 is not set | 678 | # CONFIG_WLAN_PRE80211 is not set |
| 621 | # CONFIG_WLAN_80211 is not set | 679 | # CONFIG_WLAN_80211 is not set |
| 622 | # CONFIG_IWLWIFI_LEDS is not set | 680 | |
| 681 | # | ||
| 682 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 683 | # | ||
| 623 | 684 | ||
| 624 | # | 685 | # |
| 625 | # USB Network Adapters | 686 | # USB Network Adapters |
| @@ -668,17 +729,23 @@ CONFIG_INPUT_EVDEV=y | |||
| 668 | # CONFIG_INPUT_TABLET is not set | 729 | # CONFIG_INPUT_TABLET is not set |
| 669 | CONFIG_INPUT_TOUCHSCREEN=y | 730 | CONFIG_INPUT_TOUCHSCREEN=y |
| 670 | # CONFIG_TOUCHSCREEN_ADS7846 is not set | 731 | # CONFIG_TOUCHSCREEN_ADS7846 is not set |
| 732 | # CONFIG_TOUCHSCREEN_AD7877 is not set | ||
| 733 | # CONFIG_TOUCHSCREEN_AD7879_I2C is not set | ||
| 734 | # CONFIG_TOUCHSCREEN_AD7879_SPI is not set | ||
| 735 | # CONFIG_TOUCHSCREEN_AD7879 is not set | ||
| 671 | # CONFIG_TOUCHSCREEN_FUJITSU is not set | 736 | # CONFIG_TOUCHSCREEN_FUJITSU is not set |
| 672 | # CONFIG_TOUCHSCREEN_GUNZE is not set | 737 | # CONFIG_TOUCHSCREEN_GUNZE is not set |
| 673 | # CONFIG_TOUCHSCREEN_ELO is not set | 738 | # CONFIG_TOUCHSCREEN_ELO is not set |
| 739 | # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set | ||
| 674 | # CONFIG_TOUCHSCREEN_MTOUCH is not set | 740 | # CONFIG_TOUCHSCREEN_MTOUCH is not set |
| 741 | # CONFIG_TOUCHSCREEN_INEXIO is not set | ||
| 675 | # CONFIG_TOUCHSCREEN_MK712 is not set | 742 | # CONFIG_TOUCHSCREEN_MK712 is not set |
| 676 | # CONFIG_TOUCHSCREEN_PENMOUNT is not set | 743 | # CONFIG_TOUCHSCREEN_PENMOUNT is not set |
| 677 | # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set | 744 | # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set |
| 678 | # CONFIG_TOUCHSCREEN_TOUCHWIN is not set | 745 | # CONFIG_TOUCHSCREEN_TOUCHWIN is not set |
| 679 | # CONFIG_TOUCHSCREEN_UCB1400 is not set | ||
| 680 | CONFIG_TOUCHSCREEN_TSC2003=y | ||
| 681 | # CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set | 746 | # CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set |
| 747 | # CONFIG_TOUCHSCREEN_TOUCHIT213 is not set | ||
| 748 | # CONFIG_TOUCHSCREEN_TSC2007 is not set | ||
| 682 | # CONFIG_INPUT_MISC is not set | 749 | # CONFIG_INPUT_MISC is not set |
| 683 | 750 | ||
| 684 | # | 751 | # |
| @@ -691,6 +758,7 @@ CONFIG_TOUCHSCREEN_TSC2003=y | |||
| 691 | # Character devices | 758 | # Character devices |
| 692 | # | 759 | # |
| 693 | CONFIG_VT=y | 760 | CONFIG_VT=y |
| 761 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
| 694 | CONFIG_VT_CONSOLE=y | 762 | CONFIG_VT_CONSOLE=y |
| 695 | CONFIG_HW_CONSOLE=y | 763 | CONFIG_HW_CONSOLE=y |
| 696 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | 764 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
| @@ -715,16 +783,20 @@ CONFIG_SERIAL_8250_RSA=y | |||
| 715 | # | 783 | # |
| 716 | # Non-8250 serial port support | 784 | # Non-8250 serial port support |
| 717 | # | 785 | # |
| 786 | # CONFIG_SERIAL_MAX3100 is not set | ||
| 718 | # CONFIG_SERIAL_UARTLITE is not set | 787 | # CONFIG_SERIAL_UARTLITE is not set |
| 719 | CONFIG_SERIAL_CORE=y | 788 | CONFIG_SERIAL_CORE=y |
| 720 | CONFIG_SERIAL_CORE_CONSOLE=y | 789 | CONFIG_SERIAL_CORE_CONSOLE=y |
| 721 | # CONFIG_SERIAL_JSM is not set | 790 | # CONFIG_SERIAL_JSM is not set |
| 722 | # CONFIG_SERIAL_OF_PLATFORM is not set | 791 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 723 | CONFIG_UNIX98_PTYS=y | 792 | CONFIG_UNIX98_PTYS=y |
| 793 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
| 724 | CONFIG_LEGACY_PTYS=y | 794 | CONFIG_LEGACY_PTYS=y |
| 725 | CONFIG_LEGACY_PTY_COUNT=256 | 795 | CONFIG_LEGACY_PTY_COUNT=256 |
| 796 | # CONFIG_HVC_UDBG is not set | ||
| 726 | # CONFIG_IPMI_HANDLER is not set | 797 | # CONFIG_IPMI_HANDLER is not set |
| 727 | CONFIG_HW_RANDOM=y | 798 | CONFIG_HW_RANDOM=y |
| 799 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 728 | # CONFIG_NVRAM is not set | 800 | # CONFIG_NVRAM is not set |
| 729 | # CONFIG_R3964 is not set | 801 | # CONFIG_R3964 is not set |
| 730 | # CONFIG_APPLICOM is not set | 802 | # CONFIG_APPLICOM is not set |
| @@ -734,44 +806,62 @@ CONFIG_DEVPORT=y | |||
| 734 | CONFIG_I2C=y | 806 | CONFIG_I2C=y |
| 735 | CONFIG_I2C_BOARDINFO=y | 807 | CONFIG_I2C_BOARDINFO=y |
| 736 | CONFIG_I2C_CHARDEV=y | 808 | CONFIG_I2C_CHARDEV=y |
| 809 | CONFIG_I2C_HELPER_AUTO=y | ||
| 737 | 810 | ||
| 738 | # | 811 | # |
| 739 | # I2C Hardware Bus support | 812 | # I2C Hardware Bus support |
| 740 | # | 813 | # |
| 814 | |||
| 815 | # | ||
| 816 | # PC SMBus host controller drivers | ||
| 817 | # | ||
| 741 | # CONFIG_I2C_ALI1535 is not set | 818 | # CONFIG_I2C_ALI1535 is not set |
| 742 | # CONFIG_I2C_ALI1563 is not set | 819 | # CONFIG_I2C_ALI1563 is not set |
| 743 | # CONFIG_I2C_ALI15X3 is not set | 820 | # CONFIG_I2C_ALI15X3 is not set |
| 744 | # CONFIG_I2C_AMD756 is not set | 821 | # CONFIG_I2C_AMD756 is not set |
| 745 | # CONFIG_I2C_AMD8111 is not set | 822 | # CONFIG_I2C_AMD8111 is not set |
| 746 | # CONFIG_I2C_I801 is not set | 823 | # CONFIG_I2C_I801 is not set |
| 747 | # CONFIG_I2C_I810 is not set | 824 | # CONFIG_I2C_ISCH is not set |
| 748 | # CONFIG_I2C_PIIX4 is not set | 825 | # CONFIG_I2C_PIIX4 is not set |
| 749 | CONFIG_I2C_MPC=y | ||
| 750 | # CONFIG_I2C_NFORCE2 is not set | 826 | # CONFIG_I2C_NFORCE2 is not set |
| 751 | # CONFIG_I2C_OCORES is not set | ||
| 752 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 753 | # CONFIG_I2C_PROSAVAGE is not set | ||
| 754 | # CONFIG_I2C_SAVAGE4 is not set | ||
| 755 | # CONFIG_I2C_SIMTEC is not set | ||
| 756 | # CONFIG_I2C_SIS5595 is not set | 827 | # CONFIG_I2C_SIS5595 is not set |
| 757 | # CONFIG_I2C_SIS630 is not set | 828 | # CONFIG_I2C_SIS630 is not set |
| 758 | # CONFIG_I2C_SIS96X is not set | 829 | # CONFIG_I2C_SIS96X is not set |
| 759 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 760 | # CONFIG_I2C_STUB is not set | ||
| 761 | # CONFIG_I2C_TINY_USB is not set | ||
| 762 | # CONFIG_I2C_VIA is not set | 830 | # CONFIG_I2C_VIA is not set |
| 763 | # CONFIG_I2C_VIAPRO is not set | 831 | # CONFIG_I2C_VIAPRO is not set |
| 832 | |||
| 833 | # | ||
| 834 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
| 835 | # | ||
| 836 | CONFIG_I2C_MPC=y | ||
| 837 | # CONFIG_I2C_OCORES is not set | ||
| 838 | # CONFIG_I2C_SIMTEC is not set | ||
| 839 | |||
| 840 | # | ||
| 841 | # External I2C/SMBus adapter drivers | ||
| 842 | # | ||
| 843 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
| 844 | # CONFIG_I2C_TAOS_EVM is not set | ||
| 845 | # CONFIG_I2C_TINY_USB is not set | ||
| 846 | |||
| 847 | # | ||
| 848 | # Graphics adapter I2C/DDC channel drivers | ||
| 849 | # | ||
| 764 | # CONFIG_I2C_VOODOO3 is not set | 850 | # CONFIG_I2C_VOODOO3 is not set |
| 851 | |||
| 852 | # | ||
| 853 | # Other I2C/SMBus bus drivers | ||
| 854 | # | ||
| 765 | # CONFIG_I2C_PCA_PLATFORM is not set | 855 | # CONFIG_I2C_PCA_PLATFORM is not set |
| 856 | # CONFIG_I2C_STUB is not set | ||
| 766 | 857 | ||
| 767 | # | 858 | # |
| 768 | # Miscellaneous I2C Chip support | 859 | # Miscellaneous I2C Chip support |
| 769 | # | 860 | # |
| 770 | # CONFIG_DS1682 is not set | 861 | # CONFIG_DS1682 is not set |
| 771 | # CONFIG_SENSORS_EEPROM is not set | ||
| 772 | # CONFIG_SENSORS_PCF8574 is not set | 862 | # CONFIG_SENSORS_PCF8574 is not set |
| 773 | # CONFIG_PCF8575 is not set | 863 | # CONFIG_PCF8575 is not set |
| 774 | # CONFIG_SENSORS_PCF8591 is not set | 864 | # CONFIG_SENSORS_PCA9539 is not set |
| 775 | # CONFIG_SENSORS_MAX6875 is not set | 865 | # CONFIG_SENSORS_MAX6875 is not set |
| 776 | # CONFIG_SENSORS_TSL2550 is not set | 866 | # CONFIG_SENSORS_TSL2550 is not set |
| 777 | # CONFIG_I2C_DEBUG_CORE is not set | 867 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -785,33 +875,38 @@ CONFIG_SPI_MASTER=y | |||
| 785 | # SPI Master Controller Drivers | 875 | # SPI Master Controller Drivers |
| 786 | # | 876 | # |
| 787 | # CONFIG_SPI_BITBANG is not set | 877 | # CONFIG_SPI_BITBANG is not set |
| 788 | CONFIG_SPI_SOCRATES=y | ||
| 789 | 878 | ||
| 790 | # | 879 | # |
| 791 | # SPI Protocol Masters | 880 | # SPI Protocol Masters |
| 792 | # | 881 | # |
| 793 | # CONFIG_SPI_AT25 is not set | ||
| 794 | # CONFIG_SPI_SPIDEV is not set | 882 | # CONFIG_SPI_SPIDEV is not set |
| 795 | # CONFIG_SPI_TLE62X0 is not set | 883 | # CONFIG_SPI_TLE62X0 is not set |
| 884 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 885 | # CONFIG_GPIOLIB is not set | ||
| 796 | # CONFIG_W1 is not set | 886 | # CONFIG_W1 is not set |
| 797 | # CONFIG_POWER_SUPPLY is not set | 887 | # CONFIG_POWER_SUPPLY is not set |
| 798 | CONFIG_HWMON=y | 888 | CONFIG_HWMON=y |
| 799 | CONFIG_HWMON_VID=y | 889 | CONFIG_HWMON_VID=y |
| 890 | # CONFIG_SENSORS_AD7414 is not set | ||
| 800 | # CONFIG_SENSORS_AD7418 is not set | 891 | # CONFIG_SENSORS_AD7418 is not set |
| 892 | # CONFIG_SENSORS_ADCXX is not set | ||
| 801 | # CONFIG_SENSORS_ADM1021 is not set | 893 | # CONFIG_SENSORS_ADM1021 is not set |
| 802 | # CONFIG_SENSORS_ADM1025 is not set | 894 | # CONFIG_SENSORS_ADM1025 is not set |
| 803 | # CONFIG_SENSORS_ADM1026 is not set | 895 | # CONFIG_SENSORS_ADM1026 is not set |
| 804 | # CONFIG_SENSORS_ADM1029 is not set | 896 | # CONFIG_SENSORS_ADM1029 is not set |
| 805 | # CONFIG_SENSORS_ADM1031 is not set | 897 | # CONFIG_SENSORS_ADM1031 is not set |
| 806 | # CONFIG_SENSORS_ADM9240 is not set | 898 | # CONFIG_SENSORS_ADM9240 is not set |
| 899 | # CONFIG_SENSORS_ADT7462 is not set | ||
| 807 | # CONFIG_SENSORS_ADT7470 is not set | 900 | # CONFIG_SENSORS_ADT7470 is not set |
| 808 | # CONFIG_SENSORS_ADT7473 is not set | 901 | # CONFIG_SENSORS_ADT7473 is not set |
| 902 | # CONFIG_SENSORS_ADT7475 is not set | ||
| 809 | # CONFIG_SENSORS_ATXP1 is not set | 903 | # CONFIG_SENSORS_ATXP1 is not set |
| 810 | # CONFIG_SENSORS_DS1621 is not set | 904 | # CONFIG_SENSORS_DS1621 is not set |
| 811 | # CONFIG_SENSORS_I5K_AMB is not set | 905 | # CONFIG_SENSORS_I5K_AMB is not set |
| 812 | # CONFIG_SENSORS_F71805F is not set | 906 | # CONFIG_SENSORS_F71805F is not set |
| 813 | # CONFIG_SENSORS_F71882FG is not set | 907 | # CONFIG_SENSORS_F71882FG is not set |
| 814 | # CONFIG_SENSORS_F75375S is not set | 908 | # CONFIG_SENSORS_F75375S is not set |
| 909 | # CONFIG_SENSORS_G760A is not set | ||
| 815 | # CONFIG_SENSORS_GL518SM is not set | 910 | # CONFIG_SENSORS_GL518SM is not set |
| 816 | # CONFIG_SENSORS_GL520SM is not set | 911 | # CONFIG_SENSORS_GL520SM is not set |
| 817 | # CONFIG_SENSORS_IT87 is not set | 912 | # CONFIG_SENSORS_IT87 is not set |
| @@ -827,10 +922,15 @@ CONFIG_SENSORS_LM75=y | |||
| 827 | # CONFIG_SENSORS_LM90 is not set | 922 | # CONFIG_SENSORS_LM90 is not set |
| 828 | # CONFIG_SENSORS_LM92 is not set | 923 | # CONFIG_SENSORS_LM92 is not set |
| 829 | # CONFIG_SENSORS_LM93 is not set | 924 | # CONFIG_SENSORS_LM93 is not set |
| 925 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 926 | # CONFIG_SENSORS_LTC4245 is not set | ||
| 927 | # CONFIG_SENSORS_LM95241 is not set | ||
| 928 | # CONFIG_SENSORS_MAX1111 is not set | ||
| 830 | # CONFIG_SENSORS_MAX1619 is not set | 929 | # CONFIG_SENSORS_MAX1619 is not set |
| 831 | # CONFIG_SENSORS_MAX6650 is not set | 930 | # CONFIG_SENSORS_MAX6650 is not set |
| 832 | # CONFIG_SENSORS_PC87360 is not set | 931 | # CONFIG_SENSORS_PC87360 is not set |
| 833 | # CONFIG_SENSORS_PC87427 is not set | 932 | # CONFIG_SENSORS_PC87427 is not set |
| 933 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 834 | # CONFIG_SENSORS_SIS5595 is not set | 934 | # CONFIG_SENSORS_SIS5595 is not set |
| 835 | # CONFIG_SENSORS_DME1737 is not set | 935 | # CONFIG_SENSORS_DME1737 is not set |
| 836 | # CONFIG_SENSORS_SMSC47M1 is not set | 936 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -849,22 +949,31 @@ CONFIG_SENSORS_W83781D=y | |||
| 849 | # CONFIG_SENSORS_W83L786NG is not set | 949 | # CONFIG_SENSORS_W83L786NG is not set |
| 850 | # CONFIG_SENSORS_W83627HF is not set | 950 | # CONFIG_SENSORS_W83627HF is not set |
| 851 | # CONFIG_SENSORS_W83627EHF is not set | 951 | # CONFIG_SENSORS_W83627EHF is not set |
| 952 | # CONFIG_SENSORS_LIS3_SPI is not set | ||
| 852 | CONFIG_HWMON_DEBUG_CHIP=y | 953 | CONFIG_HWMON_DEBUG_CHIP=y |
| 853 | # CONFIG_THERMAL is not set | 954 | # CONFIG_THERMAL is not set |
| 854 | # CONFIG_THERMAL_HWMON is not set | 955 | # CONFIG_THERMAL_HWMON is not set |
| 855 | # CONFIG_WATCHDOG is not set | 956 | # CONFIG_WATCHDOG is not set |
| 957 | CONFIG_SSB_POSSIBLE=y | ||
| 856 | 958 | ||
| 857 | # | 959 | # |
| 858 | # Sonics Silicon Backplane | 960 | # Sonics Silicon Backplane |
| 859 | # | 961 | # |
| 860 | CONFIG_SSB_POSSIBLE=y | ||
| 861 | # CONFIG_SSB is not set | 962 | # CONFIG_SSB is not set |
| 862 | 963 | ||
| 863 | # | 964 | # |
| 864 | # Multifunction device drivers | 965 | # Multifunction device drivers |
| 865 | # | 966 | # |
| 967 | # CONFIG_MFD_CORE is not set | ||
| 866 | # CONFIG_MFD_SM501 is not set | 968 | # CONFIG_MFD_SM501 is not set |
| 867 | # CONFIG_HTC_PASIC3 is not set | 969 | # CONFIG_HTC_PASIC3 is not set |
| 970 | # CONFIG_TWL4030_CORE is not set | ||
| 971 | # CONFIG_MFD_TMIO is not set | ||
| 972 | # CONFIG_PMIC_DA903X is not set | ||
| 973 | # CONFIG_MFD_WM8400 is not set | ||
| 974 | # CONFIG_MFD_WM8350_I2C is not set | ||
| 975 | # CONFIG_MFD_PCF50633 is not set | ||
| 976 | # CONFIG_REGULATOR is not set | ||
| 868 | 977 | ||
| 869 | # | 978 | # |
| 870 | # Multimedia devices | 979 | # Multimedia devices |
| @@ -893,6 +1002,7 @@ CONFIG_DAB=y | |||
| 893 | CONFIG_FB=y | 1002 | CONFIG_FB=y |
| 894 | # CONFIG_FIRMWARE_EDID is not set | 1003 | # CONFIG_FIRMWARE_EDID is not set |
| 895 | # CONFIG_FB_DDC is not set | 1004 | # CONFIG_FB_DDC is not set |
| 1005 | # CONFIG_FB_BOOT_VESA_SUPPORT is not set | ||
| 896 | CONFIG_FB_CFB_FILLRECT=y | 1006 | CONFIG_FB_CFB_FILLRECT=y |
| 897 | CONFIG_FB_CFB_COPYAREA=y | 1007 | CONFIG_FB_CFB_COPYAREA=y |
| 898 | CONFIG_FB_CFB_IMAGEBLIT=y | 1008 | CONFIG_FB_CFB_IMAGEBLIT=y |
| @@ -914,10 +1024,6 @@ CONFIG_FB_BOTH_ENDIAN=y | |||
| 914 | # | 1024 | # |
| 915 | # Frame buffer hardware drivers | 1025 | # Frame buffer hardware drivers |
| 916 | # | 1026 | # |
| 917 | CONFIG_FB_MB862XX=y | ||
| 918 | # CONFIG_FB_MB862XX_PCI_GDC is not set | ||
| 919 | CONFIG_FB_MB862XX_LIME=y | ||
| 920 | # CONFIG_FB_PRE_INIT_FB is not set | ||
| 921 | # CONFIG_FB_CIRRUS is not set | 1027 | # CONFIG_FB_CIRRUS is not set |
| 922 | # CONFIG_FB_PM2 is not set | 1028 | # CONFIG_FB_PM2 is not set |
| 923 | # CONFIG_FB_CYBER2000 is not set | 1029 | # CONFIG_FB_CYBER2000 is not set |
| @@ -936,6 +1042,7 @@ CONFIG_FB_MB862XX_LIME=y | |||
| 936 | # CONFIG_FB_S3 is not set | 1042 | # CONFIG_FB_S3 is not set |
| 937 | # CONFIG_FB_SAVAGE is not set | 1043 | # CONFIG_FB_SAVAGE is not set |
| 938 | # CONFIG_FB_SIS is not set | 1044 | # CONFIG_FB_SIS is not set |
| 1045 | # CONFIG_FB_VIA is not set | ||
| 939 | # CONFIG_FB_NEOMAGIC is not set | 1046 | # CONFIG_FB_NEOMAGIC is not set |
| 940 | # CONFIG_FB_KYRO is not set | 1047 | # CONFIG_FB_KYRO is not set |
| 941 | # CONFIG_FB_3DFX is not set | 1048 | # CONFIG_FB_3DFX is not set |
| @@ -944,9 +1051,16 @@ CONFIG_FB_MB862XX_LIME=y | |||
| 944 | # CONFIG_FB_TRIDENT is not set | 1051 | # CONFIG_FB_TRIDENT is not set |
| 945 | # CONFIG_FB_ARK is not set | 1052 | # CONFIG_FB_ARK is not set |
| 946 | # CONFIG_FB_PM3 is not set | 1053 | # CONFIG_FB_PM3 is not set |
| 1054 | # CONFIG_FB_CARMINE is not set | ||
| 947 | # CONFIG_FB_FSL_DIU is not set | 1055 | # CONFIG_FB_FSL_DIU is not set |
| 948 | # CONFIG_FB_IBM_GXT4500 is not set | 1056 | # CONFIG_FB_IBM_GXT4500 is not set |
| 949 | # CONFIG_FB_VIRTUAL is not set | 1057 | # CONFIG_FB_VIRTUAL is not set |
| 1058 | # CONFIG_FB_METRONOME is not set | ||
| 1059 | CONFIG_FB_MB862XX=y | ||
| 1060 | # CONFIG_FB_MB862XX_PCI_GDC is not set | ||
| 1061 | CONFIG_FB_MB862XX_LIME=y | ||
| 1062 | # CONFIG_FB_PRE_INIT_FB is not set | ||
| 1063 | # CONFIG_FB_BROADSHEET is not set | ||
| 950 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 1064 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 951 | 1065 | ||
| 952 | # | 1066 | # |
| @@ -974,10 +1088,6 @@ CONFIG_FONT_8x16=y | |||
| 974 | # CONFIG_FONT_SUN12x22 is not set | 1088 | # CONFIG_FONT_SUN12x22 is not set |
| 975 | # CONFIG_FONT_10x18 is not set | 1089 | # CONFIG_FONT_10x18 is not set |
| 976 | # CONFIG_LOGO is not set | 1090 | # CONFIG_LOGO is not set |
| 977 | |||
| 978 | # | ||
| 979 | # Sound | ||
| 980 | # | ||
| 981 | # CONFIG_SOUND is not set | 1091 | # CONFIG_SOUND is not set |
| 982 | CONFIG_HID_SUPPORT=y | 1092 | CONFIG_HID_SUPPORT=y |
| 983 | CONFIG_HID=y | 1093 | CONFIG_HID=y |
| @@ -988,9 +1098,36 @@ CONFIG_HID=y | |||
| 988 | # USB Input Devices | 1098 | # USB Input Devices |
| 989 | # | 1099 | # |
| 990 | CONFIG_USB_HID=y | 1100 | CONFIG_USB_HID=y |
| 991 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | 1101 | # CONFIG_HID_PID is not set |
| 992 | # CONFIG_HID_FF is not set | ||
| 993 | # CONFIG_USB_HIDDEV is not set | 1102 | # CONFIG_USB_HIDDEV is not set |
| 1103 | |||
| 1104 | # | ||
| 1105 | # Special HID drivers | ||
| 1106 | # | ||
| 1107 | # CONFIG_HID_A4TECH is not set | ||
| 1108 | # CONFIG_HID_APPLE is not set | ||
| 1109 | # CONFIG_HID_BELKIN is not set | ||
| 1110 | # CONFIG_HID_CHERRY is not set | ||
| 1111 | # CONFIG_HID_CHICONY is not set | ||
| 1112 | # CONFIG_HID_CYPRESS is not set | ||
| 1113 | # CONFIG_DRAGONRISE_FF is not set | ||
| 1114 | # CONFIG_HID_EZKEY is not set | ||
| 1115 | # CONFIG_HID_KYE is not set | ||
| 1116 | # CONFIG_HID_GYRATION is not set | ||
| 1117 | # CONFIG_HID_KENSINGTON is not set | ||
| 1118 | # CONFIG_HID_LOGITECH is not set | ||
| 1119 | # CONFIG_HID_MICROSOFT is not set | ||
| 1120 | # CONFIG_HID_MONTEREY is not set | ||
| 1121 | # CONFIG_HID_NTRIG is not set | ||
| 1122 | # CONFIG_HID_PANTHERLORD is not set | ||
| 1123 | # CONFIG_HID_PETALYNX is not set | ||
| 1124 | # CONFIG_HID_SAMSUNG is not set | ||
| 1125 | # CONFIG_HID_SONY is not set | ||
| 1126 | # CONFIG_HID_SUNPLUS is not set | ||
| 1127 | # CONFIG_GREENASIA_FF is not set | ||
| 1128 | # CONFIG_HID_TOPSEED is not set | ||
| 1129 | # CONFIG_THRUSTMASTER_FF is not set | ||
| 1130 | # CONFIG_ZEROPLUS_FF is not set | ||
| 994 | CONFIG_USB_SUPPORT=y | 1131 | CONFIG_USB_SUPPORT=y |
| 995 | CONFIG_USB_ARCH_HAS_HCD=y | 1132 | CONFIG_USB_ARCH_HAS_HCD=y |
| 996 | CONFIG_USB_ARCH_HAS_OHCI=y | 1133 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1008,6 +1145,9 @@ CONFIG_USB_DEVICE_CLASS=y | |||
| 1008 | # CONFIG_USB_OTG is not set | 1145 | # CONFIG_USB_OTG is not set |
| 1009 | # CONFIG_USB_OTG_WHITELIST is not set | 1146 | # CONFIG_USB_OTG_WHITELIST is not set |
| 1010 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | 1147 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set |
| 1148 | CONFIG_USB_MON=y | ||
| 1149 | # CONFIG_USB_WUSB is not set | ||
| 1150 | # CONFIG_USB_WUSB_CBAF is not set | ||
| 1011 | 1151 | ||
| 1012 | # | 1152 | # |
| 1013 | # USB Host Controller Drivers | 1153 | # USB Host Controller Drivers |
| @@ -1018,6 +1158,7 @@ CONFIG_USB_EHCI_HCD=y | |||
| 1018 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1158 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1019 | # CONFIG_USB_EHCI_FSL is not set | 1159 | # CONFIG_USB_EHCI_FSL is not set |
| 1020 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1160 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
| 1161 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 1021 | # CONFIG_USB_ISP116X_HCD is not set | 1162 | # CONFIG_USB_ISP116X_HCD is not set |
| 1022 | # CONFIG_USB_ISP1760_HCD is not set | 1163 | # CONFIG_USB_ISP1760_HCD is not set |
| 1023 | CONFIG_USB_OHCI_HCD=y | 1164 | CONFIG_USB_OHCI_HCD=y |
| @@ -1031,6 +1172,8 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1031 | # CONFIG_USB_UHCI_HCD is not set | 1172 | # CONFIG_USB_UHCI_HCD is not set |
| 1032 | # CONFIG_USB_SL811_HCD is not set | 1173 | # CONFIG_USB_SL811_HCD is not set |
| 1033 | # CONFIG_USB_R8A66597_HCD is not set | 1174 | # CONFIG_USB_R8A66597_HCD is not set |
| 1175 | # CONFIG_USB_WHCI_HCD is not set | ||
| 1176 | # CONFIG_USB_HWA_HCD is not set | ||
| 1034 | 1177 | ||
| 1035 | # | 1178 | # |
| 1036 | # USB Device Class drivers | 1179 | # USB Device Class drivers |
| @@ -1038,20 +1181,20 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1038 | # CONFIG_USB_ACM is not set | 1181 | # CONFIG_USB_ACM is not set |
| 1039 | # CONFIG_USB_PRINTER is not set | 1182 | # CONFIG_USB_PRINTER is not set |
| 1040 | # CONFIG_USB_WDM is not set | 1183 | # CONFIG_USB_WDM is not set |
| 1184 | # CONFIG_USB_TMC is not set | ||
| 1041 | 1185 | ||
| 1042 | # | 1186 | # |
| 1043 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1187 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1044 | # | 1188 | # |
| 1045 | 1189 | ||
| 1046 | # | 1190 | # |
| 1047 | # may also be needed; see USB_STORAGE Help for more information | 1191 | # also be needed; see USB_STORAGE Help for more info |
| 1048 | # | 1192 | # |
| 1049 | CONFIG_USB_STORAGE=y | 1193 | CONFIG_USB_STORAGE=y |
| 1050 | # CONFIG_USB_STORAGE_DEBUG is not set | 1194 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 1051 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1195 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 1052 | # CONFIG_USB_STORAGE_FREECOM is not set | 1196 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 1053 | # CONFIG_USB_STORAGE_ISD200 is not set | 1197 | # CONFIG_USB_STORAGE_ISD200 is not set |
| 1054 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 1055 | # CONFIG_USB_STORAGE_USBAT is not set | 1198 | # CONFIG_USB_STORAGE_USBAT is not set |
| 1056 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1199 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 1057 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1200 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| @@ -1067,7 +1210,6 @@ CONFIG_USB_STORAGE=y | |||
| 1067 | # | 1210 | # |
| 1068 | # CONFIG_USB_MDC800 is not set | 1211 | # CONFIG_USB_MDC800 is not set |
| 1069 | # CONFIG_USB_MICROTEK is not set | 1212 | # CONFIG_USB_MICROTEK is not set |
| 1070 | CONFIG_USB_MON=y | ||
| 1071 | 1213 | ||
| 1072 | # | 1214 | # |
| 1073 | # USB port drivers | 1215 | # USB port drivers |
| @@ -1080,7 +1222,7 @@ CONFIG_USB_MON=y | |||
| 1080 | # CONFIG_USB_EMI62 is not set | 1222 | # CONFIG_USB_EMI62 is not set |
| 1081 | # CONFIG_USB_EMI26 is not set | 1223 | # CONFIG_USB_EMI26 is not set |
| 1082 | # CONFIG_USB_ADUTUX is not set | 1224 | # CONFIG_USB_ADUTUX is not set |
| 1083 | # CONFIG_USB_AUERSWALD is not set | 1225 | # CONFIG_USB_SEVSEG is not set |
| 1084 | # CONFIG_USB_RIO500 is not set | 1226 | # CONFIG_USB_RIO500 is not set |
| 1085 | # CONFIG_USB_LEGOTOWER is not set | 1227 | # CONFIG_USB_LEGOTOWER is not set |
| 1086 | # CONFIG_USB_LCD is not set | 1228 | # CONFIG_USB_LCD is not set |
| @@ -1088,7 +1230,6 @@ CONFIG_USB_MON=y | |||
| 1088 | # CONFIG_USB_LED is not set | 1230 | # CONFIG_USB_LED is not set |
| 1089 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1231 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1090 | # CONFIG_USB_CYTHERM is not set | 1232 | # CONFIG_USB_CYTHERM is not set |
| 1091 | # CONFIG_USB_PHIDGET is not set | ||
| 1092 | # CONFIG_USB_IDMOUSE is not set | 1233 | # CONFIG_USB_IDMOUSE is not set |
| 1093 | # CONFIG_USB_FTDI_ELAN is not set | 1234 | # CONFIG_USB_FTDI_ELAN is not set |
| 1094 | # CONFIG_USB_APPLEDISPLAY is not set | 1235 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1098,7 +1239,14 @@ CONFIG_USB_MON=y | |||
| 1098 | # CONFIG_USB_IOWARRIOR is not set | 1239 | # CONFIG_USB_IOWARRIOR is not set |
| 1099 | # CONFIG_USB_TEST is not set | 1240 | # CONFIG_USB_TEST is not set |
| 1100 | # CONFIG_USB_ISIGHTFW is not set | 1241 | # CONFIG_USB_ISIGHTFW is not set |
| 1242 | # CONFIG_USB_VST is not set | ||
| 1101 | # CONFIG_USB_GADGET is not set | 1243 | # CONFIG_USB_GADGET is not set |
| 1244 | |||
| 1245 | # | ||
| 1246 | # OTG and related infrastructure | ||
| 1247 | # | ||
| 1248 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1249 | # CONFIG_UWB is not set | ||
| 1102 | # CONFIG_MMC is not set | 1250 | # CONFIG_MMC is not set |
| 1103 | # CONFIG_MEMSTICK is not set | 1251 | # CONFIG_MEMSTICK is not set |
| 1104 | # CONFIG_NEW_LEDS is not set | 1252 | # CONFIG_NEW_LEDS is not set |
| @@ -1135,33 +1283,42 @@ CONFIG_RTC_INTF_DEV=y | |||
| 1135 | # CONFIG_RTC_DRV_M41T80 is not set | 1283 | # CONFIG_RTC_DRV_M41T80 is not set |
| 1136 | # CONFIG_RTC_DRV_S35390A is not set | 1284 | # CONFIG_RTC_DRV_S35390A is not set |
| 1137 | # CONFIG_RTC_DRV_FM3130 is not set | 1285 | # CONFIG_RTC_DRV_FM3130 is not set |
| 1138 | CONFIG_RTC_DRV_RX8025=y | 1286 | # CONFIG_RTC_DRV_RX8581 is not set |
| 1139 | 1287 | ||
| 1140 | # | 1288 | # |
| 1141 | # SPI RTC drivers | 1289 | # SPI RTC drivers |
| 1142 | # | 1290 | # |
| 1291 | # CONFIG_RTC_DRV_M41T94 is not set | ||
| 1292 | # CONFIG_RTC_DRV_DS1305 is not set | ||
| 1293 | # CONFIG_RTC_DRV_DS1390 is not set | ||
| 1143 | # CONFIG_RTC_DRV_MAX6902 is not set | 1294 | # CONFIG_RTC_DRV_MAX6902 is not set |
| 1144 | # CONFIG_RTC_DRV_R9701 is not set | 1295 | # CONFIG_RTC_DRV_R9701 is not set |
| 1145 | # CONFIG_RTC_DRV_RS5C348 is not set | 1296 | # CONFIG_RTC_DRV_RS5C348 is not set |
| 1297 | # CONFIG_RTC_DRV_DS3234 is not set | ||
| 1146 | 1298 | ||
| 1147 | # | 1299 | # |
| 1148 | # Platform RTC drivers | 1300 | # Platform RTC drivers |
| 1149 | # | 1301 | # |
| 1150 | # CONFIG_RTC_DRV_CMOS is not set | 1302 | # CONFIG_RTC_DRV_CMOS is not set |
| 1303 | # CONFIG_RTC_DRV_DS1286 is not set | ||
| 1151 | # CONFIG_RTC_DRV_DS1511 is not set | 1304 | # CONFIG_RTC_DRV_DS1511 is not set |
| 1152 | # CONFIG_RTC_DRV_DS1553 is not set | 1305 | # CONFIG_RTC_DRV_DS1553 is not set |
| 1153 | # CONFIG_RTC_DRV_DS1742 is not set | 1306 | # CONFIG_RTC_DRV_DS1742 is not set |
| 1154 | # CONFIG_RTC_DRV_STK17TA8 is not set | 1307 | # CONFIG_RTC_DRV_STK17TA8 is not set |
| 1155 | # CONFIG_RTC_DRV_M48T86 is not set | 1308 | # CONFIG_RTC_DRV_M48T86 is not set |
| 1309 | # CONFIG_RTC_DRV_M48T35 is not set | ||
| 1156 | # CONFIG_RTC_DRV_M48T59 is not set | 1310 | # CONFIG_RTC_DRV_M48T59 is not set |
| 1311 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
| 1157 | # CONFIG_RTC_DRV_V3020 is not set | 1312 | # CONFIG_RTC_DRV_V3020 is not set |
| 1158 | 1313 | ||
| 1159 | # | 1314 | # |
| 1160 | # on-CPU RTC drivers | 1315 | # on-CPU RTC drivers |
| 1161 | # | 1316 | # |
| 1162 | CONFIG_RTC_DRV_PPC=y | 1317 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1163 | # CONFIG_DMADEVICES is not set | 1318 | # CONFIG_DMADEVICES is not set |
| 1319 | # CONFIG_AUXDISPLAY is not set | ||
| 1164 | # CONFIG_UIO is not set | 1320 | # CONFIG_UIO is not set |
| 1321 | # CONFIG_STAGING is not set | ||
| 1165 | 1322 | ||
| 1166 | # | 1323 | # |
| 1167 | # File systems | 1324 | # File systems |
| @@ -1170,17 +1327,20 @@ CONFIG_EXT2_FS=y | |||
| 1170 | # CONFIG_EXT2_FS_XATTR is not set | 1327 | # CONFIG_EXT2_FS_XATTR is not set |
| 1171 | # CONFIG_EXT2_FS_XIP is not set | 1328 | # CONFIG_EXT2_FS_XIP is not set |
| 1172 | CONFIG_EXT3_FS=y | 1329 | CONFIG_EXT3_FS=y |
| 1330 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1173 | CONFIG_EXT3_FS_XATTR=y | 1331 | CONFIG_EXT3_FS_XATTR=y |
| 1174 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1332 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1175 | # CONFIG_EXT3_FS_SECURITY is not set | 1333 | # CONFIG_EXT3_FS_SECURITY is not set |
| 1176 | # CONFIG_EXT4DEV_FS is not set | 1334 | # CONFIG_EXT4_FS is not set |
| 1177 | CONFIG_JBD=y | 1335 | CONFIG_JBD=y |
| 1178 | CONFIG_FS_MBCACHE=y | 1336 | CONFIG_FS_MBCACHE=y |
| 1179 | # CONFIG_REISERFS_FS is not set | 1337 | # CONFIG_REISERFS_FS is not set |
| 1180 | # CONFIG_JFS_FS is not set | 1338 | # CONFIG_JFS_FS is not set |
| 1181 | # CONFIG_FS_POSIX_ACL is not set | 1339 | # CONFIG_FS_POSIX_ACL is not set |
| 1340 | CONFIG_FILE_LOCKING=y | ||
| 1182 | # CONFIG_XFS_FS is not set | 1341 | # CONFIG_XFS_FS is not set |
| 1183 | # CONFIG_OCFS2_FS is not set | 1342 | # CONFIG_OCFS2_FS is not set |
| 1343 | # CONFIG_BTRFS_FS is not set | ||
| 1184 | CONFIG_DNOTIFY=y | 1344 | CONFIG_DNOTIFY=y |
| 1185 | CONFIG_INOTIFY=y | 1345 | CONFIG_INOTIFY=y |
| 1186 | CONFIG_INOTIFY_USER=y | 1346 | CONFIG_INOTIFY_USER=y |
| @@ -1190,6 +1350,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1190 | # CONFIG_FUSE_FS is not set | 1350 | # CONFIG_FUSE_FS is not set |
| 1191 | 1351 | ||
| 1192 | # | 1352 | # |
| 1353 | # Caches | ||
| 1354 | # | ||
| 1355 | # CONFIG_FSCACHE is not set | ||
| 1356 | |||
| 1357 | # | ||
| 1193 | # CD-ROM/DVD Filesystems | 1358 | # CD-ROM/DVD Filesystems |
| 1194 | # | 1359 | # |
| 1195 | # CONFIG_ISO9660_FS is not set | 1360 | # CONFIG_ISO9660_FS is not set |
| @@ -1208,15 +1373,13 @@ CONFIG_INOTIFY_USER=y | |||
| 1208 | CONFIG_PROC_FS=y | 1373 | CONFIG_PROC_FS=y |
| 1209 | CONFIG_PROC_KCORE=y | 1374 | CONFIG_PROC_KCORE=y |
| 1210 | CONFIG_PROC_SYSCTL=y | 1375 | CONFIG_PROC_SYSCTL=y |
| 1376 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 1211 | CONFIG_SYSFS=y | 1377 | CONFIG_SYSFS=y |
| 1212 | CONFIG_TMPFS=y | 1378 | CONFIG_TMPFS=y |
| 1213 | # CONFIG_TMPFS_POSIX_ACL is not set | 1379 | # CONFIG_TMPFS_POSIX_ACL is not set |
| 1214 | # CONFIG_HUGETLB_PAGE is not set | 1380 | # CONFIG_HUGETLB_PAGE is not set |
| 1215 | # CONFIG_CONFIGFS_FS is not set | 1381 | # CONFIG_CONFIGFS_FS is not set |
| 1216 | 1382 | CONFIG_MISC_FILESYSTEMS=y | |
| 1217 | # | ||
| 1218 | # Miscellaneous filesystems | ||
| 1219 | # | ||
| 1220 | # CONFIG_ADFS_FS is not set | 1383 | # CONFIG_ADFS_FS is not set |
| 1221 | # CONFIG_AFFS_FS is not set | 1384 | # CONFIG_AFFS_FS is not set |
| 1222 | # CONFIG_HFS_FS is not set | 1385 | # CONFIG_HFS_FS is not set |
| @@ -1236,25 +1399,27 @@ CONFIG_JFFS2_ZLIB=y | |||
| 1236 | CONFIG_JFFS2_RTIME=y | 1399 | CONFIG_JFFS2_RTIME=y |
| 1237 | # CONFIG_JFFS2_RUBIN is not set | 1400 | # CONFIG_JFFS2_RUBIN is not set |
| 1238 | CONFIG_CRAMFS=y | 1401 | CONFIG_CRAMFS=y |
| 1402 | # CONFIG_SQUASHFS is not set | ||
| 1239 | # CONFIG_VXFS_FS is not set | 1403 | # CONFIG_VXFS_FS is not set |
| 1240 | # CONFIG_MINIX_FS is not set | 1404 | # CONFIG_MINIX_FS is not set |
| 1405 | # CONFIG_OMFS_FS is not set | ||
| 1241 | # CONFIG_HPFS_FS is not set | 1406 | # CONFIG_HPFS_FS is not set |
| 1242 | # CONFIG_QNX4FS_FS is not set | 1407 | # CONFIG_QNX4FS_FS is not set |
| 1243 | # CONFIG_ROMFS_FS is not set | 1408 | # CONFIG_ROMFS_FS is not set |
| 1244 | # CONFIG_SYSV_FS is not set | 1409 | # CONFIG_SYSV_FS is not set |
| 1245 | # CONFIG_UFS_FS is not set | 1410 | # CONFIG_UFS_FS is not set |
| 1411 | # CONFIG_NILFS2_FS is not set | ||
| 1246 | CONFIG_NETWORK_FILESYSTEMS=y | 1412 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1247 | CONFIG_NFS_FS=y | 1413 | CONFIG_NFS_FS=y |
| 1248 | CONFIG_NFS_V3=y | 1414 | CONFIG_NFS_V3=y |
| 1249 | # CONFIG_NFS_V3_ACL is not set | 1415 | # CONFIG_NFS_V3_ACL is not set |
| 1250 | # CONFIG_NFS_V4 is not set | 1416 | # CONFIG_NFS_V4 is not set |
| 1251 | # CONFIG_NFSD is not set | ||
| 1252 | CONFIG_ROOT_NFS=y | 1417 | CONFIG_ROOT_NFS=y |
| 1418 | # CONFIG_NFSD is not set | ||
| 1253 | CONFIG_LOCKD=y | 1419 | CONFIG_LOCKD=y |
| 1254 | CONFIG_LOCKD_V4=y | 1420 | CONFIG_LOCKD_V4=y |
| 1255 | CONFIG_NFS_COMMON=y | 1421 | CONFIG_NFS_COMMON=y |
| 1256 | CONFIG_SUNRPC=y | 1422 | CONFIG_SUNRPC=y |
| 1257 | # CONFIG_SUNRPC_BIND34 is not set | ||
| 1258 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1423 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1259 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1424 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1260 | # CONFIG_SMB_FS is not set | 1425 | # CONFIG_SMB_FS is not set |
| @@ -1286,25 +1451,28 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1286 | # CONFIG_SYSV68_PARTITION is not set | 1451 | # CONFIG_SYSV68_PARTITION is not set |
| 1287 | # CONFIG_NLS is not set | 1452 | # CONFIG_NLS is not set |
| 1288 | # CONFIG_DLM is not set | 1453 | # CONFIG_DLM is not set |
| 1454 | # CONFIG_BINARY_PRINTF is not set | ||
| 1289 | 1455 | ||
| 1290 | # | 1456 | # |
| 1291 | # Library routines | 1457 | # Library routines |
| 1292 | # | 1458 | # |
| 1293 | CONFIG_BITREVERSE=y | 1459 | CONFIG_BITREVERSE=y |
| 1294 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 1460 | CONFIG_GENERIC_FIND_LAST_BIT=y |
| 1295 | # CONFIG_CRC_CCITT is not set | 1461 | # CONFIG_CRC_CCITT is not set |
| 1296 | # CONFIG_CRC16 is not set | 1462 | # CONFIG_CRC16 is not set |
| 1463 | # CONFIG_CRC_T10DIF is not set | ||
| 1297 | # CONFIG_CRC_ITU_T is not set | 1464 | # CONFIG_CRC_ITU_T is not set |
| 1298 | CONFIG_CRC32=y | 1465 | CONFIG_CRC32=y |
| 1299 | # CONFIG_CRC7 is not set | 1466 | # CONFIG_CRC7 is not set |
| 1300 | # CONFIG_LIBCRC32C is not set | 1467 | # CONFIG_LIBCRC32C is not set |
| 1301 | CONFIG_ZLIB_INFLATE=y | 1468 | CONFIG_ZLIB_INFLATE=y |
| 1302 | CONFIG_ZLIB_DEFLATE=y | 1469 | CONFIG_ZLIB_DEFLATE=y |
| 1303 | CONFIG_PLIST=y | 1470 | CONFIG_DECOMPRESS_GZIP=y |
| 1304 | CONFIG_HAS_IOMEM=y | 1471 | CONFIG_HAS_IOMEM=y |
| 1305 | CONFIG_HAS_IOPORT=y | 1472 | CONFIG_HAS_IOPORT=y |
| 1306 | CONFIG_HAS_DMA=y | 1473 | CONFIG_HAS_DMA=y |
| 1307 | CONFIG_HAVE_LMB=y | 1474 | CONFIG_HAVE_LMB=y |
| 1475 | CONFIG_NLATTR=y | ||
| 1308 | 1476 | ||
| 1309 | # | 1477 | # |
| 1310 | # Kernel hacking | 1478 | # Kernel hacking |
| @@ -1321,7 +1489,32 @@ CONFIG_FRAME_WARN=1024 | |||
| 1321 | # CONFIG_SLUB_DEBUG_ON is not set | 1489 | # CONFIG_SLUB_DEBUG_ON is not set |
| 1322 | # CONFIG_SLUB_STATS is not set | 1490 | # CONFIG_SLUB_STATS is not set |
| 1323 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1491 | # CONFIG_DEBUG_BUGVERBOSE is not set |
| 1492 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1493 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
| 1494 | # CONFIG_LATENCYTOP is not set | ||
| 1495 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
| 1496 | CONFIG_HAVE_FUNCTION_TRACER=y | ||
| 1497 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1498 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1499 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
| 1500 | CONFIG_TRACING_SUPPORT=y | ||
| 1501 | |||
| 1502 | # | ||
| 1503 | # Tracers | ||
| 1504 | # | ||
| 1505 | # CONFIG_FUNCTION_TRACER is not set | ||
| 1506 | # CONFIG_SCHED_TRACER is not set | ||
| 1507 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1508 | # CONFIG_EVENT_TRACER is not set | ||
| 1509 | # CONFIG_BOOT_TRACER is not set | ||
| 1510 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1511 | # CONFIG_STACK_TRACER is not set | ||
| 1512 | # CONFIG_KMEMTRACE is not set | ||
| 1513 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1514 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1324 | # CONFIG_SAMPLES is not set | 1515 | # CONFIG_SAMPLES is not set |
| 1516 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1517 | CONFIG_PRINT_STACK_DEPTH=64 | ||
| 1325 | # CONFIG_IRQSTACKS is not set | 1518 | # CONFIG_IRQSTACKS is not set |
| 1326 | # CONFIG_PPC_EARLY_DEBUG is not set | 1519 | # CONFIG_PPC_EARLY_DEBUG is not set |
| 1327 | 1520 | ||
| @@ -1330,13 +1523,16 @@ CONFIG_FRAME_WARN=1024 | |||
| 1330 | # | 1523 | # |
| 1331 | # CONFIG_KEYS is not set | 1524 | # CONFIG_KEYS is not set |
| 1332 | # CONFIG_SECURITY is not set | 1525 | # CONFIG_SECURITY is not set |
| 1526 | # CONFIG_SECURITYFS is not set | ||
| 1333 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1527 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1334 | CONFIG_CRYPTO=y | 1528 | CONFIG_CRYPTO=y |
| 1335 | 1529 | ||
| 1336 | # | 1530 | # |
| 1337 | # Crypto core or helper | 1531 | # Crypto core or helper |
| 1338 | # | 1532 | # |
| 1533 | # CONFIG_CRYPTO_FIPS is not set | ||
| 1339 | # CONFIG_CRYPTO_MANAGER is not set | 1534 | # CONFIG_CRYPTO_MANAGER is not set |
| 1535 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
| 1340 | # CONFIG_CRYPTO_GF128MUL is not set | 1536 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1341 | # CONFIG_CRYPTO_NULL is not set | 1537 | # CONFIG_CRYPTO_NULL is not set |
| 1342 | # CONFIG_CRYPTO_CRYPTD is not set | 1538 | # CONFIG_CRYPTO_CRYPTD is not set |
| @@ -1374,6 +1570,10 @@ CONFIG_CRYPTO=y | |||
| 1374 | # CONFIG_CRYPTO_MD4 is not set | 1570 | # CONFIG_CRYPTO_MD4 is not set |
| 1375 | # CONFIG_CRYPTO_MD5 is not set | 1571 | # CONFIG_CRYPTO_MD5 is not set |
| 1376 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1572 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
| 1573 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1574 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1575 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1576 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1377 | # CONFIG_CRYPTO_SHA1 is not set | 1577 | # CONFIG_CRYPTO_SHA1 is not set |
| 1378 | # CONFIG_CRYPTO_SHA256 is not set | 1578 | # CONFIG_CRYPTO_SHA256 is not set |
| 1379 | # CONFIG_CRYPTO_SHA512 is not set | 1579 | # CONFIG_CRYPTO_SHA512 is not set |
| @@ -1403,8 +1603,15 @@ CONFIG_CRYPTO=y | |||
| 1403 | # Compression | 1603 | # Compression |
| 1404 | # | 1604 | # |
| 1405 | # CONFIG_CRYPTO_DEFLATE is not set | 1605 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1606 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1406 | # CONFIG_CRYPTO_LZO is not set | 1607 | # CONFIG_CRYPTO_LZO is not set |
| 1608 | |||
| 1609 | # | ||
| 1610 | # Random Number Generation | ||
| 1611 | # | ||
| 1612 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | ||
| 1407 | CONFIG_CRYPTO_HW=y | 1613 | CONFIG_CRYPTO_HW=y |
| 1408 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1614 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
| 1615 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
| 1409 | # CONFIG_PPC_CLOCK is not set | 1616 | # CONFIG_PPC_CLOCK is not set |
| 1410 | # CONFIG_VIRTUALIZATION is not set | 1617 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/stx_gp3_defconfig b/arch/powerpc/configs/85xx/stx_gp3_defconfig index eb4ba7a5f41f..bd1bfcddbd0c 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:18 2009 | 4 | # Wed May 13 17:22:22 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
| 22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
| 27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| @@ -59,6 +60,7 @@ CONFIG_GENERIC_BUG=y | |||
| 59 | CONFIG_DEFAULT_UIMAGE=y | 60 | CONFIG_DEFAULT_UIMAGE=y |
| 60 | # CONFIG_PPC_DCR_NATIVE is not set | 61 | # CONFIG_PPC_DCR_NATIVE is not set |
| 61 | # CONFIG_PPC_DCR_MMIO is not set | 62 | # CONFIG_PPC_DCR_MMIO is not set |
| 63 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 64 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 63 | 65 | ||
| 64 | # | 66 | # |
| @@ -76,6 +78,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 76 | # CONFIG_BSD_PROCESS_ACCT is not set | 78 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 77 | # CONFIG_TASKSTATS is not set | 79 | # CONFIG_TASKSTATS is not set |
| 78 | # CONFIG_AUDIT is not set | 80 | # CONFIG_AUDIT is not set |
| 81 | |||
| 82 | # | ||
| 83 | # RCU Subsystem | ||
| 84 | # | ||
| 85 | CONFIG_CLASSIC_RCU=y | ||
| 86 | # CONFIG_TREE_RCU is not set | ||
| 87 | # CONFIG_PREEMPT_RCU is not set | ||
| 88 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 89 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 79 | # CONFIG_IKCONFIG is not set | 90 | # CONFIG_IKCONFIG is not set |
| 80 | CONFIG_LOG_BUF_SHIFT=14 | 91 | CONFIG_LOG_BUF_SHIFT=14 |
| 81 | CONFIG_GROUP_SCHED=y | 92 | CONFIG_GROUP_SCHED=y |
| @@ -90,21 +101,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 90 | # CONFIG_NAMESPACES is not set | 101 | # CONFIG_NAMESPACES is not set |
| 91 | CONFIG_BLK_DEV_INITRD=y | 102 | CONFIG_BLK_DEV_INITRD=y |
| 92 | CONFIG_INITRAMFS_SOURCE="" | 103 | CONFIG_INITRAMFS_SOURCE="" |
| 104 | CONFIG_RD_GZIP=y | ||
| 105 | # CONFIG_RD_BZIP2 is not set | ||
| 106 | # CONFIG_RD_LZMA is not set | ||
| 93 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 107 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 94 | CONFIG_SYSCTL=y | 108 | CONFIG_SYSCTL=y |
| 109 | CONFIG_ANON_INODES=y | ||
| 95 | CONFIG_EMBEDDED=y | 110 | CONFIG_EMBEDDED=y |
| 96 | CONFIG_SYSCTL_SYSCALL=y | 111 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | CONFIG_KALLSYMS=y | 112 | CONFIG_KALLSYMS=y |
| 98 | # CONFIG_KALLSYMS_ALL is not set | 113 | # CONFIG_KALLSYMS_ALL is not set |
| 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 114 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 115 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 100 | CONFIG_HOTPLUG=y | 116 | CONFIG_HOTPLUG=y |
| 101 | CONFIG_PRINTK=y | 117 | CONFIG_PRINTK=y |
| 102 | CONFIG_BUG=y | 118 | CONFIG_BUG=y |
| 103 | CONFIG_ELF_CORE=y | 119 | CONFIG_ELF_CORE=y |
| 104 | CONFIG_COMPAT_BRK=y | ||
| 105 | CONFIG_BASE_FULL=y | 120 | CONFIG_BASE_FULL=y |
| 106 | CONFIG_FUTEX=y | 121 | CONFIG_FUTEX=y |
| 107 | CONFIG_ANON_INODES=y | ||
| 108 | CONFIG_EPOLL=y | 122 | CONFIG_EPOLL=y |
| 109 | CONFIG_SIGNALFD=y | 123 | CONFIG_SIGNALFD=y |
| 110 | CONFIG_TIMERFD=y | 124 | CONFIG_TIMERFD=y |
| @@ -114,10 +128,12 @@ CONFIG_AIO=y | |||
| 114 | CONFIG_VM_EVENT_COUNTERS=y | 128 | CONFIG_VM_EVENT_COUNTERS=y |
| 115 | CONFIG_PCI_QUIRKS=y | 129 | CONFIG_PCI_QUIRKS=y |
| 116 | CONFIG_SLUB_DEBUG=y | 130 | CONFIG_SLUB_DEBUG=y |
| 131 | CONFIG_COMPAT_BRK=y | ||
| 117 | # CONFIG_SLAB is not set | 132 | # CONFIG_SLAB is not set |
| 118 | CONFIG_SLUB=y | 133 | CONFIG_SLUB=y |
| 119 | # CONFIG_SLOB is not set | 134 | # CONFIG_SLOB is not set |
| 120 | # CONFIG_PROFILING is not set | 135 | # CONFIG_PROFILING is not set |
| 136 | # CONFIG_MARKERS is not set | ||
| 121 | CONFIG_HAVE_OPROFILE=y | 137 | CONFIG_HAVE_OPROFILE=y |
| 122 | # CONFIG_KPROBES is not set | 138 | # CONFIG_KPROBES is not set |
| 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 139 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -126,6 +142,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 126 | CONFIG_HAVE_KRETPROBES=y | 142 | CONFIG_HAVE_KRETPROBES=y |
| 127 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 143 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 128 | CONFIG_HAVE_CLK=y | 144 | CONFIG_HAVE_CLK=y |
| 145 | # CONFIG_SLOW_WORK is not set | ||
| 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 146 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 130 | CONFIG_SLABINFO=y | 147 | CONFIG_SLABINFO=y |
| 131 | CONFIG_RT_MUTEXES=y | 148 | CONFIG_RT_MUTEXES=y |
| @@ -137,7 +154,6 @@ CONFIG_MODVERSIONS=y | |||
| 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 154 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 138 | CONFIG_BLOCK=y | 155 | CONFIG_BLOCK=y |
| 139 | # CONFIG_LBD is not set | 156 | # CONFIG_LBD is not set |
| 140 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 141 | # CONFIG_BLK_DEV_BSG is not set | 157 | # CONFIG_BLK_DEV_BSG is not set |
| 142 | # CONFIG_BLK_DEV_INTEGRITY is not set | 158 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 143 | 159 | ||
| @@ -153,11 +169,6 @@ CONFIG_IOSCHED_CFQ=y | |||
| 153 | CONFIG_DEFAULT_CFQ=y | 169 | CONFIG_DEFAULT_CFQ=y |
| 154 | # CONFIG_DEFAULT_NOOP is not set | 170 | # CONFIG_DEFAULT_NOOP is not set |
| 155 | CONFIG_DEFAULT_IOSCHED="cfq" | 171 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 156 | CONFIG_CLASSIC_RCU=y | ||
| 157 | # CONFIG_TREE_RCU is not set | ||
| 158 | # CONFIG_PREEMPT_RCU is not set | ||
| 159 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 160 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 161 | # CONFIG_FREEZER is not set | 172 | # CONFIG_FREEZER is not set |
| 162 | 173 | ||
| 163 | # | 174 | # |
| @@ -173,6 +184,7 @@ CONFIG_MPC85xx=y | |||
| 173 | # CONFIG_MPC85xx_MDS is not set | 184 | # CONFIG_MPC85xx_MDS is not set |
| 174 | # CONFIG_MPC8536_DS is not set | 185 | # CONFIG_MPC8536_DS is not set |
| 175 | # CONFIG_MPC85xx_DS is not set | 186 | # CONFIG_MPC85xx_DS is not set |
| 187 | # CONFIG_SOCRATES is not set | ||
| 176 | # CONFIG_KSI8560 is not set | 188 | # CONFIG_KSI8560 is not set |
| 177 | CONFIG_STX_GP3=y | 189 | CONFIG_STX_GP3=y |
| 178 | # CONFIG_TQM8540 is not set | 190 | # CONFIG_TQM8540 is not set |
| @@ -241,9 +253,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 241 | CONFIG_BOUNCE=y | 253 | CONFIG_BOUNCE=y |
| 242 | CONFIG_VIRT_TO_BUS=y | 254 | CONFIG_VIRT_TO_BUS=y |
| 243 | CONFIG_UNEVICTABLE_LRU=y | 255 | CONFIG_UNEVICTABLE_LRU=y |
| 256 | CONFIG_HAVE_MLOCK=y | ||
| 257 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 244 | CONFIG_PPC_4K_PAGES=y | 258 | CONFIG_PPC_4K_PAGES=y |
| 245 | # CONFIG_PPC_16K_PAGES is not set | 259 | # CONFIG_PPC_16K_PAGES is not set |
| 246 | # CONFIG_PPC_64K_PAGES is not set | 260 | # CONFIG_PPC_64K_PAGES is not set |
| 261 | # CONFIG_PPC_256K_PAGES is not set | ||
| 247 | CONFIG_FORCE_MAX_ZONEORDER=11 | 262 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 248 | CONFIG_PROC_DEVICETREE=y | 263 | CONFIG_PROC_DEVICETREE=y |
| 249 | # CONFIG_CMDLINE_BOOL is not set | 264 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -269,6 +284,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 269 | # CONFIG_PCI_LEGACY is not set | 284 | # CONFIG_PCI_LEGACY is not set |
| 270 | # CONFIG_PCI_DEBUG is not set | 285 | # CONFIG_PCI_DEBUG is not set |
| 271 | # CONFIG_PCI_STUB is not set | 286 | # CONFIG_PCI_STUB is not set |
| 287 | # CONFIG_PCI_IOV is not set | ||
| 272 | # CONFIG_PCCARD is not set | 288 | # CONFIG_PCCARD is not set |
| 273 | # CONFIG_HOTPLUG_PCI is not set | 289 | # CONFIG_HOTPLUG_PCI is not set |
| 274 | # CONFIG_HAS_RAPIDIO is not set | 290 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -282,17 +298,17 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 282 | # Default settings for advanced configuration options are used | 298 | # Default settings for advanced configuration options are used |
| 283 | # | 299 | # |
| 284 | CONFIG_LOWMEM_SIZE=0x30000000 | 300 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 301 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 285 | CONFIG_PAGE_OFFSET=0xc0000000 | 302 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 286 | CONFIG_KERNEL_START=0xc0000000 | 303 | CONFIG_KERNEL_START=0xc0000000 |
| 287 | CONFIG_PHYSICAL_START=0x00000000 | 304 | CONFIG_PHYSICAL_START=0x00000000 |
| 288 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 305 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 289 | CONFIG_TASK_SIZE=0xc0000000 | 306 | CONFIG_TASK_SIZE=0xc0000000 |
| 290 | CONFIG_NET=y | 307 | CONFIG_NET=y |
| 291 | 308 | ||
| 292 | # | 309 | # |
| 293 | # Networking options | 310 | # Networking options |
| 294 | # | 311 | # |
| 295 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 296 | CONFIG_PACKET=y | 312 | CONFIG_PACKET=y |
| 297 | # CONFIG_PACKET_MMAP is not set | 313 | # CONFIG_PACKET_MMAP is not set |
| 298 | CONFIG_UNIX=y | 314 | CONFIG_UNIX=y |
| @@ -353,6 +369,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
| 353 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | 369 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set |
| 354 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set | 370 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set |
| 355 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set | 371 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set |
| 372 | # CONFIG_NETFILTER_XT_MATCH_HL is not set | ||
| 356 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | 373 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set |
| 357 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set | 374 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set |
| 358 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set | 375 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set |
| @@ -389,6 +406,7 @@ CONFIG_IP_NF_FILTER=m | |||
| 389 | # CONFIG_IP_NF_TARGET_LOG is not set | 406 | # CONFIG_IP_NF_TARGET_LOG is not set |
| 390 | # CONFIG_IP_NF_TARGET_ULOG is not set | 407 | # CONFIG_IP_NF_TARGET_ULOG is not set |
| 391 | # CONFIG_IP_NF_MANGLE is not set | 408 | # CONFIG_IP_NF_MANGLE is not set |
| 409 | # CONFIG_IP_NF_TARGET_TTL is not set | ||
| 392 | # CONFIG_IP_NF_RAW is not set | 410 | # CONFIG_IP_NF_RAW is not set |
| 393 | # CONFIG_IP_NF_ARPTABLES is not set | 411 | # CONFIG_IP_NF_ARPTABLES is not set |
| 394 | # CONFIG_IP_DCCP is not set | 412 | # CONFIG_IP_DCCP is not set |
| @@ -406,6 +424,7 @@ CONFIG_IP_NF_FILTER=m | |||
| 406 | # CONFIG_LAPB is not set | 424 | # CONFIG_LAPB is not set |
| 407 | # CONFIG_ECONET is not set | 425 | # CONFIG_ECONET is not set |
| 408 | # CONFIG_WAN_ROUTER is not set | 426 | # CONFIG_WAN_ROUTER is not set |
| 427 | # CONFIG_PHONET is not set | ||
| 409 | # CONFIG_NET_SCHED is not set | 428 | # CONFIG_NET_SCHED is not set |
| 410 | # CONFIG_DCB is not set | 429 | # CONFIG_DCB is not set |
| 411 | 430 | ||
| @@ -418,7 +437,6 @@ CONFIG_NET_PKTGEN=y | |||
| 418 | # CONFIG_IRDA is not set | 437 | # CONFIG_IRDA is not set |
| 419 | # CONFIG_BT is not set | 438 | # CONFIG_BT is not set |
| 420 | # CONFIG_AF_RXRPC is not set | 439 | # CONFIG_AF_RXRPC is not set |
| 421 | # CONFIG_PHONET is not set | ||
| 422 | CONFIG_WIRELESS=y | 440 | CONFIG_WIRELESS=y |
| 423 | # CONFIG_CFG80211 is not set | 441 | # CONFIG_CFG80211 is not set |
| 424 | CONFIG_WIRELESS_OLD_REGULATORY=y | 442 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -476,13 +494,20 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 476 | # CONFIG_BLK_DEV_HD is not set | 494 | # CONFIG_BLK_DEV_HD is not set |
| 477 | CONFIG_MISC_DEVICES=y | 495 | CONFIG_MISC_DEVICES=y |
| 478 | # CONFIG_PHANTOM is not set | 496 | # CONFIG_PHANTOM is not set |
| 479 | # CONFIG_EEPROM_93CX6 is not set | ||
| 480 | # CONFIG_SGI_IOC4 is not set | 497 | # CONFIG_SGI_IOC4 is not set |
| 481 | # CONFIG_TIFM_CORE is not set | 498 | # CONFIG_TIFM_CORE is not set |
| 482 | # CONFIG_ICS932S401 is not set | 499 | # CONFIG_ICS932S401 is not set |
| 483 | # CONFIG_ENCLOSURE_SERVICES is not set | 500 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 484 | # CONFIG_HP_ILO is not set | 501 | # CONFIG_HP_ILO is not set |
| 502 | # CONFIG_ISL29003 is not set | ||
| 485 | # CONFIG_C2PORT is not set | 503 | # CONFIG_C2PORT is not set |
| 504 | |||
| 505 | # | ||
| 506 | # EEPROM support | ||
| 507 | # | ||
| 508 | # CONFIG_EEPROM_AT24 is not set | ||
| 509 | # CONFIG_EEPROM_LEGACY is not set | ||
| 510 | # CONFIG_EEPROM_93CX6 is not set | ||
| 486 | CONFIG_HAVE_IDE=y | 511 | CONFIG_HAVE_IDE=y |
| 487 | CONFIG_IDE=y | 512 | CONFIG_IDE=y |
| 488 | 513 | ||
| @@ -591,9 +616,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 591 | # CONFIG_MEGARAID_NEWGEN is not set | 616 | # CONFIG_MEGARAID_NEWGEN is not set |
| 592 | # CONFIG_MEGARAID_LEGACY is not set | 617 | # CONFIG_MEGARAID_LEGACY is not set |
| 593 | # CONFIG_MEGARAID_SAS is not set | 618 | # CONFIG_MEGARAID_SAS is not set |
| 619 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 594 | # CONFIG_SCSI_HPTIOP is not set | 620 | # CONFIG_SCSI_HPTIOP is not set |
| 595 | # CONFIG_SCSI_BUSLOGIC is not set | 621 | # CONFIG_SCSI_BUSLOGIC is not set |
| 596 | # CONFIG_LIBFC is not set | 622 | # CONFIG_LIBFC is not set |
| 623 | # CONFIG_LIBFCOE is not set | ||
| 597 | # CONFIG_FCOE is not set | 624 | # CONFIG_FCOE is not set |
| 598 | # CONFIG_SCSI_DMX3191D is not set | 625 | # CONFIG_SCSI_DMX3191D is not set |
| 599 | # CONFIG_SCSI_EATA is not set | 626 | # CONFIG_SCSI_EATA is not set |
| @@ -617,6 +644,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 617 | # CONFIG_SCSI_DEBUG is not set | 644 | # CONFIG_SCSI_DEBUG is not set |
| 618 | # CONFIG_SCSI_SRP is not set | 645 | # CONFIG_SCSI_SRP is not set |
| 619 | # CONFIG_SCSI_DH is not set | 646 | # CONFIG_SCSI_DH is not set |
| 647 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 620 | # CONFIG_ATA is not set | 648 | # CONFIG_ATA is not set |
| 621 | # CONFIG_MD is not set | 649 | # CONFIG_MD is not set |
| 622 | # CONFIG_FUSION is not set | 650 | # CONFIG_FUSION is not set |
| @@ -633,6 +661,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 633 | # CONFIG_I2O is not set | 661 | # CONFIG_I2O is not set |
| 634 | # CONFIG_MACINTOSH_DRIVERS is not set | 662 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 635 | CONFIG_NETDEVICES=y | 663 | CONFIG_NETDEVICES=y |
| 664 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 636 | # CONFIG_DUMMY is not set | 665 | # CONFIG_DUMMY is not set |
| 637 | # CONFIG_BONDING is not set | 666 | # CONFIG_BONDING is not set |
| 638 | # CONFIG_MACVLAN is not set | 667 | # CONFIG_MACVLAN is not set |
| @@ -666,6 +695,8 @@ CONFIG_NET_ETHERNET=y | |||
| 666 | # CONFIG_SUNGEM is not set | 695 | # CONFIG_SUNGEM is not set |
| 667 | # CONFIG_CASSINI is not set | 696 | # CONFIG_CASSINI is not set |
| 668 | # CONFIG_NET_VENDOR_3COM is not set | 697 | # CONFIG_NET_VENDOR_3COM is not set |
| 698 | # CONFIG_ETHOC is not set | ||
| 699 | # CONFIG_DNET is not set | ||
| 669 | # CONFIG_NET_TULIP is not set | 700 | # CONFIG_NET_TULIP is not set |
| 670 | # CONFIG_HP100 is not set | 701 | # CONFIG_HP100 is not set |
| 671 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 702 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -687,6 +718,7 @@ CONFIG_NETDEV_1000=y | |||
| 687 | # CONFIG_E1000E is not set | 718 | # CONFIG_E1000E is not set |
| 688 | # CONFIG_IP1000 is not set | 719 | # CONFIG_IP1000 is not set |
| 689 | # CONFIG_IGB is not set | 720 | # CONFIG_IGB is not set |
| 721 | # CONFIG_IGBVF is not set | ||
| 690 | # CONFIG_NS83820 is not set | 722 | # CONFIG_NS83820 is not set |
| 691 | # CONFIG_HAMACHI is not set | 723 | # CONFIG_HAMACHI is not set |
| 692 | # CONFIG_YELLOWFIN is not set | 724 | # CONFIG_YELLOWFIN is not set |
| @@ -697,10 +729,12 @@ CONFIG_NETDEV_1000=y | |||
| 697 | # CONFIG_VIA_VELOCITY is not set | 729 | # CONFIG_VIA_VELOCITY is not set |
| 698 | # CONFIG_TIGON3 is not set | 730 | # CONFIG_TIGON3 is not set |
| 699 | # CONFIG_BNX2 is not set | 731 | # CONFIG_BNX2 is not set |
| 732 | CONFIG_FSL_PQ_MDIO=y | ||
| 700 | CONFIG_GIANFAR=y | 733 | CONFIG_GIANFAR=y |
| 701 | # CONFIG_QLA3XXX is not set | 734 | # CONFIG_QLA3XXX is not set |
| 702 | # CONFIG_ATL1 is not set | 735 | # CONFIG_ATL1 is not set |
| 703 | # CONFIG_ATL1E is not set | 736 | # CONFIG_ATL1E is not set |
| 737 | # CONFIG_ATL1C is not set | ||
| 704 | # CONFIG_JME is not set | 738 | # CONFIG_JME is not set |
| 705 | CONFIG_NETDEV_10000=y | 739 | CONFIG_NETDEV_10000=y |
| 706 | # CONFIG_CHELSIO_T1 is not set | 740 | # CONFIG_CHELSIO_T1 is not set |
| @@ -710,6 +744,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 710 | # CONFIG_IXGBE is not set | 744 | # CONFIG_IXGBE is not set |
| 711 | # CONFIG_IXGB is not set | 745 | # CONFIG_IXGB is not set |
| 712 | # CONFIG_S2IO is not set | 746 | # CONFIG_S2IO is not set |
| 747 | # CONFIG_VXGE is not set | ||
| 713 | # CONFIG_MYRI10GE is not set | 748 | # CONFIG_MYRI10GE is not set |
| 714 | # CONFIG_NETXEN_NIC is not set | 749 | # CONFIG_NETXEN_NIC is not set |
| 715 | # CONFIG_NIU is not set | 750 | # CONFIG_NIU is not set |
| @@ -719,6 +754,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 719 | # CONFIG_BNX2X is not set | 754 | # CONFIG_BNX2X is not set |
| 720 | # CONFIG_QLGE is not set | 755 | # CONFIG_QLGE is not set |
| 721 | # CONFIG_SFC is not set | 756 | # CONFIG_SFC is not set |
| 757 | # CONFIG_BE2NET is not set | ||
| 722 | # CONFIG_TR is not set | 758 | # CONFIG_TR is not set |
| 723 | 759 | ||
| 724 | # | 760 | # |
| @@ -726,7 +762,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 726 | # | 762 | # |
| 727 | # CONFIG_WLAN_PRE80211 is not set | 763 | # CONFIG_WLAN_PRE80211 is not set |
| 728 | # CONFIG_WLAN_80211 is not set | 764 | # CONFIG_WLAN_80211 is not set |
| 729 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 730 | 765 | ||
| 731 | # | 766 | # |
| 732 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 767 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -778,7 +813,6 @@ CONFIG_MOUSE_PS2=y | |||
| 778 | CONFIG_MOUSE_PS2_ALPS=y | 813 | CONFIG_MOUSE_PS2_ALPS=y |
| 779 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 814 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
| 780 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 815 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
| 781 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
| 782 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 816 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
| 783 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 817 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
| 784 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 818 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| @@ -837,6 +871,7 @@ CONFIG_PRINTER=m | |||
| 837 | # CONFIG_HVC_UDBG is not set | 871 | # CONFIG_HVC_UDBG is not set |
| 838 | # CONFIG_IPMI_HANDLER is not set | 872 | # CONFIG_IPMI_HANDLER is not set |
| 839 | CONFIG_HW_RANDOM=m | 873 | CONFIG_HW_RANDOM=m |
| 874 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 840 | # CONFIG_NVRAM is not set | 875 | # CONFIG_NVRAM is not set |
| 841 | # CONFIG_GEN_RTC is not set | 876 | # CONFIG_GEN_RTC is not set |
| 842 | # CONFIG_R3964 is not set | 877 | # CONFIG_R3964 is not set |
| @@ -903,12 +938,9 @@ CONFIG_I2C_ALGOBIT=m | |||
| 903 | # Miscellaneous I2C Chip support | 938 | # Miscellaneous I2C Chip support |
| 904 | # | 939 | # |
| 905 | # CONFIG_DS1682 is not set | 940 | # CONFIG_DS1682 is not set |
| 906 | # CONFIG_EEPROM_AT24 is not set | ||
| 907 | # CONFIG_EEPROM_LEGACY is not set | ||
| 908 | # CONFIG_SENSORS_PCF8574 is not set | 941 | # CONFIG_SENSORS_PCF8574 is not set |
| 909 | # CONFIG_PCF8575 is not set | 942 | # CONFIG_PCF8575 is not set |
| 910 | # CONFIG_SENSORS_PCA9539 is not set | 943 | # CONFIG_SENSORS_PCA9539 is not set |
| 911 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 912 | # CONFIG_SENSORS_MAX6875 is not set | 944 | # CONFIG_SENSORS_MAX6875 is not set |
| 913 | # CONFIG_SENSORS_TSL2550 is not set | 945 | # CONFIG_SENSORS_TSL2550 is not set |
| 914 | # CONFIG_I2C_DEBUG_CORE is not set | 946 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -964,6 +996,7 @@ CONFIG_HWMON=y | |||
| 964 | # CONFIG_SENSORS_F71805F is not set | 996 | # CONFIG_SENSORS_F71805F is not set |
| 965 | # CONFIG_SENSORS_F71882FG is not set | 997 | # CONFIG_SENSORS_F71882FG is not set |
| 966 | # CONFIG_SENSORS_F75375S is not set | 998 | # CONFIG_SENSORS_F75375S is not set |
| 999 | # CONFIG_SENSORS_G760A is not set | ||
| 967 | # CONFIG_SENSORS_GL518SM is not set | 1000 | # CONFIG_SENSORS_GL518SM is not set |
| 968 | # CONFIG_SENSORS_GL520SM is not set | 1001 | # CONFIG_SENSORS_GL520SM is not set |
| 969 | # CONFIG_SENSORS_IT87 is not set | 1002 | # CONFIG_SENSORS_IT87 is not set |
| @@ -978,11 +1011,15 @@ CONFIG_HWMON=y | |||
| 978 | # CONFIG_SENSORS_LM90 is not set | 1011 | # CONFIG_SENSORS_LM90 is not set |
| 979 | # CONFIG_SENSORS_LM92 is not set | 1012 | # CONFIG_SENSORS_LM92 is not set |
| 980 | # CONFIG_SENSORS_LM93 is not set | 1013 | # CONFIG_SENSORS_LM93 is not set |
| 1014 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 981 | # CONFIG_SENSORS_LTC4245 is not set | 1015 | # CONFIG_SENSORS_LTC4245 is not set |
| 1016 | # CONFIG_SENSORS_LM95241 is not set | ||
| 982 | # CONFIG_SENSORS_MAX1619 is not set | 1017 | # CONFIG_SENSORS_MAX1619 is not set |
| 983 | # CONFIG_SENSORS_MAX6650 is not set | 1018 | # CONFIG_SENSORS_MAX6650 is not set |
| 984 | # CONFIG_SENSORS_PC87360 is not set | 1019 | # CONFIG_SENSORS_PC87360 is not set |
| 985 | # CONFIG_SENSORS_PC87427 is not set | 1020 | # CONFIG_SENSORS_PC87427 is not set |
| 1021 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1022 | # CONFIG_SENSORS_SHT15 is not set | ||
| 986 | # CONFIG_SENSORS_SIS5595 is not set | 1023 | # CONFIG_SENSORS_SIS5595 is not set |
| 987 | # CONFIG_SENSORS_DME1737 is not set | 1024 | # CONFIG_SENSORS_DME1737 is not set |
| 988 | # CONFIG_SENSORS_SMSC47M1 is not set | 1025 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -1075,7 +1112,6 @@ CONFIG_HID=y | |||
| 1075 | # | 1112 | # |
| 1076 | # Special HID drivers | 1113 | # Special HID drivers |
| 1077 | # | 1114 | # |
| 1078 | CONFIG_HID_COMPAT=y | ||
| 1079 | CONFIG_USB_SUPPORT=y | 1115 | CONFIG_USB_SUPPORT=y |
| 1080 | CONFIG_USB_ARCH_HAS_HCD=y | 1116 | CONFIG_USB_ARCH_HAS_HCD=y |
| 1081 | CONFIG_USB_ARCH_HAS_OHCI=y | 1117 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1089,7 +1125,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1089 | # | 1125 | # |
| 1090 | 1126 | ||
| 1091 | # | 1127 | # |
| 1092 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1128 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1093 | # | 1129 | # |
| 1094 | # CONFIG_USB_GADGET is not set | 1130 | # CONFIG_USB_GADGET is not set |
| 1095 | 1131 | ||
| @@ -1116,6 +1152,7 @@ CONFIG_EXT2_FS=y | |||
| 1116 | # CONFIG_EXT2_FS_XATTR is not set | 1152 | # CONFIG_EXT2_FS_XATTR is not set |
| 1117 | # CONFIG_EXT2_FS_XIP is not set | 1153 | # CONFIG_EXT2_FS_XIP is not set |
| 1118 | CONFIG_EXT3_FS=y | 1154 | CONFIG_EXT3_FS=y |
| 1155 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1119 | CONFIG_EXT3_FS_XATTR=y | 1156 | CONFIG_EXT3_FS_XATTR=y |
| 1120 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1157 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1121 | # CONFIG_EXT3_FS_SECURITY is not set | 1158 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1138,6 +1175,11 @@ CONFIG_AUTOFS4_FS=y | |||
| 1138 | # CONFIG_FUSE_FS is not set | 1175 | # CONFIG_FUSE_FS is not set |
| 1139 | 1176 | ||
| 1140 | # | 1177 | # |
| 1178 | # Caches | ||
| 1179 | # | ||
| 1180 | # CONFIG_FSCACHE is not set | ||
| 1181 | |||
| 1182 | # | ||
| 1141 | # CD-ROM/DVD Filesystems | 1183 | # CD-ROM/DVD Filesystems |
| 1142 | # | 1184 | # |
| 1143 | CONFIG_ISO9660_FS=m | 1185 | CONFIG_ISO9660_FS=m |
| @@ -1186,6 +1228,7 @@ CONFIG_CRAMFS=m | |||
| 1186 | # CONFIG_ROMFS_FS is not set | 1228 | # CONFIG_ROMFS_FS is not set |
| 1187 | # CONFIG_SYSV_FS is not set | 1229 | # CONFIG_SYSV_FS is not set |
| 1188 | # CONFIG_UFS_FS is not set | 1230 | # CONFIG_UFS_FS is not set |
| 1231 | # CONFIG_NILFS2_FS is not set | ||
| 1189 | CONFIG_NETWORK_FILESYSTEMS=y | 1232 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1190 | CONFIG_NFS_FS=y | 1233 | CONFIG_NFS_FS=y |
| 1191 | CONFIG_NFS_V3=y | 1234 | CONFIG_NFS_V3=y |
| @@ -1197,7 +1240,6 @@ CONFIG_LOCKD=y | |||
| 1197 | CONFIG_LOCKD_V4=y | 1240 | CONFIG_LOCKD_V4=y |
| 1198 | CONFIG_NFS_COMMON=y | 1241 | CONFIG_NFS_COMMON=y |
| 1199 | CONFIG_SUNRPC=y | 1242 | CONFIG_SUNRPC=y |
| 1200 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1201 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1243 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1202 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1244 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1203 | CONFIG_SMB_FS=m | 1245 | CONFIG_SMB_FS=m |
| @@ -1253,6 +1295,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1253 | # CONFIG_NLS_KOI8_U is not set | 1295 | # CONFIG_NLS_KOI8_U is not set |
| 1254 | # CONFIG_NLS_UTF8 is not set | 1296 | # CONFIG_NLS_UTF8 is not set |
| 1255 | # CONFIG_DLM is not set | 1297 | # CONFIG_DLM is not set |
| 1298 | # CONFIG_BINARY_PRINTF is not set | ||
| 1256 | 1299 | ||
| 1257 | # | 1300 | # |
| 1258 | # Library routines | 1301 | # Library routines |
| @@ -1266,12 +1309,13 @@ CONFIG_CRC_ITU_T=m | |||
| 1266 | CONFIG_CRC32=y | 1309 | CONFIG_CRC32=y |
| 1267 | # CONFIG_CRC7 is not set | 1310 | # CONFIG_CRC7 is not set |
| 1268 | # CONFIG_LIBCRC32C is not set | 1311 | # CONFIG_LIBCRC32C is not set |
| 1269 | CONFIG_ZLIB_INFLATE=m | 1312 | CONFIG_ZLIB_INFLATE=y |
| 1270 | CONFIG_PLIST=y | 1313 | CONFIG_DECOMPRESS_GZIP=y |
| 1271 | CONFIG_HAS_IOMEM=y | 1314 | CONFIG_HAS_IOMEM=y |
| 1272 | CONFIG_HAS_IOPORT=y | 1315 | CONFIG_HAS_IOPORT=y |
| 1273 | CONFIG_HAS_DMA=y | 1316 | CONFIG_HAS_DMA=y |
| 1274 | CONFIG_HAVE_LMB=y | 1317 | CONFIG_HAVE_LMB=y |
| 1318 | CONFIG_NLATTR=y | ||
| 1275 | 1319 | ||
| 1276 | # | 1320 | # |
| 1277 | # Kernel hacking | 1321 | # Kernel hacking |
| @@ -1289,6 +1333,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1289 | CONFIG_DETECT_SOFTLOCKUP=y | 1333 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1290 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1334 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1291 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1335 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1336 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1337 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1338 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1292 | CONFIG_SCHED_DEBUG=y | 1339 | CONFIG_SCHED_DEBUG=y |
| 1293 | # CONFIG_SCHEDSTATS is not set | 1340 | # CONFIG_SCHEDSTATS is not set |
| 1294 | # CONFIG_TIMER_STATS is not set | 1341 | # CONFIG_TIMER_STATS is not set |
| @@ -1319,9 +1366,12 @@ CONFIG_SCHED_DEBUG=y | |||
| 1319 | # CONFIG_FAULT_INJECTION is not set | 1366 | # CONFIG_FAULT_INJECTION is not set |
| 1320 | # CONFIG_LATENCYTOP is not set | 1367 | # CONFIG_LATENCYTOP is not set |
| 1321 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1368 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1369 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1322 | CONFIG_HAVE_FUNCTION_TRACER=y | 1370 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1371 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1323 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1372 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1324 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1373 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1374 | CONFIG_TRACING_SUPPORT=y | ||
| 1325 | 1375 | ||
| 1326 | # | 1376 | # |
| 1327 | # Tracers | 1377 | # Tracers |
| @@ -1329,17 +1379,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1329 | # CONFIG_FUNCTION_TRACER is not set | 1379 | # CONFIG_FUNCTION_TRACER is not set |
| 1330 | # CONFIG_SCHED_TRACER is not set | 1380 | # CONFIG_SCHED_TRACER is not set |
| 1331 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1381 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1382 | # CONFIG_EVENT_TRACER is not set | ||
| 1332 | # CONFIG_BOOT_TRACER is not set | 1383 | # CONFIG_BOOT_TRACER is not set |
| 1333 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1384 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1334 | # CONFIG_STACK_TRACER is not set | 1385 | # CONFIG_STACK_TRACER is not set |
| 1335 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1386 | # CONFIG_KMEMTRACE is not set |
| 1387 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1388 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1336 | # CONFIG_SAMPLES is not set | 1389 | # CONFIG_SAMPLES is not set |
| 1337 | CONFIG_HAVE_ARCH_KGDB=y | 1390 | CONFIG_HAVE_ARCH_KGDB=y |
| 1338 | # CONFIG_KGDB is not set | 1391 | # CONFIG_KGDB is not set |
| 1339 | CONFIG_PRINT_STACK_DEPTH=64 | 1392 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1340 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1393 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1341 | # CONFIG_DEBUG_STACK_USAGE is not set | 1394 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1342 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1343 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1395 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1344 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1396 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1345 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1397 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1433,6 +1485,7 @@ CONFIG_CRYPTO=y | |||
| 1433 | # Compression | 1485 | # Compression |
| 1434 | # | 1486 | # |
| 1435 | # CONFIG_CRYPTO_DEFLATE is not set | 1487 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1488 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1436 | # CONFIG_CRYPTO_LZO is not set | 1489 | # CONFIG_CRYPTO_LZO is not set |
| 1437 | 1490 | ||
| 1438 | # | 1491 | # |
diff --git a/arch/powerpc/configs/85xx/tqm8540_defconfig b/arch/powerpc/configs/85xx/tqm8540_defconfig index f4379b1cf841..767600145fb2 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:19 2009 | 4 | # Wed May 13 17:22:23 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
| 22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
| 27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| @@ -58,6 +59,7 @@ CONFIG_GENERIC_BUG=y | |||
| 58 | CONFIG_DEFAULT_UIMAGE=y | 59 | CONFIG_DEFAULT_UIMAGE=y |
| 59 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 60 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 62 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 62 | 64 | ||
| 63 | # | 65 | # |
| @@ -75,6 +77,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 75 | # CONFIG_BSD_PROCESS_ACCT is not set | 77 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 76 | # CONFIG_TASKSTATS is not set | 78 | # CONFIG_TASKSTATS is not set |
| 77 | # CONFIG_AUDIT is not set | 79 | # CONFIG_AUDIT is not set |
| 80 | |||
| 81 | # | ||
| 82 | # RCU Subsystem | ||
| 83 | # | ||
| 84 | CONFIG_CLASSIC_RCU=y | ||
| 85 | # CONFIG_TREE_RCU is not set | ||
| 86 | # CONFIG_PREEMPT_RCU is not set | ||
| 87 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 88 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 78 | # CONFIG_IKCONFIG is not set | 89 | # CONFIG_IKCONFIG is not set |
| 79 | CONFIG_LOG_BUF_SHIFT=14 | 90 | CONFIG_LOG_BUF_SHIFT=14 |
| 80 | CONFIG_GROUP_SCHED=y | 91 | CONFIG_GROUP_SCHED=y |
| @@ -89,19 +100,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 89 | # CONFIG_NAMESPACES is not set | 100 | # CONFIG_NAMESPACES is not set |
| 90 | CONFIG_BLK_DEV_INITRD=y | 101 | CONFIG_BLK_DEV_INITRD=y |
| 91 | CONFIG_INITRAMFS_SOURCE="" | 102 | CONFIG_INITRAMFS_SOURCE="" |
| 103 | CONFIG_RD_GZIP=y | ||
| 104 | # CONFIG_RD_BZIP2 is not set | ||
| 105 | # CONFIG_RD_LZMA is not set | ||
| 92 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 106 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 93 | CONFIG_SYSCTL=y | 107 | CONFIG_SYSCTL=y |
| 108 | CONFIG_ANON_INODES=y | ||
| 94 | CONFIG_EMBEDDED=y | 109 | CONFIG_EMBEDDED=y |
| 95 | CONFIG_SYSCTL_SYSCALL=y | 110 | CONFIG_SYSCTL_SYSCALL=y |
| 96 | # CONFIG_KALLSYMS is not set | 111 | # CONFIG_KALLSYMS is not set |
| 112 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 97 | # CONFIG_HOTPLUG is not set | 113 | # CONFIG_HOTPLUG is not set |
| 98 | CONFIG_PRINTK=y | 114 | CONFIG_PRINTK=y |
| 99 | CONFIG_BUG=y | 115 | CONFIG_BUG=y |
| 100 | CONFIG_ELF_CORE=y | 116 | CONFIG_ELF_CORE=y |
| 101 | CONFIG_COMPAT_BRK=y | ||
| 102 | CONFIG_BASE_FULL=y | 117 | CONFIG_BASE_FULL=y |
| 103 | CONFIG_FUTEX=y | 118 | CONFIG_FUTEX=y |
| 104 | CONFIG_ANON_INODES=y | ||
| 105 | # CONFIG_EPOLL is not set | 119 | # CONFIG_EPOLL is not set |
| 106 | CONFIG_SIGNALFD=y | 120 | CONFIG_SIGNALFD=y |
| 107 | CONFIG_TIMERFD=y | 121 | CONFIG_TIMERFD=y |
| @@ -111,16 +125,19 @@ CONFIG_AIO=y | |||
| 111 | CONFIG_VM_EVENT_COUNTERS=y | 125 | CONFIG_VM_EVENT_COUNTERS=y |
| 112 | CONFIG_PCI_QUIRKS=y | 126 | CONFIG_PCI_QUIRKS=y |
| 113 | CONFIG_SLUB_DEBUG=y | 127 | CONFIG_SLUB_DEBUG=y |
| 128 | CONFIG_COMPAT_BRK=y | ||
| 114 | # CONFIG_SLAB is not set | 129 | # CONFIG_SLAB is not set |
| 115 | CONFIG_SLUB=y | 130 | CONFIG_SLUB=y |
| 116 | # CONFIG_SLOB is not set | 131 | # CONFIG_SLOB is not set |
| 117 | # CONFIG_PROFILING is not set | 132 | # CONFIG_PROFILING is not set |
| 133 | # CONFIG_MARKERS is not set | ||
| 118 | CONFIG_HAVE_OPROFILE=y | 134 | CONFIG_HAVE_OPROFILE=y |
| 119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 135 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 120 | CONFIG_HAVE_IOREMAP_PROT=y | 136 | CONFIG_HAVE_IOREMAP_PROT=y |
| 121 | CONFIG_HAVE_KPROBES=y | 137 | CONFIG_HAVE_KPROBES=y |
| 122 | CONFIG_HAVE_KRETPROBES=y | 138 | CONFIG_HAVE_KRETPROBES=y |
| 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 139 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 140 | # CONFIG_SLOW_WORK is not set | ||
| 124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 141 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 125 | CONFIG_SLABINFO=y | 142 | CONFIG_SLABINFO=y |
| 126 | CONFIG_RT_MUTEXES=y | 143 | CONFIG_RT_MUTEXES=y |
| @@ -128,7 +145,6 @@ CONFIG_BASE_SMALL=0 | |||
| 128 | # CONFIG_MODULES is not set | 145 | # CONFIG_MODULES is not set |
| 129 | CONFIG_BLOCK=y | 146 | CONFIG_BLOCK=y |
| 130 | # CONFIG_LBD is not set | 147 | # CONFIG_LBD is not set |
| 131 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 132 | # CONFIG_BLK_DEV_BSG is not set | 148 | # CONFIG_BLK_DEV_BSG is not set |
| 133 | # CONFIG_BLK_DEV_INTEGRITY is not set | 149 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 134 | 150 | ||
| @@ -144,11 +160,6 @@ CONFIG_DEFAULT_AS=y | |||
| 144 | # CONFIG_DEFAULT_CFQ is not set | 160 | # CONFIG_DEFAULT_CFQ is not set |
| 145 | # CONFIG_DEFAULT_NOOP is not set | 161 | # CONFIG_DEFAULT_NOOP is not set |
| 146 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 162 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 147 | CONFIG_CLASSIC_RCU=y | ||
| 148 | # CONFIG_TREE_RCU is not set | ||
| 149 | # CONFIG_PREEMPT_RCU is not set | ||
| 150 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 151 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 152 | # CONFIG_FREEZER is not set | 163 | # CONFIG_FREEZER is not set |
| 153 | 164 | ||
| 154 | # | 165 | # |
| @@ -164,6 +175,7 @@ CONFIG_MPC85xx=y | |||
| 164 | # CONFIG_MPC85xx_MDS is not set | 175 | # CONFIG_MPC85xx_MDS is not set |
| 165 | # CONFIG_MPC8536_DS is not set | 176 | # CONFIG_MPC8536_DS is not set |
| 166 | # CONFIG_MPC85xx_DS is not set | 177 | # CONFIG_MPC85xx_DS is not set |
| 178 | # CONFIG_SOCRATES is not set | ||
| 167 | # CONFIG_KSI8560 is not set | 179 | # CONFIG_KSI8560 is not set |
| 168 | # CONFIG_STX_GP3 is not set | 180 | # CONFIG_STX_GP3 is not set |
| 169 | CONFIG_TQM8540=y | 181 | CONFIG_TQM8540=y |
| @@ -232,9 +244,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 232 | CONFIG_BOUNCE=y | 244 | CONFIG_BOUNCE=y |
| 233 | CONFIG_VIRT_TO_BUS=y | 245 | CONFIG_VIRT_TO_BUS=y |
| 234 | CONFIG_UNEVICTABLE_LRU=y | 246 | CONFIG_UNEVICTABLE_LRU=y |
| 247 | CONFIG_HAVE_MLOCK=y | ||
| 248 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 235 | CONFIG_PPC_4K_PAGES=y | 249 | CONFIG_PPC_4K_PAGES=y |
| 236 | # CONFIG_PPC_16K_PAGES is not set | 250 | # CONFIG_PPC_16K_PAGES is not set |
| 237 | # CONFIG_PPC_64K_PAGES is not set | 251 | # CONFIG_PPC_64K_PAGES is not set |
| 252 | # CONFIG_PPC_256K_PAGES is not set | ||
| 238 | CONFIG_FORCE_MAX_ZONEORDER=11 | 253 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 239 | # CONFIG_PROC_DEVICETREE is not set | 254 | # CONFIG_PROC_DEVICETREE is not set |
| 240 | # CONFIG_CMDLINE_BOOL is not set | 255 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -259,6 +274,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 259 | # CONFIG_PCI_MSI is not set | 274 | # CONFIG_PCI_MSI is not set |
| 260 | # CONFIG_PCI_LEGACY is not set | 275 | # CONFIG_PCI_LEGACY is not set |
| 261 | # CONFIG_PCI_STUB is not set | 276 | # CONFIG_PCI_STUB is not set |
| 277 | # CONFIG_PCI_IOV is not set | ||
| 262 | # CONFIG_HAS_RAPIDIO is not set | 278 | # CONFIG_HAS_RAPIDIO is not set |
| 263 | 279 | ||
| 264 | # | 280 | # |
| @@ -270,17 +286,17 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 270 | # Default settings for advanced configuration options are used | 286 | # Default settings for advanced configuration options are used |
| 271 | # | 287 | # |
| 272 | CONFIG_LOWMEM_SIZE=0x30000000 | 288 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 289 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 273 | CONFIG_PAGE_OFFSET=0xc0000000 | 290 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 274 | CONFIG_KERNEL_START=0xc0000000 | 291 | CONFIG_KERNEL_START=0xc0000000 |
| 275 | CONFIG_PHYSICAL_START=0x00000000 | 292 | CONFIG_PHYSICAL_START=0x00000000 |
| 276 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 293 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 277 | CONFIG_TASK_SIZE=0xc0000000 | 294 | CONFIG_TASK_SIZE=0xc0000000 |
| 278 | CONFIG_NET=y | 295 | CONFIG_NET=y |
| 279 | 296 | ||
| 280 | # | 297 | # |
| 281 | # Networking options | 298 | # Networking options |
| 282 | # | 299 | # |
| 283 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 284 | CONFIG_PACKET=y | 300 | CONFIG_PACKET=y |
| 285 | # CONFIG_PACKET_MMAP is not set | 301 | # CONFIG_PACKET_MMAP is not set |
| 286 | CONFIG_UNIX=y | 302 | CONFIG_UNIX=y |
| @@ -336,6 +352,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 336 | # CONFIG_LAPB is not set | 352 | # CONFIG_LAPB is not set |
| 337 | # CONFIG_ECONET is not set | 353 | # CONFIG_ECONET is not set |
| 338 | # CONFIG_WAN_ROUTER is not set | 354 | # CONFIG_WAN_ROUTER is not set |
| 355 | # CONFIG_PHONET is not set | ||
| 339 | # CONFIG_NET_SCHED is not set | 356 | # CONFIG_NET_SCHED is not set |
| 340 | # CONFIG_DCB is not set | 357 | # CONFIG_DCB is not set |
| 341 | 358 | ||
| @@ -348,7 +365,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 348 | # CONFIG_IRDA is not set | 365 | # CONFIG_IRDA is not set |
| 349 | # CONFIG_BT is not set | 366 | # CONFIG_BT is not set |
| 350 | # CONFIG_AF_RXRPC is not set | 367 | # CONFIG_AF_RXRPC is not set |
| 351 | # CONFIG_PHONET is not set | ||
| 352 | CONFIG_WIRELESS=y | 368 | CONFIG_WIRELESS=y |
| 353 | # CONFIG_CFG80211 is not set | 369 | # CONFIG_CFG80211 is not set |
| 354 | CONFIG_WIRELESS_OLD_REGULATORY=y | 370 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -448,7 +464,6 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 448 | # LPDDR flash memory drivers | 464 | # LPDDR flash memory drivers |
| 449 | # | 465 | # |
| 450 | # CONFIG_MTD_LPDDR is not set | 466 | # CONFIG_MTD_LPDDR is not set |
| 451 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 452 | 467 | ||
| 453 | # | 468 | # |
| 454 | # UBI - Unsorted block images | 469 | # UBI - Unsorted block images |
| @@ -477,19 +492,27 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 477 | # CONFIG_BLK_DEV_HD is not set | 492 | # CONFIG_BLK_DEV_HD is not set |
| 478 | CONFIG_MISC_DEVICES=y | 493 | CONFIG_MISC_DEVICES=y |
| 479 | # CONFIG_PHANTOM is not set | 494 | # CONFIG_PHANTOM is not set |
| 480 | # CONFIG_EEPROM_93CX6 is not set | ||
| 481 | # CONFIG_SGI_IOC4 is not set | 495 | # CONFIG_SGI_IOC4 is not set |
| 482 | # CONFIG_TIFM_CORE is not set | 496 | # CONFIG_TIFM_CORE is not set |
| 483 | # CONFIG_ICS932S401 is not set | 497 | # CONFIG_ICS932S401 is not set |
| 484 | # CONFIG_ENCLOSURE_SERVICES is not set | 498 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 485 | # CONFIG_HP_ILO is not set | 499 | # CONFIG_HP_ILO is not set |
| 500 | # CONFIG_ISL29003 is not set | ||
| 486 | # CONFIG_C2PORT is not set | 501 | # CONFIG_C2PORT is not set |
| 502 | |||
| 503 | # | ||
| 504 | # EEPROM support | ||
| 505 | # | ||
| 506 | # CONFIG_EEPROM_AT24 is not set | ||
| 507 | # CONFIG_EEPROM_LEGACY is not set | ||
| 508 | # CONFIG_EEPROM_93CX6 is not set | ||
| 487 | CONFIG_HAVE_IDE=y | 509 | CONFIG_HAVE_IDE=y |
| 488 | CONFIG_IDE=y | 510 | CONFIG_IDE=y |
| 489 | 511 | ||
| 490 | # | 512 | # |
| 491 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 513 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 492 | # | 514 | # |
| 515 | CONFIG_IDE_XFER_MODE=y | ||
| 493 | CONFIG_IDE_TIMINGS=y | 516 | CONFIG_IDE_TIMINGS=y |
| 494 | # CONFIG_BLK_DEV_IDE_SATA is not set | 517 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 495 | CONFIG_IDE_GD=y | 518 | CONFIG_IDE_GD=y |
| @@ -564,6 +587,7 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 564 | # CONFIG_I2O is not set | 587 | # CONFIG_I2O is not set |
| 565 | # CONFIG_MACINTOSH_DRIVERS is not set | 588 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 566 | CONFIG_NETDEVICES=y | 589 | CONFIG_NETDEVICES=y |
| 590 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 567 | # CONFIG_DUMMY is not set | 591 | # CONFIG_DUMMY is not set |
| 568 | # CONFIG_BONDING is not set | 592 | # CONFIG_BONDING is not set |
| 569 | # CONFIG_MACVLAN is not set | 593 | # CONFIG_MACVLAN is not set |
| @@ -597,6 +621,8 @@ CONFIG_MII=y | |||
| 597 | # CONFIG_SUNGEM is not set | 621 | # CONFIG_SUNGEM is not set |
| 598 | # CONFIG_CASSINI is not set | 622 | # CONFIG_CASSINI is not set |
| 599 | # CONFIG_NET_VENDOR_3COM is not set | 623 | # CONFIG_NET_VENDOR_3COM is not set |
| 624 | # CONFIG_ETHOC is not set | ||
| 625 | # CONFIG_DNET is not set | ||
| 600 | # CONFIG_NET_TULIP is not set | 626 | # CONFIG_NET_TULIP is not set |
| 601 | # CONFIG_HP100 is not set | 627 | # CONFIG_HP100 is not set |
| 602 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 628 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -634,6 +660,7 @@ CONFIG_NETDEV_1000=y | |||
| 634 | # CONFIG_E1000E is not set | 660 | # CONFIG_E1000E is not set |
| 635 | # CONFIG_IP1000 is not set | 661 | # CONFIG_IP1000 is not set |
| 636 | # CONFIG_IGB is not set | 662 | # CONFIG_IGB is not set |
| 663 | # CONFIG_IGBVF is not set | ||
| 637 | # CONFIG_NS83820 is not set | 664 | # CONFIG_NS83820 is not set |
| 638 | # CONFIG_HAMACHI is not set | 665 | # CONFIG_HAMACHI is not set |
| 639 | # CONFIG_YELLOWFIN is not set | 666 | # CONFIG_YELLOWFIN is not set |
| @@ -644,10 +671,12 @@ CONFIG_NETDEV_1000=y | |||
| 644 | # CONFIG_VIA_VELOCITY is not set | 671 | # CONFIG_VIA_VELOCITY is not set |
| 645 | # CONFIG_TIGON3 is not set | 672 | # CONFIG_TIGON3 is not set |
| 646 | # CONFIG_BNX2 is not set | 673 | # CONFIG_BNX2 is not set |
| 674 | CONFIG_FSL_PQ_MDIO=y | ||
| 647 | CONFIG_GIANFAR=y | 675 | CONFIG_GIANFAR=y |
| 648 | # CONFIG_QLA3XXX is not set | 676 | # CONFIG_QLA3XXX is not set |
| 649 | # CONFIG_ATL1 is not set | 677 | # CONFIG_ATL1 is not set |
| 650 | # CONFIG_ATL1E is not set | 678 | # CONFIG_ATL1E is not set |
| 679 | # CONFIG_ATL1C is not set | ||
| 651 | # CONFIG_JME is not set | 680 | # CONFIG_JME is not set |
| 652 | CONFIG_NETDEV_10000=y | 681 | CONFIG_NETDEV_10000=y |
| 653 | # CONFIG_CHELSIO_T1 is not set | 682 | # CONFIG_CHELSIO_T1 is not set |
| @@ -657,6 +686,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 657 | # CONFIG_IXGBE is not set | 686 | # CONFIG_IXGBE is not set |
| 658 | # CONFIG_IXGB is not set | 687 | # CONFIG_IXGB is not set |
| 659 | # CONFIG_S2IO is not set | 688 | # CONFIG_S2IO is not set |
| 689 | # CONFIG_VXGE is not set | ||
| 660 | # CONFIG_MYRI10GE is not set | 690 | # CONFIG_MYRI10GE is not set |
| 661 | # CONFIG_NETXEN_NIC is not set | 691 | # CONFIG_NETXEN_NIC is not set |
| 662 | # CONFIG_NIU is not set | 692 | # CONFIG_NIU is not set |
| @@ -666,6 +696,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 666 | # CONFIG_BNX2X is not set | 696 | # CONFIG_BNX2X is not set |
| 667 | # CONFIG_QLGE is not set | 697 | # CONFIG_QLGE is not set |
| 668 | # CONFIG_SFC is not set | 698 | # CONFIG_SFC is not set |
| 699 | # CONFIG_BE2NET is not set | ||
| 669 | # CONFIG_TR is not set | 700 | # CONFIG_TR is not set |
| 670 | 701 | ||
| 671 | # | 702 | # |
| @@ -673,7 +704,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 673 | # | 704 | # |
| 674 | # CONFIG_WLAN_PRE80211 is not set | 705 | # CONFIG_WLAN_PRE80211 is not set |
| 675 | # CONFIG_WLAN_80211 is not set | 706 | # CONFIG_WLAN_80211 is not set |
| 676 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 677 | 707 | ||
| 678 | # | 708 | # |
| 679 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 709 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -754,6 +784,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 754 | # CONFIG_HVC_UDBG is not set | 784 | # CONFIG_HVC_UDBG is not set |
| 755 | # CONFIG_IPMI_HANDLER is not set | 785 | # CONFIG_IPMI_HANDLER is not set |
| 756 | CONFIG_HW_RANDOM=y | 786 | CONFIG_HW_RANDOM=y |
| 787 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 757 | # CONFIG_NVRAM is not set | 788 | # CONFIG_NVRAM is not set |
| 758 | CONFIG_GEN_RTC=y | 789 | CONFIG_GEN_RTC=y |
| 759 | # CONFIG_GEN_RTC_X is not set | 790 | # CONFIG_GEN_RTC_X is not set |
| @@ -816,12 +847,9 @@ CONFIG_I2C_MPC=y | |||
| 816 | # Miscellaneous I2C Chip support | 847 | # Miscellaneous I2C Chip support |
| 817 | # | 848 | # |
| 818 | # CONFIG_DS1682 is not set | 849 | # CONFIG_DS1682 is not set |
| 819 | # CONFIG_EEPROM_AT24 is not set | ||
| 820 | # CONFIG_EEPROM_LEGACY is not set | ||
| 821 | # CONFIG_SENSORS_PCF8574 is not set | 850 | # CONFIG_SENSORS_PCF8574 is not set |
| 822 | # CONFIG_PCF8575 is not set | 851 | # CONFIG_PCF8575 is not set |
| 823 | # CONFIG_SENSORS_PCA9539 is not set | 852 | # CONFIG_SENSORS_PCA9539 is not set |
| 824 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 825 | # CONFIG_SENSORS_MAX6875 is not set | 853 | # CONFIG_SENSORS_MAX6875 is not set |
| 826 | # CONFIG_SENSORS_TSL2550 is not set | 854 | # CONFIG_SENSORS_TSL2550 is not set |
| 827 | # CONFIG_I2C_DEBUG_CORE is not set | 855 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -853,6 +881,7 @@ CONFIG_HWMON=y | |||
| 853 | # CONFIG_SENSORS_F71805F is not set | 881 | # CONFIG_SENSORS_F71805F is not set |
| 854 | # CONFIG_SENSORS_F71882FG is not set | 882 | # CONFIG_SENSORS_F71882FG is not set |
| 855 | # CONFIG_SENSORS_F75375S is not set | 883 | # CONFIG_SENSORS_F75375S is not set |
| 884 | # CONFIG_SENSORS_G760A is not set | ||
| 856 | # CONFIG_SENSORS_GL518SM is not set | 885 | # CONFIG_SENSORS_GL518SM is not set |
| 857 | # CONFIG_SENSORS_GL520SM is not set | 886 | # CONFIG_SENSORS_GL520SM is not set |
| 858 | # CONFIG_SENSORS_IT87 is not set | 887 | # CONFIG_SENSORS_IT87 is not set |
| @@ -867,11 +896,14 @@ CONFIG_SENSORS_LM75=y | |||
| 867 | # CONFIG_SENSORS_LM90 is not set | 896 | # CONFIG_SENSORS_LM90 is not set |
| 868 | # CONFIG_SENSORS_LM92 is not set | 897 | # CONFIG_SENSORS_LM92 is not set |
| 869 | # CONFIG_SENSORS_LM93 is not set | 898 | # CONFIG_SENSORS_LM93 is not set |
| 899 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 870 | # CONFIG_SENSORS_LTC4245 is not set | 900 | # CONFIG_SENSORS_LTC4245 is not set |
| 901 | # CONFIG_SENSORS_LM95241 is not set | ||
| 871 | # CONFIG_SENSORS_MAX1619 is not set | 902 | # CONFIG_SENSORS_MAX1619 is not set |
| 872 | # CONFIG_SENSORS_MAX6650 is not set | 903 | # CONFIG_SENSORS_MAX6650 is not set |
| 873 | # CONFIG_SENSORS_PC87360 is not set | 904 | # CONFIG_SENSORS_PC87360 is not set |
| 874 | # CONFIG_SENSORS_PC87427 is not set | 905 | # CONFIG_SENSORS_PC87427 is not set |
| 906 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 875 | # CONFIG_SENSORS_SIS5595 is not set | 907 | # CONFIG_SENSORS_SIS5595 is not set |
| 876 | # CONFIG_SENSORS_DME1737 is not set | 908 | # CONFIG_SENSORS_DME1737 is not set |
| 877 | # CONFIG_SENSORS_SMSC47M1 is not set | 909 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -955,7 +987,6 @@ CONFIG_HID=y | |||
| 955 | # | 987 | # |
| 956 | # Special HID drivers | 988 | # Special HID drivers |
| 957 | # | 989 | # |
| 958 | CONFIG_HID_COMPAT=y | ||
| 959 | CONFIG_USB_SUPPORT=y | 990 | CONFIG_USB_SUPPORT=y |
| 960 | CONFIG_USB_ARCH_HAS_HCD=y | 991 | CONFIG_USB_ARCH_HAS_HCD=y |
| 961 | CONFIG_USB_ARCH_HAS_OHCI=y | 992 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -969,7 +1000,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 969 | # | 1000 | # |
| 970 | 1001 | ||
| 971 | # | 1002 | # |
| 972 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1003 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 973 | # | 1004 | # |
| 974 | # CONFIG_USB_GADGET is not set | 1005 | # CONFIG_USB_GADGET is not set |
| 975 | 1006 | ||
| @@ -985,6 +1016,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 985 | # CONFIG_EDAC is not set | 1016 | # CONFIG_EDAC is not set |
| 986 | # CONFIG_RTC_CLASS is not set | 1017 | # CONFIG_RTC_CLASS is not set |
| 987 | # CONFIG_DMADEVICES is not set | 1018 | # CONFIG_DMADEVICES is not set |
| 1019 | # CONFIG_AUXDISPLAY is not set | ||
| 988 | # CONFIG_UIO is not set | 1020 | # CONFIG_UIO is not set |
| 989 | # CONFIG_STAGING is not set | 1021 | # CONFIG_STAGING is not set |
| 990 | 1022 | ||
| @@ -995,6 +1027,7 @@ CONFIG_EXT2_FS=y | |||
| 995 | # CONFIG_EXT2_FS_XATTR is not set | 1027 | # CONFIG_EXT2_FS_XATTR is not set |
| 996 | # CONFIG_EXT2_FS_XIP is not set | 1028 | # CONFIG_EXT2_FS_XIP is not set |
| 997 | CONFIG_EXT3_FS=y | 1029 | CONFIG_EXT3_FS=y |
| 1030 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 998 | CONFIG_EXT3_FS_XATTR=y | 1031 | CONFIG_EXT3_FS_XATTR=y |
| 999 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1032 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1000 | # CONFIG_EXT3_FS_SECURITY is not set | 1033 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1017,6 +1050,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1017 | # CONFIG_FUSE_FS is not set | 1050 | # CONFIG_FUSE_FS is not set |
| 1018 | 1051 | ||
| 1019 | # | 1052 | # |
| 1053 | # Caches | ||
| 1054 | # | ||
| 1055 | # CONFIG_FSCACHE is not set | ||
| 1056 | |||
| 1057 | # | ||
| 1020 | # CD-ROM/DVD Filesystems | 1058 | # CD-ROM/DVD Filesystems |
| 1021 | # | 1059 | # |
| 1022 | # CONFIG_ISO9660_FS is not set | 1060 | # CONFIG_ISO9660_FS is not set |
| @@ -1070,6 +1108,7 @@ CONFIG_CRAMFS=y | |||
| 1070 | # CONFIG_ROMFS_FS is not set | 1108 | # CONFIG_ROMFS_FS is not set |
| 1071 | # CONFIG_SYSV_FS is not set | 1109 | # CONFIG_SYSV_FS is not set |
| 1072 | # CONFIG_UFS_FS is not set | 1110 | # CONFIG_UFS_FS is not set |
| 1111 | # CONFIG_NILFS2_FS is not set | ||
| 1073 | CONFIG_NETWORK_FILESYSTEMS=y | 1112 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1074 | CONFIG_NFS_FS=y | 1113 | CONFIG_NFS_FS=y |
| 1075 | # CONFIG_NFS_V3 is not set | 1114 | # CONFIG_NFS_V3 is not set |
| @@ -1079,7 +1118,6 @@ CONFIG_ROOT_NFS=y | |||
| 1079 | CONFIG_LOCKD=y | 1118 | CONFIG_LOCKD=y |
| 1080 | CONFIG_NFS_COMMON=y | 1119 | CONFIG_NFS_COMMON=y |
| 1081 | CONFIG_SUNRPC=y | 1120 | CONFIG_SUNRPC=y |
| 1082 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1083 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1121 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1084 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1122 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1085 | # CONFIG_SMB_FS is not set | 1123 | # CONFIG_SMB_FS is not set |
| @@ -1107,6 +1145,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1107 | # CONFIG_SYSV68_PARTITION is not set | 1145 | # CONFIG_SYSV68_PARTITION is not set |
| 1108 | # CONFIG_NLS is not set | 1146 | # CONFIG_NLS is not set |
| 1109 | # CONFIG_DLM is not set | 1147 | # CONFIG_DLM is not set |
| 1148 | # CONFIG_BINARY_PRINTF is not set | ||
| 1110 | 1149 | ||
| 1111 | # | 1150 | # |
| 1112 | # Library routines | 1151 | # Library routines |
| @@ -1122,11 +1161,12 @@ CONFIG_CRC32=y | |||
| 1122 | # CONFIG_LIBCRC32C is not set | 1161 | # CONFIG_LIBCRC32C is not set |
| 1123 | CONFIG_ZLIB_INFLATE=y | 1162 | CONFIG_ZLIB_INFLATE=y |
| 1124 | CONFIG_ZLIB_DEFLATE=y | 1163 | CONFIG_ZLIB_DEFLATE=y |
| 1125 | CONFIG_PLIST=y | 1164 | CONFIG_DECOMPRESS_GZIP=y |
| 1126 | CONFIG_HAS_IOMEM=y | 1165 | CONFIG_HAS_IOMEM=y |
| 1127 | CONFIG_HAS_IOPORT=y | 1166 | CONFIG_HAS_IOPORT=y |
| 1128 | CONFIG_HAS_DMA=y | 1167 | CONFIG_HAS_DMA=y |
| 1129 | CONFIG_HAVE_LMB=y | 1168 | CONFIG_HAVE_LMB=y |
| 1169 | CONFIG_NLATTR=y | ||
| 1130 | 1170 | ||
| 1131 | # | 1171 | # |
| 1132 | # Kernel hacking | 1172 | # Kernel hacking |
| @@ -1148,13 +1188,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1148 | # CONFIG_LATENCYTOP is not set | 1188 | # CONFIG_LATENCYTOP is not set |
| 1149 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1189 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1150 | CONFIG_HAVE_FUNCTION_TRACER=y | 1190 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1191 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1151 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1192 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1152 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1193 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1194 | CONFIG_TRACING_SUPPORT=y | ||
| 1153 | 1195 | ||
| 1154 | # | 1196 | # |
| 1155 | # Tracers | 1197 | # Tracers |
| 1156 | # | 1198 | # |
| 1157 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1199 | # CONFIG_FUNCTION_TRACER is not set |
| 1200 | # CONFIG_SCHED_TRACER is not set | ||
| 1201 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1202 | # CONFIG_EVENT_TRACER is not set | ||
| 1203 | # CONFIG_BOOT_TRACER is not set | ||
| 1204 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1205 | # CONFIG_STACK_TRACER is not set | ||
| 1206 | # CONFIG_KMEMTRACE is not set | ||
| 1207 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1208 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1158 | # CONFIG_SAMPLES is not set | 1209 | # CONFIG_SAMPLES is not set |
| 1159 | CONFIG_HAVE_ARCH_KGDB=y | 1210 | CONFIG_HAVE_ARCH_KGDB=y |
| 1160 | CONFIG_PRINT_STACK_DEPTH=64 | 1211 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1245,6 +1296,7 @@ CONFIG_CRYPTO=y | |||
| 1245 | # Compression | 1296 | # Compression |
| 1246 | # | 1297 | # |
| 1247 | # CONFIG_CRYPTO_DEFLATE is not set | 1298 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1299 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1248 | # CONFIG_CRYPTO_LZO is not set | 1300 | # CONFIG_CRYPTO_LZO is not set |
| 1249 | 1301 | ||
| 1250 | # | 1302 | # |
diff --git a/arch/powerpc/configs/85xx/tqm8541_defconfig b/arch/powerpc/configs/85xx/tqm8541_defconfig index b8669231c1fe..52fafc006dd0 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:20 2009 | 4 | # Wed May 13 17:22:23 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
| 22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
| 27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| @@ -59,6 +60,7 @@ CONFIG_GENERIC_BUG=y | |||
| 59 | CONFIG_DEFAULT_UIMAGE=y | 60 | CONFIG_DEFAULT_UIMAGE=y |
| 60 | # CONFIG_PPC_DCR_NATIVE is not set | 61 | # CONFIG_PPC_DCR_NATIVE is not set |
| 61 | # CONFIG_PPC_DCR_MMIO is not set | 62 | # CONFIG_PPC_DCR_MMIO is not set |
| 63 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 64 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 63 | 65 | ||
| 64 | # | 66 | # |
| @@ -76,6 +78,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 76 | # CONFIG_BSD_PROCESS_ACCT is not set | 78 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 77 | # CONFIG_TASKSTATS is not set | 79 | # CONFIG_TASKSTATS is not set |
| 78 | # CONFIG_AUDIT is not set | 80 | # CONFIG_AUDIT is not set |
| 81 | |||
| 82 | # | ||
| 83 | # RCU Subsystem | ||
| 84 | # | ||
| 85 | CONFIG_CLASSIC_RCU=y | ||
| 86 | # CONFIG_TREE_RCU is not set | ||
| 87 | # CONFIG_PREEMPT_RCU is not set | ||
| 88 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 89 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 79 | # CONFIG_IKCONFIG is not set | 90 | # CONFIG_IKCONFIG is not set |
| 80 | CONFIG_LOG_BUF_SHIFT=14 | 91 | CONFIG_LOG_BUF_SHIFT=14 |
| 81 | CONFIG_GROUP_SCHED=y | 92 | CONFIG_GROUP_SCHED=y |
| @@ -90,19 +101,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 90 | # CONFIG_NAMESPACES is not set | 101 | # CONFIG_NAMESPACES is not set |
| 91 | CONFIG_BLK_DEV_INITRD=y | 102 | CONFIG_BLK_DEV_INITRD=y |
| 92 | CONFIG_INITRAMFS_SOURCE="" | 103 | CONFIG_INITRAMFS_SOURCE="" |
| 104 | CONFIG_RD_GZIP=y | ||
| 105 | # CONFIG_RD_BZIP2 is not set | ||
| 106 | # CONFIG_RD_LZMA is not set | ||
| 93 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 107 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 94 | CONFIG_SYSCTL=y | 108 | CONFIG_SYSCTL=y |
| 109 | CONFIG_ANON_INODES=y | ||
| 95 | CONFIG_EMBEDDED=y | 110 | CONFIG_EMBEDDED=y |
| 96 | CONFIG_SYSCTL_SYSCALL=y | 111 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | # CONFIG_KALLSYMS is not set | 112 | # CONFIG_KALLSYMS is not set |
| 113 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 98 | # CONFIG_HOTPLUG is not set | 114 | # CONFIG_HOTPLUG is not set |
| 99 | CONFIG_PRINTK=y | 115 | CONFIG_PRINTK=y |
| 100 | CONFIG_BUG=y | 116 | CONFIG_BUG=y |
| 101 | CONFIG_ELF_CORE=y | 117 | CONFIG_ELF_CORE=y |
| 102 | CONFIG_COMPAT_BRK=y | ||
| 103 | CONFIG_BASE_FULL=y | 118 | CONFIG_BASE_FULL=y |
| 104 | CONFIG_FUTEX=y | 119 | CONFIG_FUTEX=y |
| 105 | CONFIG_ANON_INODES=y | ||
| 106 | # CONFIG_EPOLL is not set | 120 | # CONFIG_EPOLL is not set |
| 107 | CONFIG_SIGNALFD=y | 121 | CONFIG_SIGNALFD=y |
| 108 | CONFIG_TIMERFD=y | 122 | CONFIG_TIMERFD=y |
| @@ -112,10 +126,12 @@ CONFIG_AIO=y | |||
| 112 | CONFIG_VM_EVENT_COUNTERS=y | 126 | CONFIG_VM_EVENT_COUNTERS=y |
| 113 | CONFIG_PCI_QUIRKS=y | 127 | CONFIG_PCI_QUIRKS=y |
| 114 | CONFIG_SLUB_DEBUG=y | 128 | CONFIG_SLUB_DEBUG=y |
| 129 | CONFIG_COMPAT_BRK=y | ||
| 115 | # CONFIG_SLAB is not set | 130 | # CONFIG_SLAB is not set |
| 116 | CONFIG_SLUB=y | 131 | CONFIG_SLUB=y |
| 117 | # CONFIG_SLOB is not set | 132 | # CONFIG_SLOB is not set |
| 118 | # CONFIG_PROFILING is not set | 133 | # CONFIG_PROFILING is not set |
| 134 | # CONFIG_MARKERS is not set | ||
| 119 | CONFIG_HAVE_OPROFILE=y | 135 | CONFIG_HAVE_OPROFILE=y |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 136 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 121 | CONFIG_HAVE_IOREMAP_PROT=y | 137 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -123,6 +139,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 123 | CONFIG_HAVE_KRETPROBES=y | 139 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 140 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 125 | CONFIG_HAVE_CLK=y | 141 | CONFIG_HAVE_CLK=y |
| 142 | # CONFIG_SLOW_WORK is not set | ||
| 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 143 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 127 | CONFIG_SLABINFO=y | 144 | CONFIG_SLABINFO=y |
| 128 | CONFIG_RT_MUTEXES=y | 145 | CONFIG_RT_MUTEXES=y |
| @@ -130,7 +147,6 @@ CONFIG_BASE_SMALL=0 | |||
| 130 | # CONFIG_MODULES is not set | 147 | # CONFIG_MODULES is not set |
| 131 | CONFIG_BLOCK=y | 148 | CONFIG_BLOCK=y |
| 132 | # CONFIG_LBD is not set | 149 | # CONFIG_LBD is not set |
| 133 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 134 | # CONFIG_BLK_DEV_BSG is not set | 150 | # CONFIG_BLK_DEV_BSG is not set |
| 135 | # CONFIG_BLK_DEV_INTEGRITY is not set | 151 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 136 | 152 | ||
| @@ -146,11 +162,6 @@ CONFIG_DEFAULT_AS=y | |||
| 146 | # CONFIG_DEFAULT_CFQ is not set | 162 | # CONFIG_DEFAULT_CFQ is not set |
| 147 | # CONFIG_DEFAULT_NOOP is not set | 163 | # CONFIG_DEFAULT_NOOP is not set |
| 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 164 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 149 | CONFIG_CLASSIC_RCU=y | ||
| 150 | # CONFIG_TREE_RCU is not set | ||
| 151 | # CONFIG_PREEMPT_RCU is not set | ||
| 152 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 154 | # CONFIG_FREEZER is not set | 165 | # CONFIG_FREEZER is not set |
| 155 | 166 | ||
| 156 | # | 167 | # |
| @@ -166,6 +177,7 @@ CONFIG_MPC85xx=y | |||
| 166 | # CONFIG_MPC85xx_MDS is not set | 177 | # CONFIG_MPC85xx_MDS is not set |
| 167 | # CONFIG_MPC8536_DS is not set | 178 | # CONFIG_MPC8536_DS is not set |
| 168 | # CONFIG_MPC85xx_DS is not set | 179 | # CONFIG_MPC85xx_DS is not set |
| 180 | # CONFIG_SOCRATES is not set | ||
| 169 | # CONFIG_KSI8560 is not set | 181 | # CONFIG_KSI8560 is not set |
| 170 | # CONFIG_STX_GP3 is not set | 182 | # CONFIG_STX_GP3 is not set |
| 171 | # CONFIG_TQM8540 is not set | 183 | # CONFIG_TQM8540 is not set |
| @@ -235,9 +247,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 235 | CONFIG_BOUNCE=y | 247 | CONFIG_BOUNCE=y |
| 236 | CONFIG_VIRT_TO_BUS=y | 248 | CONFIG_VIRT_TO_BUS=y |
| 237 | CONFIG_UNEVICTABLE_LRU=y | 249 | CONFIG_UNEVICTABLE_LRU=y |
| 250 | CONFIG_HAVE_MLOCK=y | ||
| 251 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 238 | CONFIG_PPC_4K_PAGES=y | 252 | CONFIG_PPC_4K_PAGES=y |
| 239 | # CONFIG_PPC_16K_PAGES is not set | 253 | # CONFIG_PPC_16K_PAGES is not set |
| 240 | # CONFIG_PPC_64K_PAGES is not set | 254 | # CONFIG_PPC_64K_PAGES is not set |
| 255 | # CONFIG_PPC_256K_PAGES is not set | ||
| 241 | CONFIG_FORCE_MAX_ZONEORDER=11 | 256 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 242 | # CONFIG_PROC_DEVICETREE is not set | 257 | # CONFIG_PROC_DEVICETREE is not set |
| 243 | # CONFIG_CMDLINE_BOOL is not set | 258 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -262,6 +277,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 262 | # CONFIG_PCI_MSI is not set | 277 | # CONFIG_PCI_MSI is not set |
| 263 | # CONFIG_PCI_LEGACY is not set | 278 | # CONFIG_PCI_LEGACY is not set |
| 264 | # CONFIG_PCI_STUB is not set | 279 | # CONFIG_PCI_STUB is not set |
| 280 | # CONFIG_PCI_IOV is not set | ||
| 265 | # CONFIG_HAS_RAPIDIO is not set | 281 | # CONFIG_HAS_RAPIDIO is not set |
| 266 | 282 | ||
| 267 | # | 283 | # |
| @@ -273,17 +289,17 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 273 | # Default settings for advanced configuration options are used | 289 | # Default settings for advanced configuration options are used |
| 274 | # | 290 | # |
| 275 | CONFIG_LOWMEM_SIZE=0x30000000 | 291 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 292 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 276 | CONFIG_PAGE_OFFSET=0xc0000000 | 293 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 277 | CONFIG_KERNEL_START=0xc0000000 | 294 | CONFIG_KERNEL_START=0xc0000000 |
| 278 | CONFIG_PHYSICAL_START=0x00000000 | 295 | CONFIG_PHYSICAL_START=0x00000000 |
| 279 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 296 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 280 | CONFIG_TASK_SIZE=0xc0000000 | 297 | CONFIG_TASK_SIZE=0xc0000000 |
| 281 | CONFIG_NET=y | 298 | CONFIG_NET=y |
| 282 | 299 | ||
| 283 | # | 300 | # |
| 284 | # Networking options | 301 | # Networking options |
| 285 | # | 302 | # |
| 286 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 287 | CONFIG_PACKET=y | 303 | CONFIG_PACKET=y |
| 288 | # CONFIG_PACKET_MMAP is not set | 304 | # CONFIG_PACKET_MMAP is not set |
| 289 | CONFIG_UNIX=y | 305 | CONFIG_UNIX=y |
| @@ -339,6 +355,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 339 | # CONFIG_LAPB is not set | 355 | # CONFIG_LAPB is not set |
| 340 | # CONFIG_ECONET is not set | 356 | # CONFIG_ECONET is not set |
| 341 | # CONFIG_WAN_ROUTER is not set | 357 | # CONFIG_WAN_ROUTER is not set |
| 358 | # CONFIG_PHONET is not set | ||
| 342 | # CONFIG_NET_SCHED is not set | 359 | # CONFIG_NET_SCHED is not set |
| 343 | # CONFIG_DCB is not set | 360 | # CONFIG_DCB is not set |
| 344 | 361 | ||
| @@ -351,7 +368,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 351 | # CONFIG_IRDA is not set | 368 | # CONFIG_IRDA is not set |
| 352 | # CONFIG_BT is not set | 369 | # CONFIG_BT is not set |
| 353 | # CONFIG_AF_RXRPC is not set | 370 | # CONFIG_AF_RXRPC is not set |
| 354 | # CONFIG_PHONET is not set | ||
| 355 | CONFIG_WIRELESS=y | 371 | CONFIG_WIRELESS=y |
| 356 | # CONFIG_CFG80211 is not set | 372 | # CONFIG_CFG80211 is not set |
| 357 | CONFIG_WIRELESS_OLD_REGULATORY=y | 373 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -451,7 +467,6 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 451 | # LPDDR flash memory drivers | 467 | # LPDDR flash memory drivers |
| 452 | # | 468 | # |
| 453 | # CONFIG_MTD_LPDDR is not set | 469 | # CONFIG_MTD_LPDDR is not set |
| 454 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 455 | 470 | ||
| 456 | # | 471 | # |
| 457 | # UBI - Unsorted block images | 472 | # UBI - Unsorted block images |
| @@ -481,19 +496,27 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 481 | # CONFIG_BLK_DEV_HD is not set | 496 | # CONFIG_BLK_DEV_HD is not set |
| 482 | CONFIG_MISC_DEVICES=y | 497 | CONFIG_MISC_DEVICES=y |
| 483 | # CONFIG_PHANTOM is not set | 498 | # CONFIG_PHANTOM is not set |
| 484 | # CONFIG_EEPROM_93CX6 is not set | ||
| 485 | # CONFIG_SGI_IOC4 is not set | 499 | # CONFIG_SGI_IOC4 is not set |
| 486 | # CONFIG_TIFM_CORE is not set | 500 | # CONFIG_TIFM_CORE is not set |
| 487 | # CONFIG_ICS932S401 is not set | 501 | # CONFIG_ICS932S401 is not set |
| 488 | # CONFIG_ENCLOSURE_SERVICES is not set | 502 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 489 | # CONFIG_HP_ILO is not set | 503 | # CONFIG_HP_ILO is not set |
| 504 | # CONFIG_ISL29003 is not set | ||
| 490 | # CONFIG_C2PORT is not set | 505 | # CONFIG_C2PORT is not set |
| 506 | |||
| 507 | # | ||
| 508 | # EEPROM support | ||
| 509 | # | ||
| 510 | # CONFIG_EEPROM_AT24 is not set | ||
| 511 | # CONFIG_EEPROM_LEGACY is not set | ||
| 512 | # CONFIG_EEPROM_93CX6 is not set | ||
| 491 | CONFIG_HAVE_IDE=y | 513 | CONFIG_HAVE_IDE=y |
| 492 | CONFIG_IDE=y | 514 | CONFIG_IDE=y |
| 493 | 515 | ||
| 494 | # | 516 | # |
| 495 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 517 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 496 | # | 518 | # |
| 519 | CONFIG_IDE_XFER_MODE=y | ||
| 497 | CONFIG_IDE_TIMINGS=y | 520 | CONFIG_IDE_TIMINGS=y |
| 498 | # CONFIG_BLK_DEV_IDE_SATA is not set | 521 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 499 | CONFIG_IDE_GD=y | 522 | CONFIG_IDE_GD=y |
| @@ -568,6 +591,7 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 568 | # CONFIG_I2O is not set | 591 | # CONFIG_I2O is not set |
| 569 | # CONFIG_MACINTOSH_DRIVERS is not set | 592 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 570 | CONFIG_NETDEVICES=y | 593 | CONFIG_NETDEVICES=y |
| 594 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 571 | # CONFIG_DUMMY is not set | 595 | # CONFIG_DUMMY is not set |
| 572 | # CONFIG_BONDING is not set | 596 | # CONFIG_BONDING is not set |
| 573 | # CONFIG_MACVLAN is not set | 597 | # CONFIG_MACVLAN is not set |
| @@ -601,6 +625,8 @@ CONFIG_MII=y | |||
| 601 | # CONFIG_SUNGEM is not set | 625 | # CONFIG_SUNGEM is not set |
| 602 | # CONFIG_CASSINI is not set | 626 | # CONFIG_CASSINI is not set |
| 603 | # CONFIG_NET_VENDOR_3COM is not set | 627 | # CONFIG_NET_VENDOR_3COM is not set |
| 628 | # CONFIG_ETHOC is not set | ||
| 629 | # CONFIG_DNET is not set | ||
| 604 | # CONFIG_NET_TULIP is not set | 630 | # CONFIG_NET_TULIP is not set |
| 605 | # CONFIG_HP100 is not set | 631 | # CONFIG_HP100 is not set |
| 606 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 632 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -639,6 +665,7 @@ CONFIG_NETDEV_1000=y | |||
| 639 | # CONFIG_E1000E is not set | 665 | # CONFIG_E1000E is not set |
| 640 | # CONFIG_IP1000 is not set | 666 | # CONFIG_IP1000 is not set |
| 641 | # CONFIG_IGB is not set | 667 | # CONFIG_IGB is not set |
| 668 | # CONFIG_IGBVF is not set | ||
| 642 | # CONFIG_NS83820 is not set | 669 | # CONFIG_NS83820 is not set |
| 643 | # CONFIG_HAMACHI is not set | 670 | # CONFIG_HAMACHI is not set |
| 644 | # CONFIG_YELLOWFIN is not set | 671 | # CONFIG_YELLOWFIN is not set |
| @@ -649,10 +676,12 @@ CONFIG_NETDEV_1000=y | |||
| 649 | # CONFIG_VIA_VELOCITY is not set | 676 | # CONFIG_VIA_VELOCITY is not set |
| 650 | # CONFIG_TIGON3 is not set | 677 | # CONFIG_TIGON3 is not set |
| 651 | # CONFIG_BNX2 is not set | 678 | # CONFIG_BNX2 is not set |
| 679 | CONFIG_FSL_PQ_MDIO=y | ||
| 652 | CONFIG_GIANFAR=y | 680 | CONFIG_GIANFAR=y |
| 653 | # CONFIG_QLA3XXX is not set | 681 | # CONFIG_QLA3XXX is not set |
| 654 | # CONFIG_ATL1 is not set | 682 | # CONFIG_ATL1 is not set |
| 655 | # CONFIG_ATL1E is not set | 683 | # CONFIG_ATL1E is not set |
| 684 | # CONFIG_ATL1C is not set | ||
| 656 | # CONFIG_JME is not set | 685 | # CONFIG_JME is not set |
| 657 | CONFIG_NETDEV_10000=y | 686 | CONFIG_NETDEV_10000=y |
| 658 | # CONFIG_CHELSIO_T1 is not set | 687 | # CONFIG_CHELSIO_T1 is not set |
| @@ -662,6 +691,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 662 | # CONFIG_IXGBE is not set | 691 | # CONFIG_IXGBE is not set |
| 663 | # CONFIG_IXGB is not set | 692 | # CONFIG_IXGB is not set |
| 664 | # CONFIG_S2IO is not set | 693 | # CONFIG_S2IO is not set |
| 694 | # CONFIG_VXGE is not set | ||
| 665 | # CONFIG_MYRI10GE is not set | 695 | # CONFIG_MYRI10GE is not set |
| 666 | # CONFIG_NETXEN_NIC is not set | 696 | # CONFIG_NETXEN_NIC is not set |
| 667 | # CONFIG_NIU is not set | 697 | # CONFIG_NIU is not set |
| @@ -671,6 +701,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 671 | # CONFIG_BNX2X is not set | 701 | # CONFIG_BNX2X is not set |
| 672 | # CONFIG_QLGE is not set | 702 | # CONFIG_QLGE is not set |
| 673 | # CONFIG_SFC is not set | 703 | # CONFIG_SFC is not set |
| 704 | # CONFIG_BE2NET is not set | ||
| 674 | # CONFIG_TR is not set | 705 | # CONFIG_TR is not set |
| 675 | 706 | ||
| 676 | # | 707 | # |
| @@ -678,7 +709,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 678 | # | 709 | # |
| 679 | # CONFIG_WLAN_PRE80211 is not set | 710 | # CONFIG_WLAN_PRE80211 is not set |
| 680 | # CONFIG_WLAN_80211 is not set | 711 | # CONFIG_WLAN_80211 is not set |
| 681 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 682 | 712 | ||
| 683 | # | 713 | # |
| 684 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 714 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -761,6 +791,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 761 | # CONFIG_HVC_UDBG is not set | 791 | # CONFIG_HVC_UDBG is not set |
| 762 | # CONFIG_IPMI_HANDLER is not set | 792 | # CONFIG_IPMI_HANDLER is not set |
| 763 | CONFIG_HW_RANDOM=y | 793 | CONFIG_HW_RANDOM=y |
| 794 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 764 | # CONFIG_NVRAM is not set | 795 | # CONFIG_NVRAM is not set |
| 765 | CONFIG_GEN_RTC=y | 796 | CONFIG_GEN_RTC=y |
| 766 | # CONFIG_GEN_RTC_X is not set | 797 | # CONFIG_GEN_RTC_X is not set |
| @@ -825,12 +856,9 @@ CONFIG_I2C_MPC=y | |||
| 825 | # Miscellaneous I2C Chip support | 856 | # Miscellaneous I2C Chip support |
| 826 | # | 857 | # |
| 827 | # CONFIG_DS1682 is not set | 858 | # CONFIG_DS1682 is not set |
| 828 | # CONFIG_EEPROM_AT24 is not set | ||
| 829 | # CONFIG_EEPROM_LEGACY is not set | ||
| 830 | # CONFIG_SENSORS_PCF8574 is not set | 859 | # CONFIG_SENSORS_PCF8574 is not set |
| 831 | # CONFIG_PCF8575 is not set | 860 | # CONFIG_PCF8575 is not set |
| 832 | # CONFIG_SENSORS_PCA9539 is not set | 861 | # CONFIG_SENSORS_PCA9539 is not set |
| 833 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 834 | # CONFIG_SENSORS_MAX6875 is not set | 862 | # CONFIG_SENSORS_MAX6875 is not set |
| 835 | # CONFIG_SENSORS_TSL2550 is not set | 863 | # CONFIG_SENSORS_TSL2550 is not set |
| 836 | # CONFIG_I2C_DEBUG_CORE is not set | 864 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -885,6 +913,7 @@ CONFIG_HWMON=y | |||
| 885 | # CONFIG_SENSORS_F71805F is not set | 913 | # CONFIG_SENSORS_F71805F is not set |
| 886 | # CONFIG_SENSORS_F71882FG is not set | 914 | # CONFIG_SENSORS_F71882FG is not set |
| 887 | # CONFIG_SENSORS_F75375S is not set | 915 | # CONFIG_SENSORS_F75375S is not set |
| 916 | # CONFIG_SENSORS_G760A is not set | ||
| 888 | # CONFIG_SENSORS_GL518SM is not set | 917 | # CONFIG_SENSORS_GL518SM is not set |
| 889 | # CONFIG_SENSORS_GL520SM is not set | 918 | # CONFIG_SENSORS_GL520SM is not set |
| 890 | # CONFIG_SENSORS_IT87 is not set | 919 | # CONFIG_SENSORS_IT87 is not set |
| @@ -899,11 +928,15 @@ CONFIG_SENSORS_LM75=y | |||
| 899 | # CONFIG_SENSORS_LM90 is not set | 928 | # CONFIG_SENSORS_LM90 is not set |
| 900 | # CONFIG_SENSORS_LM92 is not set | 929 | # CONFIG_SENSORS_LM92 is not set |
| 901 | # CONFIG_SENSORS_LM93 is not set | 930 | # CONFIG_SENSORS_LM93 is not set |
| 931 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 902 | # CONFIG_SENSORS_LTC4245 is not set | 932 | # CONFIG_SENSORS_LTC4245 is not set |
| 933 | # CONFIG_SENSORS_LM95241 is not set | ||
| 903 | # CONFIG_SENSORS_MAX1619 is not set | 934 | # CONFIG_SENSORS_MAX1619 is not set |
| 904 | # CONFIG_SENSORS_MAX6650 is not set | 935 | # CONFIG_SENSORS_MAX6650 is not set |
| 905 | # CONFIG_SENSORS_PC87360 is not set | 936 | # CONFIG_SENSORS_PC87360 is not set |
| 906 | # CONFIG_SENSORS_PC87427 is not set | 937 | # CONFIG_SENSORS_PC87427 is not set |
| 938 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 939 | # CONFIG_SENSORS_SHT15 is not set | ||
| 907 | # CONFIG_SENSORS_SIS5595 is not set | 940 | # CONFIG_SENSORS_SIS5595 is not set |
| 908 | # CONFIG_SENSORS_DME1737 is not set | 941 | # CONFIG_SENSORS_DME1737 is not set |
| 909 | # CONFIG_SENSORS_SMSC47M1 is not set | 942 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -988,7 +1021,6 @@ CONFIG_HID=y | |||
| 988 | # | 1021 | # |
| 989 | # Special HID drivers | 1022 | # Special HID drivers |
| 990 | # | 1023 | # |
| 991 | CONFIG_HID_COMPAT=y | ||
| 992 | CONFIG_USB_SUPPORT=y | 1024 | CONFIG_USB_SUPPORT=y |
| 993 | CONFIG_USB_ARCH_HAS_HCD=y | 1025 | CONFIG_USB_ARCH_HAS_HCD=y |
| 994 | CONFIG_USB_ARCH_HAS_OHCI=y | 1026 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1002,7 +1034,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1002 | # | 1034 | # |
| 1003 | 1035 | ||
| 1004 | # | 1036 | # |
| 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1037 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1006 | # | 1038 | # |
| 1007 | # CONFIG_USB_GADGET is not set | 1039 | # CONFIG_USB_GADGET is not set |
| 1008 | 1040 | ||
| @@ -1018,6 +1050,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1018 | # CONFIG_EDAC is not set | 1050 | # CONFIG_EDAC is not set |
| 1019 | # CONFIG_RTC_CLASS is not set | 1051 | # CONFIG_RTC_CLASS is not set |
| 1020 | # CONFIG_DMADEVICES is not set | 1052 | # CONFIG_DMADEVICES is not set |
| 1053 | # CONFIG_AUXDISPLAY is not set | ||
| 1021 | # CONFIG_UIO is not set | 1054 | # CONFIG_UIO is not set |
| 1022 | # CONFIG_STAGING is not set | 1055 | # CONFIG_STAGING is not set |
| 1023 | 1056 | ||
| @@ -1028,6 +1061,7 @@ CONFIG_EXT2_FS=y | |||
| 1028 | # CONFIG_EXT2_FS_XATTR is not set | 1061 | # CONFIG_EXT2_FS_XATTR is not set |
| 1029 | # CONFIG_EXT2_FS_XIP is not set | 1062 | # CONFIG_EXT2_FS_XIP is not set |
| 1030 | CONFIG_EXT3_FS=y | 1063 | CONFIG_EXT3_FS=y |
| 1064 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1031 | CONFIG_EXT3_FS_XATTR=y | 1065 | CONFIG_EXT3_FS_XATTR=y |
| 1032 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1066 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1033 | # CONFIG_EXT3_FS_SECURITY is not set | 1067 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1050,6 +1084,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1050 | # CONFIG_FUSE_FS is not set | 1084 | # CONFIG_FUSE_FS is not set |
| 1051 | 1085 | ||
| 1052 | # | 1086 | # |
| 1087 | # Caches | ||
| 1088 | # | ||
| 1089 | # CONFIG_FSCACHE is not set | ||
| 1090 | |||
| 1091 | # | ||
| 1053 | # CD-ROM/DVD Filesystems | 1092 | # CD-ROM/DVD Filesystems |
| 1054 | # | 1093 | # |
| 1055 | # CONFIG_ISO9660_FS is not set | 1094 | # CONFIG_ISO9660_FS is not set |
| @@ -1103,6 +1142,7 @@ CONFIG_CRAMFS=y | |||
| 1103 | # CONFIG_ROMFS_FS is not set | 1142 | # CONFIG_ROMFS_FS is not set |
| 1104 | # CONFIG_SYSV_FS is not set | 1143 | # CONFIG_SYSV_FS is not set |
| 1105 | # CONFIG_UFS_FS is not set | 1144 | # CONFIG_UFS_FS is not set |
| 1145 | # CONFIG_NILFS2_FS is not set | ||
| 1106 | CONFIG_NETWORK_FILESYSTEMS=y | 1146 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1107 | CONFIG_NFS_FS=y | 1147 | CONFIG_NFS_FS=y |
| 1108 | # CONFIG_NFS_V3 is not set | 1148 | # CONFIG_NFS_V3 is not set |
| @@ -1112,7 +1152,6 @@ CONFIG_ROOT_NFS=y | |||
| 1112 | CONFIG_LOCKD=y | 1152 | CONFIG_LOCKD=y |
| 1113 | CONFIG_NFS_COMMON=y | 1153 | CONFIG_NFS_COMMON=y |
| 1114 | CONFIG_SUNRPC=y | 1154 | CONFIG_SUNRPC=y |
| 1115 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1116 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1155 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1117 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1156 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1118 | # CONFIG_SMB_FS is not set | 1157 | # CONFIG_SMB_FS is not set |
| @@ -1140,6 +1179,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1140 | # CONFIG_SYSV68_PARTITION is not set | 1179 | # CONFIG_SYSV68_PARTITION is not set |
| 1141 | # CONFIG_NLS is not set | 1180 | # CONFIG_NLS is not set |
| 1142 | # CONFIG_DLM is not set | 1181 | # CONFIG_DLM is not set |
| 1182 | # CONFIG_BINARY_PRINTF is not set | ||
| 1143 | 1183 | ||
| 1144 | # | 1184 | # |
| 1145 | # Library routines | 1185 | # Library routines |
| @@ -1155,11 +1195,12 @@ CONFIG_CRC32=y | |||
| 1155 | # CONFIG_LIBCRC32C is not set | 1195 | # CONFIG_LIBCRC32C is not set |
| 1156 | CONFIG_ZLIB_INFLATE=y | 1196 | CONFIG_ZLIB_INFLATE=y |
| 1157 | CONFIG_ZLIB_DEFLATE=y | 1197 | CONFIG_ZLIB_DEFLATE=y |
| 1158 | CONFIG_PLIST=y | 1198 | CONFIG_DECOMPRESS_GZIP=y |
| 1159 | CONFIG_HAS_IOMEM=y | 1199 | CONFIG_HAS_IOMEM=y |
| 1160 | CONFIG_HAS_IOPORT=y | 1200 | CONFIG_HAS_IOPORT=y |
| 1161 | CONFIG_HAS_DMA=y | 1201 | CONFIG_HAS_DMA=y |
| 1162 | CONFIG_HAVE_LMB=y | 1202 | CONFIG_HAVE_LMB=y |
| 1203 | CONFIG_NLATTR=y | ||
| 1163 | 1204 | ||
| 1164 | # | 1205 | # |
| 1165 | # Kernel hacking | 1206 | # Kernel hacking |
| @@ -1181,13 +1222,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1181 | # CONFIG_LATENCYTOP is not set | 1222 | # CONFIG_LATENCYTOP is not set |
| 1182 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1223 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1183 | CONFIG_HAVE_FUNCTION_TRACER=y | 1224 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1225 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1184 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1226 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1185 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1227 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1228 | CONFIG_TRACING_SUPPORT=y | ||
| 1186 | 1229 | ||
| 1187 | # | 1230 | # |
| 1188 | # Tracers | 1231 | # Tracers |
| 1189 | # | 1232 | # |
| 1190 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1233 | # CONFIG_FUNCTION_TRACER is not set |
| 1234 | # CONFIG_SCHED_TRACER is not set | ||
| 1235 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1236 | # CONFIG_EVENT_TRACER is not set | ||
| 1237 | # CONFIG_BOOT_TRACER is not set | ||
| 1238 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1239 | # CONFIG_STACK_TRACER is not set | ||
| 1240 | # CONFIG_KMEMTRACE is not set | ||
| 1241 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1242 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1191 | # CONFIG_SAMPLES is not set | 1243 | # CONFIG_SAMPLES is not set |
| 1192 | CONFIG_HAVE_ARCH_KGDB=y | 1244 | CONFIG_HAVE_ARCH_KGDB=y |
| 1193 | CONFIG_PRINT_STACK_DEPTH=64 | 1245 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1278,6 +1330,7 @@ CONFIG_CRYPTO=y | |||
| 1278 | # Compression | 1330 | # Compression |
| 1279 | # | 1331 | # |
| 1280 | # CONFIG_CRYPTO_DEFLATE is not set | 1332 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1333 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1281 | # CONFIG_CRYPTO_LZO is not set | 1334 | # CONFIG_CRYPTO_LZO is not set |
| 1282 | 1335 | ||
| 1283 | # | 1336 | # |
diff --git a/arch/powerpc/configs/85xx/tqm8548_defconfig b/arch/powerpc/configs/85xx/tqm8548_defconfig index 43030fea2eee..8b4faae7a9a1 100644 --- a/arch/powerpc/configs/85xx/tqm8548_defconfig +++ b/arch/powerpc/configs/85xx/tqm8548_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Mar 16 09:03:28 2009 | 4 | # Wed May 13 17:22:24 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -59,6 +59,7 @@ CONFIG_GENERIC_BUG=y | |||
| 59 | CONFIG_DEFAULT_UIMAGE=y | 59 | CONFIG_DEFAULT_UIMAGE=y |
| 60 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 61 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 62 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 63 | 64 | ||
| 64 | # | 65 | # |
| @@ -99,21 +100,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 99 | # CONFIG_NAMESPACES is not set | 100 | # CONFIG_NAMESPACES is not set |
| 100 | CONFIG_BLK_DEV_INITRD=y | 101 | CONFIG_BLK_DEV_INITRD=y |
| 101 | CONFIG_INITRAMFS_SOURCE="" | 102 | CONFIG_INITRAMFS_SOURCE="" |
| 103 | CONFIG_RD_GZIP=y | ||
| 104 | # CONFIG_RD_BZIP2 is not set | ||
| 105 | # CONFIG_RD_LZMA is not set | ||
| 102 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 106 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 103 | CONFIG_SYSCTL=y | 107 | CONFIG_SYSCTL=y |
| 108 | CONFIG_ANON_INODES=y | ||
| 104 | CONFIG_EMBEDDED=y | 109 | CONFIG_EMBEDDED=y |
| 105 | CONFIG_SYSCTL_SYSCALL=y | 110 | CONFIG_SYSCTL_SYSCALL=y |
| 106 | CONFIG_KALLSYMS=y | 111 | CONFIG_KALLSYMS=y |
| 107 | # CONFIG_KALLSYMS_ALL is not set | 112 | # CONFIG_KALLSYMS_ALL is not set |
| 108 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 113 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 114 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 109 | CONFIG_HOTPLUG=y | 115 | CONFIG_HOTPLUG=y |
| 110 | CONFIG_PRINTK=y | 116 | CONFIG_PRINTK=y |
| 111 | CONFIG_BUG=y | 117 | CONFIG_BUG=y |
| 112 | CONFIG_ELF_CORE=y | 118 | CONFIG_ELF_CORE=y |
| 113 | CONFIG_COMPAT_BRK=y | ||
| 114 | CONFIG_BASE_FULL=y | 119 | CONFIG_BASE_FULL=y |
| 115 | CONFIG_FUTEX=y | 120 | CONFIG_FUTEX=y |
| 116 | CONFIG_ANON_INODES=y | ||
| 117 | CONFIG_EPOLL=y | 121 | CONFIG_EPOLL=y |
| 118 | CONFIG_SIGNALFD=y | 122 | CONFIG_SIGNALFD=y |
| 119 | CONFIG_TIMERFD=y | 123 | CONFIG_TIMERFD=y |
| @@ -123,10 +127,12 @@ CONFIG_AIO=y | |||
| 123 | CONFIG_VM_EVENT_COUNTERS=y | 127 | CONFIG_VM_EVENT_COUNTERS=y |
| 124 | CONFIG_PCI_QUIRKS=y | 128 | CONFIG_PCI_QUIRKS=y |
| 125 | CONFIG_SLUB_DEBUG=y | 129 | CONFIG_SLUB_DEBUG=y |
| 130 | CONFIG_COMPAT_BRK=y | ||
| 126 | # CONFIG_SLAB is not set | 131 | # CONFIG_SLAB is not set |
| 127 | CONFIG_SLUB=y | 132 | CONFIG_SLUB=y |
| 128 | # CONFIG_SLOB is not set | 133 | # CONFIG_SLOB is not set |
| 129 | # CONFIG_PROFILING is not set | 134 | # CONFIG_PROFILING is not set |
| 135 | # CONFIG_MARKERS is not set | ||
| 130 | CONFIG_HAVE_OPROFILE=y | 136 | CONFIG_HAVE_OPROFILE=y |
| 131 | # CONFIG_KPROBES is not set | 137 | # CONFIG_KPROBES is not set |
| 132 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 138 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -134,6 +140,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
| 134 | CONFIG_HAVE_KPROBES=y | 140 | CONFIG_HAVE_KPROBES=y |
| 135 | CONFIG_HAVE_KRETPROBES=y | 141 | CONFIG_HAVE_KRETPROBES=y |
| 136 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 142 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 143 | # CONFIG_SLOW_WORK is not set | ||
| 137 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 144 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 138 | CONFIG_SLABINFO=y | 145 | CONFIG_SLABINFO=y |
| 139 | CONFIG_RT_MUTEXES=y | 146 | CONFIG_RT_MUTEXES=y |
| @@ -146,7 +153,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 146 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 153 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 147 | CONFIG_BLOCK=y | 154 | CONFIG_BLOCK=y |
| 148 | # CONFIG_LBD is not set | 155 | # CONFIG_LBD is not set |
| 149 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 150 | # CONFIG_BLK_DEV_BSG is not set | 156 | # CONFIG_BLK_DEV_BSG is not set |
| 151 | # CONFIG_BLK_DEV_INTEGRITY is not set | 157 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 152 | 158 | ||
| @@ -177,6 +183,7 @@ CONFIG_MPC85xx=y | |||
| 177 | # CONFIG_MPC85xx_MDS is not set | 183 | # CONFIG_MPC85xx_MDS is not set |
| 178 | # CONFIG_MPC8536_DS is not set | 184 | # CONFIG_MPC8536_DS is not set |
| 179 | # CONFIG_MPC85xx_DS is not set | 185 | # CONFIG_MPC85xx_DS is not set |
| 186 | # CONFIG_SOCRATES is not set | ||
| 180 | # CONFIG_KSI8560 is not set | 187 | # CONFIG_KSI8560 is not set |
| 181 | # CONFIG_STX_GP3 is not set | 188 | # CONFIG_STX_GP3 is not set |
| 182 | # CONFIG_TQM8540 is not set | 189 | # CONFIG_TQM8540 is not set |
| @@ -246,6 +253,8 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 246 | CONFIG_BOUNCE=y | 253 | CONFIG_BOUNCE=y |
| 247 | CONFIG_VIRT_TO_BUS=y | 254 | CONFIG_VIRT_TO_BUS=y |
| 248 | CONFIG_UNEVICTABLE_LRU=y | 255 | CONFIG_UNEVICTABLE_LRU=y |
| 256 | CONFIG_HAVE_MLOCK=y | ||
| 257 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 249 | CONFIG_PPC_4K_PAGES=y | 258 | CONFIG_PPC_4K_PAGES=y |
| 250 | # CONFIG_PPC_16K_PAGES is not set | 259 | # CONFIG_PPC_16K_PAGES is not set |
| 251 | # CONFIG_PPC_64K_PAGES is not set | 260 | # CONFIG_PPC_64K_PAGES is not set |
| @@ -278,6 +287,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 278 | # CONFIG_PCI_LEGACY is not set | 287 | # CONFIG_PCI_LEGACY is not set |
| 279 | # CONFIG_PCI_DEBUG is not set | 288 | # CONFIG_PCI_DEBUG is not set |
| 280 | # CONFIG_PCI_STUB is not set | 289 | # CONFIG_PCI_STUB is not set |
| 290 | # CONFIG_PCI_IOV is not set | ||
| 281 | # CONFIG_PCCARD is not set | 291 | # CONFIG_PCCARD is not set |
| 282 | # CONFIG_HOTPLUG_PCI is not set | 292 | # CONFIG_HOTPLUG_PCI is not set |
| 283 | # CONFIG_HAS_RAPIDIO is not set | 293 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -302,7 +312,6 @@ CONFIG_NET=y | |||
| 302 | # | 312 | # |
| 303 | # Networking options | 313 | # Networking options |
| 304 | # | 314 | # |
| 305 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 306 | CONFIG_PACKET=y | 315 | CONFIG_PACKET=y |
| 307 | # CONFIG_PACKET_MMAP is not set | 316 | # CONFIG_PACKET_MMAP is not set |
| 308 | CONFIG_UNIX=y | 317 | CONFIG_UNIX=y |
| @@ -358,6 +367,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 358 | # CONFIG_LAPB is not set | 367 | # CONFIG_LAPB is not set |
| 359 | # CONFIG_ECONET is not set | 368 | # CONFIG_ECONET is not set |
| 360 | # CONFIG_WAN_ROUTER is not set | 369 | # CONFIG_WAN_ROUTER is not set |
| 370 | # CONFIG_PHONET is not set | ||
| 361 | # CONFIG_NET_SCHED is not set | 371 | # CONFIG_NET_SCHED is not set |
| 362 | # CONFIG_DCB is not set | 372 | # CONFIG_DCB is not set |
| 363 | 373 | ||
| @@ -370,7 +380,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 370 | # CONFIG_IRDA is not set | 380 | # CONFIG_IRDA is not set |
| 371 | # CONFIG_BT is not set | 381 | # CONFIG_BT is not set |
| 372 | # CONFIG_AF_RXRPC is not set | 382 | # CONFIG_AF_RXRPC is not set |
| 373 | # CONFIG_PHONET is not set | ||
| 374 | # CONFIG_WIRELESS is not set | 383 | # CONFIG_WIRELESS is not set |
| 375 | # CONFIG_WIMAX is not set | 384 | # CONFIG_WIMAX is not set |
| 376 | # CONFIG_RFKILL is not set | 385 | # CONFIG_RFKILL is not set |
| @@ -514,6 +523,7 @@ CONFIG_MISC_DEVICES=y | |||
| 514 | # CONFIG_ICS932S401 is not set | 523 | # CONFIG_ICS932S401 is not set |
| 515 | # CONFIG_ENCLOSURE_SERVICES is not set | 524 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 516 | # CONFIG_HP_ILO is not set | 525 | # CONFIG_HP_ILO is not set |
| 526 | # CONFIG_ISL29003 is not set | ||
| 517 | # CONFIG_C2PORT is not set | 527 | # CONFIG_C2PORT is not set |
| 518 | 528 | ||
| 519 | # | 529 | # |
| @@ -548,6 +558,7 @@ CONFIG_HAVE_IDE=y | |||
| 548 | # CONFIG_I2O is not set | 558 | # CONFIG_I2O is not set |
| 549 | # CONFIG_MACINTOSH_DRIVERS is not set | 559 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 550 | CONFIG_NETDEVICES=y | 560 | CONFIG_NETDEVICES=y |
| 561 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 551 | # CONFIG_DUMMY is not set | 562 | # CONFIG_DUMMY is not set |
| 552 | # CONFIG_BONDING is not set | 563 | # CONFIG_BONDING is not set |
| 553 | # CONFIG_MACVLAN is not set | 564 | # CONFIG_MACVLAN is not set |
| @@ -581,6 +592,8 @@ CONFIG_MII=y | |||
| 581 | # CONFIG_SUNGEM is not set | 592 | # CONFIG_SUNGEM is not set |
| 582 | # CONFIG_CASSINI is not set | 593 | # CONFIG_CASSINI is not set |
| 583 | # CONFIG_NET_VENDOR_3COM is not set | 594 | # CONFIG_NET_VENDOR_3COM is not set |
| 595 | # CONFIG_ETHOC is not set | ||
| 596 | # CONFIG_DNET is not set | ||
| 584 | # CONFIG_NET_TULIP is not set | 597 | # CONFIG_NET_TULIP is not set |
| 585 | # CONFIG_HP100 is not set | 598 | # CONFIG_HP100 is not set |
| 586 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 599 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -600,6 +613,7 @@ CONFIG_NETDEV_1000=y | |||
| 600 | # CONFIG_E1000E is not set | 613 | # CONFIG_E1000E is not set |
| 601 | # CONFIG_IP1000 is not set | 614 | # CONFIG_IP1000 is not set |
| 602 | # CONFIG_IGB is not set | 615 | # CONFIG_IGB is not set |
| 616 | # CONFIG_IGBVF is not set | ||
| 603 | # CONFIG_NS83820 is not set | 617 | # CONFIG_NS83820 is not set |
| 604 | # CONFIG_HAMACHI is not set | 618 | # CONFIG_HAMACHI is not set |
| 605 | # CONFIG_YELLOWFIN is not set | 619 | # CONFIG_YELLOWFIN is not set |
| @@ -610,6 +624,7 @@ CONFIG_NETDEV_1000=y | |||
| 610 | # CONFIG_VIA_VELOCITY is not set | 624 | # CONFIG_VIA_VELOCITY is not set |
| 611 | # CONFIG_TIGON3 is not set | 625 | # CONFIG_TIGON3 is not set |
| 612 | # CONFIG_BNX2 is not set | 626 | # CONFIG_BNX2 is not set |
| 627 | CONFIG_FSL_PQ_MDIO=y | ||
| 613 | CONFIG_GIANFAR=y | 628 | CONFIG_GIANFAR=y |
| 614 | # CONFIG_QLA3XXX is not set | 629 | # CONFIG_QLA3XXX is not set |
| 615 | # CONFIG_ATL1 is not set | 630 | # CONFIG_ATL1 is not set |
| @@ -624,6 +639,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 624 | # CONFIG_IXGBE is not set | 639 | # CONFIG_IXGBE is not set |
| 625 | # CONFIG_IXGB is not set | 640 | # CONFIG_IXGB is not set |
| 626 | # CONFIG_S2IO is not set | 641 | # CONFIG_S2IO is not set |
| 642 | # CONFIG_VXGE is not set | ||
| 627 | # CONFIG_MYRI10GE is not set | 643 | # CONFIG_MYRI10GE is not set |
| 628 | # CONFIG_NETXEN_NIC is not set | 644 | # CONFIG_NETXEN_NIC is not set |
| 629 | # CONFIG_NIU is not set | 645 | # CONFIG_NIU is not set |
| @@ -633,6 +649,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 633 | # CONFIG_BNX2X is not set | 649 | # CONFIG_BNX2X is not set |
| 634 | # CONFIG_QLGE is not set | 650 | # CONFIG_QLGE is not set |
| 635 | # CONFIG_SFC is not set | 651 | # CONFIG_SFC is not set |
| 652 | # CONFIG_BE2NET is not set | ||
| 636 | # CONFIG_TR is not set | 653 | # CONFIG_TR is not set |
| 637 | 654 | ||
| 638 | # | 655 | # |
| @@ -640,7 +657,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 640 | # | 657 | # |
| 641 | # CONFIG_WLAN_PRE80211 is not set | 658 | # CONFIG_WLAN_PRE80211 is not set |
| 642 | # CONFIG_WLAN_80211 is not set | 659 | # CONFIG_WLAN_80211 is not set |
| 643 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 644 | 660 | ||
| 645 | # | 661 | # |
| 646 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 662 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -785,7 +801,6 @@ CONFIG_I2C_MPC=y | |||
| 785 | # CONFIG_SENSORS_PCF8574 is not set | 801 | # CONFIG_SENSORS_PCF8574 is not set |
| 786 | # CONFIG_PCF8575 is not set | 802 | # CONFIG_PCF8575 is not set |
| 787 | # CONFIG_SENSORS_PCA9539 is not set | 803 | # CONFIG_SENSORS_PCA9539 is not set |
| 788 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 789 | # CONFIG_SENSORS_MAX6875 is not set | 804 | # CONFIG_SENSORS_MAX6875 is not set |
| 790 | # CONFIG_SENSORS_TSL2550 is not set | 805 | # CONFIG_SENSORS_TSL2550 is not set |
| 791 | # CONFIG_I2C_DEBUG_CORE is not set | 806 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -817,6 +832,7 @@ CONFIG_HWMON=y | |||
| 817 | # CONFIG_SENSORS_F71805F is not set | 832 | # CONFIG_SENSORS_F71805F is not set |
| 818 | # CONFIG_SENSORS_F71882FG is not set | 833 | # CONFIG_SENSORS_F71882FG is not set |
| 819 | # CONFIG_SENSORS_F75375S is not set | 834 | # CONFIG_SENSORS_F75375S is not set |
| 835 | # CONFIG_SENSORS_G760A is not set | ||
| 820 | # CONFIG_SENSORS_GL518SM is not set | 836 | # CONFIG_SENSORS_GL518SM is not set |
| 821 | # CONFIG_SENSORS_GL520SM is not set | 837 | # CONFIG_SENSORS_GL520SM is not set |
| 822 | # CONFIG_SENSORS_IT87 is not set | 838 | # CONFIG_SENSORS_IT87 is not set |
| @@ -831,11 +847,14 @@ CONFIG_SENSORS_LM75=y | |||
| 831 | # CONFIG_SENSORS_LM90 is not set | 847 | # CONFIG_SENSORS_LM90 is not set |
| 832 | # CONFIG_SENSORS_LM92 is not set | 848 | # CONFIG_SENSORS_LM92 is not set |
| 833 | # CONFIG_SENSORS_LM93 is not set | 849 | # CONFIG_SENSORS_LM93 is not set |
| 850 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 834 | # CONFIG_SENSORS_LTC4245 is not set | 851 | # CONFIG_SENSORS_LTC4245 is not set |
| 852 | # CONFIG_SENSORS_LM95241 is not set | ||
| 835 | # CONFIG_SENSORS_MAX1619 is not set | 853 | # CONFIG_SENSORS_MAX1619 is not set |
| 836 | # CONFIG_SENSORS_MAX6650 is not set | 854 | # CONFIG_SENSORS_MAX6650 is not set |
| 837 | # CONFIG_SENSORS_PC87360 is not set | 855 | # CONFIG_SENSORS_PC87360 is not set |
| 838 | # CONFIG_SENSORS_PC87427 is not set | 856 | # CONFIG_SENSORS_PC87427 is not set |
| 857 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 839 | # CONFIG_SENSORS_SIS5595 is not set | 858 | # CONFIG_SENSORS_SIS5595 is not set |
| 840 | # CONFIG_SENSORS_DME1737 is not set | 859 | # CONFIG_SENSORS_DME1737 is not set |
| 841 | # CONFIG_SENSORS_SMSC47M1 is not set | 860 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -919,7 +938,6 @@ CONFIG_HID=y | |||
| 919 | # | 938 | # |
| 920 | # Special HID drivers | 939 | # Special HID drivers |
| 921 | # | 940 | # |
| 922 | CONFIG_HID_COMPAT=y | ||
| 923 | # CONFIG_USB_SUPPORT is not set | 941 | # CONFIG_USB_SUPPORT is not set |
| 924 | # CONFIG_UWB is not set | 942 | # CONFIG_UWB is not set |
| 925 | # CONFIG_MMC is not set | 943 | # CONFIG_MMC is not set |
| @@ -982,8 +1000,9 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 982 | # | 1000 | # |
| 983 | # on-CPU RTC drivers | 1001 | # on-CPU RTC drivers |
| 984 | # | 1002 | # |
| 985 | # CONFIG_RTC_DRV_PPC is not set | 1003 | # CONFIG_RTC_DRV_GENERIC is not set |
| 986 | # CONFIG_DMADEVICES is not set | 1004 | # CONFIG_DMADEVICES is not set |
| 1005 | # CONFIG_AUXDISPLAY is not set | ||
| 987 | # CONFIG_UIO is not set | 1006 | # CONFIG_UIO is not set |
| 988 | # CONFIG_STAGING is not set | 1007 | # CONFIG_STAGING is not set |
| 989 | 1008 | ||
| @@ -1009,6 +1028,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1009 | # CONFIG_FUSE_FS is not set | 1028 | # CONFIG_FUSE_FS is not set |
| 1010 | 1029 | ||
| 1011 | # | 1030 | # |
| 1031 | # Caches | ||
| 1032 | # | ||
| 1033 | # CONFIG_FSCACHE is not set | ||
| 1034 | |||
| 1035 | # | ||
| 1012 | # CD-ROM/DVD Filesystems | 1036 | # CD-ROM/DVD Filesystems |
| 1013 | # | 1037 | # |
| 1014 | # CONFIG_ISO9660_FS is not set | 1038 | # CONFIG_ISO9660_FS is not set |
| @@ -1062,6 +1086,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1062 | # CONFIG_ROMFS_FS is not set | 1086 | # CONFIG_ROMFS_FS is not set |
| 1063 | # CONFIG_SYSV_FS is not set | 1087 | # CONFIG_SYSV_FS is not set |
| 1064 | # CONFIG_UFS_FS is not set | 1088 | # CONFIG_UFS_FS is not set |
| 1089 | # CONFIG_NILFS2_FS is not set | ||
| 1065 | CONFIG_NETWORK_FILESYSTEMS=y | 1090 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1066 | CONFIG_NFS_FS=y | 1091 | CONFIG_NFS_FS=y |
| 1067 | # CONFIG_NFS_V3 is not set | 1092 | # CONFIG_NFS_V3 is not set |
| @@ -1071,7 +1096,6 @@ CONFIG_ROOT_NFS=y | |||
| 1071 | CONFIG_LOCKD=y | 1096 | CONFIG_LOCKD=y |
| 1072 | CONFIG_NFS_COMMON=y | 1097 | CONFIG_NFS_COMMON=y |
| 1073 | CONFIG_SUNRPC=y | 1098 | CONFIG_SUNRPC=y |
| 1074 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1075 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1099 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1076 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1100 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1077 | # CONFIG_SMB_FS is not set | 1101 | # CONFIG_SMB_FS is not set |
| @@ -1099,6 +1123,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1099 | # CONFIG_SYSV68_PARTITION is not set | 1123 | # CONFIG_SYSV68_PARTITION is not set |
| 1100 | # CONFIG_NLS is not set | 1124 | # CONFIG_NLS is not set |
| 1101 | # CONFIG_DLM is not set | 1125 | # CONFIG_DLM is not set |
| 1126 | # CONFIG_BINARY_PRINTF is not set | ||
| 1102 | 1127 | ||
| 1103 | # | 1128 | # |
| 1104 | # Library routines | 1129 | # Library routines |
| @@ -1114,11 +1139,12 @@ CONFIG_CRC32=y | |||
| 1114 | # CONFIG_LIBCRC32C is not set | 1139 | # CONFIG_LIBCRC32C is not set |
| 1115 | CONFIG_ZLIB_INFLATE=y | 1140 | CONFIG_ZLIB_INFLATE=y |
| 1116 | CONFIG_ZLIB_DEFLATE=y | 1141 | CONFIG_ZLIB_DEFLATE=y |
| 1117 | CONFIG_PLIST=y | 1142 | CONFIG_DECOMPRESS_GZIP=y |
| 1118 | CONFIG_HAS_IOMEM=y | 1143 | CONFIG_HAS_IOMEM=y |
| 1119 | CONFIG_HAS_IOPORT=y | 1144 | CONFIG_HAS_IOPORT=y |
| 1120 | CONFIG_HAS_DMA=y | 1145 | CONFIG_HAS_DMA=y |
| 1121 | CONFIG_HAVE_LMB=y | 1146 | CONFIG_HAVE_LMB=y |
| 1147 | CONFIG_NLATTR=y | ||
| 1122 | 1148 | ||
| 1123 | # | 1149 | # |
| 1124 | # Kernel hacking | 1150 | # Kernel hacking |
| @@ -1136,6 +1162,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1136 | CONFIG_DETECT_SOFTLOCKUP=y | 1162 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1137 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1163 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1138 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1164 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1165 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1166 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1167 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1139 | CONFIG_SCHED_DEBUG=y | 1168 | CONFIG_SCHED_DEBUG=y |
| 1140 | # CONFIG_SCHEDSTATS is not set | 1169 | # CONFIG_SCHEDSTATS is not set |
| 1141 | # CONFIG_TIMER_STATS is not set | 1170 | # CONFIG_TIMER_STATS is not set |
| @@ -1166,10 +1195,12 @@ CONFIG_DEBUG_MUTEXES=y | |||
| 1166 | # CONFIG_FAULT_INJECTION is not set | 1195 | # CONFIG_FAULT_INJECTION is not set |
| 1167 | # CONFIG_LATENCYTOP is not set | 1196 | # CONFIG_LATENCYTOP is not set |
| 1168 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1197 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1198 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1169 | CONFIG_HAVE_FUNCTION_TRACER=y | 1199 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1170 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1200 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
| 1171 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1201 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1172 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1202 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1203 | CONFIG_TRACING_SUPPORT=y | ||
| 1173 | 1204 | ||
| 1174 | # | 1205 | # |
| 1175 | # Tracers | 1206 | # Tracers |
| @@ -1177,17 +1208,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1177 | # CONFIG_FUNCTION_TRACER is not set | 1208 | # CONFIG_FUNCTION_TRACER is not set |
| 1178 | # CONFIG_SCHED_TRACER is not set | 1209 | # CONFIG_SCHED_TRACER is not set |
| 1179 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1210 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1211 | # CONFIG_EVENT_TRACER is not set | ||
| 1180 | # CONFIG_BOOT_TRACER is not set | 1212 | # CONFIG_BOOT_TRACER is not set |
| 1181 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1213 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1182 | # CONFIG_STACK_TRACER is not set | 1214 | # CONFIG_STACK_TRACER is not set |
| 1183 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1215 | # CONFIG_KMEMTRACE is not set |
| 1216 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1217 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1184 | # CONFIG_SAMPLES is not set | 1218 | # CONFIG_SAMPLES is not set |
| 1185 | CONFIG_HAVE_ARCH_KGDB=y | 1219 | CONFIG_HAVE_ARCH_KGDB=y |
| 1186 | # CONFIG_KGDB is not set | 1220 | # CONFIG_KGDB is not set |
| 1187 | CONFIG_PRINT_STACK_DEPTH=64 | 1221 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1188 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1222 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1189 | # CONFIG_DEBUG_STACK_USAGE is not set | 1223 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1190 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1191 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1224 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1192 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1225 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1193 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1226 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1281,6 +1314,7 @@ CONFIG_CRYPTO=y | |||
| 1281 | # Compression | 1314 | # Compression |
| 1282 | # | 1315 | # |
| 1283 | # CONFIG_CRYPTO_DEFLATE is not set | 1316 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1317 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1284 | # CONFIG_CRYPTO_LZO is not set | 1318 | # CONFIG_CRYPTO_LZO is not set |
| 1285 | 1319 | ||
| 1286 | # | 1320 | # |
diff --git a/arch/powerpc/configs/85xx/tqm8555_defconfig b/arch/powerpc/configs/85xx/tqm8555_defconfig index d5a864d74461..170360934cec 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:21 2009 | 4 | # Wed May 13 17:22:25 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
| 22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
| 27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| @@ -59,6 +60,7 @@ CONFIG_GENERIC_BUG=y | |||
| 59 | CONFIG_DEFAULT_UIMAGE=y | 60 | CONFIG_DEFAULT_UIMAGE=y |
| 60 | # CONFIG_PPC_DCR_NATIVE is not set | 61 | # CONFIG_PPC_DCR_NATIVE is not set |
| 61 | # CONFIG_PPC_DCR_MMIO is not set | 62 | # CONFIG_PPC_DCR_MMIO is not set |
| 63 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 64 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 63 | 65 | ||
| 64 | # | 66 | # |
| @@ -76,6 +78,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 76 | # CONFIG_BSD_PROCESS_ACCT is not set | 78 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 77 | # CONFIG_TASKSTATS is not set | 79 | # CONFIG_TASKSTATS is not set |
| 78 | # CONFIG_AUDIT is not set | 80 | # CONFIG_AUDIT is not set |
| 81 | |||
| 82 | # | ||
| 83 | # RCU Subsystem | ||
| 84 | # | ||
| 85 | CONFIG_CLASSIC_RCU=y | ||
| 86 | # CONFIG_TREE_RCU is not set | ||
| 87 | # CONFIG_PREEMPT_RCU is not set | ||
| 88 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 89 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 79 | # CONFIG_IKCONFIG is not set | 90 | # CONFIG_IKCONFIG is not set |
| 80 | CONFIG_LOG_BUF_SHIFT=14 | 91 | CONFIG_LOG_BUF_SHIFT=14 |
| 81 | CONFIG_GROUP_SCHED=y | 92 | CONFIG_GROUP_SCHED=y |
| @@ -90,19 +101,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 90 | # CONFIG_NAMESPACES is not set | 101 | # CONFIG_NAMESPACES is not set |
| 91 | CONFIG_BLK_DEV_INITRD=y | 102 | CONFIG_BLK_DEV_INITRD=y |
| 92 | CONFIG_INITRAMFS_SOURCE="" | 103 | CONFIG_INITRAMFS_SOURCE="" |
| 104 | CONFIG_RD_GZIP=y | ||
| 105 | # CONFIG_RD_BZIP2 is not set | ||
| 106 | # CONFIG_RD_LZMA is not set | ||
| 93 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 107 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 94 | CONFIG_SYSCTL=y | 108 | CONFIG_SYSCTL=y |
| 109 | CONFIG_ANON_INODES=y | ||
| 95 | CONFIG_EMBEDDED=y | 110 | CONFIG_EMBEDDED=y |
| 96 | CONFIG_SYSCTL_SYSCALL=y | 111 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | # CONFIG_KALLSYMS is not set | 112 | # CONFIG_KALLSYMS is not set |
| 113 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 98 | # CONFIG_HOTPLUG is not set | 114 | # CONFIG_HOTPLUG is not set |
| 99 | CONFIG_PRINTK=y | 115 | CONFIG_PRINTK=y |
| 100 | CONFIG_BUG=y | 116 | CONFIG_BUG=y |
| 101 | CONFIG_ELF_CORE=y | 117 | CONFIG_ELF_CORE=y |
| 102 | CONFIG_COMPAT_BRK=y | ||
| 103 | CONFIG_BASE_FULL=y | 118 | CONFIG_BASE_FULL=y |
| 104 | CONFIG_FUTEX=y | 119 | CONFIG_FUTEX=y |
| 105 | CONFIG_ANON_INODES=y | ||
| 106 | # CONFIG_EPOLL is not set | 120 | # CONFIG_EPOLL is not set |
| 107 | CONFIG_SIGNALFD=y | 121 | CONFIG_SIGNALFD=y |
| 108 | CONFIG_TIMERFD=y | 122 | CONFIG_TIMERFD=y |
| @@ -112,10 +126,12 @@ CONFIG_AIO=y | |||
| 112 | CONFIG_VM_EVENT_COUNTERS=y | 126 | CONFIG_VM_EVENT_COUNTERS=y |
| 113 | CONFIG_PCI_QUIRKS=y | 127 | CONFIG_PCI_QUIRKS=y |
| 114 | CONFIG_SLUB_DEBUG=y | 128 | CONFIG_SLUB_DEBUG=y |
| 129 | CONFIG_COMPAT_BRK=y | ||
| 115 | # CONFIG_SLAB is not set | 130 | # CONFIG_SLAB is not set |
| 116 | CONFIG_SLUB=y | 131 | CONFIG_SLUB=y |
| 117 | # CONFIG_SLOB is not set | 132 | # CONFIG_SLOB is not set |
| 118 | # CONFIG_PROFILING is not set | 133 | # CONFIG_PROFILING is not set |
| 134 | # CONFIG_MARKERS is not set | ||
| 119 | CONFIG_HAVE_OPROFILE=y | 135 | CONFIG_HAVE_OPROFILE=y |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 136 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 121 | CONFIG_HAVE_IOREMAP_PROT=y | 137 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -123,6 +139,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 123 | CONFIG_HAVE_KRETPROBES=y | 139 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 140 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 125 | CONFIG_HAVE_CLK=y | 141 | CONFIG_HAVE_CLK=y |
| 142 | # CONFIG_SLOW_WORK is not set | ||
| 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 143 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 127 | CONFIG_SLABINFO=y | 144 | CONFIG_SLABINFO=y |
| 128 | CONFIG_RT_MUTEXES=y | 145 | CONFIG_RT_MUTEXES=y |
| @@ -130,7 +147,6 @@ CONFIG_BASE_SMALL=0 | |||
| 130 | # CONFIG_MODULES is not set | 147 | # CONFIG_MODULES is not set |
| 131 | CONFIG_BLOCK=y | 148 | CONFIG_BLOCK=y |
| 132 | # CONFIG_LBD is not set | 149 | # CONFIG_LBD is not set |
| 133 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 134 | # CONFIG_BLK_DEV_BSG is not set | 150 | # CONFIG_BLK_DEV_BSG is not set |
| 135 | # CONFIG_BLK_DEV_INTEGRITY is not set | 151 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 136 | 152 | ||
| @@ -146,11 +162,6 @@ CONFIG_DEFAULT_AS=y | |||
| 146 | # CONFIG_DEFAULT_CFQ is not set | 162 | # CONFIG_DEFAULT_CFQ is not set |
| 147 | # CONFIG_DEFAULT_NOOP is not set | 163 | # CONFIG_DEFAULT_NOOP is not set |
| 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 164 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 149 | CONFIG_CLASSIC_RCU=y | ||
| 150 | # CONFIG_TREE_RCU is not set | ||
| 151 | # CONFIG_PREEMPT_RCU is not set | ||
| 152 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 154 | # CONFIG_FREEZER is not set | 165 | # CONFIG_FREEZER is not set |
| 155 | 166 | ||
| 156 | # | 167 | # |
| @@ -166,6 +177,7 @@ CONFIG_MPC85xx=y | |||
| 166 | # CONFIG_MPC85xx_MDS is not set | 177 | # CONFIG_MPC85xx_MDS is not set |
| 167 | # CONFIG_MPC8536_DS is not set | 178 | # CONFIG_MPC8536_DS is not set |
| 168 | # CONFIG_MPC85xx_DS is not set | 179 | # CONFIG_MPC85xx_DS is not set |
| 180 | # CONFIG_SOCRATES is not set | ||
| 169 | # CONFIG_KSI8560 is not set | 181 | # CONFIG_KSI8560 is not set |
| 170 | # CONFIG_STX_GP3 is not set | 182 | # CONFIG_STX_GP3 is not set |
| 171 | # CONFIG_TQM8540 is not set | 183 | # CONFIG_TQM8540 is not set |
| @@ -235,9 +247,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 235 | CONFIG_BOUNCE=y | 247 | CONFIG_BOUNCE=y |
| 236 | CONFIG_VIRT_TO_BUS=y | 248 | CONFIG_VIRT_TO_BUS=y |
| 237 | CONFIG_UNEVICTABLE_LRU=y | 249 | CONFIG_UNEVICTABLE_LRU=y |
| 250 | CONFIG_HAVE_MLOCK=y | ||
| 251 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 238 | CONFIG_PPC_4K_PAGES=y | 252 | CONFIG_PPC_4K_PAGES=y |
| 239 | # CONFIG_PPC_16K_PAGES is not set | 253 | # CONFIG_PPC_16K_PAGES is not set |
| 240 | # CONFIG_PPC_64K_PAGES is not set | 254 | # CONFIG_PPC_64K_PAGES is not set |
| 255 | # CONFIG_PPC_256K_PAGES is not set | ||
| 241 | CONFIG_FORCE_MAX_ZONEORDER=11 | 256 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 242 | # CONFIG_PROC_DEVICETREE is not set | 257 | # CONFIG_PROC_DEVICETREE is not set |
| 243 | # CONFIG_CMDLINE_BOOL is not set | 258 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -262,6 +277,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 262 | # CONFIG_PCI_MSI is not set | 277 | # CONFIG_PCI_MSI is not set |
| 263 | # CONFIG_PCI_LEGACY is not set | 278 | # CONFIG_PCI_LEGACY is not set |
| 264 | # CONFIG_PCI_STUB is not set | 279 | # CONFIG_PCI_STUB is not set |
| 280 | # CONFIG_PCI_IOV is not set | ||
| 265 | # CONFIG_HAS_RAPIDIO is not set | 281 | # CONFIG_HAS_RAPIDIO is not set |
| 266 | 282 | ||
| 267 | # | 283 | # |
| @@ -273,17 +289,17 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 273 | # Default settings for advanced configuration options are used | 289 | # Default settings for advanced configuration options are used |
| 274 | # | 290 | # |
| 275 | CONFIG_LOWMEM_SIZE=0x30000000 | 291 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 292 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 276 | CONFIG_PAGE_OFFSET=0xc0000000 | 293 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 277 | CONFIG_KERNEL_START=0xc0000000 | 294 | CONFIG_KERNEL_START=0xc0000000 |
| 278 | CONFIG_PHYSICAL_START=0x00000000 | 295 | CONFIG_PHYSICAL_START=0x00000000 |
| 279 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 296 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 280 | CONFIG_TASK_SIZE=0xc0000000 | 297 | CONFIG_TASK_SIZE=0xc0000000 |
| 281 | CONFIG_NET=y | 298 | CONFIG_NET=y |
| 282 | 299 | ||
| 283 | # | 300 | # |
| 284 | # Networking options | 301 | # Networking options |
| 285 | # | 302 | # |
| 286 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 287 | CONFIG_PACKET=y | 303 | CONFIG_PACKET=y |
| 288 | # CONFIG_PACKET_MMAP is not set | 304 | # CONFIG_PACKET_MMAP is not set |
| 289 | CONFIG_UNIX=y | 305 | CONFIG_UNIX=y |
| @@ -339,6 +355,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 339 | # CONFIG_LAPB is not set | 355 | # CONFIG_LAPB is not set |
| 340 | # CONFIG_ECONET is not set | 356 | # CONFIG_ECONET is not set |
| 341 | # CONFIG_WAN_ROUTER is not set | 357 | # CONFIG_WAN_ROUTER is not set |
| 358 | # CONFIG_PHONET is not set | ||
| 342 | # CONFIG_NET_SCHED is not set | 359 | # CONFIG_NET_SCHED is not set |
| 343 | # CONFIG_DCB is not set | 360 | # CONFIG_DCB is not set |
| 344 | 361 | ||
| @@ -351,7 +368,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 351 | # CONFIG_IRDA is not set | 368 | # CONFIG_IRDA is not set |
| 352 | # CONFIG_BT is not set | 369 | # CONFIG_BT is not set |
| 353 | # CONFIG_AF_RXRPC is not set | 370 | # CONFIG_AF_RXRPC is not set |
| 354 | # CONFIG_PHONET is not set | ||
| 355 | CONFIG_WIRELESS=y | 371 | CONFIG_WIRELESS=y |
| 356 | # CONFIG_CFG80211 is not set | 372 | # CONFIG_CFG80211 is not set |
| 357 | CONFIG_WIRELESS_OLD_REGULATORY=y | 373 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -451,7 +467,6 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 451 | # LPDDR flash memory drivers | 467 | # LPDDR flash memory drivers |
| 452 | # | 468 | # |
| 453 | # CONFIG_MTD_LPDDR is not set | 469 | # CONFIG_MTD_LPDDR is not set |
| 454 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 455 | 470 | ||
| 456 | # | 471 | # |
| 457 | # UBI - Unsorted block images | 472 | # UBI - Unsorted block images |
| @@ -481,19 +496,27 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 481 | # CONFIG_BLK_DEV_HD is not set | 496 | # CONFIG_BLK_DEV_HD is not set |
| 482 | CONFIG_MISC_DEVICES=y | 497 | CONFIG_MISC_DEVICES=y |
| 483 | # CONFIG_PHANTOM is not set | 498 | # CONFIG_PHANTOM is not set |
| 484 | # CONFIG_EEPROM_93CX6 is not set | ||
| 485 | # CONFIG_SGI_IOC4 is not set | 499 | # CONFIG_SGI_IOC4 is not set |
| 486 | # CONFIG_TIFM_CORE is not set | 500 | # CONFIG_TIFM_CORE is not set |
| 487 | # CONFIG_ICS932S401 is not set | 501 | # CONFIG_ICS932S401 is not set |
| 488 | # CONFIG_ENCLOSURE_SERVICES is not set | 502 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 489 | # CONFIG_HP_ILO is not set | 503 | # CONFIG_HP_ILO is not set |
| 504 | # CONFIG_ISL29003 is not set | ||
| 490 | # CONFIG_C2PORT is not set | 505 | # CONFIG_C2PORT is not set |
| 506 | |||
| 507 | # | ||
| 508 | # EEPROM support | ||
| 509 | # | ||
| 510 | # CONFIG_EEPROM_AT24 is not set | ||
| 511 | # CONFIG_EEPROM_LEGACY is not set | ||
| 512 | # CONFIG_EEPROM_93CX6 is not set | ||
| 491 | CONFIG_HAVE_IDE=y | 513 | CONFIG_HAVE_IDE=y |
| 492 | CONFIG_IDE=y | 514 | CONFIG_IDE=y |
| 493 | 515 | ||
| 494 | # | 516 | # |
| 495 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 517 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 496 | # | 518 | # |
| 519 | CONFIG_IDE_XFER_MODE=y | ||
| 497 | CONFIG_IDE_TIMINGS=y | 520 | CONFIG_IDE_TIMINGS=y |
| 498 | # CONFIG_BLK_DEV_IDE_SATA is not set | 521 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 499 | CONFIG_IDE_GD=y | 522 | CONFIG_IDE_GD=y |
| @@ -568,6 +591,7 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 568 | # CONFIG_I2O is not set | 591 | # CONFIG_I2O is not set |
| 569 | # CONFIG_MACINTOSH_DRIVERS is not set | 592 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 570 | CONFIG_NETDEVICES=y | 593 | CONFIG_NETDEVICES=y |
| 594 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 571 | # CONFIG_DUMMY is not set | 595 | # CONFIG_DUMMY is not set |
| 572 | # CONFIG_BONDING is not set | 596 | # CONFIG_BONDING is not set |
| 573 | # CONFIG_MACVLAN is not set | 597 | # CONFIG_MACVLAN is not set |
| @@ -601,6 +625,8 @@ CONFIG_MII=y | |||
| 601 | # CONFIG_SUNGEM is not set | 625 | # CONFIG_SUNGEM is not set |
| 602 | # CONFIG_CASSINI is not set | 626 | # CONFIG_CASSINI is not set |
| 603 | # CONFIG_NET_VENDOR_3COM is not set | 627 | # CONFIG_NET_VENDOR_3COM is not set |
| 628 | # CONFIG_ETHOC is not set | ||
| 629 | # CONFIG_DNET is not set | ||
| 604 | # CONFIG_NET_TULIP is not set | 630 | # CONFIG_NET_TULIP is not set |
| 605 | # CONFIG_HP100 is not set | 631 | # CONFIG_HP100 is not set |
| 606 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 632 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -639,6 +665,7 @@ CONFIG_NETDEV_1000=y | |||
| 639 | # CONFIG_E1000E is not set | 665 | # CONFIG_E1000E is not set |
| 640 | # CONFIG_IP1000 is not set | 666 | # CONFIG_IP1000 is not set |
| 641 | # CONFIG_IGB is not set | 667 | # CONFIG_IGB is not set |
| 668 | # CONFIG_IGBVF is not set | ||
| 642 | # CONFIG_NS83820 is not set | 669 | # CONFIG_NS83820 is not set |
| 643 | # CONFIG_HAMACHI is not set | 670 | # CONFIG_HAMACHI is not set |
| 644 | # CONFIG_YELLOWFIN is not set | 671 | # CONFIG_YELLOWFIN is not set |
| @@ -649,10 +676,12 @@ CONFIG_NETDEV_1000=y | |||
| 649 | # CONFIG_VIA_VELOCITY is not set | 676 | # CONFIG_VIA_VELOCITY is not set |
| 650 | # CONFIG_TIGON3 is not set | 677 | # CONFIG_TIGON3 is not set |
| 651 | # CONFIG_BNX2 is not set | 678 | # CONFIG_BNX2 is not set |
| 679 | CONFIG_FSL_PQ_MDIO=y | ||
| 652 | CONFIG_GIANFAR=y | 680 | CONFIG_GIANFAR=y |
| 653 | # CONFIG_QLA3XXX is not set | 681 | # CONFIG_QLA3XXX is not set |
| 654 | # CONFIG_ATL1 is not set | 682 | # CONFIG_ATL1 is not set |
| 655 | # CONFIG_ATL1E is not set | 683 | # CONFIG_ATL1E is not set |
| 684 | # CONFIG_ATL1C is not set | ||
| 656 | # CONFIG_JME is not set | 685 | # CONFIG_JME is not set |
| 657 | CONFIG_NETDEV_10000=y | 686 | CONFIG_NETDEV_10000=y |
| 658 | # CONFIG_CHELSIO_T1 is not set | 687 | # CONFIG_CHELSIO_T1 is not set |
| @@ -662,6 +691,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 662 | # CONFIG_IXGBE is not set | 691 | # CONFIG_IXGBE is not set |
| 663 | # CONFIG_IXGB is not set | 692 | # CONFIG_IXGB is not set |
| 664 | # CONFIG_S2IO is not set | 693 | # CONFIG_S2IO is not set |
| 694 | # CONFIG_VXGE is not set | ||
| 665 | # CONFIG_MYRI10GE is not set | 695 | # CONFIG_MYRI10GE is not set |
| 666 | # CONFIG_NETXEN_NIC is not set | 696 | # CONFIG_NETXEN_NIC is not set |
| 667 | # CONFIG_NIU is not set | 697 | # CONFIG_NIU is not set |
| @@ -671,6 +701,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 671 | # CONFIG_BNX2X is not set | 701 | # CONFIG_BNX2X is not set |
| 672 | # CONFIG_QLGE is not set | 702 | # CONFIG_QLGE is not set |
| 673 | # CONFIG_SFC is not set | 703 | # CONFIG_SFC is not set |
| 704 | # CONFIG_BE2NET is not set | ||
| 674 | # CONFIG_TR is not set | 705 | # CONFIG_TR is not set |
| 675 | 706 | ||
| 676 | # | 707 | # |
| @@ -678,7 +709,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 678 | # | 709 | # |
| 679 | # CONFIG_WLAN_PRE80211 is not set | 710 | # CONFIG_WLAN_PRE80211 is not set |
| 680 | # CONFIG_WLAN_80211 is not set | 711 | # CONFIG_WLAN_80211 is not set |
| 681 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 682 | 712 | ||
| 683 | # | 713 | # |
| 684 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 714 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -761,6 +791,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 761 | # CONFIG_HVC_UDBG is not set | 791 | # CONFIG_HVC_UDBG is not set |
| 762 | # CONFIG_IPMI_HANDLER is not set | 792 | # CONFIG_IPMI_HANDLER is not set |
| 763 | CONFIG_HW_RANDOM=y | 793 | CONFIG_HW_RANDOM=y |
| 794 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 764 | # CONFIG_NVRAM is not set | 795 | # CONFIG_NVRAM is not set |
| 765 | CONFIG_GEN_RTC=y | 796 | CONFIG_GEN_RTC=y |
| 766 | # CONFIG_GEN_RTC_X is not set | 797 | # CONFIG_GEN_RTC_X is not set |
| @@ -825,12 +856,9 @@ CONFIG_I2C_MPC=y | |||
| 825 | # Miscellaneous I2C Chip support | 856 | # Miscellaneous I2C Chip support |
| 826 | # | 857 | # |
| 827 | # CONFIG_DS1682 is not set | 858 | # CONFIG_DS1682 is not set |
| 828 | # CONFIG_EEPROM_AT24 is not set | ||
| 829 | # CONFIG_EEPROM_LEGACY is not set | ||
| 830 | # CONFIG_SENSORS_PCF8574 is not set | 859 | # CONFIG_SENSORS_PCF8574 is not set |
| 831 | # CONFIG_PCF8575 is not set | 860 | # CONFIG_PCF8575 is not set |
| 832 | # CONFIG_SENSORS_PCA9539 is not set | 861 | # CONFIG_SENSORS_PCA9539 is not set |
| 833 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 834 | # CONFIG_SENSORS_MAX6875 is not set | 862 | # CONFIG_SENSORS_MAX6875 is not set |
| 835 | # CONFIG_SENSORS_TSL2550 is not set | 863 | # CONFIG_SENSORS_TSL2550 is not set |
| 836 | # CONFIG_I2C_DEBUG_CORE is not set | 864 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -885,6 +913,7 @@ CONFIG_HWMON=y | |||
| 885 | # CONFIG_SENSORS_F71805F is not set | 913 | # CONFIG_SENSORS_F71805F is not set |
| 886 | # CONFIG_SENSORS_F71882FG is not set | 914 | # CONFIG_SENSORS_F71882FG is not set |
| 887 | # CONFIG_SENSORS_F75375S is not set | 915 | # CONFIG_SENSORS_F75375S is not set |
| 916 | # CONFIG_SENSORS_G760A is not set | ||
| 888 | # CONFIG_SENSORS_GL518SM is not set | 917 | # CONFIG_SENSORS_GL518SM is not set |
| 889 | # CONFIG_SENSORS_GL520SM is not set | 918 | # CONFIG_SENSORS_GL520SM is not set |
| 890 | # CONFIG_SENSORS_IT87 is not set | 919 | # CONFIG_SENSORS_IT87 is not set |
| @@ -899,11 +928,15 @@ CONFIG_SENSORS_LM75=y | |||
| 899 | # CONFIG_SENSORS_LM90 is not set | 928 | # CONFIG_SENSORS_LM90 is not set |
| 900 | # CONFIG_SENSORS_LM92 is not set | 929 | # CONFIG_SENSORS_LM92 is not set |
| 901 | # CONFIG_SENSORS_LM93 is not set | 930 | # CONFIG_SENSORS_LM93 is not set |
| 931 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 902 | # CONFIG_SENSORS_LTC4245 is not set | 932 | # CONFIG_SENSORS_LTC4245 is not set |
| 933 | # CONFIG_SENSORS_LM95241 is not set | ||
| 903 | # CONFIG_SENSORS_MAX1619 is not set | 934 | # CONFIG_SENSORS_MAX1619 is not set |
| 904 | # CONFIG_SENSORS_MAX6650 is not set | 935 | # CONFIG_SENSORS_MAX6650 is not set |
| 905 | # CONFIG_SENSORS_PC87360 is not set | 936 | # CONFIG_SENSORS_PC87360 is not set |
| 906 | # CONFIG_SENSORS_PC87427 is not set | 937 | # CONFIG_SENSORS_PC87427 is not set |
| 938 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 939 | # CONFIG_SENSORS_SHT15 is not set | ||
| 907 | # CONFIG_SENSORS_SIS5595 is not set | 940 | # CONFIG_SENSORS_SIS5595 is not set |
| 908 | # CONFIG_SENSORS_DME1737 is not set | 941 | # CONFIG_SENSORS_DME1737 is not set |
| 909 | # CONFIG_SENSORS_SMSC47M1 is not set | 942 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -988,7 +1021,6 @@ CONFIG_HID=y | |||
| 988 | # | 1021 | # |
| 989 | # Special HID drivers | 1022 | # Special HID drivers |
| 990 | # | 1023 | # |
| 991 | CONFIG_HID_COMPAT=y | ||
| 992 | CONFIG_USB_SUPPORT=y | 1024 | CONFIG_USB_SUPPORT=y |
| 993 | CONFIG_USB_ARCH_HAS_HCD=y | 1025 | CONFIG_USB_ARCH_HAS_HCD=y |
| 994 | CONFIG_USB_ARCH_HAS_OHCI=y | 1026 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1002,7 +1034,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1002 | # | 1034 | # |
| 1003 | 1035 | ||
| 1004 | # | 1036 | # |
| 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1037 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1006 | # | 1038 | # |
| 1007 | # CONFIG_USB_GADGET is not set | 1039 | # CONFIG_USB_GADGET is not set |
| 1008 | 1040 | ||
| @@ -1018,6 +1050,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1018 | # CONFIG_EDAC is not set | 1050 | # CONFIG_EDAC is not set |
| 1019 | # CONFIG_RTC_CLASS is not set | 1051 | # CONFIG_RTC_CLASS is not set |
| 1020 | # CONFIG_DMADEVICES is not set | 1052 | # CONFIG_DMADEVICES is not set |
| 1053 | # CONFIG_AUXDISPLAY is not set | ||
| 1021 | # CONFIG_UIO is not set | 1054 | # CONFIG_UIO is not set |
| 1022 | # CONFIG_STAGING is not set | 1055 | # CONFIG_STAGING is not set |
| 1023 | 1056 | ||
| @@ -1028,6 +1061,7 @@ CONFIG_EXT2_FS=y | |||
| 1028 | # CONFIG_EXT2_FS_XATTR is not set | 1061 | # CONFIG_EXT2_FS_XATTR is not set |
| 1029 | # CONFIG_EXT2_FS_XIP is not set | 1062 | # CONFIG_EXT2_FS_XIP is not set |
| 1030 | CONFIG_EXT3_FS=y | 1063 | CONFIG_EXT3_FS=y |
| 1064 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1031 | CONFIG_EXT3_FS_XATTR=y | 1065 | CONFIG_EXT3_FS_XATTR=y |
| 1032 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1066 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1033 | # CONFIG_EXT3_FS_SECURITY is not set | 1067 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1050,6 +1084,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1050 | # CONFIG_FUSE_FS is not set | 1084 | # CONFIG_FUSE_FS is not set |
| 1051 | 1085 | ||
| 1052 | # | 1086 | # |
| 1087 | # Caches | ||
| 1088 | # | ||
| 1089 | # CONFIG_FSCACHE is not set | ||
| 1090 | |||
| 1091 | # | ||
| 1053 | # CD-ROM/DVD Filesystems | 1092 | # CD-ROM/DVD Filesystems |
| 1054 | # | 1093 | # |
| 1055 | # CONFIG_ISO9660_FS is not set | 1094 | # CONFIG_ISO9660_FS is not set |
| @@ -1103,6 +1142,7 @@ CONFIG_CRAMFS=y | |||
| 1103 | # CONFIG_ROMFS_FS is not set | 1142 | # CONFIG_ROMFS_FS is not set |
| 1104 | # CONFIG_SYSV_FS is not set | 1143 | # CONFIG_SYSV_FS is not set |
| 1105 | # CONFIG_UFS_FS is not set | 1144 | # CONFIG_UFS_FS is not set |
| 1145 | # CONFIG_NILFS2_FS is not set | ||
| 1106 | CONFIG_NETWORK_FILESYSTEMS=y | 1146 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1107 | CONFIG_NFS_FS=y | 1147 | CONFIG_NFS_FS=y |
| 1108 | # CONFIG_NFS_V3 is not set | 1148 | # CONFIG_NFS_V3 is not set |
| @@ -1112,7 +1152,6 @@ CONFIG_ROOT_NFS=y | |||
| 1112 | CONFIG_LOCKD=y | 1152 | CONFIG_LOCKD=y |
| 1113 | CONFIG_NFS_COMMON=y | 1153 | CONFIG_NFS_COMMON=y |
| 1114 | CONFIG_SUNRPC=y | 1154 | CONFIG_SUNRPC=y |
| 1115 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1116 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1155 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1117 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1156 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1118 | # CONFIG_SMB_FS is not set | 1157 | # CONFIG_SMB_FS is not set |
| @@ -1140,6 +1179,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1140 | # CONFIG_SYSV68_PARTITION is not set | 1179 | # CONFIG_SYSV68_PARTITION is not set |
| 1141 | # CONFIG_NLS is not set | 1180 | # CONFIG_NLS is not set |
| 1142 | # CONFIG_DLM is not set | 1181 | # CONFIG_DLM is not set |
| 1182 | # CONFIG_BINARY_PRINTF is not set | ||
| 1143 | 1183 | ||
| 1144 | # | 1184 | # |
| 1145 | # Library routines | 1185 | # Library routines |
| @@ -1155,11 +1195,12 @@ CONFIG_CRC32=y | |||
| 1155 | # CONFIG_LIBCRC32C is not set | 1195 | # CONFIG_LIBCRC32C is not set |
| 1156 | CONFIG_ZLIB_INFLATE=y | 1196 | CONFIG_ZLIB_INFLATE=y |
| 1157 | CONFIG_ZLIB_DEFLATE=y | 1197 | CONFIG_ZLIB_DEFLATE=y |
| 1158 | CONFIG_PLIST=y | 1198 | CONFIG_DECOMPRESS_GZIP=y |
| 1159 | CONFIG_HAS_IOMEM=y | 1199 | CONFIG_HAS_IOMEM=y |
| 1160 | CONFIG_HAS_IOPORT=y | 1200 | CONFIG_HAS_IOPORT=y |
| 1161 | CONFIG_HAS_DMA=y | 1201 | CONFIG_HAS_DMA=y |
| 1162 | CONFIG_HAVE_LMB=y | 1202 | CONFIG_HAVE_LMB=y |
| 1203 | CONFIG_NLATTR=y | ||
| 1163 | 1204 | ||
| 1164 | # | 1205 | # |
| 1165 | # Kernel hacking | 1206 | # Kernel hacking |
| @@ -1181,13 +1222,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1181 | # CONFIG_LATENCYTOP is not set | 1222 | # CONFIG_LATENCYTOP is not set |
| 1182 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1223 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1183 | CONFIG_HAVE_FUNCTION_TRACER=y | 1224 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1225 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1184 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1226 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1185 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1227 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1228 | CONFIG_TRACING_SUPPORT=y | ||
| 1186 | 1229 | ||
| 1187 | # | 1230 | # |
| 1188 | # Tracers | 1231 | # Tracers |
| 1189 | # | 1232 | # |
| 1190 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1233 | # CONFIG_FUNCTION_TRACER is not set |
| 1234 | # CONFIG_SCHED_TRACER is not set | ||
| 1235 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1236 | # CONFIG_EVENT_TRACER is not set | ||
| 1237 | # CONFIG_BOOT_TRACER is not set | ||
| 1238 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1239 | # CONFIG_STACK_TRACER is not set | ||
| 1240 | # CONFIG_KMEMTRACE is not set | ||
| 1241 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1242 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1191 | # CONFIG_SAMPLES is not set | 1243 | # CONFIG_SAMPLES is not set |
| 1192 | CONFIG_HAVE_ARCH_KGDB=y | 1244 | CONFIG_HAVE_ARCH_KGDB=y |
| 1193 | CONFIG_PRINT_STACK_DEPTH=64 | 1245 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1278,6 +1330,7 @@ CONFIG_CRYPTO=y | |||
| 1278 | # Compression | 1330 | # Compression |
| 1279 | # | 1331 | # |
| 1280 | # CONFIG_CRYPTO_DEFLATE is not set | 1332 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1333 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1281 | # CONFIG_CRYPTO_LZO is not set | 1334 | # CONFIG_CRYPTO_LZO is not set |
| 1282 | 1335 | ||
| 1283 | # | 1336 | # |
diff --git a/arch/powerpc/configs/85xx/tqm8560_defconfig b/arch/powerpc/configs/85xx/tqm8560_defconfig index a25009174f37..f41cc2444d48 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:22 2009 | 4 | # Wed May 13 17:22:26 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
| 22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
| 23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
| 24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
| 25 | CONFIG_PPC_BOOK3E_MMU=y | ||
| 25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
| 26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
| 27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
| @@ -59,6 +60,7 @@ CONFIG_GENERIC_BUG=y | |||
| 59 | CONFIG_DEFAULT_UIMAGE=y | 60 | CONFIG_DEFAULT_UIMAGE=y |
| 60 | # CONFIG_PPC_DCR_NATIVE is not set | 61 | # CONFIG_PPC_DCR_NATIVE is not set |
| 61 | # CONFIG_PPC_DCR_MMIO is not set | 62 | # CONFIG_PPC_DCR_MMIO is not set |
| 63 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 64 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 63 | 65 | ||
| 64 | # | 66 | # |
| @@ -76,6 +78,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 76 | # CONFIG_BSD_PROCESS_ACCT is not set | 78 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 77 | # CONFIG_TASKSTATS is not set | 79 | # CONFIG_TASKSTATS is not set |
| 78 | # CONFIG_AUDIT is not set | 80 | # CONFIG_AUDIT is not set |
| 81 | |||
| 82 | # | ||
| 83 | # RCU Subsystem | ||
| 84 | # | ||
| 85 | CONFIG_CLASSIC_RCU=y | ||
| 86 | # CONFIG_TREE_RCU is not set | ||
| 87 | # CONFIG_PREEMPT_RCU is not set | ||
| 88 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 89 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 79 | # CONFIG_IKCONFIG is not set | 90 | # CONFIG_IKCONFIG is not set |
| 80 | CONFIG_LOG_BUF_SHIFT=14 | 91 | CONFIG_LOG_BUF_SHIFT=14 |
| 81 | CONFIG_GROUP_SCHED=y | 92 | CONFIG_GROUP_SCHED=y |
| @@ -90,19 +101,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 90 | # CONFIG_NAMESPACES is not set | 101 | # CONFIG_NAMESPACES is not set |
| 91 | CONFIG_BLK_DEV_INITRD=y | 102 | CONFIG_BLK_DEV_INITRD=y |
| 92 | CONFIG_INITRAMFS_SOURCE="" | 103 | CONFIG_INITRAMFS_SOURCE="" |
| 104 | CONFIG_RD_GZIP=y | ||
| 105 | # CONFIG_RD_BZIP2 is not set | ||
| 106 | # CONFIG_RD_LZMA is not set | ||
| 93 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 107 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 94 | CONFIG_SYSCTL=y | 108 | CONFIG_SYSCTL=y |
| 109 | CONFIG_ANON_INODES=y | ||
| 95 | CONFIG_EMBEDDED=y | 110 | CONFIG_EMBEDDED=y |
| 96 | CONFIG_SYSCTL_SYSCALL=y | 111 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | # CONFIG_KALLSYMS is not set | 112 | # CONFIG_KALLSYMS is not set |
| 113 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 98 | # CONFIG_HOTPLUG is not set | 114 | # CONFIG_HOTPLUG is not set |
| 99 | CONFIG_PRINTK=y | 115 | CONFIG_PRINTK=y |
| 100 | CONFIG_BUG=y | 116 | CONFIG_BUG=y |
| 101 | CONFIG_ELF_CORE=y | 117 | CONFIG_ELF_CORE=y |
| 102 | CONFIG_COMPAT_BRK=y | ||
| 103 | CONFIG_BASE_FULL=y | 118 | CONFIG_BASE_FULL=y |
| 104 | CONFIG_FUTEX=y | 119 | CONFIG_FUTEX=y |
| 105 | CONFIG_ANON_INODES=y | ||
| 106 | # CONFIG_EPOLL is not set | 120 | # CONFIG_EPOLL is not set |
| 107 | CONFIG_SIGNALFD=y | 121 | CONFIG_SIGNALFD=y |
| 108 | CONFIG_TIMERFD=y | 122 | CONFIG_TIMERFD=y |
| @@ -112,10 +126,12 @@ CONFIG_AIO=y | |||
| 112 | CONFIG_VM_EVENT_COUNTERS=y | 126 | CONFIG_VM_EVENT_COUNTERS=y |
| 113 | CONFIG_PCI_QUIRKS=y | 127 | CONFIG_PCI_QUIRKS=y |
| 114 | CONFIG_SLUB_DEBUG=y | 128 | CONFIG_SLUB_DEBUG=y |
| 129 | CONFIG_COMPAT_BRK=y | ||
| 115 | # CONFIG_SLAB is not set | 130 | # CONFIG_SLAB is not set |
| 116 | CONFIG_SLUB=y | 131 | CONFIG_SLUB=y |
| 117 | # CONFIG_SLOB is not set | 132 | # CONFIG_SLOB is not set |
| 118 | # CONFIG_PROFILING is not set | 133 | # CONFIG_PROFILING is not set |
| 134 | # CONFIG_MARKERS is not set | ||
| 119 | CONFIG_HAVE_OPROFILE=y | 135 | CONFIG_HAVE_OPROFILE=y |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 136 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 121 | CONFIG_HAVE_IOREMAP_PROT=y | 137 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -123,6 +139,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 123 | CONFIG_HAVE_KRETPROBES=y | 139 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 140 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 125 | CONFIG_HAVE_CLK=y | 141 | CONFIG_HAVE_CLK=y |
| 142 | # CONFIG_SLOW_WORK is not set | ||
| 126 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 143 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 127 | CONFIG_SLABINFO=y | 144 | CONFIG_SLABINFO=y |
| 128 | CONFIG_RT_MUTEXES=y | 145 | CONFIG_RT_MUTEXES=y |
| @@ -130,7 +147,6 @@ CONFIG_BASE_SMALL=0 | |||
| 130 | # CONFIG_MODULES is not set | 147 | # CONFIG_MODULES is not set |
| 131 | CONFIG_BLOCK=y | 148 | CONFIG_BLOCK=y |
| 132 | # CONFIG_LBD is not set | 149 | # CONFIG_LBD is not set |
| 133 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 134 | # CONFIG_BLK_DEV_BSG is not set | 150 | # CONFIG_BLK_DEV_BSG is not set |
| 135 | # CONFIG_BLK_DEV_INTEGRITY is not set | 151 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 136 | 152 | ||
| @@ -146,11 +162,6 @@ CONFIG_DEFAULT_AS=y | |||
| 146 | # CONFIG_DEFAULT_CFQ is not set | 162 | # CONFIG_DEFAULT_CFQ is not set |
| 147 | # CONFIG_DEFAULT_NOOP is not set | 163 | # CONFIG_DEFAULT_NOOP is not set |
| 148 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 164 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 149 | CONFIG_CLASSIC_RCU=y | ||
| 150 | # CONFIG_TREE_RCU is not set | ||
| 151 | # CONFIG_PREEMPT_RCU is not set | ||
| 152 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 153 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 154 | # CONFIG_FREEZER is not set | 165 | # CONFIG_FREEZER is not set |
| 155 | 166 | ||
| 156 | # | 167 | # |
| @@ -166,6 +177,7 @@ CONFIG_MPC85xx=y | |||
| 166 | # CONFIG_MPC85xx_MDS is not set | 177 | # CONFIG_MPC85xx_MDS is not set |
| 167 | # CONFIG_MPC8536_DS is not set | 178 | # CONFIG_MPC8536_DS is not set |
| 168 | # CONFIG_MPC85xx_DS is not set | 179 | # CONFIG_MPC85xx_DS is not set |
| 180 | # CONFIG_SOCRATES is not set | ||
| 169 | # CONFIG_KSI8560 is not set | 181 | # CONFIG_KSI8560 is not set |
| 170 | # CONFIG_STX_GP3 is not set | 182 | # CONFIG_STX_GP3 is not set |
| 171 | # CONFIG_TQM8540 is not set | 183 | # CONFIG_TQM8540 is not set |
| @@ -235,9 +247,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 235 | CONFIG_BOUNCE=y | 247 | CONFIG_BOUNCE=y |
| 236 | CONFIG_VIRT_TO_BUS=y | 248 | CONFIG_VIRT_TO_BUS=y |
| 237 | CONFIG_UNEVICTABLE_LRU=y | 249 | CONFIG_UNEVICTABLE_LRU=y |
| 250 | CONFIG_HAVE_MLOCK=y | ||
| 251 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 238 | CONFIG_PPC_4K_PAGES=y | 252 | CONFIG_PPC_4K_PAGES=y |
| 239 | # CONFIG_PPC_16K_PAGES is not set | 253 | # CONFIG_PPC_16K_PAGES is not set |
| 240 | # CONFIG_PPC_64K_PAGES is not set | 254 | # CONFIG_PPC_64K_PAGES is not set |
| 255 | # CONFIG_PPC_256K_PAGES is not set | ||
| 241 | CONFIG_FORCE_MAX_ZONEORDER=11 | 256 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 242 | # CONFIG_PROC_DEVICETREE is not set | 257 | # CONFIG_PROC_DEVICETREE is not set |
| 243 | # CONFIG_CMDLINE_BOOL is not set | 258 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -262,6 +277,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 262 | # CONFIG_PCI_MSI is not set | 277 | # CONFIG_PCI_MSI is not set |
| 263 | # CONFIG_PCI_LEGACY is not set | 278 | # CONFIG_PCI_LEGACY is not set |
| 264 | # CONFIG_PCI_STUB is not set | 279 | # CONFIG_PCI_STUB is not set |
| 280 | # CONFIG_PCI_IOV is not set | ||
| 265 | # CONFIG_HAS_RAPIDIO is not set | 281 | # CONFIG_HAS_RAPIDIO is not set |
| 266 | 282 | ||
| 267 | # | 283 | # |
| @@ -273,17 +289,17 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 273 | # Default settings for advanced configuration options are used | 289 | # Default settings for advanced configuration options are used |
| 274 | # | 290 | # |
| 275 | CONFIG_LOWMEM_SIZE=0x30000000 | 291 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 292 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 276 | CONFIG_PAGE_OFFSET=0xc0000000 | 293 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 277 | CONFIG_KERNEL_START=0xc0000000 | 294 | CONFIG_KERNEL_START=0xc0000000 |
| 278 | CONFIG_PHYSICAL_START=0x00000000 | 295 | CONFIG_PHYSICAL_START=0x00000000 |
| 279 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 296 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
| 280 | CONFIG_TASK_SIZE=0xc0000000 | 297 | CONFIG_TASK_SIZE=0xc0000000 |
| 281 | CONFIG_NET=y | 298 | CONFIG_NET=y |
| 282 | 299 | ||
| 283 | # | 300 | # |
| 284 | # Networking options | 301 | # Networking options |
| 285 | # | 302 | # |
| 286 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 287 | CONFIG_PACKET=y | 303 | CONFIG_PACKET=y |
| 288 | # CONFIG_PACKET_MMAP is not set | 304 | # CONFIG_PACKET_MMAP is not set |
| 289 | CONFIG_UNIX=y | 305 | CONFIG_UNIX=y |
| @@ -339,6 +355,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 339 | # CONFIG_LAPB is not set | 355 | # CONFIG_LAPB is not set |
| 340 | # CONFIG_ECONET is not set | 356 | # CONFIG_ECONET is not set |
| 341 | # CONFIG_WAN_ROUTER is not set | 357 | # CONFIG_WAN_ROUTER is not set |
| 358 | # CONFIG_PHONET is not set | ||
| 342 | # CONFIG_NET_SCHED is not set | 359 | # CONFIG_NET_SCHED is not set |
| 343 | # CONFIG_DCB is not set | 360 | # CONFIG_DCB is not set |
| 344 | 361 | ||
| @@ -351,7 +368,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 351 | # CONFIG_IRDA is not set | 368 | # CONFIG_IRDA is not set |
| 352 | # CONFIG_BT is not set | 369 | # CONFIG_BT is not set |
| 353 | # CONFIG_AF_RXRPC is not set | 370 | # CONFIG_AF_RXRPC is not set |
| 354 | # CONFIG_PHONET is not set | ||
| 355 | CONFIG_WIRELESS=y | 371 | CONFIG_WIRELESS=y |
| 356 | # CONFIG_CFG80211 is not set | 372 | # CONFIG_CFG80211 is not set |
| 357 | CONFIG_WIRELESS_OLD_REGULATORY=y | 373 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -451,7 +467,6 @@ CONFIG_MTD_CFI_UTIL=y | |||
| 451 | # LPDDR flash memory drivers | 467 | # LPDDR flash memory drivers |
| 452 | # | 468 | # |
| 453 | # CONFIG_MTD_LPDDR is not set | 469 | # CONFIG_MTD_LPDDR is not set |
| 454 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 455 | 470 | ||
| 456 | # | 471 | # |
| 457 | # UBI - Unsorted block images | 472 | # UBI - Unsorted block images |
| @@ -481,19 +496,27 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 481 | # CONFIG_BLK_DEV_HD is not set | 496 | # CONFIG_BLK_DEV_HD is not set |
| 482 | CONFIG_MISC_DEVICES=y | 497 | CONFIG_MISC_DEVICES=y |
| 483 | # CONFIG_PHANTOM is not set | 498 | # CONFIG_PHANTOM is not set |
| 484 | # CONFIG_EEPROM_93CX6 is not set | ||
| 485 | # CONFIG_SGI_IOC4 is not set | 499 | # CONFIG_SGI_IOC4 is not set |
| 486 | # CONFIG_TIFM_CORE is not set | 500 | # CONFIG_TIFM_CORE is not set |
| 487 | # CONFIG_ICS932S401 is not set | 501 | # CONFIG_ICS932S401 is not set |
| 488 | # CONFIG_ENCLOSURE_SERVICES is not set | 502 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 489 | # CONFIG_HP_ILO is not set | 503 | # CONFIG_HP_ILO is not set |
| 504 | # CONFIG_ISL29003 is not set | ||
| 490 | # CONFIG_C2PORT is not set | 505 | # CONFIG_C2PORT is not set |
| 506 | |||
| 507 | # | ||
| 508 | # EEPROM support | ||
| 509 | # | ||
| 510 | # CONFIG_EEPROM_AT24 is not set | ||
| 511 | # CONFIG_EEPROM_LEGACY is not set | ||
| 512 | # CONFIG_EEPROM_93CX6 is not set | ||
| 491 | CONFIG_HAVE_IDE=y | 513 | CONFIG_HAVE_IDE=y |
| 492 | CONFIG_IDE=y | 514 | CONFIG_IDE=y |
| 493 | 515 | ||
| 494 | # | 516 | # |
| 495 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 517 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 496 | # | 518 | # |
| 519 | CONFIG_IDE_XFER_MODE=y | ||
| 497 | CONFIG_IDE_TIMINGS=y | 520 | CONFIG_IDE_TIMINGS=y |
| 498 | # CONFIG_BLK_DEV_IDE_SATA is not set | 521 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 499 | CONFIG_IDE_GD=y | 522 | CONFIG_IDE_GD=y |
| @@ -568,6 +591,7 @@ CONFIG_BLK_DEV_IDEDMA=y | |||
| 568 | # CONFIG_I2O is not set | 591 | # CONFIG_I2O is not set |
| 569 | # CONFIG_MACINTOSH_DRIVERS is not set | 592 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 570 | CONFIG_NETDEVICES=y | 593 | CONFIG_NETDEVICES=y |
| 594 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 571 | # CONFIG_DUMMY is not set | 595 | # CONFIG_DUMMY is not set |
| 572 | # CONFIG_BONDING is not set | 596 | # CONFIG_BONDING is not set |
| 573 | # CONFIG_MACVLAN is not set | 597 | # CONFIG_MACVLAN is not set |
| @@ -601,6 +625,8 @@ CONFIG_MII=y | |||
| 601 | # CONFIG_SUNGEM is not set | 625 | # CONFIG_SUNGEM is not set |
| 602 | # CONFIG_CASSINI is not set | 626 | # CONFIG_CASSINI is not set |
| 603 | # CONFIG_NET_VENDOR_3COM is not set | 627 | # CONFIG_NET_VENDOR_3COM is not set |
| 628 | # CONFIG_ETHOC is not set | ||
| 629 | # CONFIG_DNET is not set | ||
| 604 | # CONFIG_NET_TULIP is not set | 630 | # CONFIG_NET_TULIP is not set |
| 605 | # CONFIG_HP100 is not set | 631 | # CONFIG_HP100 is not set |
| 606 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 632 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -639,6 +665,7 @@ CONFIG_NETDEV_1000=y | |||
| 639 | # CONFIG_E1000E is not set | 665 | # CONFIG_E1000E is not set |
| 640 | # CONFIG_IP1000 is not set | 666 | # CONFIG_IP1000 is not set |
| 641 | # CONFIG_IGB is not set | 667 | # CONFIG_IGB is not set |
| 668 | # CONFIG_IGBVF is not set | ||
| 642 | # CONFIG_NS83820 is not set | 669 | # CONFIG_NS83820 is not set |
| 643 | # CONFIG_HAMACHI is not set | 670 | # CONFIG_HAMACHI is not set |
| 644 | # CONFIG_YELLOWFIN is not set | 671 | # CONFIG_YELLOWFIN is not set |
| @@ -649,10 +676,12 @@ CONFIG_NETDEV_1000=y | |||
| 649 | # CONFIG_VIA_VELOCITY is not set | 676 | # CONFIG_VIA_VELOCITY is not set |
| 650 | # CONFIG_TIGON3 is not set | 677 | # CONFIG_TIGON3 is not set |
| 651 | # CONFIG_BNX2 is not set | 678 | # CONFIG_BNX2 is not set |
| 679 | CONFIG_FSL_PQ_MDIO=y | ||
| 652 | CONFIG_GIANFAR=y | 680 | CONFIG_GIANFAR=y |
| 653 | # CONFIG_QLA3XXX is not set | 681 | # CONFIG_QLA3XXX is not set |
| 654 | # CONFIG_ATL1 is not set | 682 | # CONFIG_ATL1 is not set |
| 655 | # CONFIG_ATL1E is not set | 683 | # CONFIG_ATL1E is not set |
| 684 | # CONFIG_ATL1C is not set | ||
| 656 | # CONFIG_JME is not set | 685 | # CONFIG_JME is not set |
| 657 | CONFIG_NETDEV_10000=y | 686 | CONFIG_NETDEV_10000=y |
| 658 | # CONFIG_CHELSIO_T1 is not set | 687 | # CONFIG_CHELSIO_T1 is not set |
| @@ -662,6 +691,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 662 | # CONFIG_IXGBE is not set | 691 | # CONFIG_IXGBE is not set |
| 663 | # CONFIG_IXGB is not set | 692 | # CONFIG_IXGB is not set |
| 664 | # CONFIG_S2IO is not set | 693 | # CONFIG_S2IO is not set |
| 694 | # CONFIG_VXGE is not set | ||
| 665 | # CONFIG_MYRI10GE is not set | 695 | # CONFIG_MYRI10GE is not set |
| 666 | # CONFIG_NETXEN_NIC is not set | 696 | # CONFIG_NETXEN_NIC is not set |
| 667 | # CONFIG_NIU is not set | 697 | # CONFIG_NIU is not set |
| @@ -671,6 +701,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 671 | # CONFIG_BNX2X is not set | 701 | # CONFIG_BNX2X is not set |
| 672 | # CONFIG_QLGE is not set | 702 | # CONFIG_QLGE is not set |
| 673 | # CONFIG_SFC is not set | 703 | # CONFIG_SFC is not set |
| 704 | # CONFIG_BE2NET is not set | ||
| 674 | # CONFIG_TR is not set | 705 | # CONFIG_TR is not set |
| 675 | 706 | ||
| 676 | # | 707 | # |
| @@ -678,7 +709,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 678 | # | 709 | # |
| 679 | # CONFIG_WLAN_PRE80211 is not set | 710 | # CONFIG_WLAN_PRE80211 is not set |
| 680 | # CONFIG_WLAN_80211 is not set | 711 | # CONFIG_WLAN_80211 is not set |
| 681 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 682 | 712 | ||
| 683 | # | 713 | # |
| 684 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 714 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -761,6 +791,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 761 | # CONFIG_HVC_UDBG is not set | 791 | # CONFIG_HVC_UDBG is not set |
| 762 | # CONFIG_IPMI_HANDLER is not set | 792 | # CONFIG_IPMI_HANDLER is not set |
| 763 | CONFIG_HW_RANDOM=y | 793 | CONFIG_HW_RANDOM=y |
| 794 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 764 | # CONFIG_NVRAM is not set | 795 | # CONFIG_NVRAM is not set |
| 765 | CONFIG_GEN_RTC=y | 796 | CONFIG_GEN_RTC=y |
| 766 | # CONFIG_GEN_RTC_X is not set | 797 | # CONFIG_GEN_RTC_X is not set |
| @@ -825,12 +856,9 @@ CONFIG_I2C_MPC=y | |||
| 825 | # Miscellaneous I2C Chip support | 856 | # Miscellaneous I2C Chip support |
| 826 | # | 857 | # |
| 827 | # CONFIG_DS1682 is not set | 858 | # CONFIG_DS1682 is not set |
| 828 | # CONFIG_EEPROM_AT24 is not set | ||
| 829 | # CONFIG_EEPROM_LEGACY is not set | ||
| 830 | # CONFIG_SENSORS_PCF8574 is not set | 859 | # CONFIG_SENSORS_PCF8574 is not set |
| 831 | # CONFIG_PCF8575 is not set | 860 | # CONFIG_PCF8575 is not set |
| 832 | # CONFIG_SENSORS_PCA9539 is not set | 861 | # CONFIG_SENSORS_PCA9539 is not set |
| 833 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 834 | # CONFIG_SENSORS_MAX6875 is not set | 862 | # CONFIG_SENSORS_MAX6875 is not set |
| 835 | # CONFIG_SENSORS_TSL2550 is not set | 863 | # CONFIG_SENSORS_TSL2550 is not set |
| 836 | # CONFIG_I2C_DEBUG_CORE is not set | 864 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -885,6 +913,7 @@ CONFIG_HWMON=y | |||
| 885 | # CONFIG_SENSORS_F71805F is not set | 913 | # CONFIG_SENSORS_F71805F is not set |
| 886 | # CONFIG_SENSORS_F71882FG is not set | 914 | # CONFIG_SENSORS_F71882FG is not set |
| 887 | # CONFIG_SENSORS_F75375S is not set | 915 | # CONFIG_SENSORS_F75375S is not set |
| 916 | # CONFIG_SENSORS_G760A is not set | ||
| 888 | # CONFIG_SENSORS_GL518SM is not set | 917 | # CONFIG_SENSORS_GL518SM is not set |
| 889 | # CONFIG_SENSORS_GL520SM is not set | 918 | # CONFIG_SENSORS_GL520SM is not set |
| 890 | # CONFIG_SENSORS_IT87 is not set | 919 | # CONFIG_SENSORS_IT87 is not set |
| @@ -899,11 +928,15 @@ CONFIG_SENSORS_LM75=y | |||
| 899 | # CONFIG_SENSORS_LM90 is not set | 928 | # CONFIG_SENSORS_LM90 is not set |
| 900 | # CONFIG_SENSORS_LM92 is not set | 929 | # CONFIG_SENSORS_LM92 is not set |
| 901 | # CONFIG_SENSORS_LM93 is not set | 930 | # CONFIG_SENSORS_LM93 is not set |
| 931 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 902 | # CONFIG_SENSORS_LTC4245 is not set | 932 | # CONFIG_SENSORS_LTC4245 is not set |
| 933 | # CONFIG_SENSORS_LM95241 is not set | ||
| 903 | # CONFIG_SENSORS_MAX1619 is not set | 934 | # CONFIG_SENSORS_MAX1619 is not set |
| 904 | # CONFIG_SENSORS_MAX6650 is not set | 935 | # CONFIG_SENSORS_MAX6650 is not set |
| 905 | # CONFIG_SENSORS_PC87360 is not set | 936 | # CONFIG_SENSORS_PC87360 is not set |
| 906 | # CONFIG_SENSORS_PC87427 is not set | 937 | # CONFIG_SENSORS_PC87427 is not set |
| 938 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 939 | # CONFIG_SENSORS_SHT15 is not set | ||
| 907 | # CONFIG_SENSORS_SIS5595 is not set | 940 | # CONFIG_SENSORS_SIS5595 is not set |
| 908 | # CONFIG_SENSORS_DME1737 is not set | 941 | # CONFIG_SENSORS_DME1737 is not set |
| 909 | # CONFIG_SENSORS_SMSC47M1 is not set | 942 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -988,7 +1021,6 @@ CONFIG_HID=y | |||
| 988 | # | 1021 | # |
| 989 | # Special HID drivers | 1022 | # Special HID drivers |
| 990 | # | 1023 | # |
| 991 | CONFIG_HID_COMPAT=y | ||
| 992 | CONFIG_USB_SUPPORT=y | 1024 | CONFIG_USB_SUPPORT=y |
| 993 | CONFIG_USB_ARCH_HAS_HCD=y | 1025 | CONFIG_USB_ARCH_HAS_HCD=y |
| 994 | CONFIG_USB_ARCH_HAS_OHCI=y | 1026 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1002,7 +1034,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1002 | # | 1034 | # |
| 1003 | 1035 | ||
| 1004 | # | 1036 | # |
| 1005 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1037 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1006 | # | 1038 | # |
| 1007 | # CONFIG_USB_GADGET is not set | 1039 | # CONFIG_USB_GADGET is not set |
| 1008 | 1040 | ||
| @@ -1018,6 +1050,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1018 | # CONFIG_EDAC is not set | 1050 | # CONFIG_EDAC is not set |
| 1019 | # CONFIG_RTC_CLASS is not set | 1051 | # CONFIG_RTC_CLASS is not set |
| 1020 | # CONFIG_DMADEVICES is not set | 1052 | # CONFIG_DMADEVICES is not set |
| 1053 | # CONFIG_AUXDISPLAY is not set | ||
| 1021 | # CONFIG_UIO is not set | 1054 | # CONFIG_UIO is not set |
| 1022 | # CONFIG_STAGING is not set | 1055 | # CONFIG_STAGING is not set |
| 1023 | 1056 | ||
| @@ -1028,6 +1061,7 @@ CONFIG_EXT2_FS=y | |||
| 1028 | # CONFIG_EXT2_FS_XATTR is not set | 1061 | # CONFIG_EXT2_FS_XATTR is not set |
| 1029 | # CONFIG_EXT2_FS_XIP is not set | 1062 | # CONFIG_EXT2_FS_XIP is not set |
| 1030 | CONFIG_EXT3_FS=y | 1063 | CONFIG_EXT3_FS=y |
| 1064 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1031 | CONFIG_EXT3_FS_XATTR=y | 1065 | CONFIG_EXT3_FS_XATTR=y |
| 1032 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1066 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1033 | # CONFIG_EXT3_FS_SECURITY is not set | 1067 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1050,6 +1084,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1050 | # CONFIG_FUSE_FS is not set | 1084 | # CONFIG_FUSE_FS is not set |
| 1051 | 1085 | ||
| 1052 | # | 1086 | # |
| 1087 | # Caches | ||
| 1088 | # | ||
| 1089 | # CONFIG_FSCACHE is not set | ||
| 1090 | |||
| 1091 | # | ||
| 1053 | # CD-ROM/DVD Filesystems | 1092 | # CD-ROM/DVD Filesystems |
| 1054 | # | 1093 | # |
| 1055 | # CONFIG_ISO9660_FS is not set | 1094 | # CONFIG_ISO9660_FS is not set |
| @@ -1103,6 +1142,7 @@ CONFIG_CRAMFS=y | |||
| 1103 | # CONFIG_ROMFS_FS is not set | 1142 | # CONFIG_ROMFS_FS is not set |
| 1104 | # CONFIG_SYSV_FS is not set | 1143 | # CONFIG_SYSV_FS is not set |
| 1105 | # CONFIG_UFS_FS is not set | 1144 | # CONFIG_UFS_FS is not set |
| 1145 | # CONFIG_NILFS2_FS is not set | ||
| 1106 | CONFIG_NETWORK_FILESYSTEMS=y | 1146 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1107 | CONFIG_NFS_FS=y | 1147 | CONFIG_NFS_FS=y |
| 1108 | # CONFIG_NFS_V3 is not set | 1148 | # CONFIG_NFS_V3 is not set |
| @@ -1112,7 +1152,6 @@ CONFIG_ROOT_NFS=y | |||
| 1112 | CONFIG_LOCKD=y | 1152 | CONFIG_LOCKD=y |
| 1113 | CONFIG_NFS_COMMON=y | 1153 | CONFIG_NFS_COMMON=y |
| 1114 | CONFIG_SUNRPC=y | 1154 | CONFIG_SUNRPC=y |
| 1115 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1116 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1155 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1117 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1156 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1118 | # CONFIG_SMB_FS is not set | 1157 | # CONFIG_SMB_FS is not set |
| @@ -1140,6 +1179,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
| 1140 | # CONFIG_SYSV68_PARTITION is not set | 1179 | # CONFIG_SYSV68_PARTITION is not set |
| 1141 | # CONFIG_NLS is not set | 1180 | # CONFIG_NLS is not set |
| 1142 | # CONFIG_DLM is not set | 1181 | # CONFIG_DLM is not set |
| 1182 | # CONFIG_BINARY_PRINTF is not set | ||
| 1143 | 1183 | ||
| 1144 | # | 1184 | # |
| 1145 | # Library routines | 1185 | # Library routines |
| @@ -1155,11 +1195,12 @@ CONFIG_CRC32=y | |||
| 1155 | # CONFIG_LIBCRC32C is not set | 1195 | # CONFIG_LIBCRC32C is not set |
| 1156 | CONFIG_ZLIB_INFLATE=y | 1196 | CONFIG_ZLIB_INFLATE=y |
| 1157 | CONFIG_ZLIB_DEFLATE=y | 1197 | CONFIG_ZLIB_DEFLATE=y |
| 1158 | CONFIG_PLIST=y | 1198 | CONFIG_DECOMPRESS_GZIP=y |
| 1159 | CONFIG_HAS_IOMEM=y | 1199 | CONFIG_HAS_IOMEM=y |
| 1160 | CONFIG_HAS_IOPORT=y | 1200 | CONFIG_HAS_IOPORT=y |
| 1161 | CONFIG_HAS_DMA=y | 1201 | CONFIG_HAS_DMA=y |
| 1162 | CONFIG_HAVE_LMB=y | 1202 | CONFIG_HAVE_LMB=y |
| 1203 | CONFIG_NLATTR=y | ||
| 1163 | 1204 | ||
| 1164 | # | 1205 | # |
| 1165 | # Kernel hacking | 1206 | # Kernel hacking |
| @@ -1181,13 +1222,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1181 | # CONFIG_LATENCYTOP is not set | 1222 | # CONFIG_LATENCYTOP is not set |
| 1182 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1223 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1183 | CONFIG_HAVE_FUNCTION_TRACER=y | 1224 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1225 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1184 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1226 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1185 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1227 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1228 | CONFIG_TRACING_SUPPORT=y | ||
| 1186 | 1229 | ||
| 1187 | # | 1230 | # |
| 1188 | # Tracers | 1231 | # Tracers |
| 1189 | # | 1232 | # |
| 1190 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1233 | # CONFIG_FUNCTION_TRACER is not set |
| 1234 | # CONFIG_SCHED_TRACER is not set | ||
| 1235 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1236 | # CONFIG_EVENT_TRACER is not set | ||
| 1237 | # CONFIG_BOOT_TRACER is not set | ||
| 1238 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1239 | # CONFIG_STACK_TRACER is not set | ||
| 1240 | # CONFIG_KMEMTRACE is not set | ||
| 1241 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1242 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1191 | # CONFIG_SAMPLES is not set | 1243 | # CONFIG_SAMPLES is not set |
| 1192 | CONFIG_HAVE_ARCH_KGDB=y | 1244 | CONFIG_HAVE_ARCH_KGDB=y |
| 1193 | CONFIG_PRINT_STACK_DEPTH=64 | 1245 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1278,6 +1330,7 @@ CONFIG_CRYPTO=y | |||
| 1278 | # Compression | 1330 | # Compression |
| 1279 | # | 1331 | # |
| 1280 | # CONFIG_CRYPTO_DEFLATE is not set | 1332 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1333 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1281 | # CONFIG_CRYPTO_LZO is not set | 1334 | # CONFIG_CRYPTO_LZO is not set |
| 1282 | 1335 | ||
| 1283 | # | 1336 | # |
diff --git a/arch/powerpc/configs/86xx/gef_ppc9a_defconfig b/arch/powerpc/configs/86xx/gef_ppc9a_defconfig index df2c16337794..b6a23af57f46 100644 --- a/arch/powerpc/configs/86xx/gef_ppc9a_defconfig +++ b/arch/powerpc/configs/86xx/gef_ppc9a_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.29-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Fri Mar 13 15:36:11 2009 | 4 | # Wed May 13 17:22:31 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_PHYS_64BIT is not set | 19 | # CONFIG_PHYS_64BIT is not set |
| 19 | CONFIG_ALTIVEC=y | 20 | CONFIG_ALTIVEC=y |
| @@ -58,6 +59,7 @@ CONFIG_GENERIC_BUG=y | |||
| 58 | CONFIG_DEFAULT_UIMAGE=y | 59 | CONFIG_DEFAULT_UIMAGE=y |
| 59 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 60 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 62 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 62 | 64 | ||
| 63 | # | 65 | # |
| @@ -72,6 +74,7 @@ CONFIG_SWAP=y | |||
| 72 | CONFIG_SYSVIPC=y | 74 | CONFIG_SYSVIPC=y |
| 73 | CONFIG_SYSVIPC_SYSCTL=y | 75 | CONFIG_SYSVIPC_SYSCTL=y |
| 74 | CONFIG_POSIX_MQUEUE=y | 76 | CONFIG_POSIX_MQUEUE=y |
| 77 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 75 | CONFIG_BSD_PROCESS_ACCT=y | 78 | CONFIG_BSD_PROCESS_ACCT=y |
| 76 | CONFIG_BSD_PROCESS_ACCT_V3=y | 79 | CONFIG_BSD_PROCESS_ACCT_V3=y |
| 77 | # CONFIG_TASKSTATS is not set | 80 | # CONFIG_TASKSTATS is not set |
| @@ -100,21 +103,24 @@ CONFIG_RELAY=y | |||
| 100 | # CONFIG_NAMESPACES is not set | 103 | # CONFIG_NAMESPACES is not set |
| 101 | CONFIG_BLK_DEV_INITRD=y | 104 | CONFIG_BLK_DEV_INITRD=y |
| 102 | CONFIG_INITRAMFS_SOURCE="" | 105 | CONFIG_INITRAMFS_SOURCE="" |
| 106 | CONFIG_RD_GZIP=y | ||
| 107 | # CONFIG_RD_BZIP2 is not set | ||
| 108 | # CONFIG_RD_LZMA is not set | ||
| 103 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 109 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 104 | CONFIG_SYSCTL=y | 110 | CONFIG_SYSCTL=y |
| 111 | CONFIG_ANON_INODES=y | ||
| 105 | CONFIG_EMBEDDED=y | 112 | CONFIG_EMBEDDED=y |
| 106 | CONFIG_SYSCTL_SYSCALL=y | 113 | CONFIG_SYSCTL_SYSCALL=y |
| 107 | CONFIG_KALLSYMS=y | 114 | CONFIG_KALLSYMS=y |
| 108 | # CONFIG_KALLSYMS_ALL is not set | 115 | # CONFIG_KALLSYMS_ALL is not set |
| 109 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 116 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 117 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 110 | CONFIG_HOTPLUG=y | 118 | CONFIG_HOTPLUG=y |
| 111 | CONFIG_PRINTK=y | 119 | CONFIG_PRINTK=y |
| 112 | CONFIG_BUG=y | 120 | CONFIG_BUG=y |
| 113 | CONFIG_ELF_CORE=y | 121 | CONFIG_ELF_CORE=y |
| 114 | CONFIG_COMPAT_BRK=y | ||
| 115 | CONFIG_BASE_FULL=y | 122 | CONFIG_BASE_FULL=y |
| 116 | CONFIG_FUTEX=y | 123 | CONFIG_FUTEX=y |
| 117 | CONFIG_ANON_INODES=y | ||
| 118 | CONFIG_EPOLL=y | 124 | CONFIG_EPOLL=y |
| 119 | CONFIG_SIGNALFD=y | 125 | CONFIG_SIGNALFD=y |
| 120 | CONFIG_TIMERFD=y | 126 | CONFIG_TIMERFD=y |
| @@ -123,10 +129,12 @@ CONFIG_SHMEM=y | |||
| 123 | CONFIG_AIO=y | 129 | CONFIG_AIO=y |
| 124 | CONFIG_VM_EVENT_COUNTERS=y | 130 | CONFIG_VM_EVENT_COUNTERS=y |
| 125 | CONFIG_PCI_QUIRKS=y | 131 | CONFIG_PCI_QUIRKS=y |
| 132 | CONFIG_COMPAT_BRK=y | ||
| 126 | CONFIG_SLAB=y | 133 | CONFIG_SLAB=y |
| 127 | # CONFIG_SLUB is not set | 134 | # CONFIG_SLUB is not set |
| 128 | # CONFIG_SLOB is not set | 135 | # CONFIG_SLOB is not set |
| 129 | # CONFIG_PROFILING is not set | 136 | # CONFIG_PROFILING is not set |
| 137 | # CONFIG_MARKERS is not set | ||
| 130 | CONFIG_HAVE_OPROFILE=y | 138 | CONFIG_HAVE_OPROFILE=y |
| 131 | # CONFIG_KPROBES is not set | 139 | # CONFIG_KPROBES is not set |
| 132 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 140 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -135,6 +143,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 135 | CONFIG_HAVE_KRETPROBES=y | 143 | CONFIG_HAVE_KRETPROBES=y |
| 136 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 144 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 137 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 145 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
| 146 | # CONFIG_SLOW_WORK is not set | ||
| 138 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 147 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 139 | CONFIG_SLABINFO=y | 148 | CONFIG_SLABINFO=y |
| 140 | CONFIG_RT_MUTEXES=y | 149 | CONFIG_RT_MUTEXES=y |
| @@ -148,7 +157,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 148 | CONFIG_STOP_MACHINE=y | 157 | CONFIG_STOP_MACHINE=y |
| 149 | CONFIG_BLOCK=y | 158 | CONFIG_BLOCK=y |
| 150 | # CONFIG_LBD is not set | 159 | # CONFIG_LBD is not set |
| 151 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 152 | # CONFIG_BLK_DEV_BSG is not set | 160 | # CONFIG_BLK_DEV_BSG is not set |
| 153 | # CONFIG_BLK_DEV_INTEGRITY is not set | 161 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 154 | 162 | ||
| @@ -169,8 +177,6 @@ CONFIG_DEFAULT_IOSCHED="cfq" | |||
| 169 | # | 177 | # |
| 170 | # Platform support | 178 | # Platform support |
| 171 | # | 179 | # |
| 172 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 173 | CONFIG_CLASSIC32=y | ||
| 174 | # CONFIG_PPC_CHRP is not set | 180 | # CONFIG_PPC_CHRP is not set |
| 175 | # CONFIG_MPC5121_ADS is not set | 181 | # CONFIG_MPC5121_ADS is not set |
| 176 | # CONFIG_MPC5121_GENERIC is not set | 182 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -189,6 +195,7 @@ CONFIG_GEF_PPC9A=y | |||
| 189 | # CONFIG_GEF_SBC310 is not set | 195 | # CONFIG_GEF_SBC310 is not set |
| 190 | # CONFIG_GEF_SBC610 is not set | 196 | # CONFIG_GEF_SBC610 is not set |
| 191 | CONFIG_MPC8641=y | 197 | CONFIG_MPC8641=y |
| 198 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 192 | # CONFIG_IPIC is not set | 199 | # CONFIG_IPIC is not set |
| 193 | CONFIG_MPIC=y | 200 | CONFIG_MPIC=y |
| 194 | # CONFIG_MPIC_WEIRD is not set | 201 | # CONFIG_MPIC_WEIRD is not set |
| @@ -250,9 +257,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 250 | CONFIG_BOUNCE=y | 257 | CONFIG_BOUNCE=y |
| 251 | CONFIG_VIRT_TO_BUS=y | 258 | CONFIG_VIRT_TO_BUS=y |
| 252 | CONFIG_UNEVICTABLE_LRU=y | 259 | CONFIG_UNEVICTABLE_LRU=y |
| 260 | CONFIG_HAVE_MLOCK=y | ||
| 261 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 253 | CONFIG_PPC_4K_PAGES=y | 262 | CONFIG_PPC_4K_PAGES=y |
| 254 | # CONFIG_PPC_16K_PAGES is not set | 263 | # CONFIG_PPC_16K_PAGES is not set |
| 255 | # CONFIG_PPC_64K_PAGES is not set | 264 | # CONFIG_PPC_64K_PAGES is not set |
| 265 | # CONFIG_PPC_256K_PAGES is not set | ||
| 256 | CONFIG_FORCE_MAX_ZONEORDER=11 | 266 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 257 | # CONFIG_PROC_DEVICETREE is not set | 267 | # CONFIG_PROC_DEVICETREE is not set |
| 258 | # CONFIG_CMDLINE_BOOL is not set | 268 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -281,6 +291,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 281 | # CONFIG_PCI_LEGACY is not set | 291 | # CONFIG_PCI_LEGACY is not set |
| 282 | CONFIG_PCI_DEBUG=y | 292 | CONFIG_PCI_DEBUG=y |
| 283 | # CONFIG_PCI_STUB is not set | 293 | # CONFIG_PCI_STUB is not set |
| 294 | # CONFIG_PCI_IOV is not set | ||
| 284 | # CONFIG_PCCARD is not set | 295 | # CONFIG_PCCARD is not set |
| 285 | # CONFIG_HOTPLUG_PCI is not set | 296 | # CONFIG_HOTPLUG_PCI is not set |
| 286 | # CONFIG_HAS_RAPIDIO is not set | 297 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -303,7 +314,6 @@ CONFIG_NET=y | |||
| 303 | # | 314 | # |
| 304 | # Networking options | 315 | # Networking options |
| 305 | # | 316 | # |
| 306 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 307 | CONFIG_PACKET=y | 317 | CONFIG_PACKET=y |
| 308 | CONFIG_PACKET_MMAP=y | 318 | CONFIG_PACKET_MMAP=y |
| 309 | CONFIG_UNIX=y | 319 | CONFIG_UNIX=y |
| @@ -383,9 +393,11 @@ CONFIG_BRIDGE_NETFILTER=y | |||
| 383 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set | 393 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set |
| 384 | # CONFIG_NETFILTER_NETLINK_LOG is not set | 394 | # CONFIG_NETFILTER_NETLINK_LOG is not set |
| 385 | # CONFIG_NF_CONNTRACK is not set | 395 | # CONFIG_NF_CONNTRACK is not set |
| 396 | # CONFIG_NETFILTER_TPROXY is not set | ||
| 386 | CONFIG_NETFILTER_XTABLES=m | 397 | CONFIG_NETFILTER_XTABLES=m |
| 387 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set | 398 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set |
| 388 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | 399 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set |
| 400 | # CONFIG_NETFILTER_XT_TARGET_HL is not set | ||
| 389 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set | 401 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set |
| 390 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set | 402 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set |
| 391 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set | 403 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set |
| @@ -398,6 +410,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
| 398 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | 410 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set |
| 399 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set | 411 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set |
| 400 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set | 412 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set |
| 413 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
| 401 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | 414 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set |
| 402 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set | 415 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set |
| 403 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set | 416 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set |
| @@ -456,11 +469,11 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
| 456 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 469 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
| 457 | # CONFIG_IP6_NF_MATCH_MH is not set | 470 | # CONFIG_IP6_NF_MATCH_MH is not set |
| 458 | CONFIG_IP6_NF_MATCH_RT=m | 471 | CONFIG_IP6_NF_MATCH_RT=m |
| 472 | # CONFIG_IP6_NF_TARGET_HL is not set | ||
| 459 | CONFIG_IP6_NF_TARGET_LOG=m | 473 | CONFIG_IP6_NF_TARGET_LOG=m |
| 460 | CONFIG_IP6_NF_FILTER=m | 474 | CONFIG_IP6_NF_FILTER=m |
| 461 | # CONFIG_IP6_NF_TARGET_REJECT is not set | 475 | # CONFIG_IP6_NF_TARGET_REJECT is not set |
| 462 | CONFIG_IP6_NF_MANGLE=m | 476 | CONFIG_IP6_NF_MANGLE=m |
| 463 | # CONFIG_IP6_NF_TARGET_HL is not set | ||
| 464 | CONFIG_IP6_NF_RAW=m | 477 | CONFIG_IP6_NF_RAW=m |
| 465 | # CONFIG_IP6_NF_SECURITY is not set | 478 | # CONFIG_IP6_NF_SECURITY is not set |
| 466 | # CONFIG_BRIDGE_NF_EBTABLES is not set | 479 | # CONFIG_BRIDGE_NF_EBTABLES is not set |
| @@ -495,6 +508,7 @@ CONFIG_LLC=m | |||
| 495 | # CONFIG_LAPB is not set | 508 | # CONFIG_LAPB is not set |
| 496 | # CONFIG_ECONET is not set | 509 | # CONFIG_ECONET is not set |
| 497 | CONFIG_WAN_ROUTER=m | 510 | CONFIG_WAN_ROUTER=m |
| 511 | # CONFIG_PHONET is not set | ||
| 498 | CONFIG_NET_SCHED=y | 512 | CONFIG_NET_SCHED=y |
| 499 | 513 | ||
| 500 | # | 514 | # |
| @@ -545,7 +559,6 @@ CONFIG_NET_PKTGEN=m | |||
| 545 | # CONFIG_IRDA is not set | 559 | # CONFIG_IRDA is not set |
| 546 | # CONFIG_BT is not set | 560 | # CONFIG_BT is not set |
| 547 | # CONFIG_AF_RXRPC is not set | 561 | # CONFIG_AF_RXRPC is not set |
| 548 | # CONFIG_PHONET is not set | ||
| 549 | CONFIG_FIB_RULES=y | 562 | CONFIG_FIB_RULES=y |
| 550 | CONFIG_WIRELESS=y | 563 | CONFIG_WIRELESS=y |
| 551 | # CONFIG_CFG80211 is not set | 564 | # CONFIG_CFG80211 is not set |
| @@ -686,6 +699,7 @@ CONFIG_MISC_DEVICES=y | |||
| 686 | # CONFIG_ICS932S401 is not set | 699 | # CONFIG_ICS932S401 is not set |
| 687 | # CONFIG_ENCLOSURE_SERVICES is not set | 700 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 688 | # CONFIG_HP_ILO is not set | 701 | # CONFIG_HP_ILO is not set |
| 702 | # CONFIG_ISL29003 is not set | ||
| 689 | # CONFIG_C2PORT is not set | 703 | # CONFIG_C2PORT is not set |
| 690 | 704 | ||
| 691 | # | 705 | # |
| @@ -751,9 +765,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 751 | # CONFIG_MEGARAID_NEWGEN is not set | 765 | # CONFIG_MEGARAID_NEWGEN is not set |
| 752 | # CONFIG_MEGARAID_LEGACY is not set | 766 | # CONFIG_MEGARAID_LEGACY is not set |
| 753 | # CONFIG_MEGARAID_SAS is not set | 767 | # CONFIG_MEGARAID_SAS is not set |
| 768 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 754 | # CONFIG_SCSI_HPTIOP is not set | 769 | # CONFIG_SCSI_HPTIOP is not set |
| 755 | # CONFIG_SCSI_BUSLOGIC is not set | 770 | # CONFIG_SCSI_BUSLOGIC is not set |
| 756 | # CONFIG_LIBFC is not set | 771 | # CONFIG_LIBFC is not set |
| 772 | # CONFIG_LIBFCOE is not set | ||
| 757 | # CONFIG_FCOE is not set | 773 | # CONFIG_FCOE is not set |
| 758 | # CONFIG_SCSI_DMX3191D is not set | 774 | # CONFIG_SCSI_DMX3191D is not set |
| 759 | # CONFIG_SCSI_EATA is not set | 775 | # CONFIG_SCSI_EATA is not set |
| @@ -776,6 +792,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 776 | # CONFIG_SCSI_DEBUG is not set | 792 | # CONFIG_SCSI_DEBUG is not set |
| 777 | # CONFIG_SCSI_SRP is not set | 793 | # CONFIG_SCSI_SRP is not set |
| 778 | # CONFIG_SCSI_DH is not set | 794 | # CONFIG_SCSI_DH is not set |
| 795 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 779 | CONFIG_ATA=y | 796 | CONFIG_ATA=y |
| 780 | # CONFIG_ATA_NONSTANDARD is not set | 797 | # CONFIG_ATA_NONSTANDARD is not set |
| 781 | CONFIG_SATA_PMP=y | 798 | CONFIG_SATA_PMP=y |
| @@ -852,6 +869,7 @@ CONFIG_SATA_SIL=y | |||
| 852 | # CONFIG_I2O is not set | 869 | # CONFIG_I2O is not set |
| 853 | # CONFIG_MACINTOSH_DRIVERS is not set | 870 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 854 | CONFIG_NETDEVICES=y | 871 | CONFIG_NETDEVICES=y |
| 872 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 855 | CONFIG_DUMMY=m | 873 | CONFIG_DUMMY=m |
| 856 | CONFIG_BONDING=m | 874 | CONFIG_BONDING=m |
| 857 | # CONFIG_MACVLAN is not set | 875 | # CONFIG_MACVLAN is not set |
| @@ -885,6 +903,8 @@ CONFIG_MII=y | |||
| 885 | # CONFIG_SUNGEM is not set | 903 | # CONFIG_SUNGEM is not set |
| 886 | # CONFIG_CASSINI is not set | 904 | # CONFIG_CASSINI is not set |
| 887 | # CONFIG_NET_VENDOR_3COM is not set | 905 | # CONFIG_NET_VENDOR_3COM is not set |
| 906 | # CONFIG_ETHOC is not set | ||
| 907 | # CONFIG_DNET is not set | ||
| 888 | # CONFIG_NET_TULIP is not set | 908 | # CONFIG_NET_TULIP is not set |
| 889 | # CONFIG_HP100 is not set | 909 | # CONFIG_HP100 is not set |
| 890 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 910 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -904,6 +924,7 @@ CONFIG_NETDEV_1000=y | |||
| 904 | # CONFIG_E1000E is not set | 924 | # CONFIG_E1000E is not set |
| 905 | # CONFIG_IP1000 is not set | 925 | # CONFIG_IP1000 is not set |
| 906 | # CONFIG_IGB is not set | 926 | # CONFIG_IGB is not set |
| 927 | # CONFIG_IGBVF is not set | ||
| 907 | # CONFIG_NS83820 is not set | 928 | # CONFIG_NS83820 is not set |
| 908 | # CONFIG_HAMACHI is not set | 929 | # CONFIG_HAMACHI is not set |
| 909 | # CONFIG_YELLOWFIN is not set | 930 | # CONFIG_YELLOWFIN is not set |
| @@ -914,8 +935,8 @@ CONFIG_NETDEV_1000=y | |||
| 914 | # CONFIG_VIA_VELOCITY is not set | 935 | # CONFIG_VIA_VELOCITY is not set |
| 915 | # CONFIG_TIGON3 is not set | 936 | # CONFIG_TIGON3 is not set |
| 916 | # CONFIG_BNX2 is not set | 937 | # CONFIG_BNX2 is not set |
| 938 | CONFIG_FSL_PQ_MDIO=y | ||
| 917 | CONFIG_GIANFAR=y | 939 | CONFIG_GIANFAR=y |
| 918 | # CONFIG_MV643XX_ETH is not set | ||
| 919 | # CONFIG_QLA3XXX is not set | 940 | # CONFIG_QLA3XXX is not set |
| 920 | # CONFIG_ATL1 is not set | 941 | # CONFIG_ATL1 is not set |
| 921 | # CONFIG_ATL1E is not set | 942 | # CONFIG_ATL1E is not set |
| @@ -929,7 +950,6 @@ CONFIG_GIANFAR=y | |||
| 929 | # | 950 | # |
| 930 | # CONFIG_WLAN_PRE80211 is not set | 951 | # CONFIG_WLAN_PRE80211 is not set |
| 931 | # CONFIG_WLAN_80211 is not set | 952 | # CONFIG_WLAN_80211 is not set |
| 932 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 933 | 953 | ||
| 934 | # | 954 | # |
| 935 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 955 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -1056,6 +1076,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 1056 | # CONFIG_HVC_UDBG is not set | 1076 | # CONFIG_HVC_UDBG is not set |
| 1057 | # CONFIG_IPMI_HANDLER is not set | 1077 | # CONFIG_IPMI_HANDLER is not set |
| 1058 | CONFIG_HW_RANDOM=y | 1078 | CONFIG_HW_RANDOM=y |
| 1079 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 1059 | CONFIG_NVRAM=y | 1080 | CONFIG_NVRAM=y |
| 1060 | # CONFIG_R3964 is not set | 1081 | # CONFIG_R3964 is not set |
| 1061 | # CONFIG_APPLICOM is not set | 1082 | # CONFIG_APPLICOM is not set |
| @@ -1122,7 +1143,6 @@ CONFIG_DS1682=y | |||
| 1122 | # CONFIG_SENSORS_PCF8574 is not set | 1143 | # CONFIG_SENSORS_PCF8574 is not set |
| 1123 | # CONFIG_PCF8575 is not set | 1144 | # CONFIG_PCF8575 is not set |
| 1124 | # CONFIG_SENSORS_PCA9539 is not set | 1145 | # CONFIG_SENSORS_PCA9539 is not set |
| 1125 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1126 | # CONFIG_SENSORS_MAX6875 is not set | 1146 | # CONFIG_SENSORS_MAX6875 is not set |
| 1127 | # CONFIG_SENSORS_TSL2550 is not set | 1147 | # CONFIG_SENSORS_TSL2550 is not set |
| 1128 | # CONFIG_I2C_DEBUG_CORE is not set | 1148 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -1178,6 +1198,7 @@ CONFIG_HWMON=y | |||
| 1178 | # CONFIG_SENSORS_F71805F is not set | 1198 | # CONFIG_SENSORS_F71805F is not set |
| 1179 | # CONFIG_SENSORS_F71882FG is not set | 1199 | # CONFIG_SENSORS_F71882FG is not set |
| 1180 | # CONFIG_SENSORS_F75375S is not set | 1200 | # CONFIG_SENSORS_F75375S is not set |
| 1201 | # CONFIG_SENSORS_G760A is not set | ||
| 1181 | # CONFIG_SENSORS_GL518SM is not set | 1202 | # CONFIG_SENSORS_GL518SM is not set |
| 1182 | # CONFIG_SENSORS_GL520SM is not set | 1203 | # CONFIG_SENSORS_GL520SM is not set |
| 1183 | # CONFIG_SENSORS_IT87 is not set | 1204 | # CONFIG_SENSORS_IT87 is not set |
| @@ -1192,11 +1213,15 @@ CONFIG_HWMON=y | |||
| 1192 | CONFIG_SENSORS_LM90=y | 1213 | CONFIG_SENSORS_LM90=y |
| 1193 | CONFIG_SENSORS_LM92=y | 1214 | CONFIG_SENSORS_LM92=y |
| 1194 | # CONFIG_SENSORS_LM93 is not set | 1215 | # CONFIG_SENSORS_LM93 is not set |
| 1216 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 1195 | # CONFIG_SENSORS_LTC4245 is not set | 1217 | # CONFIG_SENSORS_LTC4245 is not set |
| 1218 | # CONFIG_SENSORS_LM95241 is not set | ||
| 1196 | # CONFIG_SENSORS_MAX1619 is not set | 1219 | # CONFIG_SENSORS_MAX1619 is not set |
| 1197 | # CONFIG_SENSORS_MAX6650 is not set | 1220 | # CONFIG_SENSORS_MAX6650 is not set |
| 1198 | # CONFIG_SENSORS_PC87360 is not set | 1221 | # CONFIG_SENSORS_PC87360 is not set |
| 1199 | # CONFIG_SENSORS_PC87427 is not set | 1222 | # CONFIG_SENSORS_PC87427 is not set |
| 1223 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1224 | # CONFIG_SENSORS_SHT15 is not set | ||
| 1200 | # CONFIG_SENSORS_SIS5595 is not set | 1225 | # CONFIG_SENSORS_SIS5595 is not set |
| 1201 | # CONFIG_SENSORS_DME1737 is not set | 1226 | # CONFIG_SENSORS_DME1737 is not set |
| 1202 | # CONFIG_SENSORS_SMSC47M1 is not set | 1227 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -1315,15 +1340,17 @@ CONFIG_USB_HID=y | |||
| 1315 | # | 1340 | # |
| 1316 | # Special HID drivers | 1341 | # Special HID drivers |
| 1317 | # | 1342 | # |
| 1318 | CONFIG_HID_COMPAT=y | ||
| 1319 | CONFIG_HID_A4TECH=y | 1343 | CONFIG_HID_A4TECH=y |
| 1320 | CONFIG_HID_APPLE=y | 1344 | CONFIG_HID_APPLE=y |
| 1321 | CONFIG_HID_BELKIN=y | 1345 | CONFIG_HID_BELKIN=y |
| 1322 | CONFIG_HID_CHERRY=y | 1346 | CONFIG_HID_CHERRY=y |
| 1323 | CONFIG_HID_CHICONY=y | 1347 | CONFIG_HID_CHICONY=y |
| 1324 | CONFIG_HID_CYPRESS=y | 1348 | CONFIG_HID_CYPRESS=y |
| 1349 | # CONFIG_DRAGONRISE_FF is not set | ||
| 1325 | CONFIG_HID_EZKEY=y | 1350 | CONFIG_HID_EZKEY=y |
| 1351 | # CONFIG_HID_KYE is not set | ||
| 1326 | CONFIG_HID_GYRATION=y | 1352 | CONFIG_HID_GYRATION=y |
| 1353 | # CONFIG_HID_KENSINGTON is not set | ||
| 1327 | CONFIG_HID_LOGITECH=y | 1354 | CONFIG_HID_LOGITECH=y |
| 1328 | # CONFIG_LOGITECH_FF is not set | 1355 | # CONFIG_LOGITECH_FF is not set |
| 1329 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1356 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
| @@ -1393,11 +1420,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1393 | # CONFIG_USB_TMC is not set | 1420 | # CONFIG_USB_TMC is not set |
| 1394 | 1421 | ||
| 1395 | # | 1422 | # |
| 1396 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1423 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1397 | # | 1424 | # |
| 1398 | 1425 | ||
| 1399 | # | 1426 | # |
| 1400 | # see USB_STORAGE Help for more information | 1427 | # also be needed; see USB_STORAGE Help for more info |
| 1401 | # | 1428 | # |
| 1402 | CONFIG_USB_STORAGE=y | 1429 | CONFIG_USB_STORAGE=y |
| 1403 | # CONFIG_USB_STORAGE_DEBUG is not set | 1430 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1439,7 +1466,6 @@ CONFIG_USB_STORAGE=y | |||
| 1439 | # CONFIG_USB_LED is not set | 1466 | # CONFIG_USB_LED is not set |
| 1440 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1467 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1441 | # CONFIG_USB_CYTHERM is not set | 1468 | # CONFIG_USB_CYTHERM is not set |
| 1442 | # CONFIG_USB_PHIDGET is not set | ||
| 1443 | # CONFIG_USB_IDMOUSE is not set | 1469 | # CONFIG_USB_IDMOUSE is not set |
| 1444 | # CONFIG_USB_FTDI_ELAN is not set | 1470 | # CONFIG_USB_FTDI_ELAN is not set |
| 1445 | # CONFIG_USB_APPLEDISPLAY is not set | 1471 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1456,6 +1482,7 @@ CONFIG_USB_STORAGE=y | |||
| 1456 | # OTG and related infrastructure | 1482 | # OTG and related infrastructure |
| 1457 | # | 1483 | # |
| 1458 | # CONFIG_USB_GPIO_VBUS is not set | 1484 | # CONFIG_USB_GPIO_VBUS is not set |
| 1485 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1459 | # CONFIG_UWB is not set | 1486 | # CONFIG_UWB is not set |
| 1460 | # CONFIG_MMC is not set | 1487 | # CONFIG_MMC is not set |
| 1461 | # CONFIG_MEMSTICK is not set | 1488 | # CONFIG_MEMSTICK is not set |
| @@ -1517,8 +1544,9 @@ CONFIG_RTC_DRV_RX8581=y | |||
| 1517 | # | 1544 | # |
| 1518 | # on-CPU RTC drivers | 1545 | # on-CPU RTC drivers |
| 1519 | # | 1546 | # |
| 1520 | # CONFIG_RTC_DRV_PPC is not set | 1547 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1521 | # CONFIG_DMADEVICES is not set | 1548 | # CONFIG_DMADEVICES is not set |
| 1549 | # CONFIG_AUXDISPLAY is not set | ||
| 1522 | # CONFIG_UIO is not set | 1550 | # CONFIG_UIO is not set |
| 1523 | # CONFIG_STAGING is not set | 1551 | # CONFIG_STAGING is not set |
| 1524 | 1552 | ||
| @@ -1531,6 +1559,7 @@ CONFIG_EXT2_FS_POSIX_ACL=y | |||
| 1531 | # CONFIG_EXT2_FS_SECURITY is not set | 1559 | # CONFIG_EXT2_FS_SECURITY is not set |
| 1532 | # CONFIG_EXT2_FS_XIP is not set | 1560 | # CONFIG_EXT2_FS_XIP is not set |
| 1533 | CONFIG_EXT3_FS=y | 1561 | CONFIG_EXT3_FS=y |
| 1562 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1534 | CONFIG_EXT3_FS_XATTR=y | 1563 | CONFIG_EXT3_FS_XATTR=y |
| 1535 | CONFIG_EXT3_FS_POSIX_ACL=y | 1564 | CONFIG_EXT3_FS_POSIX_ACL=y |
| 1536 | # CONFIG_EXT3_FS_SECURITY is not set | 1565 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1553,6 +1582,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1553 | # CONFIG_FUSE_FS is not set | 1582 | # CONFIG_FUSE_FS is not set |
| 1554 | 1583 | ||
| 1555 | # | 1584 | # |
| 1585 | # Caches | ||
| 1586 | # | ||
| 1587 | # CONFIG_FSCACHE is not set | ||
| 1588 | |||
| 1589 | # | ||
| 1556 | # CD-ROM/DVD Filesystems | 1590 | # CD-ROM/DVD Filesystems |
| 1557 | # | 1591 | # |
| 1558 | # CONFIG_ISO9660_FS is not set | 1592 | # CONFIG_ISO9660_FS is not set |
| @@ -1609,6 +1643,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1609 | # CONFIG_ROMFS_FS is not set | 1643 | # CONFIG_ROMFS_FS is not set |
| 1610 | # CONFIG_SYSV_FS is not set | 1644 | # CONFIG_SYSV_FS is not set |
| 1611 | # CONFIG_UFS_FS is not set | 1645 | # CONFIG_UFS_FS is not set |
| 1646 | # CONFIG_NILFS2_FS is not set | ||
| 1612 | CONFIG_NETWORK_FILESYSTEMS=y | 1647 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1613 | CONFIG_NFS_FS=y | 1648 | CONFIG_NFS_FS=y |
| 1614 | CONFIG_NFS_V3=y | 1649 | CONFIG_NFS_V3=y |
| @@ -1621,7 +1656,6 @@ CONFIG_LOCKD_V4=y | |||
| 1621 | CONFIG_NFS_COMMON=y | 1656 | CONFIG_NFS_COMMON=y |
| 1622 | CONFIG_SUNRPC=y | 1657 | CONFIG_SUNRPC=y |
| 1623 | CONFIG_SUNRPC_GSS=y | 1658 | CONFIG_SUNRPC_GSS=y |
| 1624 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1625 | CONFIG_RPCSEC_GSS_KRB5=y | 1659 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1626 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1660 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1627 | # CONFIG_SMB_FS is not set | 1661 | # CONFIG_SMB_FS is not set |
| @@ -1682,6 +1716,7 @@ CONFIG_NLS_KOI8_R=m | |||
| 1682 | CONFIG_NLS_KOI8_U=m | 1716 | CONFIG_NLS_KOI8_U=m |
| 1683 | CONFIG_NLS_UTF8=m | 1717 | CONFIG_NLS_UTF8=m |
| 1684 | # CONFIG_DLM is not set | 1718 | # CONFIG_DLM is not set |
| 1719 | # CONFIG_BINARY_PRINTF is not set | ||
| 1685 | 1720 | ||
| 1686 | # | 1721 | # |
| 1687 | # Library routines | 1722 | # Library routines |
| @@ -1697,11 +1732,12 @@ CONFIG_CRC32=y | |||
| 1697 | CONFIG_LIBCRC32C=m | 1732 | CONFIG_LIBCRC32C=m |
| 1698 | CONFIG_ZLIB_INFLATE=y | 1733 | CONFIG_ZLIB_INFLATE=y |
| 1699 | CONFIG_ZLIB_DEFLATE=y | 1734 | CONFIG_ZLIB_DEFLATE=y |
| 1700 | CONFIG_PLIST=y | 1735 | CONFIG_DECOMPRESS_GZIP=y |
| 1701 | CONFIG_HAS_IOMEM=y | 1736 | CONFIG_HAS_IOMEM=y |
| 1702 | CONFIG_HAS_IOPORT=y | 1737 | CONFIG_HAS_IOPORT=y |
| 1703 | CONFIG_HAS_DMA=y | 1738 | CONFIG_HAS_DMA=y |
| 1704 | CONFIG_HAVE_LMB=y | 1739 | CONFIG_HAVE_LMB=y |
| 1740 | CONFIG_NLATTR=y | ||
| 1705 | 1741 | ||
| 1706 | # | 1742 | # |
| 1707 | # Kernel hacking | 1743 | # Kernel hacking |
| @@ -1719,6 +1755,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1719 | CONFIG_DETECT_SOFTLOCKUP=y | 1755 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1720 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1756 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1721 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1757 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1758 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1759 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1760 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1722 | CONFIG_SCHED_DEBUG=y | 1761 | CONFIG_SCHED_DEBUG=y |
| 1723 | # CONFIG_SCHEDSTATS is not set | 1762 | # CONFIG_SCHEDSTATS is not set |
| 1724 | # CONFIG_TIMER_STATS is not set | 1763 | # CONFIG_TIMER_STATS is not set |
| @@ -1747,9 +1786,12 @@ CONFIG_DEBUG_INFO=y | |||
| 1747 | # CONFIG_FAULT_INJECTION is not set | 1786 | # CONFIG_FAULT_INJECTION is not set |
| 1748 | # CONFIG_LATENCYTOP is not set | 1787 | # CONFIG_LATENCYTOP is not set |
| 1749 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1788 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1789 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1750 | CONFIG_HAVE_FUNCTION_TRACER=y | 1790 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1791 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1751 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1792 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1752 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1793 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1794 | CONFIG_TRACING_SUPPORT=y | ||
| 1753 | 1795 | ||
| 1754 | # | 1796 | # |
| 1755 | # Tracers | 1797 | # Tracers |
| @@ -1758,17 +1800,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1758 | # CONFIG_PREEMPT_TRACER is not set | 1800 | # CONFIG_PREEMPT_TRACER is not set |
| 1759 | # CONFIG_SCHED_TRACER is not set | 1801 | # CONFIG_SCHED_TRACER is not set |
| 1760 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1802 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1803 | # CONFIG_EVENT_TRACER is not set | ||
| 1761 | # CONFIG_BOOT_TRACER is not set | 1804 | # CONFIG_BOOT_TRACER is not set |
| 1762 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1805 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1763 | # CONFIG_STACK_TRACER is not set | 1806 | # CONFIG_STACK_TRACER is not set |
| 1764 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1807 | # CONFIG_KMEMTRACE is not set |
| 1808 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1809 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1765 | # CONFIG_SAMPLES is not set | 1810 | # CONFIG_SAMPLES is not set |
| 1766 | CONFIG_HAVE_ARCH_KGDB=y | 1811 | CONFIG_HAVE_ARCH_KGDB=y |
| 1767 | # CONFIG_KGDB is not set | 1812 | # CONFIG_KGDB is not set |
| 1768 | CONFIG_PRINT_STACK_DEPTH=64 | 1813 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1769 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1814 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1770 | # CONFIG_DEBUG_STACK_USAGE is not set | 1815 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1771 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1772 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1816 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1773 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1817 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1774 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1818 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1790,6 +1834,7 @@ CONFIG_SECURITY_NETWORK=y | |||
| 1790 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1834 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1791 | # CONFIG_SECURITY_ROOTPLUG is not set | 1835 | # CONFIG_SECURITY_ROOTPLUG is not set |
| 1792 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1836 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
| 1837 | # CONFIG_SECURITY_TOMOYO is not set | ||
| 1793 | CONFIG_CRYPTO=y | 1838 | CONFIG_CRYPTO=y |
| 1794 | 1839 | ||
| 1795 | # | 1840 | # |
| @@ -1805,10 +1850,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1805 | CONFIG_CRYPTO_HASH=y | 1850 | CONFIG_CRYPTO_HASH=y |
| 1806 | CONFIG_CRYPTO_HASH2=y | 1851 | CONFIG_CRYPTO_HASH2=y |
| 1807 | CONFIG_CRYPTO_RNG2=y | 1852 | CONFIG_CRYPTO_RNG2=y |
| 1853 | CONFIG_CRYPTO_PCOMP=y | ||
| 1808 | CONFIG_CRYPTO_MANAGER=y | 1854 | CONFIG_CRYPTO_MANAGER=y |
| 1809 | CONFIG_CRYPTO_MANAGER2=y | 1855 | CONFIG_CRYPTO_MANAGER2=y |
| 1810 | # CONFIG_CRYPTO_GF128MUL is not set | 1856 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1811 | CONFIG_CRYPTO_NULL=m | 1857 | CONFIG_CRYPTO_NULL=m |
| 1858 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1812 | # CONFIG_CRYPTO_CRYPTD is not set | 1859 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1813 | CONFIG_CRYPTO_AUTHENC=m | 1860 | CONFIG_CRYPTO_AUTHENC=m |
| 1814 | CONFIG_CRYPTO_TEST=m | 1861 | CONFIG_CRYPTO_TEST=m |
| @@ -1878,6 +1925,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
| 1878 | # Compression | 1925 | # Compression |
| 1879 | # | 1926 | # |
| 1880 | CONFIG_CRYPTO_DEFLATE=m | 1927 | CONFIG_CRYPTO_DEFLATE=m |
| 1928 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1881 | # CONFIG_CRYPTO_LZO is not set | 1929 | # CONFIG_CRYPTO_LZO is not set |
| 1882 | 1930 | ||
| 1883 | # | 1931 | # |
diff --git a/arch/powerpc/configs/86xx/gef_sbc310_defconfig b/arch/powerpc/configs/86xx/gef_sbc310_defconfig index bd236b3d915a..a66910e63345 100644 --- a/arch/powerpc/configs/86xx/gef_sbc310_defconfig +++ b/arch/powerpc/configs/86xx/gef_sbc310_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.29-rc3 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Wed Jan 28 23:05:34 2009 | 4 | # Wed May 13 17:22:29 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_PHYS_64BIT is not set | 19 | # CONFIG_PHYS_64BIT is not set |
| 19 | CONFIG_ALTIVEC=y | 20 | CONFIG_ALTIVEC=y |
| @@ -58,6 +59,7 @@ CONFIG_GENERIC_BUG=y | |||
| 58 | CONFIG_DEFAULT_UIMAGE=y | 59 | CONFIG_DEFAULT_UIMAGE=y |
| 59 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 60 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 62 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 62 | 64 | ||
| 63 | # | 65 | # |
| @@ -72,6 +74,7 @@ CONFIG_SWAP=y | |||
| 72 | CONFIG_SYSVIPC=y | 74 | CONFIG_SYSVIPC=y |
| 73 | CONFIG_SYSVIPC_SYSCTL=y | 75 | CONFIG_SYSVIPC_SYSCTL=y |
| 74 | CONFIG_POSIX_MQUEUE=y | 76 | CONFIG_POSIX_MQUEUE=y |
| 77 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 75 | CONFIG_BSD_PROCESS_ACCT=y | 78 | CONFIG_BSD_PROCESS_ACCT=y |
| 76 | CONFIG_BSD_PROCESS_ACCT_V3=y | 79 | CONFIG_BSD_PROCESS_ACCT_V3=y |
| 77 | # CONFIG_TASKSTATS is not set | 80 | # CONFIG_TASKSTATS is not set |
| @@ -96,20 +99,23 @@ CONFIG_RELAY=y | |||
| 96 | # CONFIG_NAMESPACES is not set | 99 | # CONFIG_NAMESPACES is not set |
| 97 | CONFIG_BLK_DEV_INITRD=y | 100 | CONFIG_BLK_DEV_INITRD=y |
| 98 | CONFIG_INITRAMFS_SOURCE="" | 101 | CONFIG_INITRAMFS_SOURCE="" |
| 102 | CONFIG_RD_GZIP=y | ||
| 103 | # CONFIG_RD_BZIP2 is not set | ||
| 104 | # CONFIG_RD_LZMA is not set | ||
| 99 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 105 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 100 | CONFIG_SYSCTL=y | 106 | CONFIG_SYSCTL=y |
| 107 | CONFIG_ANON_INODES=y | ||
| 101 | CONFIG_EMBEDDED=y | 108 | CONFIG_EMBEDDED=y |
| 102 | CONFIG_SYSCTL_SYSCALL=y | 109 | CONFIG_SYSCTL_SYSCALL=y |
| 103 | CONFIG_KALLSYMS=y | 110 | CONFIG_KALLSYMS=y |
| 104 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 111 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 112 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 105 | CONFIG_HOTPLUG=y | 113 | CONFIG_HOTPLUG=y |
| 106 | CONFIG_PRINTK=y | 114 | CONFIG_PRINTK=y |
| 107 | CONFIG_BUG=y | 115 | CONFIG_BUG=y |
| 108 | CONFIG_ELF_CORE=y | 116 | CONFIG_ELF_CORE=y |
| 109 | CONFIG_COMPAT_BRK=y | ||
| 110 | CONFIG_BASE_FULL=y | 117 | CONFIG_BASE_FULL=y |
| 111 | CONFIG_FUTEX=y | 118 | CONFIG_FUTEX=y |
| 112 | CONFIG_ANON_INODES=y | ||
| 113 | CONFIG_EPOLL=y | 119 | CONFIG_EPOLL=y |
| 114 | CONFIG_SIGNALFD=y | 120 | CONFIG_SIGNALFD=y |
| 115 | CONFIG_TIMERFD=y | 121 | CONFIG_TIMERFD=y |
| @@ -118,10 +124,12 @@ CONFIG_SHMEM=y | |||
| 118 | CONFIG_AIO=y | 124 | CONFIG_AIO=y |
| 119 | CONFIG_VM_EVENT_COUNTERS=y | 125 | CONFIG_VM_EVENT_COUNTERS=y |
| 120 | CONFIG_PCI_QUIRKS=y | 126 | CONFIG_PCI_QUIRKS=y |
| 127 | CONFIG_COMPAT_BRK=y | ||
| 121 | CONFIG_SLAB=y | 128 | CONFIG_SLAB=y |
| 122 | # CONFIG_SLUB is not set | 129 | # CONFIG_SLUB is not set |
| 123 | # CONFIG_SLOB is not set | 130 | # CONFIG_SLOB is not set |
| 124 | # CONFIG_PROFILING is not set | 131 | # CONFIG_PROFILING is not set |
| 132 | # CONFIG_MARKERS is not set | ||
| 125 | CONFIG_HAVE_OPROFILE=y | 133 | CONFIG_HAVE_OPROFILE=y |
| 126 | # CONFIG_KPROBES is not set | 134 | # CONFIG_KPROBES is not set |
| 127 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 135 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -130,6 +138,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 130 | CONFIG_HAVE_KRETPROBES=y | 138 | CONFIG_HAVE_KRETPROBES=y |
| 131 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 139 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 132 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 140 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
| 141 | # CONFIG_SLOW_WORK is not set | ||
| 133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 142 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 134 | CONFIG_SLABINFO=y | 143 | CONFIG_SLABINFO=y |
| 135 | CONFIG_RT_MUTEXES=y | 144 | CONFIG_RT_MUTEXES=y |
| @@ -143,7 +152,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 143 | CONFIG_STOP_MACHINE=y | 152 | CONFIG_STOP_MACHINE=y |
| 144 | CONFIG_BLOCK=y | 153 | CONFIG_BLOCK=y |
| 145 | # CONFIG_LBD is not set | 154 | # CONFIG_LBD is not set |
| 146 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 147 | # CONFIG_BLK_DEV_BSG is not set | 155 | # CONFIG_BLK_DEV_BSG is not set |
| 148 | # CONFIG_BLK_DEV_INTEGRITY is not set | 156 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 149 | 157 | ||
| @@ -165,8 +173,6 @@ CONFIG_PPC_MSI_BITMAP=y | |||
| 165 | # | 173 | # |
| 166 | # Platform support | 174 | # Platform support |
| 167 | # | 175 | # |
| 168 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 169 | CONFIG_CLASSIC32=y | ||
| 170 | # CONFIG_PPC_CHRP is not set | 176 | # CONFIG_PPC_CHRP is not set |
| 171 | # CONFIG_MPC5121_ADS is not set | 177 | # CONFIG_MPC5121_ADS is not set |
| 172 | # CONFIG_MPC5121_GENERIC is not set | 178 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -181,9 +187,11 @@ CONFIG_PPC_86xx=y | |||
| 181 | # CONFIG_MPC8641_HPCN is not set | 187 | # CONFIG_MPC8641_HPCN is not set |
| 182 | # CONFIG_SBC8641D is not set | 188 | # CONFIG_SBC8641D is not set |
| 183 | # CONFIG_MPC8610_HPCD is not set | 189 | # CONFIG_MPC8610_HPCD is not set |
| 190 | # CONFIG_GEF_PPC9A is not set | ||
| 184 | CONFIG_GEF_SBC310=y | 191 | CONFIG_GEF_SBC310=y |
| 185 | # CONFIG_GEF_SBC610 is not set | 192 | # CONFIG_GEF_SBC610 is not set |
| 186 | CONFIG_MPC8641=y | 193 | CONFIG_MPC8641=y |
| 194 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 187 | # CONFIG_IPIC is not set | 195 | # CONFIG_IPIC is not set |
| 188 | CONFIG_MPIC=y | 196 | CONFIG_MPIC=y |
| 189 | # CONFIG_MPIC_WEIRD is not set | 197 | # CONFIG_MPIC_WEIRD is not set |
| @@ -245,9 +253,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 245 | CONFIG_BOUNCE=y | 253 | CONFIG_BOUNCE=y |
| 246 | CONFIG_VIRT_TO_BUS=y | 254 | CONFIG_VIRT_TO_BUS=y |
| 247 | CONFIG_UNEVICTABLE_LRU=y | 255 | CONFIG_UNEVICTABLE_LRU=y |
| 256 | CONFIG_HAVE_MLOCK=y | ||
| 257 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 248 | CONFIG_PPC_4K_PAGES=y | 258 | CONFIG_PPC_4K_PAGES=y |
| 249 | # CONFIG_PPC_16K_PAGES is not set | 259 | # CONFIG_PPC_16K_PAGES is not set |
| 250 | # CONFIG_PPC_64K_PAGES is not set | 260 | # CONFIG_PPC_64K_PAGES is not set |
| 261 | # CONFIG_PPC_256K_PAGES is not set | ||
| 251 | CONFIG_FORCE_MAX_ZONEORDER=11 | 262 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 252 | # CONFIG_PROC_DEVICETREE is not set | 263 | # CONFIG_PROC_DEVICETREE is not set |
| 253 | # CONFIG_CMDLINE_BOOL is not set | 264 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -275,6 +286,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 275 | CONFIG_PCI_MSI=y | 286 | CONFIG_PCI_MSI=y |
| 276 | # CONFIG_PCI_LEGACY is not set | 287 | # CONFIG_PCI_LEGACY is not set |
| 277 | # CONFIG_PCI_STUB is not set | 288 | # CONFIG_PCI_STUB is not set |
| 289 | # CONFIG_PCI_IOV is not set | ||
| 278 | # CONFIG_PCCARD is not set | 290 | # CONFIG_PCCARD is not set |
| 279 | # CONFIG_HOTPLUG_PCI is not set | 291 | # CONFIG_HOTPLUG_PCI is not set |
| 280 | # CONFIG_HAS_RAPIDIO is not set | 292 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -288,7 +300,6 @@ CONFIG_PCI_MSI=y | |||
| 288 | # Default settings for advanced configuration options are used | 300 | # Default settings for advanced configuration options are used |
| 289 | # | 301 | # |
| 290 | CONFIG_LOWMEM_SIZE=0x30000000 | 302 | CONFIG_LOWMEM_SIZE=0x30000000 |
| 291 | CONFIG_LOWMEM_CAM_NUM=3 | ||
| 292 | CONFIG_PAGE_OFFSET=0xc0000000 | 303 | CONFIG_PAGE_OFFSET=0xc0000000 |
| 293 | CONFIG_KERNEL_START=0xc0000000 | 304 | CONFIG_KERNEL_START=0xc0000000 |
| 294 | CONFIG_PHYSICAL_START=0x00000000 | 305 | CONFIG_PHYSICAL_START=0x00000000 |
| @@ -298,7 +309,6 @@ CONFIG_NET=y | |||
| 298 | # | 309 | # |
| 299 | # Networking options | 310 | # Networking options |
| 300 | # | 311 | # |
| 301 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 302 | CONFIG_PACKET=y | 312 | CONFIG_PACKET=y |
| 303 | CONFIG_PACKET_MMAP=y | 313 | CONFIG_PACKET_MMAP=y |
| 304 | CONFIG_UNIX=y | 314 | CONFIG_UNIX=y |
| @@ -382,6 +392,7 @@ CONFIG_IPV6_TUNNEL=m | |||
| 382 | # CONFIG_LAPB is not set | 392 | # CONFIG_LAPB is not set |
| 383 | # CONFIG_ECONET is not set | 393 | # CONFIG_ECONET is not set |
| 384 | # CONFIG_WAN_ROUTER is not set | 394 | # CONFIG_WAN_ROUTER is not set |
| 395 | # CONFIG_PHONET is not set | ||
| 385 | # CONFIG_NET_SCHED is not set | 396 | # CONFIG_NET_SCHED is not set |
| 386 | # CONFIG_DCB is not set | 397 | # CONFIG_DCB is not set |
| 387 | 398 | ||
| @@ -394,7 +405,6 @@ CONFIG_NET_PKTGEN=m | |||
| 394 | # CONFIG_IRDA is not set | 405 | # CONFIG_IRDA is not set |
| 395 | # CONFIG_BT is not set | 406 | # CONFIG_BT is not set |
| 396 | # CONFIG_AF_RXRPC is not set | 407 | # CONFIG_AF_RXRPC is not set |
| 397 | # CONFIG_PHONET is not set | ||
| 398 | CONFIG_FIB_RULES=y | 408 | CONFIG_FIB_RULES=y |
| 399 | # CONFIG_WIRELESS is not set | 409 | # CONFIG_WIRELESS is not set |
| 400 | # CONFIG_WIMAX is not set | 410 | # CONFIG_WIMAX is not set |
| @@ -493,7 +503,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 493 | # LPDDR flash memory drivers | 503 | # LPDDR flash memory drivers |
| 494 | # | 504 | # |
| 495 | # CONFIG_MTD_LPDDR is not set | 505 | # CONFIG_MTD_LPDDR is not set |
| 496 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 497 | 506 | ||
| 498 | # | 507 | # |
| 499 | # UBI - Unsorted block images | 508 | # UBI - Unsorted block images |
| @@ -529,6 +538,7 @@ CONFIG_MISC_DEVICES=y | |||
| 529 | # CONFIG_ICS932S401 is not set | 538 | # CONFIG_ICS932S401 is not set |
| 530 | # CONFIG_ENCLOSURE_SERVICES is not set | 539 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 531 | # CONFIG_HP_ILO is not set | 540 | # CONFIG_HP_ILO is not set |
| 541 | # CONFIG_ISL29003 is not set | ||
| 532 | # CONFIG_C2PORT is not set | 542 | # CONFIG_C2PORT is not set |
| 533 | 543 | ||
| 534 | # | 544 | # |
| @@ -594,9 +604,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 594 | # CONFIG_MEGARAID_NEWGEN is not set | 604 | # CONFIG_MEGARAID_NEWGEN is not set |
| 595 | # CONFIG_MEGARAID_LEGACY is not set | 605 | # CONFIG_MEGARAID_LEGACY is not set |
| 596 | # CONFIG_MEGARAID_SAS is not set | 606 | # CONFIG_MEGARAID_SAS is not set |
| 607 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 597 | # CONFIG_SCSI_HPTIOP is not set | 608 | # CONFIG_SCSI_HPTIOP is not set |
| 598 | # CONFIG_SCSI_BUSLOGIC is not set | 609 | # CONFIG_SCSI_BUSLOGIC is not set |
| 599 | # CONFIG_LIBFC is not set | 610 | # CONFIG_LIBFC is not set |
| 611 | # CONFIG_LIBFCOE is not set | ||
| 600 | # CONFIG_FCOE is not set | 612 | # CONFIG_FCOE is not set |
| 601 | # CONFIG_SCSI_DMX3191D is not set | 613 | # CONFIG_SCSI_DMX3191D is not set |
| 602 | # CONFIG_SCSI_EATA is not set | 614 | # CONFIG_SCSI_EATA is not set |
| @@ -619,6 +631,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 619 | # CONFIG_SCSI_DEBUG is not set | 631 | # CONFIG_SCSI_DEBUG is not set |
| 620 | # CONFIG_SCSI_SRP is not set | 632 | # CONFIG_SCSI_SRP is not set |
| 621 | # CONFIG_SCSI_DH is not set | 633 | # CONFIG_SCSI_DH is not set |
| 634 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 622 | CONFIG_ATA=y | 635 | CONFIG_ATA=y |
| 623 | # CONFIG_ATA_NONSTANDARD is not set | 636 | # CONFIG_ATA_NONSTANDARD is not set |
| 624 | CONFIG_SATA_PMP=y | 637 | CONFIG_SATA_PMP=y |
| @@ -641,6 +654,7 @@ CONFIG_SATA_SIL24=y | |||
| 641 | # CONFIG_I2O is not set | 654 | # CONFIG_I2O is not set |
| 642 | # CONFIG_MACINTOSH_DRIVERS is not set | 655 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 643 | CONFIG_NETDEVICES=y | 656 | CONFIG_NETDEVICES=y |
| 657 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 644 | CONFIG_DUMMY=m | 658 | CONFIG_DUMMY=m |
| 645 | CONFIG_BONDING=m | 659 | CONFIG_BONDING=m |
| 646 | # CONFIG_MACVLAN is not set | 660 | # CONFIG_MACVLAN is not set |
| @@ -674,6 +688,8 @@ CONFIG_MII=y | |||
| 674 | # CONFIG_SUNGEM is not set | 688 | # CONFIG_SUNGEM is not set |
| 675 | # CONFIG_CASSINI is not set | 689 | # CONFIG_CASSINI is not set |
| 676 | # CONFIG_NET_VENDOR_3COM is not set | 690 | # CONFIG_NET_VENDOR_3COM is not set |
| 691 | # CONFIG_ETHOC is not set | ||
| 692 | # CONFIG_DNET is not set | ||
| 677 | # CONFIG_NET_TULIP is not set | 693 | # CONFIG_NET_TULIP is not set |
| 678 | # CONFIG_HP100 is not set | 694 | # CONFIG_HP100 is not set |
| 679 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 695 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -693,6 +709,7 @@ CONFIG_NETDEV_1000=y | |||
| 693 | # CONFIG_E1000E is not set | 709 | # CONFIG_E1000E is not set |
| 694 | # CONFIG_IP1000 is not set | 710 | # CONFIG_IP1000 is not set |
| 695 | # CONFIG_IGB is not set | 711 | # CONFIG_IGB is not set |
| 712 | # CONFIG_IGBVF is not set | ||
| 696 | # CONFIG_NS83820 is not set | 713 | # CONFIG_NS83820 is not set |
| 697 | # CONFIG_HAMACHI is not set | 714 | # CONFIG_HAMACHI is not set |
| 698 | # CONFIG_YELLOWFIN is not set | 715 | # CONFIG_YELLOWFIN is not set |
| @@ -703,11 +720,12 @@ CONFIG_NETDEV_1000=y | |||
| 703 | # CONFIG_VIA_VELOCITY is not set | 720 | # CONFIG_VIA_VELOCITY is not set |
| 704 | # CONFIG_TIGON3 is not set | 721 | # CONFIG_TIGON3 is not set |
| 705 | # CONFIG_BNX2 is not set | 722 | # CONFIG_BNX2 is not set |
| 723 | CONFIG_FSL_PQ_MDIO=y | ||
| 706 | CONFIG_GIANFAR=y | 724 | CONFIG_GIANFAR=y |
| 707 | # CONFIG_MV643XX_ETH is not set | ||
| 708 | # CONFIG_QLA3XXX is not set | 725 | # CONFIG_QLA3XXX is not set |
| 709 | # CONFIG_ATL1 is not set | 726 | # CONFIG_ATL1 is not set |
| 710 | # CONFIG_ATL1E is not set | 727 | # CONFIG_ATL1E is not set |
| 728 | # CONFIG_ATL1C is not set | ||
| 711 | # CONFIG_JME is not set | 729 | # CONFIG_JME is not set |
| 712 | # CONFIG_NETDEV_10000 is not set | 730 | # CONFIG_NETDEV_10000 is not set |
| 713 | # CONFIG_TR is not set | 731 | # CONFIG_TR is not set |
| @@ -717,7 +735,6 @@ CONFIG_GIANFAR=y | |||
| 717 | # | 735 | # |
| 718 | # CONFIG_WLAN_PRE80211 is not set | 736 | # CONFIG_WLAN_PRE80211 is not set |
| 719 | # CONFIG_WLAN_80211 is not set | 737 | # CONFIG_WLAN_80211 is not set |
| 720 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 721 | 738 | ||
| 722 | # | 739 | # |
| 723 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 740 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -828,6 +845,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 828 | # CONFIG_HVC_UDBG is not set | 845 | # CONFIG_HVC_UDBG is not set |
| 829 | # CONFIG_IPMI_HANDLER is not set | 846 | # CONFIG_IPMI_HANDLER is not set |
| 830 | CONFIG_HW_RANDOM=y | 847 | CONFIG_HW_RANDOM=y |
| 848 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 831 | CONFIG_NVRAM=y | 849 | CONFIG_NVRAM=y |
| 832 | # CONFIG_R3964 is not set | 850 | # CONFIG_R3964 is not set |
| 833 | # CONFIG_APPLICOM is not set | 851 | # CONFIG_APPLICOM is not set |
| @@ -894,7 +912,6 @@ CONFIG_DS1682=y | |||
| 894 | # CONFIG_SENSORS_PCF8574 is not set | 912 | # CONFIG_SENSORS_PCF8574 is not set |
| 895 | # CONFIG_PCF8575 is not set | 913 | # CONFIG_PCF8575 is not set |
| 896 | # CONFIG_SENSORS_PCA9539 is not set | 914 | # CONFIG_SENSORS_PCA9539 is not set |
| 897 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 898 | # CONFIG_SENSORS_MAX6875 is not set | 915 | # CONFIG_SENSORS_MAX6875 is not set |
| 899 | # CONFIG_SENSORS_TSL2550 is not set | 916 | # CONFIG_SENSORS_TSL2550 is not set |
| 900 | # CONFIG_I2C_DEBUG_CORE is not set | 917 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -949,6 +966,7 @@ CONFIG_HWMON=y | |||
| 949 | # CONFIG_SENSORS_F71805F is not set | 966 | # CONFIG_SENSORS_F71805F is not set |
| 950 | # CONFIG_SENSORS_F71882FG is not set | 967 | # CONFIG_SENSORS_F71882FG is not set |
| 951 | # CONFIG_SENSORS_F75375S is not set | 968 | # CONFIG_SENSORS_F75375S is not set |
| 969 | # CONFIG_SENSORS_G760A is not set | ||
| 952 | # CONFIG_SENSORS_GL518SM is not set | 970 | # CONFIG_SENSORS_GL518SM is not set |
| 953 | # CONFIG_SENSORS_GL520SM is not set | 971 | # CONFIG_SENSORS_GL520SM is not set |
| 954 | # CONFIG_SENSORS_IT87 is not set | 972 | # CONFIG_SENSORS_IT87 is not set |
| @@ -963,11 +981,15 @@ CONFIG_HWMON=y | |||
| 963 | CONFIG_SENSORS_LM90=y | 981 | CONFIG_SENSORS_LM90=y |
| 964 | CONFIG_SENSORS_LM92=y | 982 | CONFIG_SENSORS_LM92=y |
| 965 | # CONFIG_SENSORS_LM93 is not set | 983 | # CONFIG_SENSORS_LM93 is not set |
| 984 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 966 | # CONFIG_SENSORS_LTC4245 is not set | 985 | # CONFIG_SENSORS_LTC4245 is not set |
| 986 | # CONFIG_SENSORS_LM95241 is not set | ||
| 967 | # CONFIG_SENSORS_MAX1619 is not set | 987 | # CONFIG_SENSORS_MAX1619 is not set |
| 968 | # CONFIG_SENSORS_MAX6650 is not set | 988 | # CONFIG_SENSORS_MAX6650 is not set |
| 969 | # CONFIG_SENSORS_PC87360 is not set | 989 | # CONFIG_SENSORS_PC87360 is not set |
| 970 | # CONFIG_SENSORS_PC87427 is not set | 990 | # CONFIG_SENSORS_PC87427 is not set |
| 991 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 992 | # CONFIG_SENSORS_SHT15 is not set | ||
| 971 | # CONFIG_SENSORS_SIS5595 is not set | 993 | # CONFIG_SENSORS_SIS5595 is not set |
| 972 | # CONFIG_SENSORS_DME1737 is not set | 994 | # CONFIG_SENSORS_DME1737 is not set |
| 973 | # CONFIG_SENSORS_SMSC47M1 is not set | 995 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -1086,15 +1108,17 @@ CONFIG_USB_HID=y | |||
| 1086 | # | 1108 | # |
| 1087 | # Special HID drivers | 1109 | # Special HID drivers |
| 1088 | # | 1110 | # |
| 1089 | CONFIG_HID_COMPAT=y | ||
| 1090 | CONFIG_HID_A4TECH=y | 1111 | CONFIG_HID_A4TECH=y |
| 1091 | CONFIG_HID_APPLE=y | 1112 | CONFIG_HID_APPLE=y |
| 1092 | CONFIG_HID_BELKIN=y | 1113 | CONFIG_HID_BELKIN=y |
| 1093 | CONFIG_HID_CHERRY=y | 1114 | CONFIG_HID_CHERRY=y |
| 1094 | CONFIG_HID_CHICONY=y | 1115 | CONFIG_HID_CHICONY=y |
| 1095 | CONFIG_HID_CYPRESS=y | 1116 | CONFIG_HID_CYPRESS=y |
| 1117 | # CONFIG_DRAGONRISE_FF is not set | ||
| 1096 | CONFIG_HID_EZKEY=y | 1118 | CONFIG_HID_EZKEY=y |
| 1119 | # CONFIG_HID_KYE is not set | ||
| 1097 | CONFIG_HID_GYRATION=y | 1120 | CONFIG_HID_GYRATION=y |
| 1121 | # CONFIG_HID_KENSINGTON is not set | ||
| 1098 | CONFIG_HID_LOGITECH=y | 1122 | CONFIG_HID_LOGITECH=y |
| 1099 | # CONFIG_LOGITECH_FF is not set | 1123 | # CONFIG_LOGITECH_FF is not set |
| 1100 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1124 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
| @@ -1164,11 +1188,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1164 | # CONFIG_USB_TMC is not set | 1188 | # CONFIG_USB_TMC is not set |
| 1165 | 1189 | ||
| 1166 | # | 1190 | # |
| 1167 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1191 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1168 | # | 1192 | # |
| 1169 | 1193 | ||
| 1170 | # | 1194 | # |
| 1171 | # see USB_STORAGE Help for more information | 1195 | # also be needed; see USB_STORAGE Help for more info |
| 1172 | # | 1196 | # |
| 1173 | CONFIG_USB_STORAGE=y | 1197 | CONFIG_USB_STORAGE=y |
| 1174 | # CONFIG_USB_STORAGE_DEBUG is not set | 1198 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1210,7 +1234,6 @@ CONFIG_USB_STORAGE=y | |||
| 1210 | # CONFIG_USB_LED is not set | 1234 | # CONFIG_USB_LED is not set |
| 1211 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1235 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1212 | # CONFIG_USB_CYTHERM is not set | 1236 | # CONFIG_USB_CYTHERM is not set |
| 1213 | # CONFIG_USB_PHIDGET is not set | ||
| 1214 | # CONFIG_USB_IDMOUSE is not set | 1237 | # CONFIG_USB_IDMOUSE is not set |
| 1215 | # CONFIG_USB_FTDI_ELAN is not set | 1238 | # CONFIG_USB_FTDI_ELAN is not set |
| 1216 | # CONFIG_USB_APPLEDISPLAY is not set | 1239 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1226,6 +1249,7 @@ CONFIG_USB_STORAGE=y | |||
| 1226 | # OTG and related infrastructure | 1249 | # OTG and related infrastructure |
| 1227 | # | 1250 | # |
| 1228 | # CONFIG_USB_GPIO_VBUS is not set | 1251 | # CONFIG_USB_GPIO_VBUS is not set |
| 1252 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1229 | # CONFIG_UWB is not set | 1253 | # CONFIG_UWB is not set |
| 1230 | # CONFIG_MMC is not set | 1254 | # CONFIG_MMC is not set |
| 1231 | # CONFIG_MEMSTICK is not set | 1255 | # CONFIG_MEMSTICK is not set |
| @@ -1287,8 +1311,9 @@ CONFIG_RTC_DRV_RX8581=y | |||
| 1287 | # | 1311 | # |
| 1288 | # on-CPU RTC drivers | 1312 | # on-CPU RTC drivers |
| 1289 | # | 1313 | # |
| 1290 | # CONFIG_RTC_DRV_PPC is not set | 1314 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1291 | # CONFIG_DMADEVICES is not set | 1315 | # CONFIG_DMADEVICES is not set |
| 1316 | # CONFIG_AUXDISPLAY is not set | ||
| 1292 | # CONFIG_UIO is not set | 1317 | # CONFIG_UIO is not set |
| 1293 | # CONFIG_STAGING is not set | 1318 | # CONFIG_STAGING is not set |
| 1294 | 1319 | ||
| @@ -1301,6 +1326,7 @@ CONFIG_EXT2_FS_POSIX_ACL=y | |||
| 1301 | # CONFIG_EXT2_FS_SECURITY is not set | 1326 | # CONFIG_EXT2_FS_SECURITY is not set |
| 1302 | # CONFIG_EXT2_FS_XIP is not set | 1327 | # CONFIG_EXT2_FS_XIP is not set |
| 1303 | CONFIG_EXT3_FS=y | 1328 | CONFIG_EXT3_FS=y |
| 1329 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1304 | CONFIG_EXT3_FS_XATTR=y | 1330 | CONFIG_EXT3_FS_XATTR=y |
| 1305 | CONFIG_EXT3_FS_POSIX_ACL=y | 1331 | CONFIG_EXT3_FS_POSIX_ACL=y |
| 1306 | # CONFIG_EXT3_FS_SECURITY is not set | 1332 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1323,6 +1349,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1323 | # CONFIG_FUSE_FS is not set | 1349 | # CONFIG_FUSE_FS is not set |
| 1324 | 1350 | ||
| 1325 | # | 1351 | # |
| 1352 | # Caches | ||
| 1353 | # | ||
| 1354 | # CONFIG_FSCACHE is not set | ||
| 1355 | |||
| 1356 | # | ||
| 1326 | # CD-ROM/DVD Filesystems | 1357 | # CD-ROM/DVD Filesystems |
| 1327 | # | 1358 | # |
| 1328 | CONFIG_ISO9660_FS=y | 1359 | CONFIG_ISO9660_FS=y |
| @@ -1382,6 +1413,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1382 | # CONFIG_ROMFS_FS is not set | 1413 | # CONFIG_ROMFS_FS is not set |
| 1383 | # CONFIG_SYSV_FS is not set | 1414 | # CONFIG_SYSV_FS is not set |
| 1384 | # CONFIG_UFS_FS is not set | 1415 | # CONFIG_UFS_FS is not set |
| 1416 | # CONFIG_NILFS2_FS is not set | ||
| 1385 | CONFIG_NETWORK_FILESYSTEMS=y | 1417 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1386 | CONFIG_NFS_FS=y | 1418 | CONFIG_NFS_FS=y |
| 1387 | CONFIG_NFS_V3=y | 1419 | CONFIG_NFS_V3=y |
| @@ -1394,7 +1426,6 @@ CONFIG_LOCKD_V4=y | |||
| 1394 | CONFIG_NFS_COMMON=y | 1426 | CONFIG_NFS_COMMON=y |
| 1395 | CONFIG_SUNRPC=y | 1427 | CONFIG_SUNRPC=y |
| 1396 | CONFIG_SUNRPC_GSS=y | 1428 | CONFIG_SUNRPC_GSS=y |
| 1397 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1398 | CONFIG_RPCSEC_GSS_KRB5=y | 1429 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1399 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1430 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1400 | # CONFIG_SMB_FS is not set | 1431 | # CONFIG_SMB_FS is not set |
| @@ -1455,6 +1486,7 @@ CONFIG_NLS_KOI8_R=m | |||
| 1455 | CONFIG_NLS_KOI8_U=m | 1486 | CONFIG_NLS_KOI8_U=m |
| 1456 | CONFIG_NLS_UTF8=m | 1487 | CONFIG_NLS_UTF8=m |
| 1457 | # CONFIG_DLM is not set | 1488 | # CONFIG_DLM is not set |
| 1489 | # CONFIG_BINARY_PRINTF is not set | ||
| 1458 | 1490 | ||
| 1459 | # | 1491 | # |
| 1460 | # Library routines | 1492 | # Library routines |
| @@ -1470,11 +1502,12 @@ CONFIG_CRC32=y | |||
| 1470 | CONFIG_LIBCRC32C=y | 1502 | CONFIG_LIBCRC32C=y |
| 1471 | CONFIG_ZLIB_INFLATE=y | 1503 | CONFIG_ZLIB_INFLATE=y |
| 1472 | CONFIG_ZLIB_DEFLATE=y | 1504 | CONFIG_ZLIB_DEFLATE=y |
| 1473 | CONFIG_PLIST=y | 1505 | CONFIG_DECOMPRESS_GZIP=y |
| 1474 | CONFIG_HAS_IOMEM=y | 1506 | CONFIG_HAS_IOMEM=y |
| 1475 | CONFIG_HAS_IOPORT=y | 1507 | CONFIG_HAS_IOPORT=y |
| 1476 | CONFIG_HAS_DMA=y | 1508 | CONFIG_HAS_DMA=y |
| 1477 | CONFIG_HAVE_LMB=y | 1509 | CONFIG_HAVE_LMB=y |
| 1510 | CONFIG_NLATTR=y | ||
| 1478 | 1511 | ||
| 1479 | # | 1512 | # |
| 1480 | # Kernel hacking | 1513 | # Kernel hacking |
| @@ -1494,13 +1527,25 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 1494 | # CONFIG_LATENCYTOP is not set | 1527 | # CONFIG_LATENCYTOP is not set |
| 1495 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1528 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1496 | CONFIG_HAVE_FUNCTION_TRACER=y | 1529 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1530 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1497 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1531 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1498 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1532 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1533 | CONFIG_TRACING_SUPPORT=y | ||
| 1499 | 1534 | ||
| 1500 | # | 1535 | # |
| 1501 | # Tracers | 1536 | # Tracers |
| 1502 | # | 1537 | # |
| 1503 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1538 | # CONFIG_FUNCTION_TRACER is not set |
| 1539 | # CONFIG_PREEMPT_TRACER is not set | ||
| 1540 | # CONFIG_SCHED_TRACER is not set | ||
| 1541 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1542 | # CONFIG_EVENT_TRACER is not set | ||
| 1543 | # CONFIG_BOOT_TRACER is not set | ||
| 1544 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1545 | # CONFIG_STACK_TRACER is not set | ||
| 1546 | # CONFIG_KMEMTRACE is not set | ||
| 1547 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1548 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1504 | # CONFIG_SAMPLES is not set | 1549 | # CONFIG_SAMPLES is not set |
| 1505 | CONFIG_HAVE_ARCH_KGDB=y | 1550 | CONFIG_HAVE_ARCH_KGDB=y |
| 1506 | CONFIG_PRINT_STACK_DEPTH=64 | 1551 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1530,10 +1575,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1530 | CONFIG_CRYPTO_HASH=y | 1575 | CONFIG_CRYPTO_HASH=y |
| 1531 | CONFIG_CRYPTO_HASH2=y | 1576 | CONFIG_CRYPTO_HASH2=y |
| 1532 | CONFIG_CRYPTO_RNG2=y | 1577 | CONFIG_CRYPTO_RNG2=y |
| 1578 | CONFIG_CRYPTO_PCOMP=y | ||
| 1533 | CONFIG_CRYPTO_MANAGER=y | 1579 | CONFIG_CRYPTO_MANAGER=y |
| 1534 | CONFIG_CRYPTO_MANAGER2=y | 1580 | CONFIG_CRYPTO_MANAGER2=y |
| 1535 | # CONFIG_CRYPTO_GF128MUL is not set | 1581 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1536 | # CONFIG_CRYPTO_NULL is not set | 1582 | # CONFIG_CRYPTO_NULL is not set |
| 1583 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1537 | # CONFIG_CRYPTO_CRYPTD is not set | 1584 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1538 | CONFIG_CRYPTO_AUTHENC=m | 1585 | CONFIG_CRYPTO_AUTHENC=m |
| 1539 | # CONFIG_CRYPTO_TEST is not set | 1586 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1602,6 +1649,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1602 | # Compression | 1649 | # Compression |
| 1603 | # | 1650 | # |
| 1604 | CONFIG_CRYPTO_DEFLATE=m | 1651 | CONFIG_CRYPTO_DEFLATE=m |
| 1652 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1605 | # CONFIG_CRYPTO_LZO is not set | 1653 | # CONFIG_CRYPTO_LZO is not set |
| 1606 | 1654 | ||
| 1607 | # | 1655 | # |
diff --git a/arch/powerpc/configs/86xx/gef_sbc610_defconfig b/arch/powerpc/configs/86xx/gef_sbc610_defconfig index 1ab5abae00a2..c6a7fc82b69a 100644 --- a/arch/powerpc/configs/86xx/gef_sbc610_defconfig +++ b/arch/powerpc/configs/86xx/gef_sbc610_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:26 2009 | 4 | # Wed May 13 17:22:30 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_PHYS_64BIT is not set | 19 | # CONFIG_PHYS_64BIT is not set |
| 19 | CONFIG_ALTIVEC=y | 20 | CONFIG_ALTIVEC=y |
| @@ -58,6 +59,7 @@ CONFIG_GENERIC_BUG=y | |||
| 58 | CONFIG_DEFAULT_UIMAGE=y | 59 | CONFIG_DEFAULT_UIMAGE=y |
| 59 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 60 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 62 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 62 | 64 | ||
| 63 | # | 65 | # |
| @@ -72,10 +74,20 @@ CONFIG_SWAP=y | |||
| 72 | CONFIG_SYSVIPC=y | 74 | CONFIG_SYSVIPC=y |
| 73 | CONFIG_SYSVIPC_SYSCTL=y | 75 | CONFIG_SYSVIPC_SYSCTL=y |
| 74 | CONFIG_POSIX_MQUEUE=y | 76 | CONFIG_POSIX_MQUEUE=y |
| 77 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 75 | CONFIG_BSD_PROCESS_ACCT=y | 78 | CONFIG_BSD_PROCESS_ACCT=y |
| 76 | CONFIG_BSD_PROCESS_ACCT_V3=y | 79 | CONFIG_BSD_PROCESS_ACCT_V3=y |
| 77 | # CONFIG_TASKSTATS is not set | 80 | # CONFIG_TASKSTATS is not set |
| 78 | # CONFIG_AUDIT is not set | 81 | # CONFIG_AUDIT is not set |
| 82 | |||
| 83 | # | ||
| 84 | # RCU Subsystem | ||
| 85 | # | ||
| 86 | CONFIG_CLASSIC_RCU=y | ||
| 87 | # CONFIG_TREE_RCU is not set | ||
| 88 | # CONFIG_PREEMPT_RCU is not set | ||
| 89 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 90 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 79 | CONFIG_IKCONFIG=y | 91 | CONFIG_IKCONFIG=y |
| 80 | CONFIG_IKCONFIG_PROC=y | 92 | CONFIG_IKCONFIG_PROC=y |
| 81 | CONFIG_LOG_BUF_SHIFT=14 | 93 | CONFIG_LOG_BUF_SHIFT=14 |
| @@ -91,21 +103,24 @@ CONFIG_RELAY=y | |||
| 91 | # CONFIG_NAMESPACES is not set | 103 | # CONFIG_NAMESPACES is not set |
| 92 | CONFIG_BLK_DEV_INITRD=y | 104 | CONFIG_BLK_DEV_INITRD=y |
| 93 | CONFIG_INITRAMFS_SOURCE="" | 105 | CONFIG_INITRAMFS_SOURCE="" |
| 106 | CONFIG_RD_GZIP=y | ||
| 107 | # CONFIG_RD_BZIP2 is not set | ||
| 108 | # CONFIG_RD_LZMA is not set | ||
| 94 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 109 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 95 | CONFIG_SYSCTL=y | 110 | CONFIG_SYSCTL=y |
| 111 | CONFIG_ANON_INODES=y | ||
| 96 | CONFIG_EMBEDDED=y | 112 | CONFIG_EMBEDDED=y |
| 97 | CONFIG_SYSCTL_SYSCALL=y | 113 | CONFIG_SYSCTL_SYSCALL=y |
| 98 | CONFIG_KALLSYMS=y | 114 | CONFIG_KALLSYMS=y |
| 99 | # CONFIG_KALLSYMS_ALL is not set | 115 | # CONFIG_KALLSYMS_ALL is not set |
| 100 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 116 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 117 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 101 | CONFIG_HOTPLUG=y | 118 | CONFIG_HOTPLUG=y |
| 102 | CONFIG_PRINTK=y | 119 | CONFIG_PRINTK=y |
| 103 | CONFIG_BUG=y | 120 | CONFIG_BUG=y |
| 104 | CONFIG_ELF_CORE=y | 121 | CONFIG_ELF_CORE=y |
| 105 | CONFIG_COMPAT_BRK=y | ||
| 106 | CONFIG_BASE_FULL=y | 122 | CONFIG_BASE_FULL=y |
| 107 | CONFIG_FUTEX=y | 123 | CONFIG_FUTEX=y |
| 108 | CONFIG_ANON_INODES=y | ||
| 109 | CONFIG_EPOLL=y | 124 | CONFIG_EPOLL=y |
| 110 | CONFIG_SIGNALFD=y | 125 | CONFIG_SIGNALFD=y |
| 111 | CONFIG_TIMERFD=y | 126 | CONFIG_TIMERFD=y |
| @@ -114,10 +129,12 @@ CONFIG_SHMEM=y | |||
| 114 | CONFIG_AIO=y | 129 | CONFIG_AIO=y |
| 115 | CONFIG_VM_EVENT_COUNTERS=y | 130 | CONFIG_VM_EVENT_COUNTERS=y |
| 116 | CONFIG_PCI_QUIRKS=y | 131 | CONFIG_PCI_QUIRKS=y |
| 132 | CONFIG_COMPAT_BRK=y | ||
| 117 | CONFIG_SLAB=y | 133 | CONFIG_SLAB=y |
| 118 | # CONFIG_SLUB is not set | 134 | # CONFIG_SLUB is not set |
| 119 | # CONFIG_SLOB is not set | 135 | # CONFIG_SLOB is not set |
| 120 | # CONFIG_PROFILING is not set | 136 | # CONFIG_PROFILING is not set |
| 137 | # CONFIG_MARKERS is not set | ||
| 121 | CONFIG_HAVE_OPROFILE=y | 138 | CONFIG_HAVE_OPROFILE=y |
| 122 | # CONFIG_KPROBES is not set | 139 | # CONFIG_KPROBES is not set |
| 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 140 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -126,6 +143,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 126 | CONFIG_HAVE_KRETPROBES=y | 143 | CONFIG_HAVE_KRETPROBES=y |
| 127 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 144 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 128 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 145 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
| 146 | # CONFIG_SLOW_WORK is not set | ||
| 129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 147 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 130 | CONFIG_SLABINFO=y | 148 | CONFIG_SLABINFO=y |
| 131 | CONFIG_RT_MUTEXES=y | 149 | CONFIG_RT_MUTEXES=y |
| @@ -139,7 +157,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 139 | CONFIG_STOP_MACHINE=y | 157 | CONFIG_STOP_MACHINE=y |
| 140 | CONFIG_BLOCK=y | 158 | CONFIG_BLOCK=y |
| 141 | # CONFIG_LBD is not set | 159 | # CONFIG_LBD is not set |
| 142 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 143 | # CONFIG_BLK_DEV_BSG is not set | 160 | # CONFIG_BLK_DEV_BSG is not set |
| 144 | # CONFIG_BLK_DEV_INTEGRITY is not set | 161 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 145 | 162 | ||
| @@ -155,18 +172,11 @@ CONFIG_IOSCHED_CFQ=y | |||
| 155 | CONFIG_DEFAULT_CFQ=y | 172 | CONFIG_DEFAULT_CFQ=y |
| 156 | # CONFIG_DEFAULT_NOOP is not set | 173 | # CONFIG_DEFAULT_NOOP is not set |
| 157 | CONFIG_DEFAULT_IOSCHED="cfq" | 174 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 158 | CONFIG_CLASSIC_RCU=y | ||
| 159 | # CONFIG_TREE_RCU is not set | ||
| 160 | # CONFIG_PREEMPT_RCU is not set | ||
| 161 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 162 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 163 | # CONFIG_FREEZER is not set | 175 | # CONFIG_FREEZER is not set |
| 164 | 176 | ||
| 165 | # | 177 | # |
| 166 | # Platform support | 178 | # Platform support |
| 167 | # | 179 | # |
| 168 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 169 | CONFIG_CLASSIC32=y | ||
| 170 | # CONFIG_PPC_CHRP is not set | 180 | # CONFIG_PPC_CHRP is not set |
| 171 | # CONFIG_MPC5121_ADS is not set | 181 | # CONFIG_MPC5121_ADS is not set |
| 172 | # CONFIG_MPC5121_GENERIC is not set | 182 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -181,8 +191,11 @@ CONFIG_PPC_86xx=y | |||
| 181 | # CONFIG_MPC8641_HPCN is not set | 191 | # CONFIG_MPC8641_HPCN is not set |
| 182 | # CONFIG_SBC8641D is not set | 192 | # CONFIG_SBC8641D is not set |
| 183 | # CONFIG_MPC8610_HPCD is not set | 193 | # CONFIG_MPC8610_HPCD is not set |
| 194 | # CONFIG_GEF_PPC9A is not set | ||
| 195 | # CONFIG_GEF_SBC310 is not set | ||
| 184 | CONFIG_GEF_SBC610=y | 196 | CONFIG_GEF_SBC610=y |
| 185 | CONFIG_MPC8641=y | 197 | CONFIG_MPC8641=y |
| 198 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 186 | # CONFIG_IPIC is not set | 199 | # CONFIG_IPIC is not set |
| 187 | CONFIG_MPIC=y | 200 | CONFIG_MPIC=y |
| 188 | # CONFIG_MPIC_WEIRD is not set | 201 | # CONFIG_MPIC_WEIRD is not set |
| @@ -244,9 +257,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 244 | CONFIG_BOUNCE=y | 257 | CONFIG_BOUNCE=y |
| 245 | CONFIG_VIRT_TO_BUS=y | 258 | CONFIG_VIRT_TO_BUS=y |
| 246 | CONFIG_UNEVICTABLE_LRU=y | 259 | CONFIG_UNEVICTABLE_LRU=y |
| 260 | CONFIG_HAVE_MLOCK=y | ||
| 261 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 247 | CONFIG_PPC_4K_PAGES=y | 262 | CONFIG_PPC_4K_PAGES=y |
| 248 | # CONFIG_PPC_16K_PAGES is not set | 263 | # CONFIG_PPC_16K_PAGES is not set |
| 249 | # CONFIG_PPC_64K_PAGES is not set | 264 | # CONFIG_PPC_64K_PAGES is not set |
| 265 | # CONFIG_PPC_256K_PAGES is not set | ||
| 250 | CONFIG_FORCE_MAX_ZONEORDER=11 | 266 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 251 | # CONFIG_PROC_DEVICETREE is not set | 267 | # CONFIG_PROC_DEVICETREE is not set |
| 252 | # CONFIG_CMDLINE_BOOL is not set | 268 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -275,6 +291,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 275 | # CONFIG_PCI_LEGACY is not set | 291 | # CONFIG_PCI_LEGACY is not set |
| 276 | CONFIG_PCI_DEBUG=y | 292 | CONFIG_PCI_DEBUG=y |
| 277 | # CONFIG_PCI_STUB is not set | 293 | # CONFIG_PCI_STUB is not set |
| 294 | # CONFIG_PCI_IOV is not set | ||
| 278 | # CONFIG_PCCARD is not set | 295 | # CONFIG_PCCARD is not set |
| 279 | # CONFIG_HOTPLUG_PCI is not set | 296 | # CONFIG_HOTPLUG_PCI is not set |
| 280 | CONFIG_HAS_RAPIDIO=y | 297 | CONFIG_HAS_RAPIDIO=y |
| @@ -298,7 +315,6 @@ CONFIG_NET=y | |||
| 298 | # | 315 | # |
| 299 | # Networking options | 316 | # Networking options |
| 300 | # | 317 | # |
| 301 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 302 | CONFIG_PACKET=y | 318 | CONFIG_PACKET=y |
| 303 | CONFIG_PACKET_MMAP=y | 319 | CONFIG_PACKET_MMAP=y |
| 304 | CONFIG_UNIX=y | 320 | CONFIG_UNIX=y |
| @@ -378,9 +394,11 @@ CONFIG_BRIDGE_NETFILTER=y | |||
| 378 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set | 394 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set |
| 379 | # CONFIG_NETFILTER_NETLINK_LOG is not set | 395 | # CONFIG_NETFILTER_NETLINK_LOG is not set |
| 380 | # CONFIG_NF_CONNTRACK is not set | 396 | # CONFIG_NF_CONNTRACK is not set |
| 397 | # CONFIG_NETFILTER_TPROXY is not set | ||
| 381 | CONFIG_NETFILTER_XTABLES=m | 398 | CONFIG_NETFILTER_XTABLES=m |
| 382 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set | 399 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set |
| 383 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | 400 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set |
| 401 | # CONFIG_NETFILTER_XT_TARGET_HL is not set | ||
| 384 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set | 402 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set |
| 385 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set | 403 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set |
| 386 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set | 404 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set |
| @@ -393,6 +411,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
| 393 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | 411 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set |
| 394 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set | 412 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set |
| 395 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set | 413 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set |
| 414 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
| 396 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | 415 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set |
| 397 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set | 416 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set |
| 398 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set | 417 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set |
| @@ -451,11 +470,11 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
| 451 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 470 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
| 452 | # CONFIG_IP6_NF_MATCH_MH is not set | 471 | # CONFIG_IP6_NF_MATCH_MH is not set |
| 453 | CONFIG_IP6_NF_MATCH_RT=m | 472 | CONFIG_IP6_NF_MATCH_RT=m |
| 473 | # CONFIG_IP6_NF_TARGET_HL is not set | ||
| 454 | CONFIG_IP6_NF_TARGET_LOG=m | 474 | CONFIG_IP6_NF_TARGET_LOG=m |
| 455 | CONFIG_IP6_NF_FILTER=m | 475 | CONFIG_IP6_NF_FILTER=m |
| 456 | # CONFIG_IP6_NF_TARGET_REJECT is not set | 476 | # CONFIG_IP6_NF_TARGET_REJECT is not set |
| 457 | CONFIG_IP6_NF_MANGLE=m | 477 | CONFIG_IP6_NF_MANGLE=m |
| 458 | # CONFIG_IP6_NF_TARGET_HL is not set | ||
| 459 | CONFIG_IP6_NF_RAW=m | 478 | CONFIG_IP6_NF_RAW=m |
| 460 | # CONFIG_IP6_NF_SECURITY is not set | 479 | # CONFIG_IP6_NF_SECURITY is not set |
| 461 | # CONFIG_BRIDGE_NF_EBTABLES is not set | 480 | # CONFIG_BRIDGE_NF_EBTABLES is not set |
| @@ -490,6 +509,7 @@ CONFIG_LLC=m | |||
| 490 | # CONFIG_LAPB is not set | 509 | # CONFIG_LAPB is not set |
| 491 | # CONFIG_ECONET is not set | 510 | # CONFIG_ECONET is not set |
| 492 | CONFIG_WAN_ROUTER=m | 511 | CONFIG_WAN_ROUTER=m |
| 512 | # CONFIG_PHONET is not set | ||
| 493 | CONFIG_NET_SCHED=y | 513 | CONFIG_NET_SCHED=y |
| 494 | 514 | ||
| 495 | # | 515 | # |
| @@ -540,7 +560,6 @@ CONFIG_NET_PKTGEN=m | |||
| 540 | # CONFIG_IRDA is not set | 560 | # CONFIG_IRDA is not set |
| 541 | # CONFIG_BT is not set | 561 | # CONFIG_BT is not set |
| 542 | # CONFIG_AF_RXRPC is not set | 562 | # CONFIG_AF_RXRPC is not set |
| 543 | # CONFIG_PHONET is not set | ||
| 544 | CONFIG_FIB_RULES=y | 563 | CONFIG_FIB_RULES=y |
| 545 | CONFIG_WIRELESS=y | 564 | CONFIG_WIRELESS=y |
| 546 | # CONFIG_CFG80211 is not set | 565 | # CONFIG_CFG80211 is not set |
| @@ -651,7 +670,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 651 | # LPDDR flash memory drivers | 670 | # LPDDR flash memory drivers |
| 652 | # | 671 | # |
| 653 | # CONFIG_MTD_LPDDR is not set | 672 | # CONFIG_MTD_LPDDR is not set |
| 654 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 655 | 673 | ||
| 656 | # | 674 | # |
| 657 | # UBI - Unsorted block images | 675 | # UBI - Unsorted block images |
| @@ -682,13 +700,20 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 682 | # CONFIG_BLK_DEV_HD is not set | 700 | # CONFIG_BLK_DEV_HD is not set |
| 683 | CONFIG_MISC_DEVICES=y | 701 | CONFIG_MISC_DEVICES=y |
| 684 | # CONFIG_PHANTOM is not set | 702 | # CONFIG_PHANTOM is not set |
| 685 | # CONFIG_EEPROM_93CX6 is not set | ||
| 686 | # CONFIG_SGI_IOC4 is not set | 703 | # CONFIG_SGI_IOC4 is not set |
| 687 | # CONFIG_TIFM_CORE is not set | 704 | # CONFIG_TIFM_CORE is not set |
| 688 | # CONFIG_ICS932S401 is not set | 705 | # CONFIG_ICS932S401 is not set |
| 689 | # CONFIG_ENCLOSURE_SERVICES is not set | 706 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 690 | # CONFIG_HP_ILO is not set | 707 | # CONFIG_HP_ILO is not set |
| 708 | # CONFIG_ISL29003 is not set | ||
| 691 | # CONFIG_C2PORT is not set | 709 | # CONFIG_C2PORT is not set |
| 710 | |||
| 711 | # | ||
| 712 | # EEPROM support | ||
| 713 | # | ||
| 714 | # CONFIG_EEPROM_AT24 is not set | ||
| 715 | # CONFIG_EEPROM_LEGACY is not set | ||
| 716 | # CONFIG_EEPROM_93CX6 is not set | ||
| 692 | CONFIG_HAVE_IDE=y | 717 | CONFIG_HAVE_IDE=y |
| 693 | # CONFIG_IDE is not set | 718 | # CONFIG_IDE is not set |
| 694 | 719 | ||
| @@ -746,9 +771,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 746 | # CONFIG_MEGARAID_NEWGEN is not set | 771 | # CONFIG_MEGARAID_NEWGEN is not set |
| 747 | # CONFIG_MEGARAID_LEGACY is not set | 772 | # CONFIG_MEGARAID_LEGACY is not set |
| 748 | # CONFIG_MEGARAID_SAS is not set | 773 | # CONFIG_MEGARAID_SAS is not set |
| 774 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 749 | # CONFIG_SCSI_HPTIOP is not set | 775 | # CONFIG_SCSI_HPTIOP is not set |
| 750 | # CONFIG_SCSI_BUSLOGIC is not set | 776 | # CONFIG_SCSI_BUSLOGIC is not set |
| 751 | # CONFIG_LIBFC is not set | 777 | # CONFIG_LIBFC is not set |
| 778 | # CONFIG_LIBFCOE is not set | ||
| 752 | # CONFIG_FCOE is not set | 779 | # CONFIG_FCOE is not set |
| 753 | # CONFIG_SCSI_DMX3191D is not set | 780 | # CONFIG_SCSI_DMX3191D is not set |
| 754 | # CONFIG_SCSI_EATA is not set | 781 | # CONFIG_SCSI_EATA is not set |
| @@ -771,6 +798,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 771 | # CONFIG_SCSI_DEBUG is not set | 798 | # CONFIG_SCSI_DEBUG is not set |
| 772 | # CONFIG_SCSI_SRP is not set | 799 | # CONFIG_SCSI_SRP is not set |
| 773 | # CONFIG_SCSI_DH is not set | 800 | # CONFIG_SCSI_DH is not set |
| 801 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 774 | CONFIG_ATA=y | 802 | CONFIG_ATA=y |
| 775 | # CONFIG_ATA_NONSTANDARD is not set | 803 | # CONFIG_ATA_NONSTANDARD is not set |
| 776 | CONFIG_SATA_PMP=y | 804 | CONFIG_SATA_PMP=y |
| @@ -847,6 +875,7 @@ CONFIG_SATA_SIL=y | |||
| 847 | # CONFIG_I2O is not set | 875 | # CONFIG_I2O is not set |
| 848 | # CONFIG_MACINTOSH_DRIVERS is not set | 876 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 849 | CONFIG_NETDEVICES=y | 877 | CONFIG_NETDEVICES=y |
| 878 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 850 | CONFIG_DUMMY=m | 879 | CONFIG_DUMMY=m |
| 851 | CONFIG_BONDING=m | 880 | CONFIG_BONDING=m |
| 852 | # CONFIG_MACVLAN is not set | 881 | # CONFIG_MACVLAN is not set |
| @@ -880,6 +909,8 @@ CONFIG_MII=y | |||
| 880 | # CONFIG_SUNGEM is not set | 909 | # CONFIG_SUNGEM is not set |
| 881 | # CONFIG_CASSINI is not set | 910 | # CONFIG_CASSINI is not set |
| 882 | # CONFIG_NET_VENDOR_3COM is not set | 911 | # CONFIG_NET_VENDOR_3COM is not set |
| 912 | # CONFIG_ETHOC is not set | ||
| 913 | # CONFIG_DNET is not set | ||
| 883 | # CONFIG_NET_TULIP is not set | 914 | # CONFIG_NET_TULIP is not set |
| 884 | # CONFIG_HP100 is not set | 915 | # CONFIG_HP100 is not set |
| 885 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 916 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -899,6 +930,7 @@ CONFIG_NETDEV_1000=y | |||
| 899 | # CONFIG_E1000E is not set | 930 | # CONFIG_E1000E is not set |
| 900 | # CONFIG_IP1000 is not set | 931 | # CONFIG_IP1000 is not set |
| 901 | # CONFIG_IGB is not set | 932 | # CONFIG_IGB is not set |
| 933 | # CONFIG_IGBVF is not set | ||
| 902 | # CONFIG_NS83820 is not set | 934 | # CONFIG_NS83820 is not set |
| 903 | # CONFIG_HAMACHI is not set | 935 | # CONFIG_HAMACHI is not set |
| 904 | # CONFIG_YELLOWFIN is not set | 936 | # CONFIG_YELLOWFIN is not set |
| @@ -909,11 +941,12 @@ CONFIG_NETDEV_1000=y | |||
| 909 | # CONFIG_VIA_VELOCITY is not set | 941 | # CONFIG_VIA_VELOCITY is not set |
| 910 | # CONFIG_TIGON3 is not set | 942 | # CONFIG_TIGON3 is not set |
| 911 | # CONFIG_BNX2 is not set | 943 | # CONFIG_BNX2 is not set |
| 944 | CONFIG_FSL_PQ_MDIO=y | ||
| 912 | CONFIG_GIANFAR=y | 945 | CONFIG_GIANFAR=y |
| 913 | # CONFIG_MV643XX_ETH is not set | ||
| 914 | # CONFIG_QLA3XXX is not set | 946 | # CONFIG_QLA3XXX is not set |
| 915 | # CONFIG_ATL1 is not set | 947 | # CONFIG_ATL1 is not set |
| 916 | # CONFIG_ATL1E is not set | 948 | # CONFIG_ATL1E is not set |
| 949 | # CONFIG_ATL1C is not set | ||
| 917 | # CONFIG_JME is not set | 950 | # CONFIG_JME is not set |
| 918 | # CONFIG_NETDEV_10000 is not set | 951 | # CONFIG_NETDEV_10000 is not set |
| 919 | # CONFIG_TR is not set | 952 | # CONFIG_TR is not set |
| @@ -923,7 +956,6 @@ CONFIG_GIANFAR=y | |||
| 923 | # | 956 | # |
| 924 | # CONFIG_WLAN_PRE80211 is not set | 957 | # CONFIG_WLAN_PRE80211 is not set |
| 925 | # CONFIG_WLAN_80211 is not set | 958 | # CONFIG_WLAN_80211 is not set |
| 926 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 927 | 959 | ||
| 928 | # | 960 | # |
| 929 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 961 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -1050,6 +1082,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 1050 | # CONFIG_HVC_UDBG is not set | 1082 | # CONFIG_HVC_UDBG is not set |
| 1051 | # CONFIG_IPMI_HANDLER is not set | 1083 | # CONFIG_IPMI_HANDLER is not set |
| 1052 | CONFIG_HW_RANDOM=y | 1084 | CONFIG_HW_RANDOM=y |
| 1085 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 1053 | # CONFIG_NVRAM is not set | 1086 | # CONFIG_NVRAM is not set |
| 1054 | # CONFIG_R3964 is not set | 1087 | # CONFIG_R3964 is not set |
| 1055 | # CONFIG_APPLICOM is not set | 1088 | # CONFIG_APPLICOM is not set |
| @@ -1113,12 +1146,9 @@ CONFIG_I2C_MPC=y | |||
| 1113 | # Miscellaneous I2C Chip support | 1146 | # Miscellaneous I2C Chip support |
| 1114 | # | 1147 | # |
| 1115 | CONFIG_DS1682=y | 1148 | CONFIG_DS1682=y |
| 1116 | # CONFIG_EEPROM_AT24 is not set | ||
| 1117 | # CONFIG_EEPROM_LEGACY is not set | ||
| 1118 | # CONFIG_SENSORS_PCF8574 is not set | 1149 | # CONFIG_SENSORS_PCF8574 is not set |
| 1119 | # CONFIG_PCF8575 is not set | 1150 | # CONFIG_PCF8575 is not set |
| 1120 | # CONFIG_SENSORS_PCA9539 is not set | 1151 | # CONFIG_SENSORS_PCA9539 is not set |
| 1121 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1122 | # CONFIG_SENSORS_MAX6875 is not set | 1152 | # CONFIG_SENSORS_MAX6875 is not set |
| 1123 | # CONFIG_SENSORS_TSL2550 is not set | 1153 | # CONFIG_SENSORS_TSL2550 is not set |
| 1124 | # CONFIG_I2C_DEBUG_CORE is not set | 1154 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -1174,6 +1204,7 @@ CONFIG_HWMON=y | |||
| 1174 | # CONFIG_SENSORS_F71805F is not set | 1204 | # CONFIG_SENSORS_F71805F is not set |
| 1175 | # CONFIG_SENSORS_F71882FG is not set | 1205 | # CONFIG_SENSORS_F71882FG is not set |
| 1176 | # CONFIG_SENSORS_F75375S is not set | 1206 | # CONFIG_SENSORS_F75375S is not set |
| 1207 | # CONFIG_SENSORS_G760A is not set | ||
| 1177 | # CONFIG_SENSORS_GL518SM is not set | 1208 | # CONFIG_SENSORS_GL518SM is not set |
| 1178 | # CONFIG_SENSORS_GL520SM is not set | 1209 | # CONFIG_SENSORS_GL520SM is not set |
| 1179 | # CONFIG_SENSORS_IT87 is not set | 1210 | # CONFIG_SENSORS_IT87 is not set |
| @@ -1188,11 +1219,15 @@ CONFIG_HWMON=y | |||
| 1188 | CONFIG_SENSORS_LM90=y | 1219 | CONFIG_SENSORS_LM90=y |
| 1189 | CONFIG_SENSORS_LM92=y | 1220 | CONFIG_SENSORS_LM92=y |
| 1190 | # CONFIG_SENSORS_LM93 is not set | 1221 | # CONFIG_SENSORS_LM93 is not set |
| 1222 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 1191 | # CONFIG_SENSORS_LTC4245 is not set | 1223 | # CONFIG_SENSORS_LTC4245 is not set |
| 1224 | # CONFIG_SENSORS_LM95241 is not set | ||
| 1192 | # CONFIG_SENSORS_MAX1619 is not set | 1225 | # CONFIG_SENSORS_MAX1619 is not set |
| 1193 | # CONFIG_SENSORS_MAX6650 is not set | 1226 | # CONFIG_SENSORS_MAX6650 is not set |
| 1194 | # CONFIG_SENSORS_PC87360 is not set | 1227 | # CONFIG_SENSORS_PC87360 is not set |
| 1195 | # CONFIG_SENSORS_PC87427 is not set | 1228 | # CONFIG_SENSORS_PC87427 is not set |
| 1229 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1230 | # CONFIG_SENSORS_SHT15 is not set | ||
| 1196 | # CONFIG_SENSORS_SIS5595 is not set | 1231 | # CONFIG_SENSORS_SIS5595 is not set |
| 1197 | # CONFIG_SENSORS_DME1737 is not set | 1232 | # CONFIG_SENSORS_DME1737 is not set |
| 1198 | # CONFIG_SENSORS_SMSC47M1 is not set | 1233 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -1311,15 +1346,17 @@ CONFIG_USB_HID=y | |||
| 1311 | # | 1346 | # |
| 1312 | # Special HID drivers | 1347 | # Special HID drivers |
| 1313 | # | 1348 | # |
| 1314 | CONFIG_HID_COMPAT=y | ||
| 1315 | CONFIG_HID_A4TECH=y | 1349 | CONFIG_HID_A4TECH=y |
| 1316 | CONFIG_HID_APPLE=y | 1350 | CONFIG_HID_APPLE=y |
| 1317 | CONFIG_HID_BELKIN=y | 1351 | CONFIG_HID_BELKIN=y |
| 1318 | CONFIG_HID_CHERRY=y | 1352 | CONFIG_HID_CHERRY=y |
| 1319 | CONFIG_HID_CHICONY=y | 1353 | CONFIG_HID_CHICONY=y |
| 1320 | CONFIG_HID_CYPRESS=y | 1354 | CONFIG_HID_CYPRESS=y |
| 1355 | # CONFIG_DRAGONRISE_FF is not set | ||
| 1321 | CONFIG_HID_EZKEY=y | 1356 | CONFIG_HID_EZKEY=y |
| 1357 | # CONFIG_HID_KYE is not set | ||
| 1322 | CONFIG_HID_GYRATION=y | 1358 | CONFIG_HID_GYRATION=y |
| 1359 | # CONFIG_HID_KENSINGTON is not set | ||
| 1323 | CONFIG_HID_LOGITECH=y | 1360 | CONFIG_HID_LOGITECH=y |
| 1324 | # CONFIG_LOGITECH_FF is not set | 1361 | # CONFIG_LOGITECH_FF is not set |
| 1325 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1362 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
| @@ -1389,11 +1426,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1389 | # CONFIG_USB_TMC is not set | 1426 | # CONFIG_USB_TMC is not set |
| 1390 | 1427 | ||
| 1391 | # | 1428 | # |
| 1392 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1429 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1393 | # | 1430 | # |
| 1394 | 1431 | ||
| 1395 | # | 1432 | # |
| 1396 | # see USB_STORAGE Help for more information | 1433 | # also be needed; see USB_STORAGE Help for more info |
| 1397 | # | 1434 | # |
| 1398 | CONFIG_USB_STORAGE=y | 1435 | CONFIG_USB_STORAGE=y |
| 1399 | # CONFIG_USB_STORAGE_DEBUG is not set | 1436 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1435,7 +1472,6 @@ CONFIG_USB_STORAGE=y | |||
| 1435 | # CONFIG_USB_LED is not set | 1472 | # CONFIG_USB_LED is not set |
| 1436 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1473 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1437 | # CONFIG_USB_CYTHERM is not set | 1474 | # CONFIG_USB_CYTHERM is not set |
| 1438 | # CONFIG_USB_PHIDGET is not set | ||
| 1439 | # CONFIG_USB_IDMOUSE is not set | 1475 | # CONFIG_USB_IDMOUSE is not set |
| 1440 | # CONFIG_USB_FTDI_ELAN is not set | 1476 | # CONFIG_USB_FTDI_ELAN is not set |
| 1441 | # CONFIG_USB_APPLEDISPLAY is not set | 1477 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1452,6 +1488,7 @@ CONFIG_USB_STORAGE=y | |||
| 1452 | # OTG and related infrastructure | 1488 | # OTG and related infrastructure |
| 1453 | # | 1489 | # |
| 1454 | # CONFIG_USB_GPIO_VBUS is not set | 1490 | # CONFIG_USB_GPIO_VBUS is not set |
| 1491 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1455 | # CONFIG_UWB is not set | 1492 | # CONFIG_UWB is not set |
| 1456 | # CONFIG_MMC is not set | 1493 | # CONFIG_MMC is not set |
| 1457 | # CONFIG_MEMSTICK is not set | 1494 | # CONFIG_MEMSTICK is not set |
| @@ -1513,8 +1550,9 @@ CONFIG_RTC_DRV_RX8581=y | |||
| 1513 | # | 1550 | # |
| 1514 | # on-CPU RTC drivers | 1551 | # on-CPU RTC drivers |
| 1515 | # | 1552 | # |
| 1516 | # CONFIG_RTC_DRV_PPC is not set | 1553 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1517 | # CONFIG_DMADEVICES is not set | 1554 | # CONFIG_DMADEVICES is not set |
| 1555 | # CONFIG_AUXDISPLAY is not set | ||
| 1518 | # CONFIG_UIO is not set | 1556 | # CONFIG_UIO is not set |
| 1519 | # CONFIG_STAGING is not set | 1557 | # CONFIG_STAGING is not set |
| 1520 | 1558 | ||
| @@ -1527,6 +1565,7 @@ CONFIG_EXT2_FS_POSIX_ACL=y | |||
| 1527 | # CONFIG_EXT2_FS_SECURITY is not set | 1565 | # CONFIG_EXT2_FS_SECURITY is not set |
| 1528 | # CONFIG_EXT2_FS_XIP is not set | 1566 | # CONFIG_EXT2_FS_XIP is not set |
| 1529 | CONFIG_EXT3_FS=y | 1567 | CONFIG_EXT3_FS=y |
| 1568 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1530 | CONFIG_EXT3_FS_XATTR=y | 1569 | CONFIG_EXT3_FS_XATTR=y |
| 1531 | CONFIG_EXT3_FS_POSIX_ACL=y | 1570 | CONFIG_EXT3_FS_POSIX_ACL=y |
| 1532 | # CONFIG_EXT3_FS_SECURITY is not set | 1571 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1549,6 +1588,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1549 | # CONFIG_FUSE_FS is not set | 1588 | # CONFIG_FUSE_FS is not set |
| 1550 | 1589 | ||
| 1551 | # | 1590 | # |
| 1591 | # Caches | ||
| 1592 | # | ||
| 1593 | # CONFIG_FSCACHE is not set | ||
| 1594 | |||
| 1595 | # | ||
| 1552 | # CD-ROM/DVD Filesystems | 1596 | # CD-ROM/DVD Filesystems |
| 1553 | # | 1597 | # |
| 1554 | # CONFIG_ISO9660_FS is not set | 1598 | # CONFIG_ISO9660_FS is not set |
| @@ -1595,6 +1639,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1595 | # CONFIG_ROMFS_FS is not set | 1639 | # CONFIG_ROMFS_FS is not set |
| 1596 | # CONFIG_SYSV_FS is not set | 1640 | # CONFIG_SYSV_FS is not set |
| 1597 | # CONFIG_UFS_FS is not set | 1641 | # CONFIG_UFS_FS is not set |
| 1642 | # CONFIG_NILFS2_FS is not set | ||
| 1598 | CONFIG_NETWORK_FILESYSTEMS=y | 1643 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1599 | CONFIG_NFS_FS=y | 1644 | CONFIG_NFS_FS=y |
| 1600 | CONFIG_NFS_V3=y | 1645 | CONFIG_NFS_V3=y |
| @@ -1607,7 +1652,6 @@ CONFIG_LOCKD_V4=y | |||
| 1607 | CONFIG_NFS_COMMON=y | 1652 | CONFIG_NFS_COMMON=y |
| 1608 | CONFIG_SUNRPC=y | 1653 | CONFIG_SUNRPC=y |
| 1609 | CONFIG_SUNRPC_GSS=y | 1654 | CONFIG_SUNRPC_GSS=y |
| 1610 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1611 | CONFIG_RPCSEC_GSS_KRB5=y | 1655 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1612 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1656 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1613 | # CONFIG_SMB_FS is not set | 1657 | # CONFIG_SMB_FS is not set |
| @@ -1668,6 +1712,7 @@ CONFIG_NLS_KOI8_R=m | |||
| 1668 | CONFIG_NLS_KOI8_U=m | 1712 | CONFIG_NLS_KOI8_U=m |
| 1669 | CONFIG_NLS_UTF8=m | 1713 | CONFIG_NLS_UTF8=m |
| 1670 | # CONFIG_DLM is not set | 1714 | # CONFIG_DLM is not set |
| 1715 | # CONFIG_BINARY_PRINTF is not set | ||
| 1671 | 1716 | ||
| 1672 | # | 1717 | # |
| 1673 | # Library routines | 1718 | # Library routines |
| @@ -1681,13 +1726,14 @@ CONFIG_CRC_CCITT=m | |||
| 1681 | CONFIG_CRC32=y | 1726 | CONFIG_CRC32=y |
| 1682 | # CONFIG_CRC7 is not set | 1727 | # CONFIG_CRC7 is not set |
| 1683 | CONFIG_LIBCRC32C=m | 1728 | CONFIG_LIBCRC32C=m |
| 1684 | CONFIG_ZLIB_INFLATE=m | 1729 | CONFIG_ZLIB_INFLATE=y |
| 1685 | CONFIG_ZLIB_DEFLATE=m | 1730 | CONFIG_ZLIB_DEFLATE=m |
| 1686 | CONFIG_PLIST=y | 1731 | CONFIG_DECOMPRESS_GZIP=y |
| 1687 | CONFIG_HAS_IOMEM=y | 1732 | CONFIG_HAS_IOMEM=y |
| 1688 | CONFIG_HAS_IOPORT=y | 1733 | CONFIG_HAS_IOPORT=y |
| 1689 | CONFIG_HAS_DMA=y | 1734 | CONFIG_HAS_DMA=y |
| 1690 | CONFIG_HAVE_LMB=y | 1735 | CONFIG_HAVE_LMB=y |
| 1736 | CONFIG_NLATTR=y | ||
| 1691 | 1737 | ||
| 1692 | # | 1738 | # |
| 1693 | # Kernel hacking | 1739 | # Kernel hacking |
| @@ -1705,6 +1751,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1705 | CONFIG_DETECT_SOFTLOCKUP=y | 1751 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1706 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1752 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1707 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1753 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1754 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1755 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1756 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1708 | CONFIG_SCHED_DEBUG=y | 1757 | CONFIG_SCHED_DEBUG=y |
| 1709 | # CONFIG_SCHEDSTATS is not set | 1758 | # CONFIG_SCHEDSTATS is not set |
| 1710 | # CONFIG_TIMER_STATS is not set | 1759 | # CONFIG_TIMER_STATS is not set |
| @@ -1733,9 +1782,12 @@ CONFIG_DEBUG_INFO=y | |||
| 1733 | # CONFIG_FAULT_INJECTION is not set | 1782 | # CONFIG_FAULT_INJECTION is not set |
| 1734 | # CONFIG_LATENCYTOP is not set | 1783 | # CONFIG_LATENCYTOP is not set |
| 1735 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1784 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1785 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1736 | CONFIG_HAVE_FUNCTION_TRACER=y | 1786 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1787 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1737 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1788 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1738 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1789 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1790 | CONFIG_TRACING_SUPPORT=y | ||
| 1739 | 1791 | ||
| 1740 | # | 1792 | # |
| 1741 | # Tracers | 1793 | # Tracers |
| @@ -1744,17 +1796,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1744 | # CONFIG_PREEMPT_TRACER is not set | 1796 | # CONFIG_PREEMPT_TRACER is not set |
| 1745 | # CONFIG_SCHED_TRACER is not set | 1797 | # CONFIG_SCHED_TRACER is not set |
| 1746 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1798 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1799 | # CONFIG_EVENT_TRACER is not set | ||
| 1747 | # CONFIG_BOOT_TRACER is not set | 1800 | # CONFIG_BOOT_TRACER is not set |
| 1748 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1801 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1749 | # CONFIG_STACK_TRACER is not set | 1802 | # CONFIG_STACK_TRACER is not set |
| 1750 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1803 | # CONFIG_KMEMTRACE is not set |
| 1804 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1805 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1751 | # CONFIG_SAMPLES is not set | 1806 | # CONFIG_SAMPLES is not set |
| 1752 | CONFIG_HAVE_ARCH_KGDB=y | 1807 | CONFIG_HAVE_ARCH_KGDB=y |
| 1753 | # CONFIG_KGDB is not set | 1808 | # CONFIG_KGDB is not set |
| 1754 | CONFIG_PRINT_STACK_DEPTH=64 | 1809 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1755 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1810 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1756 | # CONFIG_DEBUG_STACK_USAGE is not set | 1811 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1757 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1758 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1812 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1759 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1813 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1760 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1814 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1776,6 +1830,7 @@ CONFIG_SECURITY_NETWORK=y | |||
| 1776 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1830 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1777 | # CONFIG_SECURITY_ROOTPLUG is not set | 1831 | # CONFIG_SECURITY_ROOTPLUG is not set |
| 1778 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1832 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
| 1833 | # CONFIG_SECURITY_TOMOYO is not set | ||
| 1779 | CONFIG_CRYPTO=y | 1834 | CONFIG_CRYPTO=y |
| 1780 | 1835 | ||
| 1781 | # | 1836 | # |
| @@ -1791,10 +1846,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1791 | CONFIG_CRYPTO_HASH=y | 1846 | CONFIG_CRYPTO_HASH=y |
| 1792 | CONFIG_CRYPTO_HASH2=y | 1847 | CONFIG_CRYPTO_HASH2=y |
| 1793 | CONFIG_CRYPTO_RNG2=y | 1848 | CONFIG_CRYPTO_RNG2=y |
| 1849 | CONFIG_CRYPTO_PCOMP=y | ||
| 1794 | CONFIG_CRYPTO_MANAGER=y | 1850 | CONFIG_CRYPTO_MANAGER=y |
| 1795 | CONFIG_CRYPTO_MANAGER2=y | 1851 | CONFIG_CRYPTO_MANAGER2=y |
| 1796 | # CONFIG_CRYPTO_GF128MUL is not set | 1852 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1797 | CONFIG_CRYPTO_NULL=m | 1853 | CONFIG_CRYPTO_NULL=m |
| 1854 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1798 | # CONFIG_CRYPTO_CRYPTD is not set | 1855 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1799 | CONFIG_CRYPTO_AUTHENC=m | 1856 | CONFIG_CRYPTO_AUTHENC=m |
| 1800 | CONFIG_CRYPTO_TEST=m | 1857 | CONFIG_CRYPTO_TEST=m |
| @@ -1864,6 +1921,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
| 1864 | # Compression | 1921 | # Compression |
| 1865 | # | 1922 | # |
| 1866 | CONFIG_CRYPTO_DEFLATE=m | 1923 | CONFIG_CRYPTO_DEFLATE=m |
| 1924 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1867 | # CONFIG_CRYPTO_LZO is not set | 1925 | # CONFIG_CRYPTO_LZO is not set |
| 1868 | 1926 | ||
| 1869 | # | 1927 | # |
diff --git a/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig b/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig index bbdf4bfc4327..cfd2efcc6bce 100644 --- a/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig +++ b/arch/powerpc/configs/86xx/mpc8610_hpcd_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:24 2009 | 4 | # Wed May 13 17:22:28 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_PHYS_64BIT is not set | 19 | # CONFIG_PHYS_64BIT is not set |
| 19 | CONFIG_ALTIVEC=y | 20 | CONFIG_ALTIVEC=y |
| @@ -55,6 +56,7 @@ CONFIG_GENERIC_BUG=y | |||
| 55 | CONFIG_DEFAULT_UIMAGE=y | 56 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | # CONFIG_PPC_DCR_NATIVE is not set | 57 | # CONFIG_PPC_DCR_NATIVE is not set |
| 57 | # CONFIG_PPC_DCR_MMIO is not set | 58 | # CONFIG_PPC_DCR_MMIO is not set |
| 59 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 58 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 59 | 61 | ||
| 60 | # | 62 | # |
| @@ -72,6 +74,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 72 | # CONFIG_BSD_PROCESS_ACCT is not set | 74 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 73 | # CONFIG_TASKSTATS is not set | 75 | # CONFIG_TASKSTATS is not set |
| 74 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
| 77 | |||
| 78 | # | ||
| 79 | # RCU Subsystem | ||
| 80 | # | ||
| 81 | CONFIG_CLASSIC_RCU=y | ||
| 82 | # CONFIG_TREE_RCU is not set | ||
| 83 | # CONFIG_PREEMPT_RCU is not set | ||
| 84 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 85 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 75 | CONFIG_IKCONFIG=y | 86 | CONFIG_IKCONFIG=y |
| 76 | CONFIG_IKCONFIG_PROC=y | 87 | CONFIG_IKCONFIG_PROC=y |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 88 | CONFIG_LOG_BUF_SHIFT=14 |
| @@ -87,21 +98,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 87 | # CONFIG_NAMESPACES is not set | 98 | # CONFIG_NAMESPACES is not set |
| 88 | CONFIG_BLK_DEV_INITRD=y | 99 | CONFIG_BLK_DEV_INITRD=y |
| 89 | CONFIG_INITRAMFS_SOURCE="" | 100 | CONFIG_INITRAMFS_SOURCE="" |
| 101 | CONFIG_RD_GZIP=y | ||
| 102 | # CONFIG_RD_BZIP2 is not set | ||
| 103 | # CONFIG_RD_LZMA is not set | ||
| 90 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 104 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 91 | CONFIG_SYSCTL=y | 105 | CONFIG_SYSCTL=y |
| 106 | CONFIG_ANON_INODES=y | ||
| 92 | CONFIG_EMBEDDED=y | 107 | CONFIG_EMBEDDED=y |
| 93 | CONFIG_SYSCTL_SYSCALL=y | 108 | CONFIG_SYSCTL_SYSCALL=y |
| 94 | CONFIG_KALLSYMS=y | 109 | CONFIG_KALLSYMS=y |
| 95 | # CONFIG_KALLSYMS_ALL is not set | 110 | # CONFIG_KALLSYMS_ALL is not set |
| 96 | CONFIG_KALLSYMS_EXTRA_PASS=y | 111 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| 112 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 97 | CONFIG_HOTPLUG=y | 113 | CONFIG_HOTPLUG=y |
| 98 | CONFIG_PRINTK=y | 114 | CONFIG_PRINTK=y |
| 99 | CONFIG_BUG=y | 115 | CONFIG_BUG=y |
| 100 | # CONFIG_ELF_CORE is not set | 116 | # CONFIG_ELF_CORE is not set |
| 101 | CONFIG_COMPAT_BRK=y | ||
| 102 | CONFIG_BASE_FULL=y | 117 | CONFIG_BASE_FULL=y |
| 103 | CONFIG_FUTEX=y | 118 | CONFIG_FUTEX=y |
| 104 | CONFIG_ANON_INODES=y | ||
| 105 | CONFIG_EPOLL=y | 119 | CONFIG_EPOLL=y |
| 106 | CONFIG_SIGNALFD=y | 120 | CONFIG_SIGNALFD=y |
| 107 | CONFIG_TIMERFD=y | 121 | CONFIG_TIMERFD=y |
| @@ -111,10 +125,12 @@ CONFIG_AIO=y | |||
| 111 | CONFIG_VM_EVENT_COUNTERS=y | 125 | CONFIG_VM_EVENT_COUNTERS=y |
| 112 | CONFIG_PCI_QUIRKS=y | 126 | CONFIG_PCI_QUIRKS=y |
| 113 | CONFIG_SLUB_DEBUG=y | 127 | CONFIG_SLUB_DEBUG=y |
| 128 | CONFIG_COMPAT_BRK=y | ||
| 114 | # CONFIG_SLAB is not set | 129 | # CONFIG_SLAB is not set |
| 115 | CONFIG_SLUB=y | 130 | CONFIG_SLUB=y |
| 116 | # CONFIG_SLOB is not set | 131 | # CONFIG_SLOB is not set |
| 117 | # CONFIG_PROFILING is not set | 132 | # CONFIG_PROFILING is not set |
| 133 | # CONFIG_MARKERS is not set | ||
| 118 | CONFIG_HAVE_OPROFILE=y | 134 | CONFIG_HAVE_OPROFILE=y |
| 119 | # CONFIG_KPROBES is not set | 135 | # CONFIG_KPROBES is not set |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 136 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -122,6 +138,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
| 122 | CONFIG_HAVE_KPROBES=y | 138 | CONFIG_HAVE_KPROBES=y |
| 123 | CONFIG_HAVE_KRETPROBES=y | 139 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 140 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 141 | # CONFIG_SLOW_WORK is not set | ||
| 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 142 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 126 | CONFIG_SLABINFO=y | 143 | CONFIG_SLABINFO=y |
| 127 | CONFIG_RT_MUTEXES=y | 144 | CONFIG_RT_MUTEXES=y |
| @@ -134,7 +151,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 151 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 135 | CONFIG_BLOCK=y | 152 | CONFIG_BLOCK=y |
| 136 | # CONFIG_LBD is not set | 153 | # CONFIG_LBD is not set |
| 137 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 138 | # CONFIG_BLK_DEV_BSG is not set | 154 | # CONFIG_BLK_DEV_BSG is not set |
| 139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 155 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 140 | 156 | ||
| @@ -150,18 +166,11 @@ CONFIG_DEFAULT_DEADLINE=y | |||
| 150 | # CONFIG_DEFAULT_CFQ is not set | 166 | # CONFIG_DEFAULT_CFQ is not set |
| 151 | # CONFIG_DEFAULT_NOOP is not set | 167 | # CONFIG_DEFAULT_NOOP is not set |
| 152 | CONFIG_DEFAULT_IOSCHED="deadline" | 168 | CONFIG_DEFAULT_IOSCHED="deadline" |
| 153 | CONFIG_CLASSIC_RCU=y | ||
| 154 | # CONFIG_TREE_RCU is not set | ||
| 155 | # CONFIG_PREEMPT_RCU is not set | ||
| 156 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 157 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 158 | # CONFIG_FREEZER is not set | 169 | # CONFIG_FREEZER is not set |
| 159 | 170 | ||
| 160 | # | 171 | # |
| 161 | # Platform support | 172 | # Platform support |
| 162 | # | 173 | # |
| 163 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 164 | CONFIG_CLASSIC32=y | ||
| 165 | # CONFIG_PPC_CHRP is not set | 174 | # CONFIG_PPC_CHRP is not set |
| 166 | # CONFIG_MPC5121_ADS is not set | 175 | # CONFIG_MPC5121_ADS is not set |
| 167 | # CONFIG_MPC5121_GENERIC is not set | 176 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -176,9 +185,13 @@ CONFIG_PPC_86xx=y | |||
| 176 | # CONFIG_MPC8641_HPCN is not set | 185 | # CONFIG_MPC8641_HPCN is not set |
| 177 | # CONFIG_SBC8641D is not set | 186 | # CONFIG_SBC8641D is not set |
| 178 | CONFIG_MPC8610_HPCD=y | 187 | CONFIG_MPC8610_HPCD=y |
| 188 | # CONFIG_GEF_PPC9A is not set | ||
| 189 | # CONFIG_GEF_SBC310 is not set | ||
| 179 | # CONFIG_GEF_SBC610 is not set | 190 | # CONFIG_GEF_SBC610 is not set |
| 180 | CONFIG_MPC8610=y | 191 | CONFIG_MPC8610=y |
| 181 | # CONFIG_EMBEDDED6xx is not set | 192 | # CONFIG_EMBEDDED6xx is not set |
| 193 | # CONFIG_AMIGAONE is not set | ||
| 194 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 182 | # CONFIG_IPIC is not set | 195 | # CONFIG_IPIC is not set |
| 183 | CONFIG_MPIC=y | 196 | CONFIG_MPIC=y |
| 184 | # CONFIG_MPIC_WEIRD is not set | 197 | # CONFIG_MPIC_WEIRD is not set |
| @@ -238,9 +251,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 238 | CONFIG_BOUNCE=y | 251 | CONFIG_BOUNCE=y |
| 239 | CONFIG_VIRT_TO_BUS=y | 252 | CONFIG_VIRT_TO_BUS=y |
| 240 | CONFIG_UNEVICTABLE_LRU=y | 253 | CONFIG_UNEVICTABLE_LRU=y |
| 254 | CONFIG_HAVE_MLOCK=y | ||
| 255 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 241 | CONFIG_PPC_4K_PAGES=y | 256 | CONFIG_PPC_4K_PAGES=y |
| 242 | # CONFIG_PPC_16K_PAGES is not set | 257 | # CONFIG_PPC_16K_PAGES is not set |
| 243 | # CONFIG_PPC_64K_PAGES is not set | 258 | # CONFIG_PPC_64K_PAGES is not set |
| 259 | # CONFIG_PPC_256K_PAGES is not set | ||
| 244 | CONFIG_FORCE_MAX_ZONEORDER=12 | 260 | CONFIG_FORCE_MAX_ZONEORDER=12 |
| 245 | CONFIG_PROC_DEVICETREE=y | 261 | CONFIG_PROC_DEVICETREE=y |
| 246 | # CONFIG_CMDLINE_BOOL is not set | 262 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -269,6 +285,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 269 | # CONFIG_PCI_LEGACY is not set | 285 | # CONFIG_PCI_LEGACY is not set |
| 270 | CONFIG_PCI_DEBUG=y | 286 | CONFIG_PCI_DEBUG=y |
| 271 | # CONFIG_PCI_STUB is not set | 287 | # CONFIG_PCI_STUB is not set |
| 288 | # CONFIG_PCI_IOV is not set | ||
| 272 | # CONFIG_PCCARD is not set | 289 | # CONFIG_PCCARD is not set |
| 273 | # CONFIG_HOTPLUG_PCI is not set | 290 | # CONFIG_HOTPLUG_PCI is not set |
| 274 | # CONFIG_HAS_RAPIDIO is not set | 291 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -291,7 +308,6 @@ CONFIG_NET=y | |||
| 291 | # | 308 | # |
| 292 | # Networking options | 309 | # Networking options |
| 293 | # | 310 | # |
| 294 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 295 | CONFIG_PACKET=y | 311 | CONFIG_PACKET=y |
| 296 | # CONFIG_PACKET_MMAP is not set | 312 | # CONFIG_PACKET_MMAP is not set |
| 297 | CONFIG_UNIX=y | 313 | CONFIG_UNIX=y |
| @@ -364,6 +380,7 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
| 364 | # CONFIG_LAPB is not set | 380 | # CONFIG_LAPB is not set |
| 365 | # CONFIG_ECONET is not set | 381 | # CONFIG_ECONET is not set |
| 366 | # CONFIG_WAN_ROUTER is not set | 382 | # CONFIG_WAN_ROUTER is not set |
| 383 | # CONFIG_PHONET is not set | ||
| 367 | # CONFIG_NET_SCHED is not set | 384 | # CONFIG_NET_SCHED is not set |
| 368 | # CONFIG_DCB is not set | 385 | # CONFIG_DCB is not set |
| 369 | 386 | ||
| @@ -376,7 +393,6 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
| 376 | # CONFIG_IRDA is not set | 393 | # CONFIG_IRDA is not set |
| 377 | # CONFIG_BT is not set | 394 | # CONFIG_BT is not set |
| 378 | # CONFIG_AF_RXRPC is not set | 395 | # CONFIG_AF_RXRPC is not set |
| 379 | # CONFIG_PHONET is not set | ||
| 380 | CONFIG_WIRELESS=y | 396 | CONFIG_WIRELESS=y |
| 381 | # CONFIG_CFG80211 is not set | 397 | # CONFIG_CFG80211 is not set |
| 382 | CONFIG_WIRELESS_OLD_REGULATORY=y | 398 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -492,7 +508,6 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
| 492 | # LPDDR flash memory drivers | 508 | # LPDDR flash memory drivers |
| 493 | # | 509 | # |
| 494 | # CONFIG_MTD_LPDDR is not set | 510 | # CONFIG_MTD_LPDDR is not set |
| 495 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 496 | 511 | ||
| 497 | # | 512 | # |
| 498 | # UBI - Unsorted block images | 513 | # UBI - Unsorted block images |
| @@ -521,13 +536,20 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 521 | # CONFIG_BLK_DEV_HD is not set | 536 | # CONFIG_BLK_DEV_HD is not set |
| 522 | CONFIG_MISC_DEVICES=y | 537 | CONFIG_MISC_DEVICES=y |
| 523 | # CONFIG_PHANTOM is not set | 538 | # CONFIG_PHANTOM is not set |
| 524 | # CONFIG_EEPROM_93CX6 is not set | ||
| 525 | # CONFIG_SGI_IOC4 is not set | 539 | # CONFIG_SGI_IOC4 is not set |
| 526 | # CONFIG_TIFM_CORE is not set | 540 | # CONFIG_TIFM_CORE is not set |
| 527 | # CONFIG_ICS932S401 is not set | 541 | # CONFIG_ICS932S401 is not set |
| 528 | # CONFIG_ENCLOSURE_SERVICES is not set | 542 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 529 | # CONFIG_HP_ILO is not set | 543 | # CONFIG_HP_ILO is not set |
| 544 | # CONFIG_ISL29003 is not set | ||
| 530 | # CONFIG_C2PORT is not set | 545 | # CONFIG_C2PORT is not set |
| 546 | |||
| 547 | # | ||
| 548 | # EEPROM support | ||
| 549 | # | ||
| 550 | # CONFIG_EEPROM_AT24 is not set | ||
| 551 | # CONFIG_EEPROM_LEGACY is not set | ||
| 552 | # CONFIG_EEPROM_93CX6 is not set | ||
| 531 | CONFIG_HAVE_IDE=y | 553 | CONFIG_HAVE_IDE=y |
| 532 | CONFIG_IDE=y | 554 | CONFIG_IDE=y |
| 533 | 555 | ||
| @@ -632,9 +654,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 632 | # CONFIG_MEGARAID_NEWGEN is not set | 654 | # CONFIG_MEGARAID_NEWGEN is not set |
| 633 | # CONFIG_MEGARAID_LEGACY is not set | 655 | # CONFIG_MEGARAID_LEGACY is not set |
| 634 | # CONFIG_MEGARAID_SAS is not set | 656 | # CONFIG_MEGARAID_SAS is not set |
| 657 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 635 | # CONFIG_SCSI_HPTIOP is not set | 658 | # CONFIG_SCSI_HPTIOP is not set |
| 636 | # CONFIG_SCSI_BUSLOGIC is not set | 659 | # CONFIG_SCSI_BUSLOGIC is not set |
| 637 | # CONFIG_LIBFC is not set | 660 | # CONFIG_LIBFC is not set |
| 661 | # CONFIG_LIBFCOE is not set | ||
| 638 | # CONFIG_FCOE is not set | 662 | # CONFIG_FCOE is not set |
| 639 | # CONFIG_SCSI_DMX3191D is not set | 663 | # CONFIG_SCSI_DMX3191D is not set |
| 640 | # CONFIG_SCSI_EATA is not set | 664 | # CONFIG_SCSI_EATA is not set |
| @@ -657,6 +681,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 657 | # CONFIG_SCSI_DEBUG is not set | 681 | # CONFIG_SCSI_DEBUG is not set |
| 658 | # CONFIG_SCSI_SRP is not set | 682 | # CONFIG_SCSI_SRP is not set |
| 659 | # CONFIG_SCSI_DH is not set | 683 | # CONFIG_SCSI_DH is not set |
| 684 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 660 | CONFIG_ATA=y | 685 | CONFIG_ATA=y |
| 661 | # CONFIG_ATA_NONSTANDARD is not set | 686 | # CONFIG_ATA_NONSTANDARD is not set |
| 662 | CONFIG_SATA_PMP=y | 687 | CONFIG_SATA_PMP=y |
| @@ -733,6 +758,7 @@ CONFIG_PATA_ALI=y | |||
| 733 | # CONFIG_I2O is not set | 758 | # CONFIG_I2O is not set |
| 734 | # CONFIG_MACINTOSH_DRIVERS is not set | 759 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 735 | CONFIG_NETDEVICES=y | 760 | CONFIG_NETDEVICES=y |
| 761 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 736 | CONFIG_DUMMY=y | 762 | CONFIG_DUMMY=y |
| 737 | # CONFIG_BONDING is not set | 763 | # CONFIG_BONDING is not set |
| 738 | # CONFIG_MACVLAN is not set | 764 | # CONFIG_MACVLAN is not set |
| @@ -747,6 +773,8 @@ CONFIG_NET_ETHERNET=y | |||
| 747 | # CONFIG_SUNGEM is not set | 773 | # CONFIG_SUNGEM is not set |
| 748 | # CONFIG_CASSINI is not set | 774 | # CONFIG_CASSINI is not set |
| 749 | # CONFIG_NET_VENDOR_3COM is not set | 775 | # CONFIG_NET_VENDOR_3COM is not set |
| 776 | # CONFIG_ETHOC is not set | ||
| 777 | # CONFIG_DNET is not set | ||
| 750 | CONFIG_NET_TULIP=y | 778 | CONFIG_NET_TULIP=y |
| 751 | # CONFIG_DE2104X is not set | 779 | # CONFIG_DE2104X is not set |
| 752 | # CONFIG_TULIP is not set | 780 | # CONFIG_TULIP is not set |
| @@ -774,7 +802,6 @@ CONFIG_ULI526X=y | |||
| 774 | # | 802 | # |
| 775 | # CONFIG_WLAN_PRE80211 is not set | 803 | # CONFIG_WLAN_PRE80211 is not set |
| 776 | # CONFIG_WLAN_80211 is not set | 804 | # CONFIG_WLAN_80211 is not set |
| 777 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 778 | 805 | ||
| 779 | # | 806 | # |
| 780 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 807 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -929,12 +956,9 @@ CONFIG_I2C_MPC=y | |||
| 929 | # Miscellaneous I2C Chip support | 956 | # Miscellaneous I2C Chip support |
| 930 | # | 957 | # |
| 931 | # CONFIG_DS1682 is not set | 958 | # CONFIG_DS1682 is not set |
| 932 | # CONFIG_EEPROM_AT24 is not set | ||
| 933 | # CONFIG_EEPROM_LEGACY is not set | ||
| 934 | # CONFIG_SENSORS_PCF8574 is not set | 959 | # CONFIG_SENSORS_PCF8574 is not set |
| 935 | # CONFIG_PCF8575 is not set | 960 | # CONFIG_PCF8575 is not set |
| 936 | # CONFIG_SENSORS_PCA9539 is not set | 961 | # CONFIG_SENSORS_PCA9539 is not set |
| 937 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 938 | # CONFIG_SENSORS_MAX6875 is not set | 962 | # CONFIG_SENSORS_MAX6875 is not set |
| 939 | # CONFIG_SENSORS_TSL2550 is not set | 963 | # CONFIG_SENSORS_TSL2550 is not set |
| 940 | # CONFIG_I2C_DEBUG_CORE is not set | 964 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -1049,6 +1073,7 @@ CONFIG_FB_FSL_DIU=y | |||
| 1049 | # CONFIG_FB_VIRTUAL is not set | 1073 | # CONFIG_FB_VIRTUAL is not set |
| 1050 | # CONFIG_FB_METRONOME is not set | 1074 | # CONFIG_FB_METRONOME is not set |
| 1051 | # CONFIG_FB_MB862XX is not set | 1075 | # CONFIG_FB_MB862XX is not set |
| 1076 | # CONFIG_FB_BROADSHEET is not set | ||
| 1052 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 1077 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 1053 | 1078 | ||
| 1054 | # | 1079 | # |
| @@ -1069,6 +1094,7 @@ CONFIG_SOUND_OSS_CORE=y | |||
| 1069 | CONFIG_SND=y | 1094 | CONFIG_SND=y |
| 1070 | CONFIG_SND_TIMER=y | 1095 | CONFIG_SND_TIMER=y |
| 1071 | CONFIG_SND_PCM=y | 1096 | CONFIG_SND_PCM=y |
| 1097 | CONFIG_SND_JACK=y | ||
| 1072 | # CONFIG_SND_SEQUENCER is not set | 1098 | # CONFIG_SND_SEQUENCER is not set |
| 1073 | CONFIG_SND_OSSEMUL=y | 1099 | CONFIG_SND_OSSEMUL=y |
| 1074 | CONFIG_SND_MIXER_OSS=y | 1100 | CONFIG_SND_MIXER_OSS=y |
| @@ -1116,6 +1142,8 @@ CONFIG_SND_PCI=y | |||
| 1116 | # CONFIG_SND_INDIGO is not set | 1142 | # CONFIG_SND_INDIGO is not set |
| 1117 | # CONFIG_SND_INDIGOIO is not set | 1143 | # CONFIG_SND_INDIGOIO is not set |
| 1118 | # CONFIG_SND_INDIGODJ is not set | 1144 | # CONFIG_SND_INDIGODJ is not set |
| 1145 | # CONFIG_SND_INDIGOIOX is not set | ||
| 1146 | # CONFIG_SND_INDIGODJX is not set | ||
| 1119 | # CONFIG_SND_EMU10K1 is not set | 1147 | # CONFIG_SND_EMU10K1 is not set |
| 1120 | # CONFIG_SND_EMU10K1X is not set | 1148 | # CONFIG_SND_EMU10K1X is not set |
| 1121 | # CONFIG_SND_ENS1370 is not set | 1149 | # CONFIG_SND_ENS1370 is not set |
| @@ -1165,7 +1193,6 @@ CONFIG_HID=y | |||
| 1165 | # | 1193 | # |
| 1166 | # Special HID drivers | 1194 | # Special HID drivers |
| 1167 | # | 1195 | # |
| 1168 | CONFIG_HID_COMPAT=y | ||
| 1169 | CONFIG_USB_SUPPORT=y | 1196 | CONFIG_USB_SUPPORT=y |
| 1170 | CONFIG_USB_ARCH_HAS_HCD=y | 1197 | CONFIG_USB_ARCH_HAS_HCD=y |
| 1171 | CONFIG_USB_ARCH_HAS_OHCI=y | 1198 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1179,7 +1206,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1179 | # | 1206 | # |
| 1180 | 1207 | ||
| 1181 | # | 1208 | # |
| 1182 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1209 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1183 | # | 1210 | # |
| 1184 | # CONFIG_USB_GADGET is not set | 1211 | # CONFIG_USB_GADGET is not set |
| 1185 | 1212 | ||
| @@ -1247,8 +1274,9 @@ CONFIG_RTC_DRV_CMOS=y | |||
| 1247 | # | 1274 | # |
| 1248 | # on-CPU RTC drivers | 1275 | # on-CPU RTC drivers |
| 1249 | # | 1276 | # |
| 1250 | # CONFIG_RTC_DRV_PPC is not set | 1277 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1251 | # CONFIG_DMADEVICES is not set | 1278 | # CONFIG_DMADEVICES is not set |
| 1279 | # CONFIG_AUXDISPLAY is not set | ||
| 1252 | # CONFIG_UIO is not set | 1280 | # CONFIG_UIO is not set |
| 1253 | # CONFIG_STAGING is not set | 1281 | # CONFIG_STAGING is not set |
| 1254 | 1282 | ||
| @@ -1259,6 +1287,7 @@ CONFIG_EXT2_FS=y | |||
| 1259 | # CONFIG_EXT2_FS_XATTR is not set | 1287 | # CONFIG_EXT2_FS_XATTR is not set |
| 1260 | # CONFIG_EXT2_FS_XIP is not set | 1288 | # CONFIG_EXT2_FS_XIP is not set |
| 1261 | CONFIG_EXT3_FS=y | 1289 | CONFIG_EXT3_FS=y |
| 1290 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1262 | CONFIG_EXT3_FS_XATTR=y | 1291 | CONFIG_EXT3_FS_XATTR=y |
| 1263 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1292 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1264 | # CONFIG_EXT3_FS_SECURITY is not set | 1293 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1280,6 +1309,11 @@ CONFIG_FILE_LOCKING=y | |||
| 1280 | # CONFIG_FUSE_FS is not set | 1309 | # CONFIG_FUSE_FS is not set |
| 1281 | 1310 | ||
| 1282 | # | 1311 | # |
| 1312 | # Caches | ||
| 1313 | # | ||
| 1314 | # CONFIG_FSCACHE is not set | ||
| 1315 | |||
| 1316 | # | ||
| 1283 | # CD-ROM/DVD Filesystems | 1317 | # CD-ROM/DVD Filesystems |
| 1284 | # | 1318 | # |
| 1285 | # CONFIG_ISO9660_FS is not set | 1319 | # CONFIG_ISO9660_FS is not set |
| @@ -1323,6 +1357,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1323 | # CONFIG_ROMFS_FS is not set | 1357 | # CONFIG_ROMFS_FS is not set |
| 1324 | # CONFIG_SYSV_FS is not set | 1358 | # CONFIG_SYSV_FS is not set |
| 1325 | # CONFIG_UFS_FS is not set | 1359 | # CONFIG_UFS_FS is not set |
| 1360 | # CONFIG_NILFS2_FS is not set | ||
| 1326 | CONFIG_NETWORK_FILESYSTEMS=y | 1361 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1327 | CONFIG_NFS_FS=y | 1362 | CONFIG_NFS_FS=y |
| 1328 | CONFIG_NFS_V3=y | 1363 | CONFIG_NFS_V3=y |
| @@ -1337,7 +1372,6 @@ CONFIG_LOCKD_V4=y | |||
| 1337 | CONFIG_EXPORTFS=y | 1372 | CONFIG_EXPORTFS=y |
| 1338 | CONFIG_NFS_COMMON=y | 1373 | CONFIG_NFS_COMMON=y |
| 1339 | CONFIG_SUNRPC=y | 1374 | CONFIG_SUNRPC=y |
| 1340 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1341 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1375 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1342 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1376 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1343 | # CONFIG_SMB_FS is not set | 1377 | # CONFIG_SMB_FS is not set |
| @@ -1409,6 +1443,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1409 | # CONFIG_NLS_KOI8_U is not set | 1443 | # CONFIG_NLS_KOI8_U is not set |
| 1410 | # CONFIG_NLS_UTF8 is not set | 1444 | # CONFIG_NLS_UTF8 is not set |
| 1411 | # CONFIG_DLM is not set | 1445 | # CONFIG_DLM is not set |
| 1446 | # CONFIG_BINARY_PRINTF is not set | ||
| 1412 | 1447 | ||
| 1413 | # | 1448 | # |
| 1414 | # Library routines | 1449 | # Library routines |
| @@ -1422,11 +1457,13 @@ CONFIG_CRC_T10DIF=y | |||
| 1422 | CONFIG_CRC32=y | 1457 | CONFIG_CRC32=y |
| 1423 | # CONFIG_CRC7 is not set | 1458 | # CONFIG_CRC7 is not set |
| 1424 | # CONFIG_LIBCRC32C is not set | 1459 | # CONFIG_LIBCRC32C is not set |
| 1425 | CONFIG_PLIST=y | 1460 | CONFIG_ZLIB_INFLATE=y |
| 1461 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1426 | CONFIG_HAS_IOMEM=y | 1462 | CONFIG_HAS_IOMEM=y |
| 1427 | CONFIG_HAS_IOPORT=y | 1463 | CONFIG_HAS_IOPORT=y |
| 1428 | CONFIG_HAS_DMA=y | 1464 | CONFIG_HAS_DMA=y |
| 1429 | CONFIG_HAVE_LMB=y | 1465 | CONFIG_HAVE_LMB=y |
| 1466 | CONFIG_NLATTR=y | ||
| 1430 | 1467 | ||
| 1431 | # | 1468 | # |
| 1432 | # Kernel hacking | 1469 | # Kernel hacking |
| @@ -1444,6 +1481,9 @@ CONFIG_DEBUG_SHIRQ=y | |||
| 1444 | CONFIG_DETECT_SOFTLOCKUP=y | 1481 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1445 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1482 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1446 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1483 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1484 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1485 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1486 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1447 | CONFIG_SCHED_DEBUG=y | 1487 | CONFIG_SCHED_DEBUG=y |
| 1448 | # CONFIG_SCHEDSTATS is not set | 1488 | # CONFIG_SCHEDSTATS is not set |
| 1449 | # CONFIG_TIMER_STATS is not set | 1489 | # CONFIG_TIMER_STATS is not set |
| @@ -1474,9 +1514,12 @@ CONFIG_DEBUG_INFO=y | |||
| 1474 | # CONFIG_FAULT_INJECTION is not set | 1514 | # CONFIG_FAULT_INJECTION is not set |
| 1475 | # CONFIG_LATENCYTOP is not set | 1515 | # CONFIG_LATENCYTOP is not set |
| 1476 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1516 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1517 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1477 | CONFIG_HAVE_FUNCTION_TRACER=y | 1518 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1519 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1478 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1520 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1479 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1521 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1522 | CONFIG_TRACING_SUPPORT=y | ||
| 1480 | 1523 | ||
| 1481 | # | 1524 | # |
| 1482 | # Tracers | 1525 | # Tracers |
| @@ -1484,17 +1527,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1484 | # CONFIG_FUNCTION_TRACER is not set | 1527 | # CONFIG_FUNCTION_TRACER is not set |
| 1485 | # CONFIG_SCHED_TRACER is not set | 1528 | # CONFIG_SCHED_TRACER is not set |
| 1486 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1529 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1530 | # CONFIG_EVENT_TRACER is not set | ||
| 1487 | # CONFIG_BOOT_TRACER is not set | 1531 | # CONFIG_BOOT_TRACER is not set |
| 1488 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1532 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1489 | # CONFIG_STACK_TRACER is not set | 1533 | # CONFIG_STACK_TRACER is not set |
| 1490 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1534 | # CONFIG_KMEMTRACE is not set |
| 1535 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1536 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1491 | # CONFIG_SAMPLES is not set | 1537 | # CONFIG_SAMPLES is not set |
| 1492 | CONFIG_HAVE_ARCH_KGDB=y | 1538 | CONFIG_HAVE_ARCH_KGDB=y |
| 1493 | # CONFIG_KGDB is not set | 1539 | # CONFIG_KGDB is not set |
| 1494 | CONFIG_PRINT_STACK_DEPTH=64 | 1540 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1495 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1541 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1496 | # CONFIG_DEBUG_STACK_USAGE is not set | 1542 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1497 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1498 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1543 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1499 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1544 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1500 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1545 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1589,6 +1634,7 @@ CONFIG_CRYPTO=y | |||
| 1589 | # Compression | 1634 | # Compression |
| 1590 | # | 1635 | # |
| 1591 | # CONFIG_CRYPTO_DEFLATE is not set | 1636 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1637 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1592 | # CONFIG_CRYPTO_LZO is not set | 1638 | # CONFIG_CRYPTO_LZO is not set |
| 1593 | 1639 | ||
| 1594 | # | 1640 | # |
diff --git a/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig b/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig index 92acfdf3540a..0bee3e303942 100644 --- a/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig +++ b/arch/powerpc/configs/86xx/mpc8641_hpcn_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:25 2009 | 4 | # Wed May 13 17:22:28 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_PHYS_64BIT is not set | 19 | # CONFIG_PHYS_64BIT is not set |
| 19 | CONFIG_ALTIVEC=y | 20 | CONFIG_ALTIVEC=y |
| @@ -56,6 +57,7 @@ CONFIG_GENERIC_BUG=y | |||
| 56 | CONFIG_DEFAULT_UIMAGE=y | 57 | CONFIG_DEFAULT_UIMAGE=y |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -70,11 +72,21 @@ CONFIG_SWAP=y | |||
| 70 | CONFIG_SYSVIPC=y | 72 | CONFIG_SYSVIPC=y |
| 71 | CONFIG_SYSVIPC_SYSCTL=y | 73 | CONFIG_SYSVIPC_SYSCTL=y |
| 72 | CONFIG_POSIX_MQUEUE=y | 74 | CONFIG_POSIX_MQUEUE=y |
| 75 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 73 | CONFIG_BSD_PROCESS_ACCT=y | 76 | CONFIG_BSD_PROCESS_ACCT=y |
| 74 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 77 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 75 | # CONFIG_TASKSTATS is not set | 78 | # CONFIG_TASKSTATS is not set |
| 76 | CONFIG_AUDIT=y | 79 | CONFIG_AUDIT=y |
| 77 | # CONFIG_AUDITSYSCALL is not set | 80 | # CONFIG_AUDITSYSCALL is not set |
| 81 | |||
| 82 | # | ||
| 83 | # RCU Subsystem | ||
| 84 | # | ||
| 85 | CONFIG_CLASSIC_RCU=y | ||
| 86 | # CONFIG_TREE_RCU is not set | ||
| 87 | # CONFIG_PREEMPT_RCU is not set | ||
| 88 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 89 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 78 | CONFIG_IKCONFIG=y | 90 | CONFIG_IKCONFIG=y |
| 79 | CONFIG_IKCONFIG_PROC=y | 91 | CONFIG_IKCONFIG_PROC=y |
| 80 | CONFIG_LOG_BUF_SHIFT=14 | 92 | CONFIG_LOG_BUF_SHIFT=14 |
| @@ -90,22 +102,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 90 | # CONFIG_NAMESPACES is not set | 102 | # CONFIG_NAMESPACES is not set |
| 91 | CONFIG_BLK_DEV_INITRD=y | 103 | CONFIG_BLK_DEV_INITRD=y |
| 92 | CONFIG_INITRAMFS_SOURCE="" | 104 | CONFIG_INITRAMFS_SOURCE="" |
| 105 | CONFIG_RD_GZIP=y | ||
| 106 | # CONFIG_RD_BZIP2 is not set | ||
| 107 | # CONFIG_RD_LZMA is not set | ||
| 93 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 108 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 94 | CONFIG_SYSCTL=y | 109 | CONFIG_SYSCTL=y |
| 110 | CONFIG_ANON_INODES=y | ||
| 95 | CONFIG_EMBEDDED=y | 111 | CONFIG_EMBEDDED=y |
| 96 | CONFIG_SYSCTL_SYSCALL=y | 112 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | CONFIG_KALLSYMS=y | 113 | CONFIG_KALLSYMS=y |
| 98 | CONFIG_KALLSYMS_ALL=y | 114 | CONFIG_KALLSYMS_ALL=y |
| 99 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 100 | CONFIG_KALLSYMS_EXTRA_PASS=y | 115 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| 116 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 101 | CONFIG_HOTPLUG=y | 117 | CONFIG_HOTPLUG=y |
| 102 | CONFIG_PRINTK=y | 118 | CONFIG_PRINTK=y |
| 103 | CONFIG_BUG=y | 119 | CONFIG_BUG=y |
| 104 | CONFIG_ELF_CORE=y | 120 | CONFIG_ELF_CORE=y |
| 105 | CONFIG_COMPAT_BRK=y | ||
| 106 | CONFIG_BASE_FULL=y | 121 | CONFIG_BASE_FULL=y |
| 107 | CONFIG_FUTEX=y | 122 | CONFIG_FUTEX=y |
| 108 | CONFIG_ANON_INODES=y | ||
| 109 | CONFIG_EPOLL=y | 123 | CONFIG_EPOLL=y |
| 110 | CONFIG_SIGNALFD=y | 124 | CONFIG_SIGNALFD=y |
| 111 | CONFIG_TIMERFD=y | 125 | CONFIG_TIMERFD=y |
| @@ -115,10 +129,12 @@ CONFIG_AIO=y | |||
| 115 | CONFIG_VM_EVENT_COUNTERS=y | 129 | CONFIG_VM_EVENT_COUNTERS=y |
| 116 | CONFIG_PCI_QUIRKS=y | 130 | CONFIG_PCI_QUIRKS=y |
| 117 | CONFIG_SLUB_DEBUG=y | 131 | CONFIG_SLUB_DEBUG=y |
| 132 | CONFIG_COMPAT_BRK=y | ||
| 118 | # CONFIG_SLAB is not set | 133 | # CONFIG_SLAB is not set |
| 119 | CONFIG_SLUB=y | 134 | CONFIG_SLUB=y |
| 120 | # CONFIG_SLOB is not set | 135 | # CONFIG_SLOB is not set |
| 121 | # CONFIG_PROFILING is not set | 136 | # CONFIG_PROFILING is not set |
| 137 | # CONFIG_MARKERS is not set | ||
| 122 | CONFIG_HAVE_OPROFILE=y | 138 | CONFIG_HAVE_OPROFILE=y |
| 123 | # CONFIG_KPROBES is not set | 139 | # CONFIG_KPROBES is not set |
| 124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 140 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -127,6 +143,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 127 | CONFIG_HAVE_KRETPROBES=y | 143 | CONFIG_HAVE_KRETPROBES=y |
| 128 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 144 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 129 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 145 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
| 146 | # CONFIG_SLOW_WORK is not set | ||
| 130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 147 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 131 | CONFIG_SLABINFO=y | 148 | CONFIG_SLABINFO=y |
| 132 | CONFIG_RT_MUTEXES=y | 149 | CONFIG_RT_MUTEXES=y |
| @@ -140,7 +157,6 @@ CONFIG_MODVERSIONS=y | |||
| 140 | CONFIG_STOP_MACHINE=y | 157 | CONFIG_STOP_MACHINE=y |
| 141 | CONFIG_BLOCK=y | 158 | CONFIG_BLOCK=y |
| 142 | CONFIG_LBD=y | 159 | CONFIG_LBD=y |
| 143 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 144 | # CONFIG_BLK_DEV_BSG is not set | 160 | # CONFIG_BLK_DEV_BSG is not set |
| 145 | # CONFIG_BLK_DEV_INTEGRITY is not set | 161 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 146 | 162 | ||
| @@ -156,18 +172,11 @@ CONFIG_IOSCHED_CFQ=y | |||
| 156 | CONFIG_DEFAULT_CFQ=y | 172 | CONFIG_DEFAULT_CFQ=y |
| 157 | # CONFIG_DEFAULT_NOOP is not set | 173 | # CONFIG_DEFAULT_NOOP is not set |
| 158 | CONFIG_DEFAULT_IOSCHED="cfq" | 174 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 159 | CONFIG_CLASSIC_RCU=y | ||
| 160 | # CONFIG_TREE_RCU is not set | ||
| 161 | # CONFIG_PREEMPT_RCU is not set | ||
| 162 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 163 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 164 | # CONFIG_FREEZER is not set | 175 | # CONFIG_FREEZER is not set |
| 165 | 176 | ||
| 166 | # | 177 | # |
| 167 | # Platform support | 178 | # Platform support |
| 168 | # | 179 | # |
| 169 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 170 | CONFIG_CLASSIC32=y | ||
| 171 | # CONFIG_PPC_CHRP is not set | 180 | # CONFIG_PPC_CHRP is not set |
| 172 | # CONFIG_MPC5121_ADS is not set | 181 | # CONFIG_MPC5121_ADS is not set |
| 173 | # CONFIG_MPC5121_GENERIC is not set | 182 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -182,8 +191,11 @@ CONFIG_PPC_86xx=y | |||
| 182 | CONFIG_MPC8641_HPCN=y | 191 | CONFIG_MPC8641_HPCN=y |
| 183 | # CONFIG_SBC8641D is not set | 192 | # CONFIG_SBC8641D is not set |
| 184 | # CONFIG_MPC8610_HPCD is not set | 193 | # CONFIG_MPC8610_HPCD is not set |
| 194 | # CONFIG_GEF_PPC9A is not set | ||
| 195 | # CONFIG_GEF_SBC310 is not set | ||
| 185 | # CONFIG_GEF_SBC610 is not set | 196 | # CONFIG_GEF_SBC610 is not set |
| 186 | CONFIG_MPC8641=y | 197 | CONFIG_MPC8641=y |
| 198 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 187 | # CONFIG_IPIC is not set | 199 | # CONFIG_IPIC is not set |
| 188 | CONFIG_MPIC=y | 200 | CONFIG_MPIC=y |
| 189 | # CONFIG_MPIC_WEIRD is not set | 201 | # CONFIG_MPIC_WEIRD is not set |
| @@ -245,9 +257,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 245 | CONFIG_BOUNCE=y | 257 | CONFIG_BOUNCE=y |
| 246 | CONFIG_VIRT_TO_BUS=y | 258 | CONFIG_VIRT_TO_BUS=y |
| 247 | CONFIG_UNEVICTABLE_LRU=y | 259 | CONFIG_UNEVICTABLE_LRU=y |
| 260 | CONFIG_HAVE_MLOCK=y | ||
| 261 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 248 | CONFIG_PPC_4K_PAGES=y | 262 | CONFIG_PPC_4K_PAGES=y |
| 249 | # CONFIG_PPC_16K_PAGES is not set | 263 | # CONFIG_PPC_16K_PAGES is not set |
| 250 | # CONFIG_PPC_64K_PAGES is not set | 264 | # CONFIG_PPC_64K_PAGES is not set |
| 265 | # CONFIG_PPC_256K_PAGES is not set | ||
| 251 | CONFIG_FORCE_MAX_ZONEORDER=11 | 266 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 252 | CONFIG_PROC_DEVICETREE=y | 267 | CONFIG_PROC_DEVICETREE=y |
| 253 | # CONFIG_CMDLINE_BOOL is not set | 268 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -274,6 +289,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 274 | # CONFIG_PCI_LEGACY is not set | 289 | # CONFIG_PCI_LEGACY is not set |
| 275 | # CONFIG_PCI_DEBUG is not set | 290 | # CONFIG_PCI_DEBUG is not set |
| 276 | # CONFIG_PCI_STUB is not set | 291 | # CONFIG_PCI_STUB is not set |
| 292 | # CONFIG_PCI_IOV is not set | ||
| 277 | # CONFIG_PCCARD is not set | 293 | # CONFIG_PCCARD is not set |
| 278 | # CONFIG_HOTPLUG_PCI is not set | 294 | # CONFIG_HOTPLUG_PCI is not set |
| 279 | CONFIG_HAS_RAPIDIO=y | 295 | CONFIG_HAS_RAPIDIO=y |
| @@ -297,7 +313,6 @@ CONFIG_NET=y | |||
| 297 | # | 313 | # |
| 298 | # Networking options | 314 | # Networking options |
| 299 | # | 315 | # |
| 300 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 301 | CONFIG_PACKET=y | 316 | CONFIG_PACKET=y |
| 302 | # CONFIG_PACKET_MMAP is not set | 317 | # CONFIG_PACKET_MMAP is not set |
| 303 | CONFIG_UNIX=y | 318 | CONFIG_UNIX=y |
| @@ -385,6 +400,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
| 385 | # CONFIG_LAPB is not set | 400 | # CONFIG_LAPB is not set |
| 386 | # CONFIG_ECONET is not set | 401 | # CONFIG_ECONET is not set |
| 387 | # CONFIG_WAN_ROUTER is not set | 402 | # CONFIG_WAN_ROUTER is not set |
| 403 | # CONFIG_PHONET is not set | ||
| 388 | # CONFIG_NET_SCHED is not set | 404 | # CONFIG_NET_SCHED is not set |
| 389 | # CONFIG_DCB is not set | 405 | # CONFIG_DCB is not set |
| 390 | 406 | ||
| @@ -397,7 +413,6 @@ CONFIG_SCTP_HMAC_MD5=y | |||
| 397 | # CONFIG_IRDA is not set | 413 | # CONFIG_IRDA is not set |
| 398 | # CONFIG_BT is not set | 414 | # CONFIG_BT is not set |
| 399 | # CONFIG_AF_RXRPC is not set | 415 | # CONFIG_AF_RXRPC is not set |
| 400 | # CONFIG_PHONET is not set | ||
| 401 | CONFIG_FIB_RULES=y | 416 | CONFIG_FIB_RULES=y |
| 402 | CONFIG_WIRELESS=y | 417 | CONFIG_WIRELESS=y |
| 403 | # CONFIG_CFG80211 is not set | 418 | # CONFIG_CFG80211 is not set |
| @@ -451,13 +466,20 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 451 | # CONFIG_BLK_DEV_HD is not set | 466 | # CONFIG_BLK_DEV_HD is not set |
| 452 | CONFIG_MISC_DEVICES=y | 467 | CONFIG_MISC_DEVICES=y |
| 453 | # CONFIG_PHANTOM is not set | 468 | # CONFIG_PHANTOM is not set |
| 454 | # CONFIG_EEPROM_93CX6 is not set | ||
| 455 | # CONFIG_SGI_IOC4 is not set | 469 | # CONFIG_SGI_IOC4 is not set |
| 456 | # CONFIG_TIFM_CORE is not set | 470 | # CONFIG_TIFM_CORE is not set |
| 457 | # CONFIG_ICS932S401 is not set | 471 | # CONFIG_ICS932S401 is not set |
| 458 | # CONFIG_ENCLOSURE_SERVICES is not set | 472 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 459 | # CONFIG_HP_ILO is not set | 473 | # CONFIG_HP_ILO is not set |
| 474 | # CONFIG_ISL29003 is not set | ||
| 460 | # CONFIG_C2PORT is not set | 475 | # CONFIG_C2PORT is not set |
| 476 | |||
| 477 | # | ||
| 478 | # EEPROM support | ||
| 479 | # | ||
| 480 | # CONFIG_EEPROM_AT24 is not set | ||
| 481 | CONFIG_EEPROM_LEGACY=y | ||
| 482 | # CONFIG_EEPROM_93CX6 is not set | ||
| 461 | CONFIG_HAVE_IDE=y | 483 | CONFIG_HAVE_IDE=y |
| 462 | # CONFIG_IDE is not set | 484 | # CONFIG_IDE is not set |
| 463 | 485 | ||
| @@ -516,9 +538,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 516 | # CONFIG_MEGARAID_NEWGEN is not set | 538 | # CONFIG_MEGARAID_NEWGEN is not set |
| 517 | # CONFIG_MEGARAID_LEGACY is not set | 539 | # CONFIG_MEGARAID_LEGACY is not set |
| 518 | # CONFIG_MEGARAID_SAS is not set | 540 | # CONFIG_MEGARAID_SAS is not set |
| 541 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 519 | # CONFIG_SCSI_HPTIOP is not set | 542 | # CONFIG_SCSI_HPTIOP is not set |
| 520 | # CONFIG_SCSI_BUSLOGIC is not set | 543 | # CONFIG_SCSI_BUSLOGIC is not set |
| 521 | # CONFIG_LIBFC is not set | 544 | # CONFIG_LIBFC is not set |
| 545 | # CONFIG_LIBFCOE is not set | ||
| 522 | # CONFIG_FCOE is not set | 546 | # CONFIG_FCOE is not set |
| 523 | # CONFIG_SCSI_DMX3191D is not set | 547 | # CONFIG_SCSI_DMX3191D is not set |
| 524 | # CONFIG_SCSI_EATA is not set | 548 | # CONFIG_SCSI_EATA is not set |
| @@ -541,6 +565,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 541 | # CONFIG_SCSI_DEBUG is not set | 565 | # CONFIG_SCSI_DEBUG is not set |
| 542 | # CONFIG_SCSI_SRP is not set | 566 | # CONFIG_SCSI_SRP is not set |
| 543 | # CONFIG_SCSI_DH is not set | 567 | # CONFIG_SCSI_DH is not set |
| 568 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 544 | CONFIG_ATA=y | 569 | CONFIG_ATA=y |
| 545 | # CONFIG_ATA_NONSTANDARD is not set | 570 | # CONFIG_ATA_NONSTANDARD is not set |
| 546 | CONFIG_SATA_PMP=y | 571 | CONFIG_SATA_PMP=y |
| @@ -617,6 +642,7 @@ CONFIG_PATA_ALI=y | |||
| 617 | # CONFIG_I2O is not set | 642 | # CONFIG_I2O is not set |
| 618 | # CONFIG_MACINTOSH_DRIVERS is not set | 643 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 619 | CONFIG_NETDEVICES=y | 644 | CONFIG_NETDEVICES=y |
| 645 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 620 | CONFIG_DUMMY=y | 646 | CONFIG_DUMMY=y |
| 621 | # CONFIG_BONDING is not set | 647 | # CONFIG_BONDING is not set |
| 622 | # CONFIG_MACVLAN is not set | 648 | # CONFIG_MACVLAN is not set |
| @@ -650,6 +676,8 @@ CONFIG_MII=y | |||
| 650 | # CONFIG_SUNGEM is not set | 676 | # CONFIG_SUNGEM is not set |
| 651 | # CONFIG_CASSINI is not set | 677 | # CONFIG_CASSINI is not set |
| 652 | # CONFIG_NET_VENDOR_3COM is not set | 678 | # CONFIG_NET_VENDOR_3COM is not set |
| 679 | # CONFIG_ETHOC is not set | ||
| 680 | # CONFIG_DNET is not set | ||
| 653 | # CONFIG_NET_TULIP is not set | 681 | # CONFIG_NET_TULIP is not set |
| 654 | # CONFIG_HP100 is not set | 682 | # CONFIG_HP100 is not set |
| 655 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 683 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -669,6 +697,7 @@ CONFIG_NETDEV_1000=y | |||
| 669 | # CONFIG_E1000E is not set | 697 | # CONFIG_E1000E is not set |
| 670 | # CONFIG_IP1000 is not set | 698 | # CONFIG_IP1000 is not set |
| 671 | # CONFIG_IGB is not set | 699 | # CONFIG_IGB is not set |
| 700 | # CONFIG_IGBVF is not set | ||
| 672 | # CONFIG_NS83820 is not set | 701 | # CONFIG_NS83820 is not set |
| 673 | # CONFIG_HAMACHI is not set | 702 | # CONFIG_HAMACHI is not set |
| 674 | # CONFIG_YELLOWFIN is not set | 703 | # CONFIG_YELLOWFIN is not set |
| @@ -679,11 +708,12 @@ CONFIG_NETDEV_1000=y | |||
| 679 | # CONFIG_VIA_VELOCITY is not set | 708 | # CONFIG_VIA_VELOCITY is not set |
| 680 | # CONFIG_TIGON3 is not set | 709 | # CONFIG_TIGON3 is not set |
| 681 | # CONFIG_BNX2 is not set | 710 | # CONFIG_BNX2 is not set |
| 711 | CONFIG_FSL_PQ_MDIO=y | ||
| 682 | CONFIG_GIANFAR=y | 712 | CONFIG_GIANFAR=y |
| 683 | # CONFIG_MV643XX_ETH is not set | ||
| 684 | # CONFIG_QLA3XXX is not set | 713 | # CONFIG_QLA3XXX is not set |
| 685 | # CONFIG_ATL1 is not set | 714 | # CONFIG_ATL1 is not set |
| 686 | # CONFIG_ATL1E is not set | 715 | # CONFIG_ATL1E is not set |
| 716 | # CONFIG_ATL1C is not set | ||
| 687 | # CONFIG_JME is not set | 717 | # CONFIG_JME is not set |
| 688 | CONFIG_NETDEV_10000=y | 718 | CONFIG_NETDEV_10000=y |
| 689 | # CONFIG_CHELSIO_T1 is not set | 719 | # CONFIG_CHELSIO_T1 is not set |
| @@ -693,6 +723,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 693 | # CONFIG_IXGBE is not set | 723 | # CONFIG_IXGBE is not set |
| 694 | # CONFIG_IXGB is not set | 724 | # CONFIG_IXGB is not set |
| 695 | # CONFIG_S2IO is not set | 725 | # CONFIG_S2IO is not set |
| 726 | # CONFIG_VXGE is not set | ||
| 696 | # CONFIG_MYRI10GE is not set | 727 | # CONFIG_MYRI10GE is not set |
| 697 | # CONFIG_NETXEN_NIC is not set | 728 | # CONFIG_NETXEN_NIC is not set |
| 698 | # CONFIG_NIU is not set | 729 | # CONFIG_NIU is not set |
| @@ -702,6 +733,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 702 | # CONFIG_BNX2X is not set | 733 | # CONFIG_BNX2X is not set |
| 703 | # CONFIG_QLGE is not set | 734 | # CONFIG_QLGE is not set |
| 704 | # CONFIG_SFC is not set | 735 | # CONFIG_SFC is not set |
| 736 | # CONFIG_BE2NET is not set | ||
| 705 | # CONFIG_TR is not set | 737 | # CONFIG_TR is not set |
| 706 | 738 | ||
| 707 | # | 739 | # |
| @@ -709,7 +741,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 709 | # | 741 | # |
| 710 | # CONFIG_WLAN_PRE80211 is not set | 742 | # CONFIG_WLAN_PRE80211 is not set |
| 711 | # CONFIG_WLAN_80211 is not set | 743 | # CONFIG_WLAN_80211 is not set |
| 712 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 713 | 744 | ||
| 714 | # | 745 | # |
| 715 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 746 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -875,12 +906,9 @@ CONFIG_I2C_MPC=y | |||
| 875 | # Miscellaneous I2C Chip support | 906 | # Miscellaneous I2C Chip support |
| 876 | # | 907 | # |
| 877 | # CONFIG_DS1682 is not set | 908 | # CONFIG_DS1682 is not set |
| 878 | # CONFIG_EEPROM_AT24 is not set | ||
| 879 | CONFIG_EEPROM_LEGACY=y | ||
| 880 | # CONFIG_SENSORS_PCF8574 is not set | 909 | # CONFIG_SENSORS_PCF8574 is not set |
| 881 | # CONFIG_PCF8575 is not set | 910 | # CONFIG_PCF8575 is not set |
| 882 | # CONFIG_SENSORS_PCA9539 is not set | 911 | # CONFIG_SENSORS_PCA9539 is not set |
| 883 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 884 | # CONFIG_SENSORS_MAX6875 is not set | 912 | # CONFIG_SENSORS_MAX6875 is not set |
| 885 | # CONFIG_SENSORS_TSL2550 is not set | 913 | # CONFIG_SENSORS_TSL2550 is not set |
| 886 | # CONFIG_I2C_DEBUG_CORE is not set | 914 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -933,7 +961,7 @@ CONFIG_VIDEO_MEDIA=m | |||
| 933 | # | 961 | # |
| 934 | # CONFIG_MEDIA_ATTACH is not set | 962 | # CONFIG_MEDIA_ATTACH is not set |
| 935 | CONFIG_MEDIA_TUNER=m | 963 | CONFIG_MEDIA_TUNER=m |
| 936 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | 964 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
| 937 | CONFIG_MEDIA_TUNER_SIMPLE=m | 965 | CONFIG_MEDIA_TUNER_SIMPLE=m |
| 938 | CONFIG_MEDIA_TUNER_TDA8290=m | 966 | CONFIG_MEDIA_TUNER_TDA8290=m |
| 939 | CONFIG_MEDIA_TUNER_TDA9887=m | 967 | CONFIG_MEDIA_TUNER_TDA9887=m |
| @@ -942,6 +970,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
| 942 | CONFIG_MEDIA_TUNER_MT20XX=m | 970 | CONFIG_MEDIA_TUNER_MT20XX=m |
| 943 | CONFIG_MEDIA_TUNER_XC2028=m | 971 | CONFIG_MEDIA_TUNER_XC2028=m |
| 944 | CONFIG_MEDIA_TUNER_XC5000=m | 972 | CONFIG_MEDIA_TUNER_XC5000=m |
| 973 | CONFIG_MEDIA_TUNER_MC44S803=m | ||
| 945 | # CONFIG_DVB_DYNAMIC_MINORS is not set | 974 | # CONFIG_DVB_DYNAMIC_MINORS is not set |
| 946 | CONFIG_DVB_CAPTURE_DRIVERS=y | 975 | CONFIG_DVB_CAPTURE_DRIVERS=y |
| 947 | 976 | ||
| @@ -981,103 +1010,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 981 | # | 1010 | # |
| 982 | # Supported DVB Frontends | 1011 | # Supported DVB Frontends |
| 983 | # | 1012 | # |
| 984 | |||
| 985 | # | ||
| 986 | # Customise DVB Frontends | ||
| 987 | # | ||
| 988 | # CONFIG_DVB_FE_CUSTOMISE is not set | 1013 | # CONFIG_DVB_FE_CUSTOMISE is not set |
| 989 | |||
| 990 | # | ||
| 991 | # Multistandard (satellite) frontends | ||
| 992 | # | ||
| 993 | # CONFIG_DVB_STB0899 is not set | ||
| 994 | # CONFIG_DVB_STB6100 is not set | ||
| 995 | |||
| 996 | # | ||
| 997 | # DVB-S (satellite) frontends | ||
| 998 | # | ||
| 999 | # CONFIG_DVB_CX24110 is not set | ||
| 1000 | # CONFIG_DVB_CX24123 is not set | ||
| 1001 | # CONFIG_DVB_MT312 is not set | ||
| 1002 | # CONFIG_DVB_S5H1420 is not set | ||
| 1003 | # CONFIG_DVB_STV0288 is not set | ||
| 1004 | # CONFIG_DVB_STB6000 is not set | ||
| 1005 | # CONFIG_DVB_STV0299 is not set | ||
| 1006 | # CONFIG_DVB_TDA8083 is not set | ||
| 1007 | # CONFIG_DVB_TDA10086 is not set | ||
| 1008 | # CONFIG_DVB_TDA8261 is not set | ||
| 1009 | # CONFIG_DVB_VES1X93 is not set | ||
| 1010 | # CONFIG_DVB_TUNER_ITD1000 is not set | ||
| 1011 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
| 1012 | # CONFIG_DVB_TDA826X is not set | ||
| 1013 | # CONFIG_DVB_TUA6100 is not set | ||
| 1014 | # CONFIG_DVB_CX24116 is not set | ||
| 1015 | # CONFIG_DVB_SI21XX is not set | ||
| 1016 | |||
| 1017 | # | ||
| 1018 | # DVB-T (terrestrial) frontends | ||
| 1019 | # | ||
| 1020 | # CONFIG_DVB_SP8870 is not set | ||
| 1021 | # CONFIG_DVB_SP887X is not set | ||
| 1022 | # CONFIG_DVB_CX22700 is not set | ||
| 1023 | # CONFIG_DVB_CX22702 is not set | ||
| 1024 | # CONFIG_DVB_DRX397XD is not set | ||
| 1025 | # CONFIG_DVB_L64781 is not set | ||
| 1026 | # CONFIG_DVB_TDA1004X is not set | ||
| 1027 | # CONFIG_DVB_NXT6000 is not set | ||
| 1028 | # CONFIG_DVB_MT352 is not set | ||
| 1029 | # CONFIG_DVB_ZL10353 is not set | ||
| 1030 | # CONFIG_DVB_DIB3000MB is not set | ||
| 1031 | # CONFIG_DVB_DIB3000MC is not set | ||
| 1032 | # CONFIG_DVB_DIB7000M is not set | ||
| 1033 | # CONFIG_DVB_DIB7000P is not set | ||
| 1034 | # CONFIG_DVB_TDA10048 is not set | ||
| 1035 | |||
| 1036 | # | ||
| 1037 | # DVB-C (cable) frontends | ||
| 1038 | # | ||
| 1039 | # CONFIG_DVB_VES1820 is not set | ||
| 1040 | # CONFIG_DVB_TDA10021 is not set | ||
| 1041 | # CONFIG_DVB_TDA10023 is not set | ||
| 1042 | # CONFIG_DVB_STV0297 is not set | ||
| 1043 | |||
| 1044 | # | ||
| 1045 | # ATSC (North American/Korean Terrestrial/Cable DTV) frontends | ||
| 1046 | # | ||
| 1047 | # CONFIG_DVB_NXT200X is not set | ||
| 1048 | # CONFIG_DVB_OR51211 is not set | ||
| 1049 | # CONFIG_DVB_OR51132 is not set | ||
| 1050 | # CONFIG_DVB_BCM3510 is not set | ||
| 1051 | # CONFIG_DVB_LGDT330X is not set | ||
| 1052 | # CONFIG_DVB_LGDT3304 is not set | ||
| 1053 | # CONFIG_DVB_S5H1409 is not set | ||
| 1054 | # CONFIG_DVB_AU8522 is not set | ||
| 1055 | # CONFIG_DVB_S5H1411 is not set | ||
| 1056 | |||
| 1057 | # | ||
| 1058 | # ISDB-T (terrestrial) frontends | ||
| 1059 | # | ||
| 1060 | # CONFIG_DVB_S921 is not set | ||
| 1061 | |||
| 1062 | # | ||
| 1063 | # Digital terrestrial only tuners/PLL | ||
| 1064 | # | ||
| 1065 | # CONFIG_DVB_PLL is not set | ||
| 1066 | # CONFIG_DVB_TUNER_DIB0070 is not set | ||
| 1067 | |||
| 1068 | # | ||
| 1069 | # SEC control devices for DVB-S | ||
| 1070 | # | ||
| 1071 | # CONFIG_DVB_LNBP21 is not set | ||
| 1072 | # CONFIG_DVB_ISL6405 is not set | ||
| 1073 | # CONFIG_DVB_ISL6421 is not set | ||
| 1074 | # CONFIG_DVB_LGS8GL5 is not set | ||
| 1075 | |||
| 1076 | # | ||
| 1077 | # Tools to develop new frontends | ||
| 1078 | # | ||
| 1079 | # CONFIG_DVB_DUMMY_FE is not set | ||
| 1080 | # CONFIG_DVB_AF9013 is not set | ||
| 1081 | CONFIG_DAB=y | 1014 | CONFIG_DAB=y |
| 1082 | # CONFIG_USB_DABUSB is not set | 1015 | # CONFIG_USB_DABUSB is not set |
| 1083 | 1016 | ||
| @@ -1157,6 +1090,8 @@ CONFIG_SND_PCI=y | |||
| 1157 | # CONFIG_SND_INDIGO is not set | 1090 | # CONFIG_SND_INDIGO is not set |
| 1158 | # CONFIG_SND_INDIGOIO is not set | 1091 | # CONFIG_SND_INDIGOIO is not set |
| 1159 | # CONFIG_SND_INDIGODJ is not set | 1092 | # CONFIG_SND_INDIGODJ is not set |
| 1093 | # CONFIG_SND_INDIGOIOX is not set | ||
| 1094 | # CONFIG_SND_INDIGODJX is not set | ||
| 1160 | # CONFIG_SND_EMU10K1 is not set | 1095 | # CONFIG_SND_EMU10K1 is not set |
| 1161 | # CONFIG_SND_EMU10K1X is not set | 1096 | # CONFIG_SND_EMU10K1X is not set |
| 1162 | # CONFIG_SND_ENS1370 is not set | 1097 | # CONFIG_SND_ENS1370 is not set |
| @@ -1211,15 +1146,17 @@ CONFIG_USB_HID=y | |||
| 1211 | # | 1146 | # |
| 1212 | # Special HID drivers | 1147 | # Special HID drivers |
| 1213 | # | 1148 | # |
| 1214 | CONFIG_HID_COMPAT=y | ||
| 1215 | CONFIG_HID_A4TECH=y | 1149 | CONFIG_HID_A4TECH=y |
| 1216 | CONFIG_HID_APPLE=y | 1150 | CONFIG_HID_APPLE=y |
| 1217 | CONFIG_HID_BELKIN=y | 1151 | CONFIG_HID_BELKIN=y |
| 1218 | CONFIG_HID_CHERRY=y | 1152 | CONFIG_HID_CHERRY=y |
| 1219 | CONFIG_HID_CHICONY=y | 1153 | CONFIG_HID_CHICONY=y |
| 1220 | CONFIG_HID_CYPRESS=y | 1154 | CONFIG_HID_CYPRESS=y |
| 1155 | # CONFIG_DRAGONRISE_FF is not set | ||
| 1221 | CONFIG_HID_EZKEY=y | 1156 | CONFIG_HID_EZKEY=y |
| 1157 | # CONFIG_HID_KYE is not set | ||
| 1222 | CONFIG_HID_GYRATION=y | 1158 | CONFIG_HID_GYRATION=y |
| 1159 | # CONFIG_HID_KENSINGTON is not set | ||
| 1223 | CONFIG_HID_LOGITECH=y | 1160 | CONFIG_HID_LOGITECH=y |
| 1224 | # CONFIG_LOGITECH_FF is not set | 1161 | # CONFIG_LOGITECH_FF is not set |
| 1225 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1162 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
| @@ -1292,11 +1229,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1292 | # CONFIG_USB_TMC is not set | 1229 | # CONFIG_USB_TMC is not set |
| 1293 | 1230 | ||
| 1294 | # | 1231 | # |
| 1295 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1232 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1296 | # | 1233 | # |
| 1297 | 1234 | ||
| 1298 | # | 1235 | # |
| 1299 | # see USB_STORAGE Help for more information | 1236 | # also be needed; see USB_STORAGE Help for more info |
| 1300 | # | 1237 | # |
| 1301 | CONFIG_USB_STORAGE=y | 1238 | CONFIG_USB_STORAGE=y |
| 1302 | # CONFIG_USB_STORAGE_DEBUG is not set | 1239 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1338,7 +1275,6 @@ CONFIG_USB_STORAGE=y | |||
| 1338 | # CONFIG_USB_LED is not set | 1275 | # CONFIG_USB_LED is not set |
| 1339 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1276 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1340 | # CONFIG_USB_CYTHERM is not set | 1277 | # CONFIG_USB_CYTHERM is not set |
| 1341 | # CONFIG_USB_PHIDGET is not set | ||
| 1342 | # CONFIG_USB_IDMOUSE is not set | 1278 | # CONFIG_USB_IDMOUSE is not set |
| 1343 | # CONFIG_USB_FTDI_ELAN is not set | 1279 | # CONFIG_USB_FTDI_ELAN is not set |
| 1344 | # CONFIG_USB_APPLEDISPLAY is not set | 1280 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1354,6 +1290,7 @@ CONFIG_USB_STORAGE=y | |||
| 1354 | # | 1290 | # |
| 1355 | # OTG and related infrastructure | 1291 | # OTG and related infrastructure |
| 1356 | # | 1292 | # |
| 1293 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1357 | # CONFIG_UWB is not set | 1294 | # CONFIG_UWB is not set |
| 1358 | # CONFIG_MMC is not set | 1295 | # CONFIG_MMC is not set |
| 1359 | # CONFIG_MEMSTICK is not set | 1296 | # CONFIG_MEMSTICK is not set |
| @@ -1415,8 +1352,9 @@ CONFIG_RTC_DRV_CMOS=y | |||
| 1415 | # | 1352 | # |
| 1416 | # on-CPU RTC drivers | 1353 | # on-CPU RTC drivers |
| 1417 | # | 1354 | # |
| 1418 | # CONFIG_RTC_DRV_PPC is not set | 1355 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1419 | # CONFIG_DMADEVICES is not set | 1356 | # CONFIG_DMADEVICES is not set |
| 1357 | # CONFIG_AUXDISPLAY is not set | ||
| 1420 | # CONFIG_UIO is not set | 1358 | # CONFIG_UIO is not set |
| 1421 | # CONFIG_STAGING is not set | 1359 | # CONFIG_STAGING is not set |
| 1422 | 1360 | ||
| @@ -1427,6 +1365,7 @@ CONFIG_EXT2_FS=y | |||
| 1427 | # CONFIG_EXT2_FS_XATTR is not set | 1365 | # CONFIG_EXT2_FS_XATTR is not set |
| 1428 | # CONFIG_EXT2_FS_XIP is not set | 1366 | # CONFIG_EXT2_FS_XIP is not set |
| 1429 | CONFIG_EXT3_FS=y | 1367 | CONFIG_EXT3_FS=y |
| 1368 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1430 | CONFIG_EXT3_FS_XATTR=y | 1369 | CONFIG_EXT3_FS_XATTR=y |
| 1431 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1370 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1432 | # CONFIG_EXT3_FS_SECURITY is not set | 1371 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1450,6 +1389,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1450 | # CONFIG_FUSE_FS is not set | 1389 | # CONFIG_FUSE_FS is not set |
| 1451 | 1390 | ||
| 1452 | # | 1391 | # |
| 1392 | # Caches | ||
| 1393 | # | ||
| 1394 | # CONFIG_FSCACHE is not set | ||
| 1395 | |||
| 1396 | # | ||
| 1453 | # CD-ROM/DVD Filesystems | 1397 | # CD-ROM/DVD Filesystems |
| 1454 | # | 1398 | # |
| 1455 | CONFIG_ISO9660_FS=m | 1399 | CONFIG_ISO9660_FS=m |
| @@ -1504,6 +1448,7 @@ CONFIG_SYSV_FS=m | |||
| 1504 | CONFIG_UFS_FS=m | 1448 | CONFIG_UFS_FS=m |
| 1505 | # CONFIG_UFS_FS_WRITE is not set | 1449 | # CONFIG_UFS_FS_WRITE is not set |
| 1506 | # CONFIG_UFS_DEBUG is not set | 1450 | # CONFIG_UFS_DEBUG is not set |
| 1451 | # CONFIG_NILFS2_FS is not set | ||
| 1507 | CONFIG_NETWORK_FILESYSTEMS=y | 1452 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1508 | CONFIG_NFS_FS=y | 1453 | CONFIG_NFS_FS=y |
| 1509 | CONFIG_NFS_V3=y | 1454 | CONFIG_NFS_V3=y |
| @@ -1519,7 +1464,6 @@ CONFIG_EXPORTFS=y | |||
| 1519 | CONFIG_NFS_COMMON=y | 1464 | CONFIG_NFS_COMMON=y |
| 1520 | CONFIG_SUNRPC=y | 1465 | CONFIG_SUNRPC=y |
| 1521 | CONFIG_SUNRPC_GSS=y | 1466 | CONFIG_SUNRPC_GSS=y |
| 1522 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1523 | CONFIG_RPCSEC_GSS_KRB5=y | 1467 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1524 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1468 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1525 | # CONFIG_SMB_FS is not set | 1469 | # CONFIG_SMB_FS is not set |
| @@ -1590,6 +1534,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1590 | # CONFIG_NLS_KOI8_U is not set | 1534 | # CONFIG_NLS_KOI8_U is not set |
| 1591 | CONFIG_NLS_UTF8=m | 1535 | CONFIG_NLS_UTF8=m |
| 1592 | # CONFIG_DLM is not set | 1536 | # CONFIG_DLM is not set |
| 1537 | # CONFIG_BINARY_PRINTF is not set | ||
| 1593 | 1538 | ||
| 1594 | # | 1539 | # |
| 1595 | # Library routines | 1540 | # Library routines |
| @@ -1604,11 +1549,12 @@ CONFIG_CRC32=y | |||
| 1604 | # CONFIG_CRC7 is not set | 1549 | # CONFIG_CRC7 is not set |
| 1605 | CONFIG_LIBCRC32C=m | 1550 | CONFIG_LIBCRC32C=m |
| 1606 | CONFIG_ZLIB_INFLATE=y | 1551 | CONFIG_ZLIB_INFLATE=y |
| 1607 | CONFIG_PLIST=y | 1552 | CONFIG_DECOMPRESS_GZIP=y |
| 1608 | CONFIG_HAS_IOMEM=y | 1553 | CONFIG_HAS_IOMEM=y |
| 1609 | CONFIG_HAS_IOPORT=y | 1554 | CONFIG_HAS_IOPORT=y |
| 1610 | CONFIG_HAS_DMA=y | 1555 | CONFIG_HAS_DMA=y |
| 1611 | CONFIG_HAVE_LMB=y | 1556 | CONFIG_HAVE_LMB=y |
| 1557 | CONFIG_NLATTR=y | ||
| 1612 | 1558 | ||
| 1613 | # | 1559 | # |
| 1614 | # Kernel hacking | 1560 | # Kernel hacking |
| @@ -1626,6 +1572,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1626 | CONFIG_DETECT_SOFTLOCKUP=y | 1572 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1627 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1573 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1628 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1574 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1575 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1576 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1577 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1629 | CONFIG_SCHED_DEBUG=y | 1578 | CONFIG_SCHED_DEBUG=y |
| 1630 | # CONFIG_SCHEDSTATS is not set | 1579 | # CONFIG_SCHEDSTATS is not set |
| 1631 | # CONFIG_TIMER_STATS is not set | 1580 | # CONFIG_TIMER_STATS is not set |
| @@ -1656,9 +1605,12 @@ CONFIG_DEBUG_INFO=y | |||
| 1656 | # CONFIG_FAULT_INJECTION is not set | 1605 | # CONFIG_FAULT_INJECTION is not set |
| 1657 | # CONFIG_LATENCYTOP is not set | 1606 | # CONFIG_LATENCYTOP is not set |
| 1658 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1607 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1608 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1659 | CONFIG_HAVE_FUNCTION_TRACER=y | 1609 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1610 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1660 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1611 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1661 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1612 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1613 | CONFIG_TRACING_SUPPORT=y | ||
| 1662 | 1614 | ||
| 1663 | # | 1615 | # |
| 1664 | # Tracers | 1616 | # Tracers |
| @@ -1666,17 +1618,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1666 | # CONFIG_FUNCTION_TRACER is not set | 1618 | # CONFIG_FUNCTION_TRACER is not set |
| 1667 | # CONFIG_SCHED_TRACER is not set | 1619 | # CONFIG_SCHED_TRACER is not set |
| 1668 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1620 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1621 | # CONFIG_EVENT_TRACER is not set | ||
| 1669 | # CONFIG_BOOT_TRACER is not set | 1622 | # CONFIG_BOOT_TRACER is not set |
| 1670 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1623 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1671 | # CONFIG_STACK_TRACER is not set | 1624 | # CONFIG_STACK_TRACER is not set |
| 1672 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1625 | # CONFIG_KMEMTRACE is not set |
| 1626 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1627 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1673 | # CONFIG_SAMPLES is not set | 1628 | # CONFIG_SAMPLES is not set |
| 1674 | CONFIG_HAVE_ARCH_KGDB=y | 1629 | CONFIG_HAVE_ARCH_KGDB=y |
| 1675 | # CONFIG_KGDB is not set | 1630 | # CONFIG_KGDB is not set |
| 1676 | CONFIG_PRINT_STACK_DEPTH=64 | 1631 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1677 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1632 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1678 | # CONFIG_DEBUG_STACK_USAGE is not set | 1633 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1679 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1680 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1634 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1681 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1635 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1682 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1636 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1707,10 +1661,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1707 | CONFIG_CRYPTO_HASH=y | 1661 | CONFIG_CRYPTO_HASH=y |
| 1708 | CONFIG_CRYPTO_HASH2=y | 1662 | CONFIG_CRYPTO_HASH2=y |
| 1709 | CONFIG_CRYPTO_RNG2=y | 1663 | CONFIG_CRYPTO_RNG2=y |
| 1664 | CONFIG_CRYPTO_PCOMP=y | ||
| 1710 | CONFIG_CRYPTO_MANAGER=y | 1665 | CONFIG_CRYPTO_MANAGER=y |
| 1711 | CONFIG_CRYPTO_MANAGER2=y | 1666 | CONFIG_CRYPTO_MANAGER2=y |
| 1712 | # CONFIG_CRYPTO_GF128MUL is not set | 1667 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1713 | # CONFIG_CRYPTO_NULL is not set | 1668 | # CONFIG_CRYPTO_NULL is not set |
| 1669 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1714 | # CONFIG_CRYPTO_CRYPTD is not set | 1670 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1715 | # CONFIG_CRYPTO_AUTHENC is not set | 1671 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1716 | # CONFIG_CRYPTO_TEST is not set | 1672 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1779,6 +1735,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1779 | # Compression | 1735 | # Compression |
| 1780 | # | 1736 | # |
| 1781 | # CONFIG_CRYPTO_DEFLATE is not set | 1737 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1738 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1782 | # CONFIG_CRYPTO_LZO is not set | 1739 | # CONFIG_CRYPTO_LZO is not set |
| 1783 | 1740 | ||
| 1784 | # | 1741 | # |
diff --git a/arch/powerpc/configs/86xx/sbc8641d_defconfig b/arch/powerpc/configs/86xx/sbc8641d_defconfig index 04797e730c5a..c30a0c715873 100644 --- a/arch/powerpc/configs/86xx/sbc8641d_defconfig +++ b/arch/powerpc/configs/86xx/sbc8641d_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:36:23 2009 | 4 | # Wed May 13 17:22:27 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_PHYS_64BIT is not set | 19 | # CONFIG_PHYS_64BIT is not set |
| 19 | CONFIG_ALTIVEC=y | 20 | CONFIG_ALTIVEC=y |
| @@ -57,6 +58,7 @@ CONFIG_GENERIC_BUG=y | |||
| 57 | CONFIG_DEFAULT_UIMAGE=y | 58 | CONFIG_DEFAULT_UIMAGE=y |
| 58 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 59 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 61 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 61 | 63 | ||
| 62 | # | 64 | # |
| @@ -71,10 +73,20 @@ CONFIG_SWAP=y | |||
| 71 | CONFIG_SYSVIPC=y | 73 | CONFIG_SYSVIPC=y |
| 72 | CONFIG_SYSVIPC_SYSCTL=y | 74 | CONFIG_SYSVIPC_SYSCTL=y |
| 73 | CONFIG_POSIX_MQUEUE=y | 75 | CONFIG_POSIX_MQUEUE=y |
| 76 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 74 | CONFIG_BSD_PROCESS_ACCT=y | 77 | CONFIG_BSD_PROCESS_ACCT=y |
| 75 | CONFIG_BSD_PROCESS_ACCT_V3=y | 78 | CONFIG_BSD_PROCESS_ACCT_V3=y |
| 76 | # CONFIG_TASKSTATS is not set | 79 | # CONFIG_TASKSTATS is not set |
| 77 | # CONFIG_AUDIT is not set | 80 | # CONFIG_AUDIT is not set |
| 81 | |||
| 82 | # | ||
| 83 | # RCU Subsystem | ||
| 84 | # | ||
| 85 | CONFIG_CLASSIC_RCU=y | ||
| 86 | # CONFIG_TREE_RCU is not set | ||
| 87 | # CONFIG_PREEMPT_RCU is not set | ||
| 88 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 89 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 78 | CONFIG_IKCONFIG=y | 90 | CONFIG_IKCONFIG=y |
| 79 | CONFIG_IKCONFIG_PROC=y | 91 | CONFIG_IKCONFIG_PROC=y |
| 80 | CONFIG_LOG_BUF_SHIFT=14 | 92 | CONFIG_LOG_BUF_SHIFT=14 |
| @@ -90,21 +102,24 @@ CONFIG_RELAY=y | |||
| 90 | # CONFIG_NAMESPACES is not set | 102 | # CONFIG_NAMESPACES is not set |
| 91 | CONFIG_BLK_DEV_INITRD=y | 103 | CONFIG_BLK_DEV_INITRD=y |
| 92 | CONFIG_INITRAMFS_SOURCE="" | 104 | CONFIG_INITRAMFS_SOURCE="" |
| 105 | CONFIG_RD_GZIP=y | ||
| 106 | # CONFIG_RD_BZIP2 is not set | ||
| 107 | # CONFIG_RD_LZMA is not set | ||
| 93 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 108 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 94 | CONFIG_SYSCTL=y | 109 | CONFIG_SYSCTL=y |
| 110 | CONFIG_ANON_INODES=y | ||
| 95 | CONFIG_EMBEDDED=y | 111 | CONFIG_EMBEDDED=y |
| 96 | CONFIG_SYSCTL_SYSCALL=y | 112 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | CONFIG_KALLSYMS=y | 113 | CONFIG_KALLSYMS=y |
| 98 | # CONFIG_KALLSYMS_ALL is not set | 114 | # CONFIG_KALLSYMS_ALL is not set |
| 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 115 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 116 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 100 | CONFIG_HOTPLUG=y | 117 | CONFIG_HOTPLUG=y |
| 101 | CONFIG_PRINTK=y | 118 | CONFIG_PRINTK=y |
| 102 | CONFIG_BUG=y | 119 | CONFIG_BUG=y |
| 103 | CONFIG_ELF_CORE=y | 120 | CONFIG_ELF_CORE=y |
| 104 | CONFIG_COMPAT_BRK=y | ||
| 105 | CONFIG_BASE_FULL=y | 121 | CONFIG_BASE_FULL=y |
| 106 | CONFIG_FUTEX=y | 122 | CONFIG_FUTEX=y |
| 107 | CONFIG_ANON_INODES=y | ||
| 108 | CONFIG_EPOLL=y | 123 | CONFIG_EPOLL=y |
| 109 | CONFIG_SIGNALFD=y | 124 | CONFIG_SIGNALFD=y |
| 110 | CONFIG_TIMERFD=y | 125 | CONFIG_TIMERFD=y |
| @@ -113,10 +128,12 @@ CONFIG_SHMEM=y | |||
| 113 | CONFIG_AIO=y | 128 | CONFIG_AIO=y |
| 114 | CONFIG_VM_EVENT_COUNTERS=y | 129 | CONFIG_VM_EVENT_COUNTERS=y |
| 115 | CONFIG_PCI_QUIRKS=y | 130 | CONFIG_PCI_QUIRKS=y |
| 131 | CONFIG_COMPAT_BRK=y | ||
| 116 | CONFIG_SLAB=y | 132 | CONFIG_SLAB=y |
| 117 | # CONFIG_SLUB is not set | 133 | # CONFIG_SLUB is not set |
| 118 | # CONFIG_SLOB is not set | 134 | # CONFIG_SLOB is not set |
| 119 | # CONFIG_PROFILING is not set | 135 | # CONFIG_PROFILING is not set |
| 136 | # CONFIG_MARKERS is not set | ||
| 120 | CONFIG_HAVE_OPROFILE=y | 137 | CONFIG_HAVE_OPROFILE=y |
| 121 | # CONFIG_KPROBES is not set | 138 | # CONFIG_KPROBES is not set |
| 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 139 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -125,6 +142,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 125 | CONFIG_HAVE_KRETPROBES=y | 142 | CONFIG_HAVE_KRETPROBES=y |
| 126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 143 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 127 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 144 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
| 145 | # CONFIG_SLOW_WORK is not set | ||
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 146 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 129 | CONFIG_SLABINFO=y | 147 | CONFIG_SLABINFO=y |
| 130 | CONFIG_RT_MUTEXES=y | 148 | CONFIG_RT_MUTEXES=y |
| @@ -138,7 +156,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 138 | CONFIG_STOP_MACHINE=y | 156 | CONFIG_STOP_MACHINE=y |
| 139 | CONFIG_BLOCK=y | 157 | CONFIG_BLOCK=y |
| 140 | # CONFIG_LBD is not set | 158 | # CONFIG_LBD is not set |
| 141 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 142 | # CONFIG_BLK_DEV_BSG is not set | 159 | # CONFIG_BLK_DEV_BSG is not set |
| 143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 160 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 144 | 161 | ||
| @@ -154,18 +171,11 @@ CONFIG_IOSCHED_CFQ=y | |||
| 154 | CONFIG_DEFAULT_CFQ=y | 171 | CONFIG_DEFAULT_CFQ=y |
| 155 | # CONFIG_DEFAULT_NOOP is not set | 172 | # CONFIG_DEFAULT_NOOP is not set |
| 156 | CONFIG_DEFAULT_IOSCHED="cfq" | 173 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 157 | CONFIG_CLASSIC_RCU=y | ||
| 158 | # CONFIG_TREE_RCU is not set | ||
| 159 | # CONFIG_PREEMPT_RCU is not set | ||
| 160 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 161 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 162 | # CONFIG_FREEZER is not set | 174 | # CONFIG_FREEZER is not set |
| 163 | 175 | ||
| 164 | # | 176 | # |
| 165 | # Platform support | 177 | # Platform support |
| 166 | # | 178 | # |
| 167 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 168 | CONFIG_CLASSIC32=y | ||
| 169 | # CONFIG_PPC_CHRP is not set | 179 | # CONFIG_PPC_CHRP is not set |
| 170 | # CONFIG_MPC5121_ADS is not set | 180 | # CONFIG_MPC5121_ADS is not set |
| 171 | # CONFIG_MPC5121_GENERIC is not set | 181 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -180,8 +190,11 @@ CONFIG_PPC_86xx=y | |||
| 180 | # CONFIG_MPC8641_HPCN is not set | 190 | # CONFIG_MPC8641_HPCN is not set |
| 181 | CONFIG_SBC8641D=y | 191 | CONFIG_SBC8641D=y |
| 182 | # CONFIG_MPC8610_HPCD is not set | 192 | # CONFIG_MPC8610_HPCD is not set |
| 193 | # CONFIG_GEF_PPC9A is not set | ||
| 194 | # CONFIG_GEF_SBC310 is not set | ||
| 183 | # CONFIG_GEF_SBC610 is not set | 195 | # CONFIG_GEF_SBC610 is not set |
| 184 | CONFIG_MPC8641=y | 196 | CONFIG_MPC8641=y |
| 197 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 185 | # CONFIG_IPIC is not set | 198 | # CONFIG_IPIC is not set |
| 186 | CONFIG_MPIC=y | 199 | CONFIG_MPIC=y |
| 187 | # CONFIG_MPIC_WEIRD is not set | 200 | # CONFIG_MPIC_WEIRD is not set |
| @@ -243,9 +256,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 243 | CONFIG_BOUNCE=y | 256 | CONFIG_BOUNCE=y |
| 244 | CONFIG_VIRT_TO_BUS=y | 257 | CONFIG_VIRT_TO_BUS=y |
| 245 | CONFIG_UNEVICTABLE_LRU=y | 258 | CONFIG_UNEVICTABLE_LRU=y |
| 259 | CONFIG_HAVE_MLOCK=y | ||
| 260 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 246 | CONFIG_PPC_4K_PAGES=y | 261 | CONFIG_PPC_4K_PAGES=y |
| 247 | # CONFIG_PPC_16K_PAGES is not set | 262 | # CONFIG_PPC_16K_PAGES is not set |
| 248 | # CONFIG_PPC_64K_PAGES is not set | 263 | # CONFIG_PPC_64K_PAGES is not set |
| 264 | # CONFIG_PPC_256K_PAGES is not set | ||
| 249 | CONFIG_FORCE_MAX_ZONEORDER=11 | 265 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 250 | # CONFIG_PROC_DEVICETREE is not set | 266 | # CONFIG_PROC_DEVICETREE is not set |
| 251 | # CONFIG_CMDLINE_BOOL is not set | 267 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -274,6 +290,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 274 | # CONFIG_PCI_LEGACY is not set | 290 | # CONFIG_PCI_LEGACY is not set |
| 275 | # CONFIG_PCI_DEBUG is not set | 291 | # CONFIG_PCI_DEBUG is not set |
| 276 | # CONFIG_PCI_STUB is not set | 292 | # CONFIG_PCI_STUB is not set |
| 293 | # CONFIG_PCI_IOV is not set | ||
| 277 | # CONFIG_PCCARD is not set | 294 | # CONFIG_PCCARD is not set |
| 278 | # CONFIG_HOTPLUG_PCI is not set | 295 | # CONFIG_HOTPLUG_PCI is not set |
| 279 | # CONFIG_HAS_RAPIDIO is not set | 296 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -296,7 +313,6 @@ CONFIG_NET=y | |||
| 296 | # | 313 | # |
| 297 | # Networking options | 314 | # Networking options |
| 298 | # | 315 | # |
| 299 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 300 | CONFIG_PACKET=y | 316 | CONFIG_PACKET=y |
| 301 | CONFIG_PACKET_MMAP=y | 317 | CONFIG_PACKET_MMAP=y |
| 302 | CONFIG_UNIX=y | 318 | CONFIG_UNIX=y |
| @@ -376,9 +392,11 @@ CONFIG_BRIDGE_NETFILTER=y | |||
| 376 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set | 392 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set |
| 377 | # CONFIG_NETFILTER_NETLINK_LOG is not set | 393 | # CONFIG_NETFILTER_NETLINK_LOG is not set |
| 378 | # CONFIG_NF_CONNTRACK is not set | 394 | # CONFIG_NF_CONNTRACK is not set |
| 395 | # CONFIG_NETFILTER_TPROXY is not set | ||
| 379 | CONFIG_NETFILTER_XTABLES=m | 396 | CONFIG_NETFILTER_XTABLES=m |
| 380 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set | 397 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set |
| 381 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | 398 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set |
| 399 | # CONFIG_NETFILTER_XT_TARGET_HL is not set | ||
| 382 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set | 400 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set |
| 383 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set | 401 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set |
| 384 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set | 402 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set |
| @@ -391,6 +409,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
| 391 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | 409 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set |
| 392 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set | 410 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set |
| 393 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set | 411 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set |
| 412 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
| 394 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | 413 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set |
| 395 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set | 414 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set |
| 396 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set | 415 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set |
| @@ -449,11 +468,11 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
| 449 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 468 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
| 450 | # CONFIG_IP6_NF_MATCH_MH is not set | 469 | # CONFIG_IP6_NF_MATCH_MH is not set |
| 451 | CONFIG_IP6_NF_MATCH_RT=m | 470 | CONFIG_IP6_NF_MATCH_RT=m |
| 471 | # CONFIG_IP6_NF_TARGET_HL is not set | ||
| 452 | CONFIG_IP6_NF_TARGET_LOG=m | 472 | CONFIG_IP6_NF_TARGET_LOG=m |
| 453 | CONFIG_IP6_NF_FILTER=m | 473 | CONFIG_IP6_NF_FILTER=m |
| 454 | # CONFIG_IP6_NF_TARGET_REJECT is not set | 474 | # CONFIG_IP6_NF_TARGET_REJECT is not set |
| 455 | CONFIG_IP6_NF_MANGLE=m | 475 | CONFIG_IP6_NF_MANGLE=m |
| 456 | # CONFIG_IP6_NF_TARGET_HL is not set | ||
| 457 | CONFIG_IP6_NF_RAW=m | 476 | CONFIG_IP6_NF_RAW=m |
| 458 | # CONFIG_IP6_NF_SECURITY is not set | 477 | # CONFIG_IP6_NF_SECURITY is not set |
| 459 | # CONFIG_BRIDGE_NF_EBTABLES is not set | 478 | # CONFIG_BRIDGE_NF_EBTABLES is not set |
| @@ -488,6 +507,7 @@ CONFIG_LLC=m | |||
| 488 | # CONFIG_LAPB is not set | 507 | # CONFIG_LAPB is not set |
| 489 | # CONFIG_ECONET is not set | 508 | # CONFIG_ECONET is not set |
| 490 | CONFIG_WAN_ROUTER=m | 509 | CONFIG_WAN_ROUTER=m |
| 510 | # CONFIG_PHONET is not set | ||
| 491 | CONFIG_NET_SCHED=y | 511 | CONFIG_NET_SCHED=y |
| 492 | 512 | ||
| 493 | # | 513 | # |
| @@ -538,7 +558,6 @@ CONFIG_NET_PKTGEN=m | |||
| 538 | # CONFIG_IRDA is not set | 558 | # CONFIG_IRDA is not set |
| 539 | # CONFIG_BT is not set | 559 | # CONFIG_BT is not set |
| 540 | # CONFIG_AF_RXRPC is not set | 560 | # CONFIG_AF_RXRPC is not set |
| 541 | # CONFIG_PHONET is not set | ||
| 542 | CONFIG_FIB_RULES=y | 561 | CONFIG_FIB_RULES=y |
| 543 | CONFIG_WIRELESS=y | 562 | CONFIG_WIRELESS=y |
| 544 | # CONFIG_CFG80211 is not set | 563 | # CONFIG_CFG80211 is not set |
| @@ -649,7 +668,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 649 | # LPDDR flash memory drivers | 668 | # LPDDR flash memory drivers |
| 650 | # | 669 | # |
| 651 | # CONFIG_MTD_LPDDR is not set | 670 | # CONFIG_MTD_LPDDR is not set |
| 652 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 653 | 671 | ||
| 654 | # | 672 | # |
| 655 | # UBI - Unsorted block images | 673 | # UBI - Unsorted block images |
| @@ -678,13 +696,20 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 678 | # CONFIG_BLK_DEV_HD is not set | 696 | # CONFIG_BLK_DEV_HD is not set |
| 679 | CONFIG_MISC_DEVICES=y | 697 | CONFIG_MISC_DEVICES=y |
| 680 | # CONFIG_PHANTOM is not set | 698 | # CONFIG_PHANTOM is not set |
| 681 | # CONFIG_EEPROM_93CX6 is not set | ||
| 682 | # CONFIG_SGI_IOC4 is not set | 699 | # CONFIG_SGI_IOC4 is not set |
| 683 | # CONFIG_TIFM_CORE is not set | 700 | # CONFIG_TIFM_CORE is not set |
| 684 | # CONFIG_ICS932S401 is not set | 701 | # CONFIG_ICS932S401 is not set |
| 685 | # CONFIG_ENCLOSURE_SERVICES is not set | 702 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 686 | # CONFIG_HP_ILO is not set | 703 | # CONFIG_HP_ILO is not set |
| 704 | # CONFIG_ISL29003 is not set | ||
| 687 | # CONFIG_C2PORT is not set | 705 | # CONFIG_C2PORT is not set |
| 706 | |||
| 707 | # | ||
| 708 | # EEPROM support | ||
| 709 | # | ||
| 710 | # CONFIG_EEPROM_AT24 is not set | ||
| 711 | # CONFIG_EEPROM_LEGACY is not set | ||
| 712 | # CONFIG_EEPROM_93CX6 is not set | ||
| 688 | CONFIG_HAVE_IDE=y | 713 | CONFIG_HAVE_IDE=y |
| 689 | # CONFIG_IDE is not set | 714 | # CONFIG_IDE is not set |
| 690 | 715 | ||
| @@ -729,6 +754,7 @@ CONFIG_DM_ZERO=y | |||
| 729 | # CONFIG_I2O is not set | 754 | # CONFIG_I2O is not set |
| 730 | # CONFIG_MACINTOSH_DRIVERS is not set | 755 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 731 | CONFIG_NETDEVICES=y | 756 | CONFIG_NETDEVICES=y |
| 757 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 732 | CONFIG_DUMMY=m | 758 | CONFIG_DUMMY=m |
| 733 | CONFIG_BONDING=m | 759 | CONFIG_BONDING=m |
| 734 | # CONFIG_MACVLAN is not set | 760 | # CONFIG_MACVLAN is not set |
| @@ -762,6 +788,8 @@ CONFIG_MII=y | |||
| 762 | # CONFIG_SUNGEM is not set | 788 | # CONFIG_SUNGEM is not set |
| 763 | # CONFIG_CASSINI is not set | 789 | # CONFIG_CASSINI is not set |
| 764 | # CONFIG_NET_VENDOR_3COM is not set | 790 | # CONFIG_NET_VENDOR_3COM is not set |
| 791 | # CONFIG_ETHOC is not set | ||
| 792 | # CONFIG_DNET is not set | ||
| 765 | # CONFIG_NET_TULIP is not set | 793 | # CONFIG_NET_TULIP is not set |
| 766 | # CONFIG_HP100 is not set | 794 | # CONFIG_HP100 is not set |
| 767 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 795 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -781,6 +809,7 @@ CONFIG_NETDEV_1000=y | |||
| 781 | # CONFIG_E1000E is not set | 809 | # CONFIG_E1000E is not set |
| 782 | # CONFIG_IP1000 is not set | 810 | # CONFIG_IP1000 is not set |
| 783 | # CONFIG_IGB is not set | 811 | # CONFIG_IGB is not set |
| 812 | # CONFIG_IGBVF is not set | ||
| 784 | # CONFIG_NS83820 is not set | 813 | # CONFIG_NS83820 is not set |
| 785 | # CONFIG_HAMACHI is not set | 814 | # CONFIG_HAMACHI is not set |
| 786 | # CONFIG_YELLOWFIN is not set | 815 | # CONFIG_YELLOWFIN is not set |
| @@ -791,11 +820,12 @@ CONFIG_NETDEV_1000=y | |||
| 791 | # CONFIG_VIA_VELOCITY is not set | 820 | # CONFIG_VIA_VELOCITY is not set |
| 792 | # CONFIG_TIGON3 is not set | 821 | # CONFIG_TIGON3 is not set |
| 793 | # CONFIG_BNX2 is not set | 822 | # CONFIG_BNX2 is not set |
| 823 | CONFIG_FSL_PQ_MDIO=y | ||
| 794 | CONFIG_GIANFAR=y | 824 | CONFIG_GIANFAR=y |
| 795 | # CONFIG_MV643XX_ETH is not set | ||
| 796 | # CONFIG_QLA3XXX is not set | 825 | # CONFIG_QLA3XXX is not set |
| 797 | # CONFIG_ATL1 is not set | 826 | # CONFIG_ATL1 is not set |
| 798 | # CONFIG_ATL1E is not set | 827 | # CONFIG_ATL1E is not set |
| 828 | # CONFIG_ATL1C is not set | ||
| 799 | # CONFIG_JME is not set | 829 | # CONFIG_JME is not set |
| 800 | # CONFIG_NETDEV_10000 is not set | 830 | # CONFIG_NETDEV_10000 is not set |
| 801 | # CONFIG_TR is not set | 831 | # CONFIG_TR is not set |
| @@ -805,7 +835,6 @@ CONFIG_GIANFAR=y | |||
| 805 | # | 835 | # |
| 806 | # CONFIG_WLAN_PRE80211 is not set | 836 | # CONFIG_WLAN_PRE80211 is not set |
| 807 | # CONFIG_WLAN_80211 is not set | 837 | # CONFIG_WLAN_80211 is not set |
| 808 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 809 | 838 | ||
| 810 | # | 839 | # |
| 811 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 840 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -923,6 +952,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 923 | # CONFIG_HVC_UDBG is not set | 952 | # CONFIG_HVC_UDBG is not set |
| 924 | # CONFIG_IPMI_HANDLER is not set | 953 | # CONFIG_IPMI_HANDLER is not set |
| 925 | CONFIG_HW_RANDOM=m | 954 | CONFIG_HW_RANDOM=m |
| 955 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 926 | # CONFIG_NVRAM is not set | 956 | # CONFIG_NVRAM is not set |
| 927 | # CONFIG_GEN_RTC is not set | 957 | # CONFIG_GEN_RTC is not set |
| 928 | # CONFIG_R3964 is not set | 958 | # CONFIG_R3964 is not set |
| @@ -985,12 +1015,9 @@ CONFIG_I2C_MPC=y | |||
| 985 | # Miscellaneous I2C Chip support | 1015 | # Miscellaneous I2C Chip support |
| 986 | # | 1016 | # |
| 987 | # CONFIG_DS1682 is not set | 1017 | # CONFIG_DS1682 is not set |
| 988 | # CONFIG_EEPROM_AT24 is not set | ||
| 989 | # CONFIG_EEPROM_LEGACY is not set | ||
| 990 | # CONFIG_SENSORS_PCF8574 is not set | 1018 | # CONFIG_SENSORS_PCF8574 is not set |
| 991 | # CONFIG_PCF8575 is not set | 1019 | # CONFIG_PCF8575 is not set |
| 992 | # CONFIG_SENSORS_PCA9539 is not set | 1020 | # CONFIG_SENSORS_PCA9539 is not set |
| 993 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 994 | # CONFIG_SENSORS_MAX6875 is not set | 1021 | # CONFIG_SENSORS_MAX6875 is not set |
| 995 | # CONFIG_SENSORS_TSL2550 is not set | 1022 | # CONFIG_SENSORS_TSL2550 is not set |
| 996 | # CONFIG_I2C_DEBUG_CORE is not set | 1023 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -1022,6 +1049,7 @@ CONFIG_HWMON=y | |||
| 1022 | # CONFIG_SENSORS_F71805F is not set | 1049 | # CONFIG_SENSORS_F71805F is not set |
| 1023 | # CONFIG_SENSORS_F71882FG is not set | 1050 | # CONFIG_SENSORS_F71882FG is not set |
| 1024 | # CONFIG_SENSORS_F75375S is not set | 1051 | # CONFIG_SENSORS_F75375S is not set |
| 1052 | # CONFIG_SENSORS_G760A is not set | ||
| 1025 | # CONFIG_SENSORS_GL518SM is not set | 1053 | # CONFIG_SENSORS_GL518SM is not set |
| 1026 | # CONFIG_SENSORS_GL520SM is not set | 1054 | # CONFIG_SENSORS_GL520SM is not set |
| 1027 | # CONFIG_SENSORS_IT87 is not set | 1055 | # CONFIG_SENSORS_IT87 is not set |
| @@ -1036,11 +1064,14 @@ CONFIG_HWMON=y | |||
| 1036 | # CONFIG_SENSORS_LM90 is not set | 1064 | # CONFIG_SENSORS_LM90 is not set |
| 1037 | # CONFIG_SENSORS_LM92 is not set | 1065 | # CONFIG_SENSORS_LM92 is not set |
| 1038 | # CONFIG_SENSORS_LM93 is not set | 1066 | # CONFIG_SENSORS_LM93 is not set |
| 1067 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 1039 | # CONFIG_SENSORS_LTC4245 is not set | 1068 | # CONFIG_SENSORS_LTC4245 is not set |
| 1069 | # CONFIG_SENSORS_LM95241 is not set | ||
| 1040 | # CONFIG_SENSORS_MAX1619 is not set | 1070 | # CONFIG_SENSORS_MAX1619 is not set |
| 1041 | # CONFIG_SENSORS_MAX6650 is not set | 1071 | # CONFIG_SENSORS_MAX6650 is not set |
| 1042 | # CONFIG_SENSORS_PC87360 is not set | 1072 | # CONFIG_SENSORS_PC87360 is not set |
| 1043 | # CONFIG_SENSORS_PC87427 is not set | 1073 | # CONFIG_SENSORS_PC87427 is not set |
| 1074 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1044 | # CONFIG_SENSORS_SIS5595 is not set | 1075 | # CONFIG_SENSORS_SIS5595 is not set |
| 1045 | # CONFIG_SENSORS_DME1737 is not set | 1076 | # CONFIG_SENSORS_DME1737 is not set |
| 1046 | # CONFIG_SENSORS_SMSC47M1 is not set | 1077 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -1145,7 +1176,6 @@ CONFIG_HID=y | |||
| 1145 | # | 1176 | # |
| 1146 | # Special HID drivers | 1177 | # Special HID drivers |
| 1147 | # | 1178 | # |
| 1148 | CONFIG_HID_COMPAT=y | ||
| 1149 | CONFIG_USB_SUPPORT=y | 1179 | CONFIG_USB_SUPPORT=y |
| 1150 | CONFIG_USB_ARCH_HAS_HCD=y | 1180 | CONFIG_USB_ARCH_HAS_HCD=y |
| 1151 | CONFIG_USB_ARCH_HAS_OHCI=y | 1181 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1159,7 +1189,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1159 | # | 1189 | # |
| 1160 | 1190 | ||
| 1161 | # | 1191 | # |
| 1162 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1192 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1163 | # | 1193 | # |
| 1164 | # CONFIG_USB_GADGET is not set | 1194 | # CONFIG_USB_GADGET is not set |
| 1165 | 1195 | ||
| @@ -1175,6 +1205,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 1175 | # CONFIG_EDAC is not set | 1205 | # CONFIG_EDAC is not set |
| 1176 | # CONFIG_RTC_CLASS is not set | 1206 | # CONFIG_RTC_CLASS is not set |
| 1177 | # CONFIG_DMADEVICES is not set | 1207 | # CONFIG_DMADEVICES is not set |
| 1208 | # CONFIG_AUXDISPLAY is not set | ||
| 1178 | # CONFIG_UIO is not set | 1209 | # CONFIG_UIO is not set |
| 1179 | # CONFIG_STAGING is not set | 1210 | # CONFIG_STAGING is not set |
| 1180 | 1211 | ||
| @@ -1187,6 +1218,7 @@ CONFIG_EXT2_FS_POSIX_ACL=y | |||
| 1187 | # CONFIG_EXT2_FS_SECURITY is not set | 1218 | # CONFIG_EXT2_FS_SECURITY is not set |
| 1188 | # CONFIG_EXT2_FS_XIP is not set | 1219 | # CONFIG_EXT2_FS_XIP is not set |
| 1189 | CONFIG_EXT3_FS=y | 1220 | CONFIG_EXT3_FS=y |
| 1221 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1190 | CONFIG_EXT3_FS_XATTR=y | 1222 | CONFIG_EXT3_FS_XATTR=y |
| 1191 | CONFIG_EXT3_FS_POSIX_ACL=y | 1223 | CONFIG_EXT3_FS_POSIX_ACL=y |
| 1192 | # CONFIG_EXT3_FS_SECURITY is not set | 1224 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1228,6 +1260,11 @@ CONFIG_AUTOFS4_FS=m | |||
| 1228 | # CONFIG_FUSE_FS is not set | 1260 | # CONFIG_FUSE_FS is not set |
| 1229 | 1261 | ||
| 1230 | # | 1262 | # |
| 1263 | # Caches | ||
| 1264 | # | ||
| 1265 | # CONFIG_FSCACHE is not set | ||
| 1266 | |||
| 1267 | # | ||
| 1231 | # CD-ROM/DVD Filesystems | 1268 | # CD-ROM/DVD Filesystems |
| 1232 | # | 1269 | # |
| 1233 | # CONFIG_ISO9660_FS is not set | 1270 | # CONFIG_ISO9660_FS is not set |
| @@ -1269,8 +1306,13 @@ CONFIG_MINIX_FS=m | |||
| 1269 | # CONFIG_HPFS_FS is not set | 1306 | # CONFIG_HPFS_FS is not set |
| 1270 | # CONFIG_QNX4FS_FS is not set | 1307 | # CONFIG_QNX4FS_FS is not set |
| 1271 | CONFIG_ROMFS_FS=m | 1308 | CONFIG_ROMFS_FS=m |
| 1309 | CONFIG_ROMFS_BACKED_BY_BLOCK=y | ||
| 1310 | # CONFIG_ROMFS_BACKED_BY_MTD is not set | ||
| 1311 | # CONFIG_ROMFS_BACKED_BY_BOTH is not set | ||
| 1312 | CONFIG_ROMFS_ON_BLOCK=y | ||
| 1272 | # CONFIG_SYSV_FS is not set | 1313 | # CONFIG_SYSV_FS is not set |
| 1273 | # CONFIG_UFS_FS is not set | 1314 | # CONFIG_UFS_FS is not set |
| 1315 | # CONFIG_NILFS2_FS is not set | ||
| 1274 | CONFIG_NETWORK_FILESYSTEMS=y | 1316 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1275 | CONFIG_NFS_FS=y | 1317 | CONFIG_NFS_FS=y |
| 1276 | CONFIG_NFS_V3=y | 1318 | CONFIG_NFS_V3=y |
| @@ -1283,7 +1325,6 @@ CONFIG_LOCKD_V4=y | |||
| 1283 | CONFIG_NFS_COMMON=y | 1325 | CONFIG_NFS_COMMON=y |
| 1284 | CONFIG_SUNRPC=y | 1326 | CONFIG_SUNRPC=y |
| 1285 | CONFIG_SUNRPC_GSS=y | 1327 | CONFIG_SUNRPC_GSS=y |
| 1286 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1287 | CONFIG_RPCSEC_GSS_KRB5=y | 1328 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1288 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1329 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1289 | CONFIG_SMB_FS=m | 1330 | CONFIG_SMB_FS=m |
| @@ -1346,6 +1387,7 @@ CONFIG_NLS_KOI8_R=m | |||
| 1346 | CONFIG_NLS_KOI8_U=m | 1387 | CONFIG_NLS_KOI8_U=m |
| 1347 | CONFIG_NLS_UTF8=m | 1388 | CONFIG_NLS_UTF8=m |
| 1348 | # CONFIG_DLM is not set | 1389 | # CONFIG_DLM is not set |
| 1390 | # CONFIG_BINARY_PRINTF is not set | ||
| 1349 | 1391 | ||
| 1350 | # | 1392 | # |
| 1351 | # Library routines | 1393 | # Library routines |
| @@ -1359,13 +1401,14 @@ CONFIG_CRC_CCITT=m | |||
| 1359 | CONFIG_CRC32=y | 1401 | CONFIG_CRC32=y |
| 1360 | # CONFIG_CRC7 is not set | 1402 | # CONFIG_CRC7 is not set |
| 1361 | CONFIG_LIBCRC32C=m | 1403 | CONFIG_LIBCRC32C=m |
| 1362 | CONFIG_ZLIB_INFLATE=m | 1404 | CONFIG_ZLIB_INFLATE=y |
| 1363 | CONFIG_ZLIB_DEFLATE=m | 1405 | CONFIG_ZLIB_DEFLATE=m |
| 1364 | CONFIG_PLIST=y | 1406 | CONFIG_DECOMPRESS_GZIP=y |
| 1365 | CONFIG_HAS_IOMEM=y | 1407 | CONFIG_HAS_IOMEM=y |
| 1366 | CONFIG_HAS_IOPORT=y | 1408 | CONFIG_HAS_IOPORT=y |
| 1367 | CONFIG_HAS_DMA=y | 1409 | CONFIG_HAS_DMA=y |
| 1368 | CONFIG_HAVE_LMB=y | 1410 | CONFIG_HAVE_LMB=y |
| 1411 | CONFIG_NLATTR=y | ||
| 1369 | 1412 | ||
| 1370 | # | 1413 | # |
| 1371 | # Kernel hacking | 1414 | # Kernel hacking |
| @@ -1383,6 +1426,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1383 | CONFIG_DETECT_SOFTLOCKUP=y | 1426 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1384 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1427 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1385 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1428 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1429 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1430 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1431 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1386 | CONFIG_SCHED_DEBUG=y | 1432 | CONFIG_SCHED_DEBUG=y |
| 1387 | # CONFIG_SCHEDSTATS is not set | 1433 | # CONFIG_SCHEDSTATS is not set |
| 1388 | # CONFIG_TIMER_STATS is not set | 1434 | # CONFIG_TIMER_STATS is not set |
| @@ -1411,9 +1457,12 @@ CONFIG_DEBUG_INFO=y | |||
| 1411 | # CONFIG_FAULT_INJECTION is not set | 1457 | # CONFIG_FAULT_INJECTION is not set |
| 1412 | # CONFIG_LATENCYTOP is not set | 1458 | # CONFIG_LATENCYTOP is not set |
| 1413 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1459 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1460 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1414 | CONFIG_HAVE_FUNCTION_TRACER=y | 1461 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1462 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1415 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1463 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1416 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1464 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1465 | CONFIG_TRACING_SUPPORT=y | ||
| 1417 | 1466 | ||
| 1418 | # | 1467 | # |
| 1419 | # Tracers | 1468 | # Tracers |
| @@ -1422,17 +1471,20 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1422 | # CONFIG_PREEMPT_TRACER is not set | 1471 | # CONFIG_PREEMPT_TRACER is not set |
| 1423 | # CONFIG_SCHED_TRACER is not set | 1472 | # CONFIG_SCHED_TRACER is not set |
| 1424 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1473 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1474 | # CONFIG_EVENT_TRACER is not set | ||
| 1425 | # CONFIG_BOOT_TRACER is not set | 1475 | # CONFIG_BOOT_TRACER is not set |
| 1426 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1476 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1427 | # CONFIG_STACK_TRACER is not set | 1477 | # CONFIG_STACK_TRACER is not set |
| 1428 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1478 | # CONFIG_KMEMTRACE is not set |
| 1479 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1480 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1481 | # CONFIG_DYNAMIC_DEBUG is not set | ||
| 1429 | # CONFIG_SAMPLES is not set | 1482 | # CONFIG_SAMPLES is not set |
| 1430 | CONFIG_HAVE_ARCH_KGDB=y | 1483 | CONFIG_HAVE_ARCH_KGDB=y |
| 1431 | # CONFIG_KGDB is not set | 1484 | # CONFIG_KGDB is not set |
| 1432 | CONFIG_PRINT_STACK_DEPTH=64 | 1485 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1433 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1486 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1434 | # CONFIG_DEBUG_STACK_USAGE is not set | 1487 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1435 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1436 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1488 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1437 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1489 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1438 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1490 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1454,6 +1506,7 @@ CONFIG_SECURITY_NETWORK=y | |||
| 1454 | # CONFIG_SECURITY_PATH is not set | 1506 | # CONFIG_SECURITY_PATH is not set |
| 1455 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1507 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
| 1456 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 | 1508 | CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0 |
| 1509 | # CONFIG_SECURITY_TOMOYO is not set | ||
| 1457 | CONFIG_CRYPTO=y | 1510 | CONFIG_CRYPTO=y |
| 1458 | 1511 | ||
| 1459 | # | 1512 | # |
| @@ -1469,10 +1522,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1469 | CONFIG_CRYPTO_HASH=y | 1522 | CONFIG_CRYPTO_HASH=y |
| 1470 | CONFIG_CRYPTO_HASH2=y | 1523 | CONFIG_CRYPTO_HASH2=y |
| 1471 | CONFIG_CRYPTO_RNG2=y | 1524 | CONFIG_CRYPTO_RNG2=y |
| 1525 | CONFIG_CRYPTO_PCOMP=y | ||
| 1472 | CONFIG_CRYPTO_MANAGER=y | 1526 | CONFIG_CRYPTO_MANAGER=y |
| 1473 | CONFIG_CRYPTO_MANAGER2=y | 1527 | CONFIG_CRYPTO_MANAGER2=y |
| 1474 | # CONFIG_CRYPTO_GF128MUL is not set | 1528 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1475 | CONFIG_CRYPTO_NULL=m | 1529 | CONFIG_CRYPTO_NULL=m |
| 1530 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1476 | # CONFIG_CRYPTO_CRYPTD is not set | 1531 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1477 | CONFIG_CRYPTO_AUTHENC=m | 1532 | CONFIG_CRYPTO_AUTHENC=m |
| 1478 | CONFIG_CRYPTO_TEST=m | 1533 | CONFIG_CRYPTO_TEST=m |
| @@ -1542,6 +1597,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
| 1542 | # Compression | 1597 | # Compression |
| 1543 | # | 1598 | # |
| 1544 | CONFIG_CRYPTO_DEFLATE=m | 1599 | CONFIG_CRYPTO_DEFLATE=m |
| 1600 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1545 | # CONFIG_CRYPTO_LZO is not set | 1601 | # CONFIG_CRYPTO_LZO is not set |
| 1546 | 1602 | ||
| 1547 | # | 1603 | # |
diff --git a/arch/powerpc/configs/adder875_defconfig b/arch/powerpc/configs/adder875_defconfig index aaab5cc3751c..74f7f7c6fdc4 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:24 2009 | 4 | # Wed May 13 17:21:50 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -53,6 +53,7 @@ CONFIG_GENERIC_BUG=y | |||
| 53 | CONFIG_REDBOOT=y | 53 | CONFIG_REDBOOT=y |
| 54 | # CONFIG_PPC_DCR_NATIVE is not set | 54 | # CONFIG_PPC_DCR_NATIVE is not set |
| 55 | # CONFIG_PPC_DCR_MMIO is not set | 55 | # CONFIG_PPC_DCR_MMIO is not set |
| 56 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 57 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 57 | 58 | ||
| 58 | # | 59 | # |
| @@ -70,6 +71,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 70 | # CONFIG_BSD_PROCESS_ACCT is not set | 71 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 71 | # CONFIG_TASKSTATS is not set | 72 | # CONFIG_TASKSTATS is not set |
| 72 | # CONFIG_AUDIT is not set | 73 | # CONFIG_AUDIT is not set |
| 74 | |||
| 75 | # | ||
| 76 | # RCU Subsystem | ||
| 77 | # | ||
| 78 | CONFIG_CLASSIC_RCU=y | ||
| 79 | # CONFIG_TREE_RCU is not set | ||
| 80 | # CONFIG_PREEMPT_RCU is not set | ||
| 81 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 82 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 73 | # CONFIG_IKCONFIG is not set | 83 | # CONFIG_IKCONFIG is not set |
| 74 | CONFIG_LOG_BUF_SHIFT=14 | 84 | CONFIG_LOG_BUF_SHIFT=14 |
| 75 | CONFIG_GROUP_SCHED=y | 85 | CONFIG_GROUP_SCHED=y |
| @@ -85,19 +95,19 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 85 | # CONFIG_BLK_DEV_INITRD is not set | 95 | # CONFIG_BLK_DEV_INITRD is not set |
| 86 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 96 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 87 | CONFIG_SYSCTL=y | 97 | CONFIG_SYSCTL=y |
| 98 | CONFIG_ANON_INODES=y | ||
| 88 | CONFIG_EMBEDDED=y | 99 | CONFIG_EMBEDDED=y |
| 89 | # CONFIG_SYSCTL_SYSCALL is not set | 100 | # CONFIG_SYSCTL_SYSCALL is not set |
| 90 | CONFIG_KALLSYMS=y | 101 | CONFIG_KALLSYMS=y |
| 91 | # CONFIG_KALLSYMS_ALL is not set | 102 | # CONFIG_KALLSYMS_ALL is not set |
| 92 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 103 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 104 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 93 | CONFIG_HOTPLUG=y | 105 | CONFIG_HOTPLUG=y |
| 94 | CONFIG_PRINTK=y | 106 | CONFIG_PRINTK=y |
| 95 | CONFIG_BUG=y | 107 | CONFIG_BUG=y |
| 96 | # CONFIG_ELF_CORE is not set | 108 | # CONFIG_ELF_CORE is not set |
| 97 | CONFIG_COMPAT_BRK=y | ||
| 98 | # CONFIG_BASE_FULL is not set | 109 | # CONFIG_BASE_FULL is not set |
| 99 | # CONFIG_FUTEX is not set | 110 | # CONFIG_FUTEX is not set |
| 100 | CONFIG_ANON_INODES=y | ||
| 101 | CONFIG_EPOLL=y | 111 | CONFIG_EPOLL=y |
| 102 | CONFIG_SIGNALFD=y | 112 | CONFIG_SIGNALFD=y |
| 103 | CONFIG_TIMERFD=y | 113 | CONFIG_TIMERFD=y |
| @@ -106,10 +116,12 @@ CONFIG_SHMEM=y | |||
| 106 | CONFIG_AIO=y | 116 | CONFIG_AIO=y |
| 107 | # CONFIG_VM_EVENT_COUNTERS is not set | 117 | # CONFIG_VM_EVENT_COUNTERS is not set |
| 108 | CONFIG_SLUB_DEBUG=y | 118 | CONFIG_SLUB_DEBUG=y |
| 119 | CONFIG_COMPAT_BRK=y | ||
| 109 | # CONFIG_SLAB is not set | 120 | # CONFIG_SLAB is not set |
| 110 | CONFIG_SLUB=y | 121 | CONFIG_SLUB=y |
| 111 | # CONFIG_SLOB is not set | 122 | # CONFIG_SLOB is not set |
| 112 | # CONFIG_PROFILING is not set | 123 | # CONFIG_PROFILING is not set |
| 124 | # CONFIG_MARKERS is not set | ||
| 113 | CONFIG_HAVE_OPROFILE=y | 125 | CONFIG_HAVE_OPROFILE=y |
| 114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 126 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 115 | CONFIG_HAVE_IOREMAP_PROT=y | 127 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -117,13 +129,13 @@ CONFIG_HAVE_KPROBES=y | |||
| 117 | CONFIG_HAVE_KRETPROBES=y | 129 | CONFIG_HAVE_KRETPROBES=y |
| 118 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 130 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 119 | CONFIG_HAVE_CLK=y | 131 | CONFIG_HAVE_CLK=y |
| 132 | # CONFIG_SLOW_WORK is not set | ||
| 120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 121 | CONFIG_SLABINFO=y | 134 | CONFIG_SLABINFO=y |
| 122 | CONFIG_BASE_SMALL=1 | 135 | CONFIG_BASE_SMALL=1 |
| 123 | # CONFIG_MODULES is not set | 136 | # CONFIG_MODULES is not set |
| 124 | CONFIG_BLOCK=y | 137 | CONFIG_BLOCK=y |
| 125 | # CONFIG_LBD is not set | 138 | # CONFIG_LBD is not set |
| 126 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 127 | # CONFIG_BLK_DEV_BSG is not set | 139 | # CONFIG_BLK_DEV_BSG is not set |
| 128 | # CONFIG_BLK_DEV_INTEGRITY is not set | 140 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 129 | 141 | ||
| @@ -139,11 +151,6 @@ CONFIG_DEFAULT_DEADLINE=y | |||
| 139 | # CONFIG_DEFAULT_CFQ is not set | 151 | # CONFIG_DEFAULT_CFQ is not set |
| 140 | # CONFIG_DEFAULT_NOOP is not set | 152 | # CONFIG_DEFAULT_NOOP is not set |
| 141 | CONFIG_DEFAULT_IOSCHED="deadline" | 153 | CONFIG_DEFAULT_IOSCHED="deadline" |
| 142 | CONFIG_CLASSIC_RCU=y | ||
| 143 | # CONFIG_TREE_RCU is not set | ||
| 144 | # CONFIG_PREEMPT_RCU is not set | ||
| 145 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 146 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 147 | # CONFIG_FREEZER is not set | 154 | # CONFIG_FREEZER is not set |
| 148 | 155 | ||
| 149 | # | 156 | # |
| @@ -233,9 +240,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 233 | CONFIG_BOUNCE=y | 240 | CONFIG_BOUNCE=y |
| 234 | CONFIG_VIRT_TO_BUS=y | 241 | CONFIG_VIRT_TO_BUS=y |
| 235 | CONFIG_UNEVICTABLE_LRU=y | 242 | CONFIG_UNEVICTABLE_LRU=y |
| 243 | CONFIG_HAVE_MLOCK=y | ||
| 244 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 236 | CONFIG_PPC_4K_PAGES=y | 245 | CONFIG_PPC_4K_PAGES=y |
| 237 | # CONFIG_PPC_16K_PAGES is not set | 246 | # CONFIG_PPC_16K_PAGES is not set |
| 238 | # CONFIG_PPC_64K_PAGES is not set | 247 | # CONFIG_PPC_64K_PAGES is not set |
| 248 | # CONFIG_PPC_256K_PAGES is not set | ||
| 239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 249 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 240 | # CONFIG_PROC_DEVICETREE is not set | 250 | # CONFIG_PROC_DEVICETREE is not set |
| 241 | # CONFIG_CMDLINE_BOOL is not set | 251 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -270,14 +280,11 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 270 | CONFIG_KERNEL_START=0xc0000000 | 280 | CONFIG_KERNEL_START=0xc0000000 |
| 271 | CONFIG_PHYSICAL_START=0x00000000 | 281 | CONFIG_PHYSICAL_START=0x00000000 |
| 272 | CONFIG_TASK_SIZE=0x80000000 | 282 | CONFIG_TASK_SIZE=0x80000000 |
| 273 | CONFIG_CONSISTENT_START=0xfd000000 | ||
| 274 | CONFIG_CONSISTENT_SIZE=0x00200000 | ||
| 275 | CONFIG_NET=y | 283 | CONFIG_NET=y |
| 276 | 284 | ||
| 277 | # | 285 | # |
| 278 | # Networking options | 286 | # Networking options |
| 279 | # | 287 | # |
| 280 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 281 | CONFIG_PACKET=y | 288 | CONFIG_PACKET=y |
| 282 | # CONFIG_PACKET_MMAP is not set | 289 | # CONFIG_PACKET_MMAP is not set |
| 283 | CONFIG_UNIX=y | 290 | CONFIG_UNIX=y |
| @@ -328,6 +335,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 328 | # CONFIG_LAPB is not set | 335 | # CONFIG_LAPB is not set |
| 329 | # CONFIG_ECONET is not set | 336 | # CONFIG_ECONET is not set |
| 330 | # CONFIG_WAN_ROUTER is not set | 337 | # CONFIG_WAN_ROUTER is not set |
| 338 | # CONFIG_PHONET is not set | ||
| 331 | # CONFIG_NET_SCHED is not set | 339 | # CONFIG_NET_SCHED is not set |
| 332 | # CONFIG_DCB is not set | 340 | # CONFIG_DCB is not set |
| 333 | 341 | ||
| @@ -340,7 +348,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 340 | # CONFIG_IRDA is not set | 348 | # CONFIG_IRDA is not set |
| 341 | # CONFIG_BT is not set | 349 | # CONFIG_BT is not set |
| 342 | # CONFIG_AF_RXRPC is not set | 350 | # CONFIG_AF_RXRPC is not set |
| 343 | # CONFIG_PHONET is not set | ||
| 344 | CONFIG_WIRELESS=y | 351 | CONFIG_WIRELESS=y |
| 345 | # CONFIG_CFG80211 is not set | 352 | # CONFIG_CFG80211 is not set |
| 346 | CONFIG_WIRELESS_OLD_REGULATORY=y | 353 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -439,7 +446,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 439 | # LPDDR flash memory drivers | 446 | # LPDDR flash memory drivers |
| 440 | # | 447 | # |
| 441 | # CONFIG_MTD_LPDDR is not set | 448 | # CONFIG_MTD_LPDDR is not set |
| 442 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 443 | 449 | ||
| 444 | # | 450 | # |
| 445 | # UBI - Unsorted block images | 451 | # UBI - Unsorted block images |
| @@ -463,6 +469,7 @@ CONFIG_HAVE_IDE=y | |||
| 463 | # CONFIG_MD is not set | 469 | # CONFIG_MD is not set |
| 464 | # CONFIG_MACINTOSH_DRIVERS is not set | 470 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 465 | CONFIG_NETDEVICES=y | 471 | CONFIG_NETDEVICES=y |
| 472 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 466 | # CONFIG_DUMMY is not set | 473 | # CONFIG_DUMMY is not set |
| 467 | # CONFIG_BONDING is not set | 474 | # CONFIG_BONDING is not set |
| 468 | # CONFIG_MACVLAN is not set | 475 | # CONFIG_MACVLAN is not set |
| @@ -491,6 +498,8 @@ CONFIG_DAVICOM_PHY=y | |||
| 491 | # CONFIG_MDIO_BITBANG is not set | 498 | # CONFIG_MDIO_BITBANG is not set |
| 492 | CONFIG_NET_ETHERNET=y | 499 | CONFIG_NET_ETHERNET=y |
| 493 | CONFIG_MII=y | 500 | CONFIG_MII=y |
| 501 | # CONFIG_ETHOC is not set | ||
| 502 | # CONFIG_DNET is not set | ||
| 494 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 503 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 495 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 504 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 496 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 505 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -511,7 +520,6 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
| 511 | # | 520 | # |
| 512 | # CONFIG_WLAN_PRE80211 is not set | 521 | # CONFIG_WLAN_PRE80211 is not set |
| 513 | # CONFIG_WLAN_80211 is not set | 522 | # CONFIG_WLAN_80211 is not set |
| 514 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 515 | 523 | ||
| 516 | # | 524 | # |
| 517 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 525 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -558,7 +566,6 @@ CONFIG_MOUSE_PS2=y | |||
| 558 | CONFIG_MOUSE_PS2_ALPS=y | 566 | CONFIG_MOUSE_PS2_ALPS=y |
| 559 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 567 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
| 560 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 568 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
| 561 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
| 562 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 569 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
| 563 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 570 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
| 564 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 571 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| @@ -606,6 +613,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 606 | # CONFIG_HVC_UDBG is not set | 613 | # CONFIG_HVC_UDBG is not set |
| 607 | # CONFIG_IPMI_HANDLER is not set | 614 | # CONFIG_IPMI_HANDLER is not set |
| 608 | CONFIG_HW_RANDOM=y | 615 | CONFIG_HW_RANDOM=y |
| 616 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 609 | # CONFIG_NVRAM is not set | 617 | # CONFIG_NVRAM is not set |
| 610 | CONFIG_GEN_RTC=y | 618 | CONFIG_GEN_RTC=y |
| 611 | # CONFIG_GEN_RTC_X is not set | 619 | # CONFIG_GEN_RTC_X is not set |
| @@ -675,6 +683,7 @@ CONFIG_VIDEO_OUTPUT_CONTROL=y | |||
| 675 | # CONFIG_EDAC is not set | 683 | # CONFIG_EDAC is not set |
| 676 | # CONFIG_RTC_CLASS is not set | 684 | # CONFIG_RTC_CLASS is not set |
| 677 | # CONFIG_DMADEVICES is not set | 685 | # CONFIG_DMADEVICES is not set |
| 686 | # CONFIG_AUXDISPLAY is not set | ||
| 678 | # CONFIG_UIO is not set | 687 | # CONFIG_UIO is not set |
| 679 | # CONFIG_STAGING is not set | 688 | # CONFIG_STAGING is not set |
| 680 | 689 | ||
| @@ -699,6 +708,11 @@ CONFIG_FILE_LOCKING=y | |||
| 699 | # CONFIG_FUSE_FS is not set | 708 | # CONFIG_FUSE_FS is not set |
| 700 | 709 | ||
| 701 | # | 710 | # |
| 711 | # Caches | ||
| 712 | # | ||
| 713 | # CONFIG_FSCACHE is not set | ||
| 714 | |||
| 715 | # | ||
| 702 | # CD-ROM/DVD Filesystems | 716 | # CD-ROM/DVD Filesystems |
| 703 | # | 717 | # |
| 704 | # CONFIG_ISO9660_FS is not set | 718 | # CONFIG_ISO9660_FS is not set |
| @@ -742,6 +756,7 @@ CONFIG_CRAMFS=y | |||
| 742 | # CONFIG_ROMFS_FS is not set | 756 | # CONFIG_ROMFS_FS is not set |
| 743 | # CONFIG_SYSV_FS is not set | 757 | # CONFIG_SYSV_FS is not set |
| 744 | # CONFIG_UFS_FS is not set | 758 | # CONFIG_UFS_FS is not set |
| 759 | # CONFIG_NILFS2_FS is not set | ||
| 745 | CONFIG_NETWORK_FILESYSTEMS=y | 760 | CONFIG_NETWORK_FILESYSTEMS=y |
| 746 | CONFIG_NFS_FS=y | 761 | CONFIG_NFS_FS=y |
| 747 | CONFIG_NFS_V3=y | 762 | CONFIG_NFS_V3=y |
| @@ -753,7 +768,6 @@ CONFIG_LOCKD=y | |||
| 753 | CONFIG_LOCKD_V4=y | 768 | CONFIG_LOCKD_V4=y |
| 754 | CONFIG_NFS_COMMON=y | 769 | CONFIG_NFS_COMMON=y |
| 755 | CONFIG_SUNRPC=y | 770 | CONFIG_SUNRPC=y |
| 756 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 757 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 771 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 758 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 772 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 759 | # CONFIG_SMB_FS is not set | 773 | # CONFIG_SMB_FS is not set |
| @@ -785,6 +799,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 785 | # CONFIG_SYSV68_PARTITION is not set | 799 | # CONFIG_SYSV68_PARTITION is not set |
| 786 | # CONFIG_NLS is not set | 800 | # CONFIG_NLS is not set |
| 787 | # CONFIG_DLM is not set | 801 | # CONFIG_DLM is not set |
| 802 | # CONFIG_BINARY_PRINTF is not set | ||
| 788 | 803 | ||
| 789 | # | 804 | # |
| 790 | # Library routines | 805 | # Library routines |
| @@ -802,6 +817,7 @@ CONFIG_HAS_IOMEM=y | |||
| 802 | CONFIG_HAS_IOPORT=y | 817 | CONFIG_HAS_IOPORT=y |
| 803 | CONFIG_HAS_DMA=y | 818 | CONFIG_HAS_DMA=y |
| 804 | CONFIG_HAVE_LMB=y | 819 | CONFIG_HAVE_LMB=y |
| 820 | CONFIG_NLATTR=y | ||
| 805 | 821 | ||
| 806 | # | 822 | # |
| 807 | # Kernel hacking | 823 | # Kernel hacking |
| @@ -819,6 +835,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 819 | CONFIG_DETECT_SOFTLOCKUP=y | 835 | CONFIG_DETECT_SOFTLOCKUP=y |
| 820 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 836 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 821 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 837 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 838 | CONFIG_DETECT_HUNG_TASK=y | ||
| 839 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 840 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 822 | CONFIG_SCHED_DEBUG=y | 841 | CONFIG_SCHED_DEBUG=y |
| 823 | # CONFIG_SCHEDSTATS is not set | 842 | # CONFIG_SCHEDSTATS is not set |
| 824 | # CONFIG_TIMER_STATS is not set | 843 | # CONFIG_TIMER_STATS is not set |
| @@ -845,9 +864,12 @@ CONFIG_DEBUG_INFO=y | |||
| 845 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 864 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
| 846 | # CONFIG_FAULT_INJECTION is not set | 865 | # CONFIG_FAULT_INJECTION is not set |
| 847 | # CONFIG_LATENCYTOP is not set | 866 | # CONFIG_LATENCYTOP is not set |
| 867 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 848 | CONFIG_HAVE_FUNCTION_TRACER=y | 868 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 869 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 849 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 870 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 850 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 871 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 872 | CONFIG_TRACING_SUPPORT=y | ||
| 851 | 873 | ||
| 852 | # | 874 | # |
| 853 | # Tracers | 875 | # Tracers |
| @@ -855,17 +877,20 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 855 | # CONFIG_FUNCTION_TRACER is not set | 877 | # CONFIG_FUNCTION_TRACER is not set |
| 856 | # CONFIG_SCHED_TRACER is not set | 878 | # CONFIG_SCHED_TRACER is not set |
| 857 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 879 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 880 | # CONFIG_EVENT_TRACER is not set | ||
| 858 | # CONFIG_BOOT_TRACER is not set | 881 | # CONFIG_BOOT_TRACER is not set |
| 859 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 882 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 860 | # CONFIG_STACK_TRACER is not set | 883 | # CONFIG_STACK_TRACER is not set |
| 861 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 884 | # CONFIG_KMEMTRACE is not set |
| 885 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 886 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 887 | # CONFIG_DYNAMIC_DEBUG is not set | ||
| 862 | # CONFIG_SAMPLES is not set | 888 | # CONFIG_SAMPLES is not set |
| 863 | CONFIG_HAVE_ARCH_KGDB=y | 889 | CONFIG_HAVE_ARCH_KGDB=y |
| 864 | # CONFIG_KGDB is not set | 890 | # CONFIG_KGDB is not set |
| 865 | CONFIG_PRINT_STACK_DEPTH=64 | 891 | CONFIG_PRINT_STACK_DEPTH=64 |
| 866 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 892 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 867 | # CONFIG_DEBUG_STACK_USAGE is not set | 893 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 868 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 869 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 894 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 870 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 895 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 871 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 896 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
diff --git a/arch/powerpc/configs/c2k_defconfig b/arch/powerpc/configs/c2k_defconfig index 5103319a7f56..9ffa8de92803 100644 --- a/arch/powerpc/configs/c2k_defconfig +++ b/arch/powerpc/configs/c2k_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:26 2009 | 4 | # Wed May 13 17:21:51 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| @@ -56,6 +57,7 @@ CONFIG_GENERIC_BUG=y | |||
| 56 | # CONFIG_DEFAULT_UIMAGE is not set | 57 | # CONFIG_DEFAULT_UIMAGE is not set |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -70,12 +72,22 @@ CONFIG_SWAP=y | |||
| 70 | CONFIG_SYSVIPC=y | 72 | CONFIG_SYSVIPC=y |
| 71 | CONFIG_SYSVIPC_SYSCTL=y | 73 | CONFIG_SYSVIPC_SYSCTL=y |
| 72 | CONFIG_POSIX_MQUEUE=y | 74 | CONFIG_POSIX_MQUEUE=y |
| 75 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 73 | CONFIG_BSD_PROCESS_ACCT=y | 76 | CONFIG_BSD_PROCESS_ACCT=y |
| 74 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 77 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 75 | # CONFIG_TASKSTATS is not set | 78 | # CONFIG_TASKSTATS is not set |
| 76 | CONFIG_AUDIT=y | 79 | CONFIG_AUDIT=y |
| 77 | CONFIG_AUDITSYSCALL=y | 80 | CONFIG_AUDITSYSCALL=y |
| 78 | CONFIG_AUDIT_TREE=y | 81 | CONFIG_AUDIT_TREE=y |
| 82 | |||
| 83 | # | ||
| 84 | # RCU Subsystem | ||
| 85 | # | ||
| 86 | CONFIG_CLASSIC_RCU=y | ||
| 87 | # CONFIG_TREE_RCU is not set | ||
| 88 | # CONFIG_PREEMPT_RCU is not set | ||
| 89 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 90 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 79 | # CONFIG_IKCONFIG is not set | 91 | # CONFIG_IKCONFIG is not set |
| 80 | CONFIG_LOG_BUF_SHIFT=17 | 92 | CONFIG_LOG_BUF_SHIFT=17 |
| 81 | CONFIG_GROUP_SCHED=y | 93 | CONFIG_GROUP_SCHED=y |
| @@ -92,23 +104,27 @@ CONFIG_NAMESPACES=y | |||
| 92 | # CONFIG_IPC_NS is not set | 104 | # CONFIG_IPC_NS is not set |
| 93 | # CONFIG_USER_NS is not set | 105 | # CONFIG_USER_NS is not set |
| 94 | # CONFIG_PID_NS is not set | 106 | # CONFIG_PID_NS is not set |
| 107 | # CONFIG_NET_NS is not set | ||
| 95 | CONFIG_BLK_DEV_INITRD=y | 108 | CONFIG_BLK_DEV_INITRD=y |
| 96 | CONFIG_INITRAMFS_SOURCE="" | 109 | CONFIG_INITRAMFS_SOURCE="" |
| 110 | CONFIG_RD_GZIP=y | ||
| 111 | CONFIG_RD_BZIP2=y | ||
| 112 | CONFIG_RD_LZMA=y | ||
| 97 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 113 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 98 | CONFIG_SYSCTL=y | 114 | CONFIG_SYSCTL=y |
| 115 | CONFIG_ANON_INODES=y | ||
| 99 | # CONFIG_EMBEDDED is not set | 116 | # CONFIG_EMBEDDED is not set |
| 100 | CONFIG_SYSCTL_SYSCALL=y | 117 | CONFIG_SYSCTL_SYSCALL=y |
| 101 | CONFIG_KALLSYMS=y | 118 | CONFIG_KALLSYMS=y |
| 102 | # CONFIG_KALLSYMS_ALL is not set | 119 | # CONFIG_KALLSYMS_ALL is not set |
| 103 | CONFIG_KALLSYMS_EXTRA_PASS=y | 120 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| 121 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 104 | CONFIG_HOTPLUG=y | 122 | CONFIG_HOTPLUG=y |
| 105 | CONFIG_PRINTK=y | 123 | CONFIG_PRINTK=y |
| 106 | CONFIG_BUG=y | 124 | CONFIG_BUG=y |
| 107 | CONFIG_ELF_CORE=y | 125 | CONFIG_ELF_CORE=y |
| 108 | CONFIG_COMPAT_BRK=y | ||
| 109 | CONFIG_BASE_FULL=y | 126 | CONFIG_BASE_FULL=y |
| 110 | CONFIG_FUTEX=y | 127 | CONFIG_FUTEX=y |
| 111 | CONFIG_ANON_INODES=y | ||
| 112 | CONFIG_EPOLL=y | 128 | CONFIG_EPOLL=y |
| 113 | CONFIG_SIGNALFD=y | 129 | CONFIG_SIGNALFD=y |
| 114 | CONFIG_TIMERFD=y | 130 | CONFIG_TIMERFD=y |
| @@ -118,6 +134,7 @@ CONFIG_AIO=y | |||
| 118 | CONFIG_VM_EVENT_COUNTERS=y | 134 | CONFIG_VM_EVENT_COUNTERS=y |
| 119 | CONFIG_PCI_QUIRKS=y | 135 | CONFIG_PCI_QUIRKS=y |
| 120 | CONFIG_SLUB_DEBUG=y | 136 | CONFIG_SLUB_DEBUG=y |
| 137 | CONFIG_COMPAT_BRK=y | ||
| 121 | # CONFIG_SLAB is not set | 138 | # CONFIG_SLAB is not set |
| 122 | CONFIG_SLUB=y | 139 | CONFIG_SLUB=y |
| 123 | # CONFIG_SLOB is not set | 140 | # CONFIG_SLOB is not set |
| @@ -133,6 +150,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
| 133 | CONFIG_HAVE_KPROBES=y | 150 | CONFIG_HAVE_KPROBES=y |
| 134 | CONFIG_HAVE_KRETPROBES=y | 151 | CONFIG_HAVE_KRETPROBES=y |
| 135 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 152 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 153 | # CONFIG_SLOW_WORK is not set | ||
| 136 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 154 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 137 | CONFIG_SLABINFO=y | 155 | CONFIG_SLABINFO=y |
| 138 | CONFIG_RT_MUTEXES=y | 156 | CONFIG_RT_MUTEXES=y |
| @@ -145,7 +163,6 @@ CONFIG_MODVERSIONS=y | |||
| 145 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 163 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 146 | CONFIG_BLOCK=y | 164 | CONFIG_BLOCK=y |
| 147 | CONFIG_LBD=y | 165 | CONFIG_LBD=y |
| 148 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 149 | # CONFIG_BLK_DEV_BSG is not set | 166 | # CONFIG_BLK_DEV_BSG is not set |
| 150 | # CONFIG_BLK_DEV_INTEGRITY is not set | 167 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 151 | 168 | ||
| @@ -161,18 +178,11 @@ CONFIG_IOSCHED_CFQ=y | |||
| 161 | CONFIG_DEFAULT_CFQ=y | 178 | CONFIG_DEFAULT_CFQ=y |
| 162 | # CONFIG_DEFAULT_NOOP is not set | 179 | # CONFIG_DEFAULT_NOOP is not set |
| 163 | CONFIG_DEFAULT_IOSCHED="cfq" | 180 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 164 | CONFIG_CLASSIC_RCU=y | ||
| 165 | # CONFIG_TREE_RCU is not set | ||
| 166 | # CONFIG_PREEMPT_RCU is not set | ||
| 167 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 168 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 169 | # CONFIG_FREEZER is not set | 181 | # CONFIG_FREEZER is not set |
| 170 | 182 | ||
| 171 | # | 183 | # |
| 172 | # Platform support | 184 | # Platform support |
| 173 | # | 185 | # |
| 174 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 175 | CONFIG_CLASSIC32=y | ||
| 176 | # CONFIG_PPC_CHRP is not set | 186 | # CONFIG_PPC_CHRP is not set |
| 177 | # CONFIG_MPC5121_ADS is not set | 187 | # CONFIG_MPC5121_ADS is not set |
| 178 | # CONFIG_MPC5121_GENERIC is not set | 188 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -192,6 +202,8 @@ CONFIG_EMBEDDED6xx=y | |||
| 192 | # CONFIG_PPC_PRPMC2800 is not set | 202 | # CONFIG_PPC_PRPMC2800 is not set |
| 193 | CONFIG_PPC_C2K=y | 203 | CONFIG_PPC_C2K=y |
| 194 | CONFIG_MV64X60=y | 204 | CONFIG_MV64X60=y |
| 205 | # CONFIG_AMIGAONE is not set | ||
| 206 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 195 | # CONFIG_IPIC is not set | 207 | # CONFIG_IPIC is not set |
| 196 | # CONFIG_MPIC is not set | 208 | # CONFIG_MPIC is not set |
| 197 | # CONFIG_MPIC_WEIRD is not set | 209 | # CONFIG_MPIC_WEIRD is not set |
| @@ -268,9 +280,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 268 | CONFIG_BOUNCE=y | 280 | CONFIG_BOUNCE=y |
| 269 | CONFIG_VIRT_TO_BUS=y | 281 | CONFIG_VIRT_TO_BUS=y |
| 270 | CONFIG_UNEVICTABLE_LRU=y | 282 | CONFIG_UNEVICTABLE_LRU=y |
| 283 | CONFIG_HAVE_MLOCK=y | ||
| 284 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 271 | CONFIG_PPC_4K_PAGES=y | 285 | CONFIG_PPC_4K_PAGES=y |
| 272 | # CONFIG_PPC_16K_PAGES is not set | 286 | # CONFIG_PPC_16K_PAGES is not set |
| 273 | # CONFIG_PPC_64K_PAGES is not set | 287 | # CONFIG_PPC_64K_PAGES is not set |
| 288 | # CONFIG_PPC_256K_PAGES is not set | ||
| 274 | CONFIG_FORCE_MAX_ZONEORDER=11 | 289 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 275 | # CONFIG_PROC_DEVICETREE is not set | 290 | # CONFIG_PROC_DEVICETREE is not set |
| 276 | # CONFIG_CMDLINE_BOOL is not set | 291 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -295,6 +310,7 @@ CONFIG_PCI_MSI=y | |||
| 295 | # CONFIG_PCI_LEGACY is not set | 310 | # CONFIG_PCI_LEGACY is not set |
| 296 | # CONFIG_PCI_DEBUG is not set | 311 | # CONFIG_PCI_DEBUG is not set |
| 297 | # CONFIG_PCI_STUB is not set | 312 | # CONFIG_PCI_STUB is not set |
| 313 | # CONFIG_PCI_IOV is not set | ||
| 298 | # CONFIG_PCCARD is not set | 314 | # CONFIG_PCCARD is not set |
| 299 | CONFIG_HOTPLUG_PCI=y | 315 | CONFIG_HOTPLUG_PCI=y |
| 300 | # CONFIG_HOTPLUG_PCI_FAKE is not set | 316 | # CONFIG_HOTPLUG_PCI_FAKE is not set |
| @@ -315,15 +331,11 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 315 | CONFIG_KERNEL_START=0xc0000000 | 331 | CONFIG_KERNEL_START=0xc0000000 |
| 316 | CONFIG_PHYSICAL_START=0x00000000 | 332 | CONFIG_PHYSICAL_START=0x00000000 |
| 317 | CONFIG_TASK_SIZE=0xc0000000 | 333 | CONFIG_TASK_SIZE=0xc0000000 |
| 318 | CONFIG_CONSISTENT_START=0xff100000 | ||
| 319 | CONFIG_CONSISTENT_SIZE=0x00200000 | ||
| 320 | CONFIG_NET=y | 334 | CONFIG_NET=y |
| 321 | 335 | ||
| 322 | # | 336 | # |
| 323 | # Networking options | 337 | # Networking options |
| 324 | # | 338 | # |
| 325 | # CONFIG_NET_NS is not set | ||
| 326 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 327 | CONFIG_PACKET=y | 339 | CONFIG_PACKET=y |
| 328 | CONFIG_PACKET_MMAP=y | 340 | CONFIG_PACKET_MMAP=y |
| 329 | CONFIG_UNIX=y | 341 | CONFIG_UNIX=y |
| @@ -364,7 +376,7 @@ CONFIG_INET_TUNNEL=m | |||
| 364 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | 376 | CONFIG_INET_XFRM_MODE_TRANSPORT=y |
| 365 | CONFIG_INET_XFRM_MODE_TUNNEL=y | 377 | CONFIG_INET_XFRM_MODE_TUNNEL=y |
| 366 | CONFIG_INET_XFRM_MODE_BEET=y | 378 | CONFIG_INET_XFRM_MODE_BEET=y |
| 367 | CONFIG_INET_LRO=m | 379 | CONFIG_INET_LRO=y |
| 368 | CONFIG_INET_DIAG=y | 380 | CONFIG_INET_DIAG=y |
| 369 | CONFIG_INET_TCP_DIAG=y | 381 | CONFIG_INET_TCP_DIAG=y |
| 370 | # CONFIG_TCP_CONG_ADVANCED is not set | 382 | # CONFIG_TCP_CONG_ADVANCED is not set |
| @@ -403,9 +415,11 @@ CONFIG_BRIDGE_NETFILTER=y | |||
| 403 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set | 415 | # CONFIG_NETFILTER_NETLINK_QUEUE is not set |
| 404 | # CONFIG_NETFILTER_NETLINK_LOG is not set | 416 | # CONFIG_NETFILTER_NETLINK_LOG is not set |
| 405 | # CONFIG_NF_CONNTRACK is not set | 417 | # CONFIG_NF_CONNTRACK is not set |
| 418 | # CONFIG_NETFILTER_TPROXY is not set | ||
| 406 | CONFIG_NETFILTER_XTABLES=m | 419 | CONFIG_NETFILTER_XTABLES=m |
| 407 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set | 420 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set |
| 408 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | 421 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set |
| 422 | # CONFIG_NETFILTER_XT_TARGET_HL is not set | ||
| 409 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set | 423 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set |
| 410 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set | 424 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set |
| 411 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set | 425 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set |
| @@ -419,6 +433,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
| 419 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | 433 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set |
| 420 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set | 434 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set |
| 421 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set | 435 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set |
| 436 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
| 422 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | 437 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set |
| 423 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set | 438 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set |
| 424 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set | 439 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set |
| @@ -508,11 +523,11 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
| 508 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 523 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
| 509 | # CONFIG_IP6_NF_MATCH_MH is not set | 524 | # CONFIG_IP6_NF_MATCH_MH is not set |
| 510 | CONFIG_IP6_NF_MATCH_RT=m | 525 | CONFIG_IP6_NF_MATCH_RT=m |
| 526 | # CONFIG_IP6_NF_TARGET_HL is not set | ||
| 511 | CONFIG_IP6_NF_TARGET_LOG=m | 527 | CONFIG_IP6_NF_TARGET_LOG=m |
| 512 | CONFIG_IP6_NF_FILTER=m | 528 | CONFIG_IP6_NF_FILTER=m |
| 513 | # CONFIG_IP6_NF_TARGET_REJECT is not set | 529 | # CONFIG_IP6_NF_TARGET_REJECT is not set |
| 514 | CONFIG_IP6_NF_MANGLE=m | 530 | CONFIG_IP6_NF_MANGLE=m |
| 515 | # CONFIG_IP6_NF_TARGET_HL is not set | ||
| 516 | CONFIG_IP6_NF_RAW=m | 531 | CONFIG_IP6_NF_RAW=m |
| 517 | # CONFIG_IP6_NF_SECURITY is not set | 532 | # CONFIG_IP6_NF_SECURITY is not set |
| 518 | CONFIG_BRIDGE_NF_EBTABLES=m | 533 | CONFIG_BRIDGE_NF_EBTABLES=m |
| @@ -544,6 +559,7 @@ CONFIG_IP_SCTP=m | |||
| 544 | # CONFIG_SCTP_HMAC_NONE is not set | 559 | # CONFIG_SCTP_HMAC_NONE is not set |
| 545 | # CONFIG_SCTP_HMAC_SHA1 is not set | 560 | # CONFIG_SCTP_HMAC_SHA1 is not set |
| 546 | CONFIG_SCTP_HMAC_MD5=y | 561 | CONFIG_SCTP_HMAC_MD5=y |
| 562 | # CONFIG_RDS is not set | ||
| 547 | # CONFIG_TIPC is not set | 563 | # CONFIG_TIPC is not set |
| 548 | CONFIG_ATM=m | 564 | CONFIG_ATM=m |
| 549 | CONFIG_ATM_CLIP=m | 565 | CONFIG_ATM_CLIP=m |
| @@ -566,6 +582,7 @@ CONFIG_LLC=m | |||
| 566 | # CONFIG_LAPB is not set | 582 | # CONFIG_LAPB is not set |
| 567 | # CONFIG_ECONET is not set | 583 | # CONFIG_ECONET is not set |
| 568 | # CONFIG_WAN_ROUTER is not set | 584 | # CONFIG_WAN_ROUTER is not set |
| 585 | # CONFIG_PHONET is not set | ||
| 569 | CONFIG_NET_SCHED=y | 586 | CONFIG_NET_SCHED=y |
| 570 | 587 | ||
| 571 | # | 588 | # |
| @@ -612,6 +629,7 @@ CONFIG_NET_SCH_FIFO=y | |||
| 612 | # | 629 | # |
| 613 | # CONFIG_NET_PKTGEN is not set | 630 | # CONFIG_NET_PKTGEN is not set |
| 614 | # CONFIG_NET_TCPPROBE is not set | 631 | # CONFIG_NET_TCPPROBE is not set |
| 632 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 615 | # CONFIG_HAMRADIO is not set | 633 | # CONFIG_HAMRADIO is not set |
| 616 | # CONFIG_CAN is not set | 634 | # CONFIG_CAN is not set |
| 617 | # CONFIG_IRDA is not set | 635 | # CONFIG_IRDA is not set |
| @@ -638,7 +656,6 @@ CONFIG_BT_HCIBCM203X=m | |||
| 638 | CONFIG_BT_HCIBFUSB=m | 656 | CONFIG_BT_HCIBFUSB=m |
| 639 | CONFIG_BT_HCIVHCI=m | 657 | CONFIG_BT_HCIVHCI=m |
| 640 | # CONFIG_AF_RXRPC is not set | 658 | # CONFIG_AF_RXRPC is not set |
| 641 | # CONFIG_PHONET is not set | ||
| 642 | CONFIG_FIB_RULES=y | 659 | CONFIG_FIB_RULES=y |
| 643 | CONFIG_WIRELESS=y | 660 | CONFIG_WIRELESS=y |
| 644 | # CONFIG_CFG80211 is not set | 661 | # CONFIG_CFG80211 is not set |
| @@ -748,7 +765,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 748 | # LPDDR flash memory drivers | 765 | # LPDDR flash memory drivers |
| 749 | # | 766 | # |
| 750 | # CONFIG_MTD_LPDDR is not set | 767 | # CONFIG_MTD_LPDDR is not set |
| 751 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 752 | 768 | ||
| 753 | # | 769 | # |
| 754 | # UBI - Unsorted block images | 770 | # UBI - Unsorted block images |
| @@ -846,9 +862,11 @@ CONFIG_MEGARAID_MM=m | |||
| 846 | CONFIG_MEGARAID_MAILBOX=m | 862 | CONFIG_MEGARAID_MAILBOX=m |
| 847 | # CONFIG_MEGARAID_LEGACY is not set | 863 | # CONFIG_MEGARAID_LEGACY is not set |
| 848 | CONFIG_MEGARAID_SAS=m | 864 | CONFIG_MEGARAID_SAS=m |
| 865 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 849 | # CONFIG_SCSI_HPTIOP is not set | 866 | # CONFIG_SCSI_HPTIOP is not set |
| 850 | # CONFIG_SCSI_BUSLOGIC is not set | 867 | # CONFIG_SCSI_BUSLOGIC is not set |
| 851 | # CONFIG_LIBFC is not set | 868 | # CONFIG_LIBFC is not set |
| 869 | # CONFIG_LIBFCOE is not set | ||
| 852 | # CONFIG_FCOE is not set | 870 | # CONFIG_FCOE is not set |
| 853 | # CONFIG_SCSI_DMX3191D is not set | 871 | # CONFIG_SCSI_DMX3191D is not set |
| 854 | # CONFIG_SCSI_EATA is not set | 872 | # CONFIG_SCSI_EATA is not set |
| @@ -875,6 +893,7 @@ CONFIG_SCSI_LPFC=m | |||
| 875 | # CONFIG_SCSI_DEBUG is not set | 893 | # CONFIG_SCSI_DEBUG is not set |
| 876 | # CONFIG_SCSI_SRP is not set | 894 | # CONFIG_SCSI_SRP is not set |
| 877 | # CONFIG_SCSI_DH is not set | 895 | # CONFIG_SCSI_DH is not set |
| 896 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 878 | # CONFIG_ATA is not set | 897 | # CONFIG_ATA is not set |
| 879 | # CONFIG_MD is not set | 898 | # CONFIG_MD is not set |
| 880 | # CONFIG_FUSION is not set | 899 | # CONFIG_FUSION is not set |
| @@ -891,6 +910,7 @@ CONFIG_SCSI_LPFC=m | |||
| 891 | # CONFIG_I2O is not set | 910 | # CONFIG_I2O is not set |
| 892 | # CONFIG_MACINTOSH_DRIVERS is not set | 911 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 893 | CONFIG_NETDEVICES=y | 912 | CONFIG_NETDEVICES=y |
| 913 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 894 | CONFIG_DUMMY=m | 914 | CONFIG_DUMMY=m |
| 895 | CONFIG_BONDING=m | 915 | CONFIG_BONDING=m |
| 896 | # CONFIG_MACVLAN is not set | 916 | # CONFIG_MACVLAN is not set |
| @@ -924,6 +944,8 @@ CONFIG_MII=y | |||
| 924 | # CONFIG_SUNGEM is not set | 944 | # CONFIG_SUNGEM is not set |
| 925 | # CONFIG_CASSINI is not set | 945 | # CONFIG_CASSINI is not set |
| 926 | # CONFIG_NET_VENDOR_3COM is not set | 946 | # CONFIG_NET_VENDOR_3COM is not set |
| 947 | # CONFIG_ETHOC is not set | ||
| 948 | # CONFIG_DNET is not set | ||
| 927 | # CONFIG_NET_TULIP is not set | 949 | # CONFIG_NET_TULIP is not set |
| 928 | # CONFIG_HP100 is not set | 950 | # CONFIG_HP100 is not set |
| 929 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 951 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -943,6 +965,7 @@ CONFIG_NETDEV_1000=y | |||
| 943 | # CONFIG_E1000E is not set | 965 | # CONFIG_E1000E is not set |
| 944 | # CONFIG_IP1000 is not set | 966 | # CONFIG_IP1000 is not set |
| 945 | # CONFIG_IGB is not set | 967 | # CONFIG_IGB is not set |
| 968 | # CONFIG_IGBVF is not set | ||
| 946 | # CONFIG_NS83820 is not set | 969 | # CONFIG_NS83820 is not set |
| 947 | # CONFIG_HAMACHI is not set | 970 | # CONFIG_HAMACHI is not set |
| 948 | # CONFIG_YELLOWFIN is not set | 971 | # CONFIG_YELLOWFIN is not set |
| @@ -957,6 +980,7 @@ CONFIG_MV643XX_ETH=y | |||
| 957 | # CONFIG_QLA3XXX is not set | 980 | # CONFIG_QLA3XXX is not set |
| 958 | # CONFIG_ATL1 is not set | 981 | # CONFIG_ATL1 is not set |
| 959 | # CONFIG_ATL1E is not set | 982 | # CONFIG_ATL1E is not set |
| 983 | # CONFIG_ATL1C is not set | ||
| 960 | # CONFIG_JME is not set | 984 | # CONFIG_JME is not set |
| 961 | # CONFIG_NETDEV_10000 is not set | 985 | # CONFIG_NETDEV_10000 is not set |
| 962 | # CONFIG_TR is not set | 986 | # CONFIG_TR is not set |
| @@ -966,7 +990,6 @@ CONFIG_MV643XX_ETH=y | |||
| 966 | # | 990 | # |
| 967 | # CONFIG_WLAN_PRE80211 is not set | 991 | # CONFIG_WLAN_PRE80211 is not set |
| 968 | # CONFIG_WLAN_80211 is not set | 992 | # CONFIG_WLAN_80211 is not set |
| 969 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 970 | 993 | ||
| 971 | # | 994 | # |
| 972 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 995 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -1084,6 +1107,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 1084 | # CONFIG_HVC_UDBG is not set | 1107 | # CONFIG_HVC_UDBG is not set |
| 1085 | # CONFIG_IPMI_HANDLER is not set | 1108 | # CONFIG_IPMI_HANDLER is not set |
| 1086 | CONFIG_HW_RANDOM=m | 1109 | CONFIG_HW_RANDOM=m |
| 1110 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 1087 | CONFIG_NVRAM=m | 1111 | CONFIG_NVRAM=m |
| 1088 | CONFIG_GEN_RTC=m | 1112 | CONFIG_GEN_RTC=m |
| 1089 | # CONFIG_GEN_RTC_X is not set | 1113 | # CONFIG_GEN_RTC_X is not set |
| @@ -1150,12 +1174,9 @@ CONFIG_I2C_MV64XXX=m | |||
| 1150 | # Miscellaneous I2C Chip support | 1174 | # Miscellaneous I2C Chip support |
| 1151 | # | 1175 | # |
| 1152 | # CONFIG_DS1682 is not set | 1176 | # CONFIG_DS1682 is not set |
| 1153 | # CONFIG_EEPROM_AT24 is not set | ||
| 1154 | CONFIG_EEPROM_LEGACY=m | ||
| 1155 | CONFIG_SENSORS_PCF8574=m | 1177 | CONFIG_SENSORS_PCF8574=m |
| 1156 | # CONFIG_PCF8575 is not set | 1178 | # CONFIG_PCF8575 is not set |
| 1157 | # CONFIG_SENSORS_PCA9539 is not set | 1179 | # CONFIG_SENSORS_PCA9539 is not set |
| 1158 | CONFIG_SENSORS_PCF8591=m | ||
| 1159 | # CONFIG_SENSORS_MAX6875 is not set | 1180 | # CONFIG_SENSORS_MAX6875 is not set |
| 1160 | # CONFIG_SENSORS_TSL2550 is not set | 1181 | # CONFIG_SENSORS_TSL2550 is not set |
| 1161 | # CONFIG_I2C_DEBUG_CORE is not set | 1182 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -1187,6 +1208,7 @@ CONFIG_SENSORS_DS1621=m | |||
| 1187 | # CONFIG_SENSORS_F71805F is not set | 1208 | # CONFIG_SENSORS_F71805F is not set |
| 1188 | # CONFIG_SENSORS_F71882FG is not set | 1209 | # CONFIG_SENSORS_F71882FG is not set |
| 1189 | # CONFIG_SENSORS_F75375S is not set | 1210 | # CONFIG_SENSORS_F75375S is not set |
| 1211 | # CONFIG_SENSORS_G760A is not set | ||
| 1190 | CONFIG_SENSORS_GL518SM=m | 1212 | CONFIG_SENSORS_GL518SM=m |
| 1191 | # CONFIG_SENSORS_GL520SM is not set | 1213 | # CONFIG_SENSORS_GL520SM is not set |
| 1192 | CONFIG_SENSORS_IT87=m | 1214 | CONFIG_SENSORS_IT87=m |
| @@ -1201,11 +1223,14 @@ CONFIG_SENSORS_LM87=m | |||
| 1201 | CONFIG_SENSORS_LM90=m | 1223 | CONFIG_SENSORS_LM90=m |
| 1202 | # CONFIG_SENSORS_LM92 is not set | 1224 | # CONFIG_SENSORS_LM92 is not set |
| 1203 | # CONFIG_SENSORS_LM93 is not set | 1225 | # CONFIG_SENSORS_LM93 is not set |
| 1226 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 1204 | # CONFIG_SENSORS_LTC4245 is not set | 1227 | # CONFIG_SENSORS_LTC4245 is not set |
| 1228 | # CONFIG_SENSORS_LM95241 is not set | ||
| 1205 | CONFIG_SENSORS_MAX1619=m | 1229 | CONFIG_SENSORS_MAX1619=m |
| 1206 | # CONFIG_SENSORS_MAX6650 is not set | 1230 | # CONFIG_SENSORS_MAX6650 is not set |
| 1207 | # CONFIG_SENSORS_PC87360 is not set | 1231 | # CONFIG_SENSORS_PC87360 is not set |
| 1208 | # CONFIG_SENSORS_PC87427 is not set | 1232 | # CONFIG_SENSORS_PC87427 is not set |
| 1233 | CONFIG_SENSORS_PCF8591=m | ||
| 1209 | # CONFIG_SENSORS_SIS5595 is not set | 1234 | # CONFIG_SENSORS_SIS5595 is not set |
| 1210 | # CONFIG_SENSORS_DME1737 is not set | 1235 | # CONFIG_SENSORS_DME1737 is not set |
| 1211 | CONFIG_SENSORS_SMSC47M1=m | 1236 | CONFIG_SENSORS_SMSC47M1=m |
| @@ -1363,21 +1388,21 @@ CONFIG_USB_PRINTER=m | |||
| 1363 | # CONFIG_USB_TMC is not set | 1388 | # CONFIG_USB_TMC is not set |
| 1364 | 1389 | ||
| 1365 | # | 1390 | # |
| 1366 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1391 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1367 | # | 1392 | # |
| 1368 | 1393 | ||
| 1369 | # | 1394 | # |
| 1370 | # see USB_STORAGE Help for more information | 1395 | # also be needed; see USB_STORAGE Help for more info |
| 1371 | # | 1396 | # |
| 1372 | CONFIG_USB_STORAGE=m | 1397 | CONFIG_USB_STORAGE=m |
| 1373 | # CONFIG_USB_STORAGE_DEBUG is not set | 1398 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 1374 | CONFIG_USB_STORAGE_DATAFAB=y | 1399 | CONFIG_USB_STORAGE_DATAFAB=m |
| 1375 | CONFIG_USB_STORAGE_FREECOM=y | 1400 | CONFIG_USB_STORAGE_FREECOM=m |
| 1376 | CONFIG_USB_STORAGE_ISD200=y | 1401 | CONFIG_USB_STORAGE_ISD200=m |
| 1377 | # CONFIG_USB_STORAGE_USBAT is not set | 1402 | # CONFIG_USB_STORAGE_USBAT is not set |
| 1378 | CONFIG_USB_STORAGE_SDDR09=y | 1403 | CONFIG_USB_STORAGE_SDDR09=m |
| 1379 | CONFIG_USB_STORAGE_SDDR55=y | 1404 | CONFIG_USB_STORAGE_SDDR55=m |
| 1380 | CONFIG_USB_STORAGE_JUMPSHOT=y | 1405 | CONFIG_USB_STORAGE_JUMPSHOT=m |
| 1381 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1406 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1382 | # CONFIG_USB_STORAGE_ONETOUCH is not set | 1407 | # CONFIG_USB_STORAGE_ONETOUCH is not set |
| 1383 | # CONFIG_USB_STORAGE_KARMA is not set | 1408 | # CONFIG_USB_STORAGE_KARMA is not set |
| @@ -1402,7 +1427,7 @@ CONFIG_USB_SERIAL_BELKIN=m | |||
| 1402 | # CONFIG_USB_SERIAL_CH341 is not set | 1427 | # CONFIG_USB_SERIAL_CH341 is not set |
| 1403 | CONFIG_USB_SERIAL_WHITEHEAT=m | 1428 | CONFIG_USB_SERIAL_WHITEHEAT=m |
| 1404 | CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m | 1429 | CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m |
| 1405 | # CONFIG_USB_SERIAL_CP2101 is not set | 1430 | # CONFIG_USB_SERIAL_CP210X is not set |
| 1406 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set | 1431 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set |
| 1407 | CONFIG_USB_SERIAL_EMPEG=m | 1432 | CONFIG_USB_SERIAL_EMPEG=m |
| 1408 | CONFIG_USB_SERIAL_FTDI_SIO=m | 1433 | CONFIG_USB_SERIAL_FTDI_SIO=m |
| @@ -1438,12 +1463,14 @@ CONFIG_USB_SERIAL_MCT_U232=m | |||
| 1438 | # CONFIG_USB_SERIAL_NAVMAN is not set | 1463 | # CONFIG_USB_SERIAL_NAVMAN is not set |
| 1439 | CONFIG_USB_SERIAL_PL2303=m | 1464 | CONFIG_USB_SERIAL_PL2303=m |
| 1440 | # CONFIG_USB_SERIAL_OTI6858 is not set | 1465 | # CONFIG_USB_SERIAL_OTI6858 is not set |
| 1466 | # CONFIG_USB_SERIAL_QUALCOMM is not set | ||
| 1441 | # CONFIG_USB_SERIAL_SPCP8X5 is not set | 1467 | # CONFIG_USB_SERIAL_SPCP8X5 is not set |
| 1442 | # CONFIG_USB_SERIAL_HP4X is not set | 1468 | # CONFIG_USB_SERIAL_HP4X is not set |
| 1443 | CONFIG_USB_SERIAL_SAFE=m | 1469 | CONFIG_USB_SERIAL_SAFE=m |
| 1444 | CONFIG_USB_SERIAL_SAFE_PADDED=y | 1470 | CONFIG_USB_SERIAL_SAFE_PADDED=y |
| 1445 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set | 1471 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set |
| 1446 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1472 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
| 1473 | # CONFIG_USB_SERIAL_SYMBOL is not set | ||
| 1447 | # CONFIG_USB_SERIAL_TI is not set | 1474 | # CONFIG_USB_SERIAL_TI is not set |
| 1448 | CONFIG_USB_SERIAL_CYBERJACK=m | 1475 | CONFIG_USB_SERIAL_CYBERJACK=m |
| 1449 | CONFIG_USB_SERIAL_XIRCOM=m | 1476 | CONFIG_USB_SERIAL_XIRCOM=m |
| @@ -1466,7 +1493,6 @@ CONFIG_USB_LCD=m | |||
| 1466 | CONFIG_USB_LED=m | 1493 | CONFIG_USB_LED=m |
| 1467 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1494 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1468 | # CONFIG_USB_CYTHERM is not set | 1495 | # CONFIG_USB_CYTHERM is not set |
| 1469 | # CONFIG_USB_PHIDGET is not set | ||
| 1470 | # CONFIG_USB_IDMOUSE is not set | 1496 | # CONFIG_USB_IDMOUSE is not set |
| 1471 | # CONFIG_USB_FTDI_ELAN is not set | 1497 | # CONFIG_USB_FTDI_ELAN is not set |
| 1472 | # CONFIG_USB_APPLEDISPLAY is not set | 1498 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1487,6 +1513,7 @@ CONFIG_USB_SPEEDTOUCH=m | |||
| 1487 | # | 1513 | # |
| 1488 | # OTG and related infrastructure | 1514 | # OTG and related infrastructure |
| 1489 | # | 1515 | # |
| 1516 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1490 | # CONFIG_UWB is not set | 1517 | # CONFIG_UWB is not set |
| 1491 | # CONFIG_MMC is not set | 1518 | # CONFIG_MMC is not set |
| 1492 | # CONFIG_MEMSTICK is not set | 1519 | # CONFIG_MEMSTICK is not set |
| @@ -1516,6 +1543,7 @@ CONFIG_DMADEVICES=y | |||
| 1516 | # | 1543 | # |
| 1517 | # DMA Devices | 1544 | # DMA Devices |
| 1518 | # | 1545 | # |
| 1546 | # CONFIG_AUXDISPLAY is not set | ||
| 1519 | # CONFIG_UIO is not set | 1547 | # CONFIG_UIO is not set |
| 1520 | # CONFIG_STAGING is not set | 1548 | # CONFIG_STAGING is not set |
| 1521 | 1549 | ||
| @@ -1524,6 +1552,7 @@ CONFIG_DMADEVICES=y | |||
| 1524 | # | 1552 | # |
| 1525 | # CONFIG_EXT2_FS is not set | 1553 | # CONFIG_EXT2_FS is not set |
| 1526 | CONFIG_EXT3_FS=m | 1554 | CONFIG_EXT3_FS=m |
| 1555 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1527 | CONFIG_EXT3_FS_XATTR=y | 1556 | CONFIG_EXT3_FS_XATTR=y |
| 1528 | CONFIG_EXT3_FS_POSIX_ACL=y | 1557 | CONFIG_EXT3_FS_POSIX_ACL=y |
| 1529 | CONFIG_EXT3_FS_SECURITY=y | 1558 | CONFIG_EXT3_FS_SECURITY=y |
| @@ -1554,6 +1583,11 @@ CONFIG_AUTOFS4_FS=m | |||
| 1554 | # CONFIG_FUSE_FS is not set | 1583 | # CONFIG_FUSE_FS is not set |
| 1555 | 1584 | ||
| 1556 | # | 1585 | # |
| 1586 | # Caches | ||
| 1587 | # | ||
| 1588 | # CONFIG_FSCACHE is not set | ||
| 1589 | |||
| 1590 | # | ||
| 1557 | # CD-ROM/DVD Filesystems | 1591 | # CD-ROM/DVD Filesystems |
| 1558 | # | 1592 | # |
| 1559 | # CONFIG_ISO9660_FS is not set | 1593 | # CONFIG_ISO9660_FS is not set |
| @@ -1612,6 +1646,7 @@ CONFIG_VXFS_FS=m | |||
| 1612 | # CONFIG_ROMFS_FS is not set | 1646 | # CONFIG_ROMFS_FS is not set |
| 1613 | # CONFIG_SYSV_FS is not set | 1647 | # CONFIG_SYSV_FS is not set |
| 1614 | # CONFIG_UFS_FS is not set | 1648 | # CONFIG_UFS_FS is not set |
| 1649 | # CONFIG_NILFS2_FS is not set | ||
| 1615 | CONFIG_NETWORK_FILESYSTEMS=y | 1650 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1616 | CONFIG_NFS_FS=y | 1651 | CONFIG_NFS_FS=y |
| 1617 | CONFIG_NFS_V3=y | 1652 | CONFIG_NFS_V3=y |
| @@ -1626,7 +1661,6 @@ CONFIG_NFS_COMMON=y | |||
| 1626 | CONFIG_SUNRPC=y | 1661 | CONFIG_SUNRPC=y |
| 1627 | CONFIG_SUNRPC_GSS=y | 1662 | CONFIG_SUNRPC_GSS=y |
| 1628 | CONFIG_SUNRPC_XPRT_RDMA=m | 1663 | CONFIG_SUNRPC_XPRT_RDMA=m |
| 1629 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1630 | CONFIG_RPCSEC_GSS_KRB5=y | 1664 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1631 | CONFIG_RPCSEC_GSS_SPKM3=m | 1665 | CONFIG_RPCSEC_GSS_SPKM3=m |
| 1632 | # CONFIG_SMB_FS is not set | 1666 | # CONFIG_SMB_FS is not set |
| @@ -1637,6 +1671,7 @@ CONFIG_CIFS=m | |||
| 1637 | CONFIG_CIFS_XATTR=y | 1671 | CONFIG_CIFS_XATTR=y |
| 1638 | CONFIG_CIFS_POSIX=y | 1672 | CONFIG_CIFS_POSIX=y |
| 1639 | # CONFIG_CIFS_DEBUG2 is not set | 1673 | # CONFIG_CIFS_DEBUG2 is not set |
| 1674 | # CONFIG_CIFS_DFS_UPCALL is not set | ||
| 1640 | # CONFIG_CIFS_EXPERIMENTAL is not set | 1675 | # CONFIG_CIFS_EXPERIMENTAL is not set |
| 1641 | # CONFIG_NCP_FS is not set | 1676 | # CONFIG_NCP_FS is not set |
| 1642 | # CONFIG_CODA_FS is not set | 1677 | # CONFIG_CODA_FS is not set |
| @@ -1704,6 +1739,7 @@ CONFIG_NLS_KOI8_R=m | |||
| 1704 | CONFIG_NLS_KOI8_U=m | 1739 | CONFIG_NLS_KOI8_U=m |
| 1705 | CONFIG_NLS_UTF8=m | 1740 | CONFIG_NLS_UTF8=m |
| 1706 | # CONFIG_DLM is not set | 1741 | # CONFIG_DLM is not set |
| 1742 | CONFIG_BINARY_PRINTF=y | ||
| 1707 | 1743 | ||
| 1708 | # | 1744 | # |
| 1709 | # Library routines | 1745 | # Library routines |
| @@ -1719,12 +1755,15 @@ CONFIG_CRC32=y | |||
| 1719 | CONFIG_LIBCRC32C=m | 1755 | CONFIG_LIBCRC32C=m |
| 1720 | CONFIG_ZLIB_INFLATE=y | 1756 | CONFIG_ZLIB_INFLATE=y |
| 1721 | CONFIG_ZLIB_DEFLATE=y | 1757 | CONFIG_ZLIB_DEFLATE=y |
| 1722 | CONFIG_PLIST=y | 1758 | CONFIG_DECOMPRESS_GZIP=y |
| 1759 | CONFIG_DECOMPRESS_BZIP2=y | ||
| 1760 | CONFIG_DECOMPRESS_LZMA=y | ||
| 1723 | CONFIG_HAS_IOMEM=y | 1761 | CONFIG_HAS_IOMEM=y |
| 1724 | CONFIG_HAS_IOPORT=y | 1762 | CONFIG_HAS_IOPORT=y |
| 1725 | CONFIG_HAS_DMA=y | 1763 | CONFIG_HAS_DMA=y |
| 1726 | CONFIG_CHECK_SIGNATURE=y | 1764 | CONFIG_CHECK_SIGNATURE=y |
| 1727 | CONFIG_HAVE_LMB=y | 1765 | CONFIG_HAVE_LMB=y |
| 1766 | CONFIG_NLATTR=y | ||
| 1728 | 1767 | ||
| 1729 | # | 1768 | # |
| 1730 | # Kernel hacking | 1769 | # Kernel hacking |
| @@ -1742,6 +1781,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1742 | CONFIG_DETECT_SOFTLOCKUP=y | 1781 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1743 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1782 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1744 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1783 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1784 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1785 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1786 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1745 | CONFIG_SCHED_DEBUG=y | 1787 | CONFIG_SCHED_DEBUG=y |
| 1746 | # CONFIG_SCHEDSTATS is not set | 1788 | # CONFIG_SCHEDSTATS is not set |
| 1747 | # CONFIG_TIMER_STATS is not set | 1789 | # CONFIG_TIMER_STATS is not set |
| @@ -1775,12 +1817,15 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
| 1775 | # CONFIG_FAULT_INJECTION is not set | 1817 | # CONFIG_FAULT_INJECTION is not set |
| 1776 | # CONFIG_LATENCYTOP is not set | 1818 | # CONFIG_LATENCYTOP is not set |
| 1777 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1819 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1820 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1778 | CONFIG_NOP_TRACER=y | 1821 | CONFIG_NOP_TRACER=y |
| 1779 | CONFIG_HAVE_FUNCTION_TRACER=y | 1822 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1823 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1780 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1824 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1781 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1825 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1782 | CONFIG_RING_BUFFER=y | 1826 | CONFIG_RING_BUFFER=y |
| 1783 | CONFIG_TRACING=y | 1827 | CONFIG_TRACING=y |
| 1828 | CONFIG_TRACING_SUPPORT=y | ||
| 1784 | 1829 | ||
| 1785 | # | 1830 | # |
| 1786 | # Tracers | 1831 | # Tracers |
| @@ -1788,18 +1833,21 @@ CONFIG_TRACING=y | |||
| 1788 | # CONFIG_FUNCTION_TRACER is not set | 1833 | # CONFIG_FUNCTION_TRACER is not set |
| 1789 | # CONFIG_SCHED_TRACER is not set | 1834 | # CONFIG_SCHED_TRACER is not set |
| 1790 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1835 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1836 | # CONFIG_EVENT_TRACER is not set | ||
| 1791 | # CONFIG_BOOT_TRACER is not set | 1837 | # CONFIG_BOOT_TRACER is not set |
| 1792 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1838 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1793 | # CONFIG_STACK_TRACER is not set | 1839 | # CONFIG_STACK_TRACER is not set |
| 1840 | # CONFIG_KMEMTRACE is not set | ||
| 1841 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1842 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1794 | # CONFIG_FTRACE_STARTUP_TEST is not set | 1843 | # CONFIG_FTRACE_STARTUP_TEST is not set |
| 1795 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1844 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1796 | # CONFIG_SAMPLES is not set | 1845 | # CONFIG_SAMPLES is not set |
| 1797 | CONFIG_HAVE_ARCH_KGDB=y | 1846 | CONFIG_HAVE_ARCH_KGDB=y |
| 1798 | # CONFIG_KGDB is not set | 1847 | # CONFIG_KGDB is not set |
| 1799 | CONFIG_PRINT_STACK_DEPTH=64 | 1848 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1800 | CONFIG_DEBUG_STACKOVERFLOW=y | 1849 | CONFIG_DEBUG_STACKOVERFLOW=y |
| 1801 | CONFIG_DEBUG_STACK_USAGE=y | 1850 | CONFIG_DEBUG_STACK_USAGE=y |
| 1802 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1803 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1851 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1804 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1852 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1805 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1853 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1830,6 +1878,7 @@ CONFIG_SECURITY_SELINUX_DEVELOP=y | |||
| 1830 | CONFIG_SECURITY_SELINUX_AVC_STATS=y | 1878 | CONFIG_SECURITY_SELINUX_AVC_STATS=y |
| 1831 | CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 | 1879 | CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 |
| 1832 | # CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set | 1880 | # CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set |
| 1881 | # CONFIG_SECURITY_TOMOYO is not set | ||
| 1833 | CONFIG_CRYPTO=y | 1882 | CONFIG_CRYPTO=y |
| 1834 | 1883 | ||
| 1835 | # | 1884 | # |
| @@ -1845,10 +1894,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1845 | CONFIG_CRYPTO_HASH=y | 1894 | CONFIG_CRYPTO_HASH=y |
| 1846 | CONFIG_CRYPTO_HASH2=y | 1895 | CONFIG_CRYPTO_HASH2=y |
| 1847 | CONFIG_CRYPTO_RNG2=y | 1896 | CONFIG_CRYPTO_RNG2=y |
| 1897 | CONFIG_CRYPTO_PCOMP=y | ||
| 1848 | CONFIG_CRYPTO_MANAGER=y | 1898 | CONFIG_CRYPTO_MANAGER=y |
| 1849 | CONFIG_CRYPTO_MANAGER2=y | 1899 | CONFIG_CRYPTO_MANAGER2=y |
| 1850 | # CONFIG_CRYPTO_GF128MUL is not set | 1900 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1851 | CONFIG_CRYPTO_NULL=m | 1901 | CONFIG_CRYPTO_NULL=m |
| 1902 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1852 | # CONFIG_CRYPTO_CRYPTD is not set | 1903 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1853 | CONFIG_CRYPTO_AUTHENC=m | 1904 | CONFIG_CRYPTO_AUTHENC=m |
| 1854 | # CONFIG_CRYPTO_TEST is not set | 1905 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1918,6 +1969,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
| 1918 | # Compression | 1969 | # Compression |
| 1919 | # | 1970 | # |
| 1920 | CONFIG_CRYPTO_DEFLATE=m | 1971 | CONFIG_CRYPTO_DEFLATE=m |
| 1972 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1921 | # CONFIG_CRYPTO_LZO is not set | 1973 | # CONFIG_CRYPTO_LZO is not set |
| 1922 | 1974 | ||
| 1923 | # | 1975 | # |
diff --git a/arch/powerpc/configs/ep8248e_defconfig b/arch/powerpc/configs/ep8248e_defconfig index add6419c15d9..04915c3a43f6 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:27 2009 | 4 | # Wed May 13 17:21:52 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| @@ -55,6 +56,7 @@ CONFIG_GENERIC_BUG=y | |||
| 55 | # CONFIG_DEFAULT_UIMAGE is not set | 56 | # CONFIG_DEFAULT_UIMAGE is not set |
| 56 | # CONFIG_PPC_DCR_NATIVE is not set | 57 | # CONFIG_PPC_DCR_NATIVE is not set |
| 57 | # CONFIG_PPC_DCR_MMIO is not set | 58 | # CONFIG_PPC_DCR_MMIO is not set |
| 59 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 58 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 59 | 61 | ||
| 60 | # | 62 | # |
| @@ -71,6 +73,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 71 | # CONFIG_BSD_PROCESS_ACCT is not set | 73 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 72 | # CONFIG_TASKSTATS is not set | 74 | # CONFIG_TASKSTATS is not set |
| 73 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
| 76 | |||
| 77 | # | ||
| 78 | # RCU Subsystem | ||
| 79 | # | ||
| 80 | CONFIG_CLASSIC_RCU=y | ||
| 81 | # CONFIG_TREE_RCU is not set | ||
| 82 | # CONFIG_PREEMPT_RCU is not set | ||
| 83 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 84 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 74 | CONFIG_IKCONFIG=y | 85 | CONFIG_IKCONFIG=y |
| 75 | CONFIG_IKCONFIG_PROC=y | 86 | CONFIG_IKCONFIG_PROC=y |
| 76 | CONFIG_LOG_BUF_SHIFT=14 | 87 | CONFIG_LOG_BUF_SHIFT=14 |
| @@ -82,20 +93,19 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 82 | # CONFIG_BLK_DEV_INITRD is not set | 93 | # CONFIG_BLK_DEV_INITRD is not set |
| 83 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 94 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 84 | CONFIG_SYSCTL=y | 95 | CONFIG_SYSCTL=y |
| 96 | CONFIG_ANON_INODES=y | ||
| 85 | CONFIG_EMBEDDED=y | 97 | CONFIG_EMBEDDED=y |
| 86 | CONFIG_SYSCTL_SYSCALL=y | 98 | CONFIG_SYSCTL_SYSCALL=y |
| 87 | CONFIG_KALLSYMS=y | 99 | CONFIG_KALLSYMS=y |
| 88 | CONFIG_KALLSYMS_ALL=y | 100 | CONFIG_KALLSYMS_ALL=y |
| 89 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 101 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 102 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 91 | CONFIG_HOTPLUG=y | 103 | CONFIG_HOTPLUG=y |
| 92 | CONFIG_PRINTK=y | 104 | CONFIG_PRINTK=y |
| 93 | CONFIG_BUG=y | 105 | CONFIG_BUG=y |
| 94 | CONFIG_ELF_CORE=y | 106 | CONFIG_ELF_CORE=y |
| 95 | CONFIG_COMPAT_BRK=y | ||
| 96 | CONFIG_BASE_FULL=y | 107 | CONFIG_BASE_FULL=y |
| 97 | CONFIG_FUTEX=y | 108 | CONFIG_FUTEX=y |
| 98 | CONFIG_ANON_INODES=y | ||
| 99 | CONFIG_EPOLL=y | 109 | CONFIG_EPOLL=y |
| 100 | CONFIG_SIGNALFD=y | 110 | CONFIG_SIGNALFD=y |
| 101 | CONFIG_TIMERFD=y | 111 | CONFIG_TIMERFD=y |
| @@ -104,10 +114,12 @@ CONFIG_SHMEM=y | |||
| 104 | CONFIG_AIO=y | 114 | CONFIG_AIO=y |
| 105 | CONFIG_VM_EVENT_COUNTERS=y | 115 | CONFIG_VM_EVENT_COUNTERS=y |
| 106 | CONFIG_PCI_QUIRKS=y | 116 | CONFIG_PCI_QUIRKS=y |
| 117 | CONFIG_COMPAT_BRK=y | ||
| 107 | CONFIG_SLAB=y | 118 | CONFIG_SLAB=y |
| 108 | # CONFIG_SLUB is not set | 119 | # CONFIG_SLUB is not set |
| 109 | # CONFIG_SLOB is not set | 120 | # CONFIG_SLOB is not set |
| 110 | # CONFIG_PROFILING is not set | 121 | # CONFIG_PROFILING is not set |
| 122 | # CONFIG_MARKERS is not set | ||
| 111 | CONFIG_HAVE_OPROFILE=y | 123 | CONFIG_HAVE_OPROFILE=y |
| 112 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 124 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 113 | CONFIG_HAVE_IOREMAP_PROT=y | 125 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -115,6 +127,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 115 | CONFIG_HAVE_KRETPROBES=y | 127 | CONFIG_HAVE_KRETPROBES=y |
| 116 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 128 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 117 | CONFIG_HAVE_CLK=y | 129 | CONFIG_HAVE_CLK=y |
| 130 | # CONFIG_SLOW_WORK is not set | ||
| 118 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 119 | CONFIG_SLABINFO=y | 132 | CONFIG_SLABINFO=y |
| 120 | CONFIG_RT_MUTEXES=y | 133 | CONFIG_RT_MUTEXES=y |
| @@ -122,7 +135,6 @@ CONFIG_BASE_SMALL=0 | |||
| 122 | # CONFIG_MODULES is not set | 135 | # CONFIG_MODULES is not set |
| 123 | CONFIG_BLOCK=y | 136 | CONFIG_BLOCK=y |
| 124 | # CONFIG_LBD is not set | 137 | # CONFIG_LBD is not set |
| 125 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 126 | # CONFIG_BLK_DEV_INTEGRITY is not set | 138 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 127 | 139 | ||
| 128 | # | 140 | # |
| @@ -137,18 +149,11 @@ CONFIG_DEFAULT_DEADLINE=y | |||
| 137 | # CONFIG_DEFAULT_CFQ is not set | 149 | # CONFIG_DEFAULT_CFQ is not set |
| 138 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
| 139 | CONFIG_DEFAULT_IOSCHED="deadline" | 151 | CONFIG_DEFAULT_IOSCHED="deadline" |
| 140 | CONFIG_CLASSIC_RCU=y | ||
| 141 | # CONFIG_TREE_RCU is not set | ||
| 142 | # CONFIG_PREEMPT_RCU is not set | ||
| 143 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 144 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 145 | # CONFIG_FREEZER is not set | 152 | # CONFIG_FREEZER is not set |
| 146 | 153 | ||
| 147 | # | 154 | # |
| 148 | # Platform support | 155 | # Platform support |
| 149 | # | 156 | # |
| 150 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 151 | CONFIG_CLASSIC32=y | ||
| 152 | # CONFIG_PPC_CHRP is not set | 157 | # CONFIG_PPC_CHRP is not set |
| 153 | # CONFIG_MPC5121_ADS is not set | 158 | # CONFIG_MPC5121_ADS is not set |
| 154 | # CONFIG_MPC5121_GENERIC is not set | 159 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -167,6 +172,8 @@ CONFIG_8272=y | |||
| 167 | # CONFIG_PPC_83xx is not set | 172 | # CONFIG_PPC_83xx is not set |
| 168 | # CONFIG_PPC_86xx is not set | 173 | # CONFIG_PPC_86xx is not set |
| 169 | # CONFIG_EMBEDDED6xx is not set | 174 | # CONFIG_EMBEDDED6xx is not set |
| 175 | # CONFIG_AMIGAONE is not set | ||
| 176 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 170 | # CONFIG_IPIC is not set | 177 | # CONFIG_IPIC is not set |
| 171 | # CONFIG_MPIC is not set | 178 | # CONFIG_MPIC is not set |
| 172 | # CONFIG_MPIC_WEIRD is not set | 179 | # CONFIG_MPIC_WEIRD is not set |
| @@ -222,9 +229,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 222 | CONFIG_BOUNCE=y | 229 | CONFIG_BOUNCE=y |
| 223 | CONFIG_VIRT_TO_BUS=y | 230 | CONFIG_VIRT_TO_BUS=y |
| 224 | CONFIG_UNEVICTABLE_LRU=y | 231 | CONFIG_UNEVICTABLE_LRU=y |
| 232 | CONFIG_HAVE_MLOCK=y | ||
| 233 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 225 | CONFIG_PPC_4K_PAGES=y | 234 | CONFIG_PPC_4K_PAGES=y |
| 226 | # CONFIG_PPC_16K_PAGES is not set | 235 | # CONFIG_PPC_16K_PAGES is not set |
| 227 | # CONFIG_PPC_64K_PAGES is not set | 236 | # CONFIG_PPC_64K_PAGES is not set |
| 237 | # CONFIG_PPC_256K_PAGES is not set | ||
| 228 | CONFIG_FORCE_MAX_ZONEORDER=11 | 238 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 229 | CONFIG_PROC_DEVICETREE=y | 239 | CONFIG_PROC_DEVICETREE=y |
| 230 | # CONFIG_CMDLINE_BOOL is not set | 240 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -250,6 +260,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 250 | # CONFIG_PCI_LEGACY is not set | 260 | # CONFIG_PCI_LEGACY is not set |
| 251 | # CONFIG_PCI_DEBUG is not set | 261 | # CONFIG_PCI_DEBUG is not set |
| 252 | # CONFIG_PCI_STUB is not set | 262 | # CONFIG_PCI_STUB is not set |
| 263 | # CONFIG_PCI_IOV is not set | ||
| 253 | # CONFIG_PCCARD is not set | 264 | # CONFIG_PCCARD is not set |
| 254 | # CONFIG_HOTPLUG_PCI is not set | 265 | # CONFIG_HOTPLUG_PCI is not set |
| 255 | # CONFIG_HAS_RAPIDIO is not set | 266 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -272,7 +283,6 @@ CONFIG_NET=y | |||
| 272 | # | 283 | # |
| 273 | # Networking options | 284 | # Networking options |
| 274 | # | 285 | # |
| 275 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 276 | CONFIG_PACKET=y | 286 | CONFIG_PACKET=y |
| 277 | # CONFIG_PACKET_MMAP is not set | 287 | # CONFIG_PACKET_MMAP is not set |
| 278 | CONFIG_UNIX=y | 288 | CONFIG_UNIX=y |
| @@ -353,6 +363,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
| 353 | # CONFIG_LLC2 is not set | 363 | # CONFIG_LLC2 is not set |
| 354 | # CONFIG_IPX is not set | 364 | # CONFIG_IPX is not set |
| 355 | # CONFIG_ATALK is not set | 365 | # CONFIG_ATALK is not set |
| 366 | # CONFIG_PHONET is not set | ||
| 356 | # CONFIG_NET_SCHED is not set | 367 | # CONFIG_NET_SCHED is not set |
| 357 | # CONFIG_DCB is not set | 368 | # CONFIG_DCB is not set |
| 358 | 369 | ||
| @@ -364,7 +375,6 @@ CONFIG_NETFILTER_ADVANCED=y | |||
| 364 | # CONFIG_CAN is not set | 375 | # CONFIG_CAN is not set |
| 365 | # CONFIG_IRDA is not set | 376 | # CONFIG_IRDA is not set |
| 366 | # CONFIG_BT is not set | 377 | # CONFIG_BT is not set |
| 367 | # CONFIG_PHONET is not set | ||
| 368 | CONFIG_WIRELESS=y | 378 | CONFIG_WIRELESS=y |
| 369 | # CONFIG_CFG80211 is not set | 379 | # CONFIG_CFG80211 is not set |
| 370 | CONFIG_WIRELESS_OLD_REGULATORY=y | 380 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -468,7 +478,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 468 | # LPDDR flash memory drivers | 478 | # LPDDR flash memory drivers |
| 469 | # | 479 | # |
| 470 | # CONFIG_MTD_LPDDR is not set | 480 | # CONFIG_MTD_LPDDR is not set |
| 471 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 472 | 481 | ||
| 473 | # | 482 | # |
| 474 | # UBI - Unsorted block images | 483 | # UBI - Unsorted block images |
| @@ -517,6 +526,7 @@ CONFIG_HAVE_IDE=y | |||
| 517 | # CONFIG_I2O is not set | 526 | # CONFIG_I2O is not set |
| 518 | # CONFIG_MACINTOSH_DRIVERS is not set | 527 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 519 | CONFIG_NETDEVICES=y | 528 | CONFIG_NETDEVICES=y |
| 529 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 520 | # CONFIG_DUMMY is not set | 530 | # CONFIG_DUMMY is not set |
| 521 | # CONFIG_BONDING is not set | 531 | # CONFIG_BONDING is not set |
| 522 | # CONFIG_EQUALIZER is not set | 532 | # CONFIG_EQUALIZER is not set |
| @@ -550,6 +560,8 @@ CONFIG_MII=y | |||
| 550 | # CONFIG_SUNGEM is not set | 560 | # CONFIG_SUNGEM is not set |
| 551 | # CONFIG_CASSINI is not set | 561 | # CONFIG_CASSINI is not set |
| 552 | # CONFIG_NET_VENDOR_3COM is not set | 562 | # CONFIG_NET_VENDOR_3COM is not set |
| 563 | # CONFIG_ETHOC is not set | ||
| 564 | # CONFIG_DNET is not set | ||
| 553 | # CONFIG_NET_TULIP is not set | 565 | # CONFIG_NET_TULIP is not set |
| 554 | # CONFIG_HP100 is not set | 566 | # CONFIG_HP100 is not set |
| 555 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 567 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -572,6 +584,7 @@ CONFIG_NETDEV_1000=y | |||
| 572 | # CONFIG_E1000 is not set | 584 | # CONFIG_E1000 is not set |
| 573 | # CONFIG_E1000E is not set | 585 | # CONFIG_E1000E is not set |
| 574 | # CONFIG_IGB is not set | 586 | # CONFIG_IGB is not set |
| 587 | # CONFIG_IGBVF is not set | ||
| 575 | # CONFIG_NS83820 is not set | 588 | # CONFIG_NS83820 is not set |
| 576 | # CONFIG_HAMACHI is not set | 589 | # CONFIG_HAMACHI is not set |
| 577 | # CONFIG_R8169 is not set | 590 | # CONFIG_R8169 is not set |
| @@ -581,8 +594,8 @@ CONFIG_NETDEV_1000=y | |||
| 581 | # CONFIG_VIA_VELOCITY is not set | 594 | # CONFIG_VIA_VELOCITY is not set |
| 582 | # CONFIG_TIGON3 is not set | 595 | # CONFIG_TIGON3 is not set |
| 583 | # CONFIG_BNX2 is not set | 596 | # CONFIG_BNX2 is not set |
| 597 | # CONFIG_FSL_PQ_MDIO is not set | ||
| 584 | # CONFIG_GIANFAR is not set | 598 | # CONFIG_GIANFAR is not set |
| 585 | # CONFIG_MV643XX_ETH is not set | ||
| 586 | # CONFIG_QLA3XXX is not set | 599 | # CONFIG_QLA3XXX is not set |
| 587 | # CONFIG_ATL1 is not set | 600 | # CONFIG_ATL1 is not set |
| 588 | # CONFIG_JME is not set | 601 | # CONFIG_JME is not set |
| @@ -594,6 +607,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 594 | # CONFIG_IXGBE is not set | 607 | # CONFIG_IXGBE is not set |
| 595 | # CONFIG_IXGB is not set | 608 | # CONFIG_IXGB is not set |
| 596 | # CONFIG_S2IO is not set | 609 | # CONFIG_S2IO is not set |
| 610 | # CONFIG_VXGE is not set | ||
| 597 | # CONFIG_MYRI10GE is not set | 611 | # CONFIG_MYRI10GE is not set |
| 598 | # CONFIG_NETXEN_NIC is not set | 612 | # CONFIG_NETXEN_NIC is not set |
| 599 | # CONFIG_NIU is not set | 613 | # CONFIG_NIU is not set |
| @@ -603,6 +617,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 603 | # CONFIG_BNX2X is not set | 617 | # CONFIG_BNX2X is not set |
| 604 | # CONFIG_QLGE is not set | 618 | # CONFIG_QLGE is not set |
| 605 | # CONFIG_SFC is not set | 619 | # CONFIG_SFC is not set |
| 620 | # CONFIG_BE2NET is not set | ||
| 606 | # CONFIG_TR is not set | 621 | # CONFIG_TR is not set |
| 607 | 622 | ||
| 608 | # | 623 | # |
| @@ -610,7 +625,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 610 | # | 625 | # |
| 611 | # CONFIG_WLAN_PRE80211 is not set | 626 | # CONFIG_WLAN_PRE80211 is not set |
| 612 | # CONFIG_WLAN_80211 is not set | 627 | # CONFIG_WLAN_80211 is not set |
| 613 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 614 | 628 | ||
| 615 | # | 629 | # |
| 616 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 630 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -662,6 +676,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 662 | CONFIG_LEGACY_PTY_COUNT=256 | 676 | CONFIG_LEGACY_PTY_COUNT=256 |
| 663 | # CONFIG_IPMI_HANDLER is not set | 677 | # CONFIG_IPMI_HANDLER is not set |
| 664 | CONFIG_HW_RANDOM=y | 678 | CONFIG_HW_RANDOM=y |
| 679 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 665 | # CONFIG_NVRAM is not set | 680 | # CONFIG_NVRAM is not set |
| 666 | # CONFIG_GEN_RTC is not set | 681 | # CONFIG_GEN_RTC is not set |
| 667 | # CONFIG_R3964 is not set | 682 | # CONFIG_R3964 is not set |
| @@ -751,8 +766,10 @@ CONFIG_DAB=y | |||
| 751 | # CONFIG_NEW_LEDS is not set | 766 | # CONFIG_NEW_LEDS is not set |
| 752 | # CONFIG_ACCESSIBILITY is not set | 767 | # CONFIG_ACCESSIBILITY is not set |
| 753 | # CONFIG_INFINIBAND is not set | 768 | # CONFIG_INFINIBAND is not set |
| 769 | # CONFIG_EDAC is not set | ||
| 754 | # CONFIG_RTC_CLASS is not set | 770 | # CONFIG_RTC_CLASS is not set |
| 755 | # CONFIG_DMADEVICES is not set | 771 | # CONFIG_DMADEVICES is not set |
| 772 | # CONFIG_AUXDISPLAY is not set | ||
| 756 | # CONFIG_UIO is not set | 773 | # CONFIG_UIO is not set |
| 757 | # CONFIG_STAGING is not set | 774 | # CONFIG_STAGING is not set |
| 758 | 775 | ||
| @@ -763,6 +780,7 @@ CONFIG_EXT2_FS=y | |||
| 763 | # CONFIG_EXT2_FS_XATTR is not set | 780 | # CONFIG_EXT2_FS_XATTR is not set |
| 764 | # CONFIG_EXT2_FS_XIP is not set | 781 | # CONFIG_EXT2_FS_XIP is not set |
| 765 | CONFIG_EXT3_FS=y | 782 | CONFIG_EXT3_FS=y |
| 783 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 766 | # CONFIG_EXT3_FS_XATTR is not set | 784 | # CONFIG_EXT3_FS_XATTR is not set |
| 767 | # CONFIG_EXT4_FS is not set | 785 | # CONFIG_EXT4_FS is not set |
| 768 | CONFIG_JBD=y | 786 | CONFIG_JBD=y |
| @@ -781,6 +799,10 @@ CONFIG_AUTOFS4_FS=y | |||
| 781 | # CONFIG_FUSE_FS is not set | 799 | # CONFIG_FUSE_FS is not set |
| 782 | 800 | ||
| 783 | # | 801 | # |
| 802 | # Caches | ||
| 803 | # | ||
| 804 | |||
| 805 | # | ||
| 784 | # CD-ROM/DVD Filesystems | 806 | # CD-ROM/DVD Filesystems |
| 785 | # | 807 | # |
| 786 | # CONFIG_ISO9660_FS is not set | 808 | # CONFIG_ISO9660_FS is not set |
| @@ -894,6 +916,7 @@ CONFIG_NLS_ISO8859_1=y | |||
| 894 | # CONFIG_NLS_KOI8_R is not set | 916 | # CONFIG_NLS_KOI8_R is not set |
| 895 | # CONFIG_NLS_KOI8_U is not set | 917 | # CONFIG_NLS_KOI8_U is not set |
| 896 | CONFIG_NLS_UTF8=y | 918 | CONFIG_NLS_UTF8=y |
| 919 | # CONFIG_BINARY_PRINTF is not set | ||
| 897 | 920 | ||
| 898 | # | 921 | # |
| 899 | # Library routines | 922 | # Library routines |
| @@ -907,11 +930,11 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
| 907 | # CONFIG_CRC7 is not set | 930 | # CONFIG_CRC7 is not set |
| 908 | # CONFIG_LIBCRC32C is not set | 931 | # CONFIG_LIBCRC32C is not set |
| 909 | CONFIG_ZLIB_INFLATE=y | 932 | CONFIG_ZLIB_INFLATE=y |
| 910 | CONFIG_PLIST=y | ||
| 911 | CONFIG_HAS_IOMEM=y | 933 | CONFIG_HAS_IOMEM=y |
| 912 | CONFIG_HAS_IOPORT=y | 934 | CONFIG_HAS_IOPORT=y |
| 913 | CONFIG_HAS_DMA=y | 935 | CONFIG_HAS_DMA=y |
| 914 | CONFIG_HAVE_LMB=y | 936 | CONFIG_HAVE_LMB=y |
| 937 | CONFIG_NLATTR=y | ||
| 915 | 938 | ||
| 916 | # | 939 | # |
| 917 | # Kernel hacking | 940 | # Kernel hacking |
| @@ -927,6 +950,7 @@ CONFIG_MAGIC_SYSRQ=y | |||
| 927 | CONFIG_DEBUG_KERNEL=y | 950 | CONFIG_DEBUG_KERNEL=y |
| 928 | # CONFIG_DEBUG_SHIRQ is not set | 951 | # CONFIG_DEBUG_SHIRQ is not set |
| 929 | # CONFIG_DETECT_SOFTLOCKUP is not set | 952 | # CONFIG_DETECT_SOFTLOCKUP is not set |
| 953 | # CONFIG_DETECT_HUNG_TASK is not set | ||
| 930 | # CONFIG_SCHED_DEBUG is not set | 954 | # CONFIG_SCHED_DEBUG is not set |
| 931 | # CONFIG_SCHEDSTATS is not set | 955 | # CONFIG_SCHEDSTATS is not set |
| 932 | # CONFIG_TIMER_STATS is not set | 956 | # CONFIG_TIMER_STATS is not set |
| @@ -955,9 +979,12 @@ CONFIG_DEBUG_INFO=y | |||
| 955 | # CONFIG_FAULT_INJECTION is not set | 979 | # CONFIG_FAULT_INJECTION is not set |
| 956 | # CONFIG_LATENCYTOP is not set | 980 | # CONFIG_LATENCYTOP is not set |
| 957 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 981 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 982 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 958 | CONFIG_HAVE_FUNCTION_TRACER=y | 983 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 984 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 959 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 985 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 960 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 986 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 987 | CONFIG_TRACING_SUPPORT=y | ||
| 961 | 988 | ||
| 962 | # | 989 | # |
| 963 | # Tracers | 990 | # Tracers |
| @@ -965,16 +992,18 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 965 | # CONFIG_FUNCTION_TRACER is not set | 992 | # CONFIG_FUNCTION_TRACER is not set |
| 966 | # CONFIG_SCHED_TRACER is not set | 993 | # CONFIG_SCHED_TRACER is not set |
| 967 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 994 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 995 | # CONFIG_EVENT_TRACER is not set | ||
| 968 | # CONFIG_BOOT_TRACER is not set | 996 | # CONFIG_BOOT_TRACER is not set |
| 969 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 997 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 970 | # CONFIG_STACK_TRACER is not set | 998 | # CONFIG_STACK_TRACER is not set |
| 971 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 999 | # CONFIG_KMEMTRACE is not set |
| 1000 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1001 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 972 | # CONFIG_SAMPLES is not set | 1002 | # CONFIG_SAMPLES is not set |
| 973 | CONFIG_HAVE_ARCH_KGDB=y | 1003 | CONFIG_HAVE_ARCH_KGDB=y |
| 974 | CONFIG_PRINT_STACK_DEPTH=64 | 1004 | CONFIG_PRINT_STACK_DEPTH=64 |
| 975 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1005 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 976 | # CONFIG_DEBUG_STACK_USAGE is not set | 1006 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 977 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 978 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1007 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 979 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1008 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 980 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1009 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1005,9 +1034,11 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1005 | CONFIG_CRYPTO_HASH=y | 1034 | CONFIG_CRYPTO_HASH=y |
| 1006 | CONFIG_CRYPTO_HASH2=y | 1035 | CONFIG_CRYPTO_HASH2=y |
| 1007 | CONFIG_CRYPTO_RNG2=y | 1036 | CONFIG_CRYPTO_RNG2=y |
| 1037 | CONFIG_CRYPTO_PCOMP=y | ||
| 1008 | CONFIG_CRYPTO_MANAGER=y | 1038 | CONFIG_CRYPTO_MANAGER=y |
| 1009 | CONFIG_CRYPTO_MANAGER2=y | 1039 | CONFIG_CRYPTO_MANAGER2=y |
| 1010 | # CONFIG_CRYPTO_NULL is not set | 1040 | # CONFIG_CRYPTO_NULL is not set |
| 1041 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1011 | # CONFIG_CRYPTO_CRYPTD is not set | 1042 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1012 | # CONFIG_CRYPTO_AUTHENC is not set | 1043 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1013 | 1044 | ||
| @@ -1071,6 +1102,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1071 | # Compression | 1102 | # Compression |
| 1072 | # | 1103 | # |
| 1073 | # CONFIG_CRYPTO_DEFLATE is not set | 1104 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1105 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1074 | # CONFIG_CRYPTO_LZO is not set | 1106 | # CONFIG_CRYPTO_LZO is not set |
| 1075 | 1107 | ||
| 1076 | # | 1108 | # |
diff --git a/arch/powerpc/configs/ep88xc_defconfig b/arch/powerpc/configs/ep88xc_defconfig index b2fdfd9e183c..c2a439595f4d 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:28 2009 | 4 | # Wed May 13 17:21:53 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -52,6 +52,7 @@ CONFIG_GENERIC_BUG=y | |||
| 52 | # CONFIG_DEFAULT_UIMAGE is not set | 52 | # CONFIG_DEFAULT_UIMAGE is not set |
| 53 | # CONFIG_PPC_DCR_NATIVE is not set | 53 | # CONFIG_PPC_DCR_NATIVE is not set |
| 54 | # CONFIG_PPC_DCR_MMIO is not set | 54 | # CONFIG_PPC_DCR_MMIO is not set |
| 55 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 55 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 56 | 57 | ||
| 57 | # | 58 | # |
| @@ -69,6 +70,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 69 | # CONFIG_BSD_PROCESS_ACCT is not set | 70 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 70 | # CONFIG_TASKSTATS is not set | 71 | # CONFIG_TASKSTATS is not set |
| 71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
| 73 | |||
| 74 | # | ||
| 75 | # RCU Subsystem | ||
| 76 | # | ||
| 77 | CONFIG_CLASSIC_RCU=y | ||
| 78 | # CONFIG_TREE_RCU is not set | ||
| 79 | # CONFIG_PREEMPT_RCU is not set | ||
| 80 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 81 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 72 | # CONFIG_IKCONFIG is not set | 82 | # CONFIG_IKCONFIG is not set |
| 73 | CONFIG_LOG_BUF_SHIFT=14 | 83 | CONFIG_LOG_BUF_SHIFT=14 |
| 74 | CONFIG_GROUP_SCHED=y | 84 | CONFIG_GROUP_SCHED=y |
| @@ -84,19 +94,19 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 84 | # CONFIG_BLK_DEV_INITRD is not set | 94 | # CONFIG_BLK_DEV_INITRD is not set |
| 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 95 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 86 | CONFIG_SYSCTL=y | 96 | CONFIG_SYSCTL=y |
| 97 | CONFIG_ANON_INODES=y | ||
| 87 | CONFIG_EMBEDDED=y | 98 | CONFIG_EMBEDDED=y |
| 88 | # CONFIG_SYSCTL_SYSCALL is not set | 99 | # CONFIG_SYSCTL_SYSCALL is not set |
| 89 | CONFIG_KALLSYMS=y | 100 | CONFIG_KALLSYMS=y |
| 90 | # CONFIG_KALLSYMS_ALL is not set | 101 | # CONFIG_KALLSYMS_ALL is not set |
| 91 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 102 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 103 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 92 | CONFIG_HOTPLUG=y | 104 | CONFIG_HOTPLUG=y |
| 93 | CONFIG_PRINTK=y | 105 | CONFIG_PRINTK=y |
| 94 | CONFIG_BUG=y | 106 | CONFIG_BUG=y |
| 95 | # CONFIG_ELF_CORE is not set | 107 | # CONFIG_ELF_CORE is not set |
| 96 | CONFIG_COMPAT_BRK=y | ||
| 97 | # CONFIG_BASE_FULL is not set | 108 | # CONFIG_BASE_FULL is not set |
| 98 | # CONFIG_FUTEX is not set | 109 | # CONFIG_FUTEX is not set |
| 99 | CONFIG_ANON_INODES=y | ||
| 100 | CONFIG_EPOLL=y | 110 | CONFIG_EPOLL=y |
| 101 | CONFIG_SIGNALFD=y | 111 | CONFIG_SIGNALFD=y |
| 102 | CONFIG_TIMERFD=y | 112 | CONFIG_TIMERFD=y |
| @@ -105,10 +115,12 @@ CONFIG_SHMEM=y | |||
| 105 | CONFIG_AIO=y | 115 | CONFIG_AIO=y |
| 106 | # CONFIG_VM_EVENT_COUNTERS is not set | 116 | # CONFIG_VM_EVENT_COUNTERS is not set |
| 107 | CONFIG_SLUB_DEBUG=y | 117 | CONFIG_SLUB_DEBUG=y |
| 118 | CONFIG_COMPAT_BRK=y | ||
| 108 | # CONFIG_SLAB is not set | 119 | # CONFIG_SLAB is not set |
| 109 | CONFIG_SLUB=y | 120 | CONFIG_SLUB=y |
| 110 | # CONFIG_SLOB is not set | 121 | # CONFIG_SLOB is not set |
| 111 | # CONFIG_PROFILING is not set | 122 | # CONFIG_PROFILING is not set |
| 123 | # CONFIG_MARKERS is not set | ||
| 112 | CONFIG_HAVE_OPROFILE=y | 124 | CONFIG_HAVE_OPROFILE=y |
| 113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 125 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 114 | CONFIG_HAVE_IOREMAP_PROT=y | 126 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -116,13 +128,13 @@ CONFIG_HAVE_KPROBES=y | |||
| 116 | CONFIG_HAVE_KRETPROBES=y | 128 | CONFIG_HAVE_KRETPROBES=y |
| 117 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 129 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 118 | CONFIG_HAVE_CLK=y | 130 | CONFIG_HAVE_CLK=y |
| 131 | # CONFIG_SLOW_WORK is not set | ||
| 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 132 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 120 | CONFIG_SLABINFO=y | 133 | CONFIG_SLABINFO=y |
| 121 | CONFIG_BASE_SMALL=1 | 134 | CONFIG_BASE_SMALL=1 |
| 122 | # CONFIG_MODULES is not set | 135 | # CONFIG_MODULES is not set |
| 123 | CONFIG_BLOCK=y | 136 | CONFIG_BLOCK=y |
| 124 | # CONFIG_LBD is not set | 137 | # CONFIG_LBD is not set |
| 125 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 126 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
| 127 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 128 | 140 | ||
| @@ -138,11 +150,6 @@ CONFIG_DEFAULT_DEADLINE=y | |||
| 138 | # CONFIG_DEFAULT_CFQ is not set | 150 | # CONFIG_DEFAULT_CFQ is not set |
| 139 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
| 140 | CONFIG_DEFAULT_IOSCHED="deadline" | 152 | CONFIG_DEFAULT_IOSCHED="deadline" |
| 141 | CONFIG_CLASSIC_RCU=y | ||
| 142 | # CONFIG_TREE_RCU is not set | ||
| 143 | # CONFIG_PREEMPT_RCU is not set | ||
| 144 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 145 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 146 | # CONFIG_FREEZER is not set | 153 | # CONFIG_FREEZER is not set |
| 147 | 154 | ||
| 148 | # | 155 | # |
| @@ -233,9 +240,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 233 | CONFIG_BOUNCE=y | 240 | CONFIG_BOUNCE=y |
| 234 | CONFIG_VIRT_TO_BUS=y | 241 | CONFIG_VIRT_TO_BUS=y |
| 235 | CONFIG_UNEVICTABLE_LRU=y | 242 | CONFIG_UNEVICTABLE_LRU=y |
| 243 | CONFIG_HAVE_MLOCK=y | ||
| 244 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 236 | CONFIG_PPC_4K_PAGES=y | 245 | CONFIG_PPC_4K_PAGES=y |
| 237 | # CONFIG_PPC_16K_PAGES is not set | 246 | # CONFIG_PPC_16K_PAGES is not set |
| 238 | # CONFIG_PPC_64K_PAGES is not set | 247 | # CONFIG_PPC_64K_PAGES is not set |
| 248 | # CONFIG_PPC_256K_PAGES is not set | ||
| 239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 249 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 240 | CONFIG_PROC_DEVICETREE=y | 250 | CONFIG_PROC_DEVICETREE=y |
| 241 | # CONFIG_CMDLINE_BOOL is not set | 251 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -270,14 +280,11 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 270 | CONFIG_KERNEL_START=0xc0000000 | 280 | CONFIG_KERNEL_START=0xc0000000 |
| 271 | CONFIG_PHYSICAL_START=0x00000000 | 281 | CONFIG_PHYSICAL_START=0x00000000 |
| 272 | CONFIG_TASK_SIZE=0x80000000 | 282 | CONFIG_TASK_SIZE=0x80000000 |
| 273 | CONFIG_CONSISTENT_START=0xfd000000 | ||
| 274 | CONFIG_CONSISTENT_SIZE=0x00200000 | ||
| 275 | CONFIG_NET=y | 283 | CONFIG_NET=y |
| 276 | 284 | ||
| 277 | # | 285 | # |
| 278 | # Networking options | 286 | # Networking options |
| 279 | # | 287 | # |
| 280 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 281 | CONFIG_PACKET=y | 288 | CONFIG_PACKET=y |
| 282 | # CONFIG_PACKET_MMAP is not set | 289 | # CONFIG_PACKET_MMAP is not set |
| 283 | CONFIG_UNIX=y | 290 | CONFIG_UNIX=y |
| @@ -328,6 +335,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 328 | # CONFIG_LAPB is not set | 335 | # CONFIG_LAPB is not set |
| 329 | # CONFIG_ECONET is not set | 336 | # CONFIG_ECONET is not set |
| 330 | # CONFIG_WAN_ROUTER is not set | 337 | # CONFIG_WAN_ROUTER is not set |
| 338 | # CONFIG_PHONET is not set | ||
| 331 | # CONFIG_NET_SCHED is not set | 339 | # CONFIG_NET_SCHED is not set |
| 332 | # CONFIG_DCB is not set | 340 | # CONFIG_DCB is not set |
| 333 | 341 | ||
| @@ -340,7 +348,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 340 | # CONFIG_IRDA is not set | 348 | # CONFIG_IRDA is not set |
| 341 | # CONFIG_BT is not set | 349 | # CONFIG_BT is not set |
| 342 | # CONFIG_AF_RXRPC is not set | 350 | # CONFIG_AF_RXRPC is not set |
| 343 | # CONFIG_PHONET is not set | ||
| 344 | CONFIG_WIRELESS=y | 351 | CONFIG_WIRELESS=y |
| 345 | # CONFIG_CFG80211 is not set | 352 | # CONFIG_CFG80211 is not set |
| 346 | CONFIG_WIRELESS_OLD_REGULATORY=y | 353 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -439,7 +446,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 439 | # LPDDR flash memory drivers | 446 | # LPDDR flash memory drivers |
| 440 | # | 447 | # |
| 441 | # CONFIG_MTD_LPDDR is not set | 448 | # CONFIG_MTD_LPDDR is not set |
| 442 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 443 | 449 | ||
| 444 | # | 450 | # |
| 445 | # UBI - Unsorted block images | 451 | # UBI - Unsorted block images |
| @@ -463,6 +469,7 @@ CONFIG_HAVE_IDE=y | |||
| 463 | # CONFIG_MD is not set | 469 | # CONFIG_MD is not set |
| 464 | # CONFIG_MACINTOSH_DRIVERS is not set | 470 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 465 | CONFIG_NETDEVICES=y | 471 | CONFIG_NETDEVICES=y |
| 472 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 466 | # CONFIG_DUMMY is not set | 473 | # CONFIG_DUMMY is not set |
| 467 | # CONFIG_BONDING is not set | 474 | # CONFIG_BONDING is not set |
| 468 | # CONFIG_MACVLAN is not set | 475 | # CONFIG_MACVLAN is not set |
| @@ -491,6 +498,8 @@ CONFIG_LXT_PHY=y | |||
| 491 | # CONFIG_MDIO_BITBANG is not set | 498 | # CONFIG_MDIO_BITBANG is not set |
| 492 | CONFIG_NET_ETHERNET=y | 499 | CONFIG_NET_ETHERNET=y |
| 493 | CONFIG_MII=y | 500 | CONFIG_MII=y |
| 501 | # CONFIG_ETHOC is not set | ||
| 502 | # CONFIG_DNET is not set | ||
| 494 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 503 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 495 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 504 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 496 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 505 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -511,7 +520,6 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
| 511 | # | 520 | # |
| 512 | # CONFIG_WLAN_PRE80211 is not set | 521 | # CONFIG_WLAN_PRE80211 is not set |
| 513 | # CONFIG_WLAN_80211 is not set | 522 | # CONFIG_WLAN_80211 is not set |
| 514 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 515 | 523 | ||
| 516 | # | 524 | # |
| 517 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 525 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -562,6 +570,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 562 | # CONFIG_HVC_UDBG is not set | 570 | # CONFIG_HVC_UDBG is not set |
| 563 | # CONFIG_IPMI_HANDLER is not set | 571 | # CONFIG_IPMI_HANDLER is not set |
| 564 | CONFIG_HW_RANDOM=y | 572 | CONFIG_HW_RANDOM=y |
| 573 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 565 | # CONFIG_NVRAM is not set | 574 | # CONFIG_NVRAM is not set |
| 566 | CONFIG_GEN_RTC=y | 575 | CONFIG_GEN_RTC=y |
| 567 | # CONFIG_GEN_RTC_X is not set | 576 | # CONFIG_GEN_RTC_X is not set |
| @@ -631,6 +640,7 @@ CONFIG_DAB=y | |||
| 631 | # CONFIG_EDAC is not set | 640 | # CONFIG_EDAC is not set |
| 632 | # CONFIG_RTC_CLASS is not set | 641 | # CONFIG_RTC_CLASS is not set |
| 633 | # CONFIG_DMADEVICES is not set | 642 | # CONFIG_DMADEVICES is not set |
| 643 | # CONFIG_AUXDISPLAY is not set | ||
| 634 | # CONFIG_UIO is not set | 644 | # CONFIG_UIO is not set |
| 635 | # CONFIG_STAGING is not set | 645 | # CONFIG_STAGING is not set |
| 636 | 646 | ||
| @@ -655,6 +665,11 @@ CONFIG_FILE_LOCKING=y | |||
| 655 | # CONFIG_FUSE_FS is not set | 665 | # CONFIG_FUSE_FS is not set |
| 656 | 666 | ||
| 657 | # | 667 | # |
| 668 | # Caches | ||
| 669 | # | ||
| 670 | # CONFIG_FSCACHE is not set | ||
| 671 | |||
| 672 | # | ||
| 658 | # CD-ROM/DVD Filesystems | 673 | # CD-ROM/DVD Filesystems |
| 659 | # | 674 | # |
| 660 | # CONFIG_ISO9660_FS is not set | 675 | # CONFIG_ISO9660_FS is not set |
| @@ -698,6 +713,7 @@ CONFIG_CRAMFS=y | |||
| 698 | # CONFIG_ROMFS_FS is not set | 713 | # CONFIG_ROMFS_FS is not set |
| 699 | # CONFIG_SYSV_FS is not set | 714 | # CONFIG_SYSV_FS is not set |
| 700 | # CONFIG_UFS_FS is not set | 715 | # CONFIG_UFS_FS is not set |
| 716 | # CONFIG_NILFS2_FS is not set | ||
| 701 | CONFIG_NETWORK_FILESYSTEMS=y | 717 | CONFIG_NETWORK_FILESYSTEMS=y |
| 702 | CONFIG_NFS_FS=y | 718 | CONFIG_NFS_FS=y |
| 703 | CONFIG_NFS_V3=y | 719 | CONFIG_NFS_V3=y |
| @@ -709,7 +725,6 @@ CONFIG_LOCKD=y | |||
| 709 | CONFIG_LOCKD_V4=y | 725 | CONFIG_LOCKD_V4=y |
| 710 | CONFIG_NFS_COMMON=y | 726 | CONFIG_NFS_COMMON=y |
| 711 | CONFIG_SUNRPC=y | 727 | CONFIG_SUNRPC=y |
| 712 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 713 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 728 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 714 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 729 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 715 | # CONFIG_SMB_FS is not set | 730 | # CONFIG_SMB_FS is not set |
| @@ -741,6 +756,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 741 | # CONFIG_SYSV68_PARTITION is not set | 756 | # CONFIG_SYSV68_PARTITION is not set |
| 742 | # CONFIG_NLS is not set | 757 | # CONFIG_NLS is not set |
| 743 | # CONFIG_DLM is not set | 758 | # CONFIG_DLM is not set |
| 759 | # CONFIG_BINARY_PRINTF is not set | ||
| 744 | 760 | ||
| 745 | # | 761 | # |
| 746 | # Library routines | 762 | # Library routines |
| @@ -758,6 +774,7 @@ CONFIG_HAS_IOMEM=y | |||
| 758 | CONFIG_HAS_IOPORT=y | 774 | CONFIG_HAS_IOPORT=y |
| 759 | CONFIG_HAS_DMA=y | 775 | CONFIG_HAS_DMA=y |
| 760 | CONFIG_HAVE_LMB=y | 776 | CONFIG_HAVE_LMB=y |
| 777 | CONFIG_NLATTR=y | ||
| 761 | 778 | ||
| 762 | # | 779 | # |
| 763 | # Kernel hacking | 780 | # Kernel hacking |
| @@ -775,6 +792,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 775 | CONFIG_DETECT_SOFTLOCKUP=y | 792 | CONFIG_DETECT_SOFTLOCKUP=y |
| 776 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 793 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 777 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 794 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 795 | CONFIG_DETECT_HUNG_TASK=y | ||
| 796 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 797 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 778 | CONFIG_SCHED_DEBUG=y | 798 | CONFIG_SCHED_DEBUG=y |
| 779 | # CONFIG_SCHEDSTATS is not set | 799 | # CONFIG_SCHEDSTATS is not set |
| 780 | # CONFIG_TIMER_STATS is not set | 800 | # CONFIG_TIMER_STATS is not set |
| @@ -801,9 +821,12 @@ CONFIG_DEBUG_INFO=y | |||
| 801 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 821 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
| 802 | # CONFIG_FAULT_INJECTION is not set | 822 | # CONFIG_FAULT_INJECTION is not set |
| 803 | # CONFIG_LATENCYTOP is not set | 823 | # CONFIG_LATENCYTOP is not set |
| 824 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 804 | CONFIG_HAVE_FUNCTION_TRACER=y | 825 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 826 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 805 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 827 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 806 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 828 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 829 | CONFIG_TRACING_SUPPORT=y | ||
| 807 | 830 | ||
| 808 | # | 831 | # |
| 809 | # Tracers | 832 | # Tracers |
| @@ -811,17 +834,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 811 | # CONFIG_FUNCTION_TRACER is not set | 834 | # CONFIG_FUNCTION_TRACER is not set |
| 812 | # CONFIG_SCHED_TRACER is not set | 835 | # CONFIG_SCHED_TRACER is not set |
| 813 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 836 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 837 | # CONFIG_EVENT_TRACER is not set | ||
| 814 | # CONFIG_BOOT_TRACER is not set | 838 | # CONFIG_BOOT_TRACER is not set |
| 815 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 839 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 816 | # CONFIG_STACK_TRACER is not set | 840 | # CONFIG_STACK_TRACER is not set |
| 817 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 841 | # CONFIG_KMEMTRACE is not set |
| 842 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 843 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 818 | # CONFIG_SAMPLES is not set | 844 | # CONFIG_SAMPLES is not set |
| 819 | CONFIG_HAVE_ARCH_KGDB=y | 845 | CONFIG_HAVE_ARCH_KGDB=y |
| 820 | # CONFIG_KGDB is not set | 846 | # CONFIG_KGDB is not set |
| 821 | CONFIG_PRINT_STACK_DEPTH=64 | 847 | CONFIG_PRINT_STACK_DEPTH=64 |
| 822 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 848 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 823 | # CONFIG_DEBUG_STACK_USAGE is not set | 849 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 824 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 825 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 850 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 826 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 851 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 827 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 852 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
diff --git a/arch/powerpc/configs/linkstation_defconfig b/arch/powerpc/configs/linkstation_defconfig index 15900dcf0bfa..a4053ab9e244 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.29-rc6 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Fri Mar 6 00:07:38 2009 | 4 | # Wed May 13 17:21:54 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| @@ -54,6 +55,7 @@ CONFIG_GENERIC_BUG=y | |||
| 54 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 55 | # CONFIG_PPC_DCR_NATIVE is not set | 56 | # CONFIG_PPC_DCR_NATIVE is not set |
| 56 | # CONFIG_PPC_DCR_MMIO is not set | 57 | # CONFIG_PPC_DCR_MMIO is not set |
| 58 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 57 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 58 | 60 | ||
| 59 | # | 61 | # |
| @@ -68,6 +70,7 @@ CONFIG_SWAP=y | |||
| 68 | CONFIG_SYSVIPC=y | 70 | CONFIG_SYSVIPC=y |
| 69 | CONFIG_SYSVIPC_SYSCTL=y | 71 | CONFIG_SYSVIPC_SYSCTL=y |
| 70 | CONFIG_POSIX_MQUEUE=y | 72 | CONFIG_POSIX_MQUEUE=y |
| 73 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 71 | # CONFIG_BSD_PROCESS_ACCT is not set | 74 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 72 | # CONFIG_TASKSTATS is not set | 75 | # CONFIG_TASKSTATS is not set |
| 73 | # CONFIG_AUDIT is not set | 76 | # CONFIG_AUDIT is not set |
| @@ -100,21 +103,24 @@ CONFIG_NAMESPACES=y | |||
| 100 | # CONFIG_NET_NS is not set | 103 | # CONFIG_NET_NS is not set |
| 101 | CONFIG_BLK_DEV_INITRD=y | 104 | CONFIG_BLK_DEV_INITRD=y |
| 102 | CONFIG_INITRAMFS_SOURCE="" | 105 | CONFIG_INITRAMFS_SOURCE="" |
| 106 | CONFIG_RD_GZIP=y | ||
| 107 | CONFIG_RD_BZIP2=y | ||
| 108 | CONFIG_RD_LZMA=y | ||
| 103 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 109 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 104 | CONFIG_SYSCTL=y | 110 | CONFIG_SYSCTL=y |
| 111 | CONFIG_ANON_INODES=y | ||
| 105 | # CONFIG_EMBEDDED is not set | 112 | # CONFIG_EMBEDDED is not set |
| 106 | CONFIG_SYSCTL_SYSCALL=y | 113 | CONFIG_SYSCTL_SYSCALL=y |
| 107 | CONFIG_KALLSYMS=y | 114 | CONFIG_KALLSYMS=y |
| 108 | # CONFIG_KALLSYMS_ALL is not set | 115 | # CONFIG_KALLSYMS_ALL is not set |
| 109 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 116 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 117 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 110 | CONFIG_HOTPLUG=y | 118 | CONFIG_HOTPLUG=y |
| 111 | CONFIG_PRINTK=y | 119 | CONFIG_PRINTK=y |
| 112 | CONFIG_BUG=y | 120 | CONFIG_BUG=y |
| 113 | CONFIG_ELF_CORE=y | 121 | CONFIG_ELF_CORE=y |
| 114 | # CONFIG_COMPAT_BRK is not set | ||
| 115 | CONFIG_BASE_FULL=y | 122 | CONFIG_BASE_FULL=y |
| 116 | CONFIG_FUTEX=y | 123 | CONFIG_FUTEX=y |
| 117 | CONFIG_ANON_INODES=y | ||
| 118 | CONFIG_EPOLL=y | 124 | CONFIG_EPOLL=y |
| 119 | CONFIG_SIGNALFD=y | 125 | CONFIG_SIGNALFD=y |
| 120 | CONFIG_TIMERFD=y | 126 | CONFIG_TIMERFD=y |
| @@ -124,10 +130,12 @@ CONFIG_AIO=y | |||
| 124 | CONFIG_VM_EVENT_COUNTERS=y | 130 | CONFIG_VM_EVENT_COUNTERS=y |
| 125 | CONFIG_PCI_QUIRKS=y | 131 | CONFIG_PCI_QUIRKS=y |
| 126 | CONFIG_SLUB_DEBUG=y | 132 | CONFIG_SLUB_DEBUG=y |
| 133 | # CONFIG_COMPAT_BRK is not set | ||
| 127 | # CONFIG_SLAB is not set | 134 | # CONFIG_SLAB is not set |
| 128 | CONFIG_SLUB=y | 135 | CONFIG_SLUB=y |
| 129 | # CONFIG_SLOB is not set | 136 | # CONFIG_SLOB is not set |
| 130 | # CONFIG_PROFILING is not set | 137 | # CONFIG_PROFILING is not set |
| 138 | # CONFIG_MARKERS is not set | ||
| 131 | CONFIG_HAVE_OPROFILE=y | 139 | CONFIG_HAVE_OPROFILE=y |
| 132 | # CONFIG_KPROBES is not set | 140 | # CONFIG_KPROBES is not set |
| 133 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 141 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -135,6 +143,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
| 135 | CONFIG_HAVE_KPROBES=y | 143 | CONFIG_HAVE_KPROBES=y |
| 136 | CONFIG_HAVE_KRETPROBES=y | 144 | CONFIG_HAVE_KRETPROBES=y |
| 137 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 145 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 146 | # CONFIG_SLOW_WORK is not set | ||
| 138 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 147 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 139 | CONFIG_SLABINFO=y | 148 | CONFIG_SLABINFO=y |
| 140 | CONFIG_RT_MUTEXES=y | 149 | CONFIG_RT_MUTEXES=y |
| @@ -147,7 +156,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 147 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 156 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 148 | CONFIG_BLOCK=y | 157 | CONFIG_BLOCK=y |
| 149 | # CONFIG_LBD is not set | 158 | # CONFIG_LBD is not set |
| 150 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 151 | # CONFIG_BLK_DEV_BSG is not set | 159 | # CONFIG_BLK_DEV_BSG is not set |
| 152 | # CONFIG_BLK_DEV_INTEGRITY is not set | 160 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 153 | 161 | ||
| @@ -168,8 +176,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
| 168 | # | 176 | # |
| 169 | # Platform support | 177 | # Platform support |
| 170 | # | 178 | # |
| 171 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 172 | CONFIG_CLASSIC32=y | ||
| 173 | # CONFIG_PPC_CHRP is not set | 179 | # CONFIG_PPC_CHRP is not set |
| 174 | # CONFIG_MPC5121_ADS is not set | 180 | # CONFIG_MPC5121_ADS is not set |
| 175 | # CONFIG_MPC5121_GENERIC is not set | 181 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -191,6 +197,8 @@ CONFIG_LINKSTATION=y | |||
| 191 | CONFIG_MPC10X_BRIDGE=y | 197 | CONFIG_MPC10X_BRIDGE=y |
| 192 | CONFIG_MPC10X_OPENPIC=y | 198 | CONFIG_MPC10X_OPENPIC=y |
| 193 | # CONFIG_MPC10X_STORE_GATHERING is not set | 199 | # CONFIG_MPC10X_STORE_GATHERING is not set |
| 200 | # CONFIG_AMIGAONE is not set | ||
| 201 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 194 | # CONFIG_IPIC is not set | 202 | # CONFIG_IPIC is not set |
| 195 | CONFIG_MPIC=y | 203 | CONFIG_MPIC=y |
| 196 | # CONFIG_MPIC_WEIRD is not set | 204 | # CONFIG_MPIC_WEIRD is not set |
| @@ -250,9 +258,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 250 | CONFIG_BOUNCE=y | 258 | CONFIG_BOUNCE=y |
| 251 | CONFIG_VIRT_TO_BUS=y | 259 | CONFIG_VIRT_TO_BUS=y |
| 252 | CONFIG_UNEVICTABLE_LRU=y | 260 | CONFIG_UNEVICTABLE_LRU=y |
| 261 | CONFIG_HAVE_MLOCK=y | ||
| 262 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 253 | CONFIG_PPC_4K_PAGES=y | 263 | CONFIG_PPC_4K_PAGES=y |
| 254 | # CONFIG_PPC_16K_PAGES is not set | 264 | # CONFIG_PPC_16K_PAGES is not set |
| 255 | # CONFIG_PPC_64K_PAGES is not set | 265 | # CONFIG_PPC_64K_PAGES is not set |
| 266 | # CONFIG_PPC_256K_PAGES is not set | ||
| 256 | CONFIG_FORCE_MAX_ZONEORDER=11 | 267 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 257 | CONFIG_PROC_DEVICETREE=y | 268 | CONFIG_PROC_DEVICETREE=y |
| 258 | # CONFIG_CMDLINE_BOOL is not set | 269 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -277,6 +288,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 277 | # CONFIG_PCI_LEGACY is not set | 288 | # CONFIG_PCI_LEGACY is not set |
| 278 | # CONFIG_PCI_DEBUG is not set | 289 | # CONFIG_PCI_DEBUG is not set |
| 279 | # CONFIG_PCI_STUB is not set | 290 | # CONFIG_PCI_STUB is not set |
| 291 | # CONFIG_PCI_IOV is not set | ||
| 280 | # CONFIG_PCCARD is not set | 292 | # CONFIG_PCCARD is not set |
| 281 | # CONFIG_HOTPLUG_PCI is not set | 293 | # CONFIG_HOTPLUG_PCI is not set |
| 282 | # CONFIG_HAS_RAPIDIO is not set | 294 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -299,7 +311,6 @@ CONFIG_NET=y | |||
| 299 | # | 311 | # |
| 300 | # Networking options | 312 | # Networking options |
| 301 | # | 313 | # |
| 302 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 303 | CONFIG_PACKET=y | 314 | CONFIG_PACKET=y |
| 304 | CONFIG_PACKET_MMAP=y | 315 | CONFIG_PACKET_MMAP=y |
| 305 | CONFIG_UNIX=y | 316 | CONFIG_UNIX=y |
| @@ -371,6 +382,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
| 371 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set | 382 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set |
| 372 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set | 383 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set |
| 373 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | 384 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set |
| 385 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
| 374 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set | 386 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set |
| 375 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set | 387 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set |
| 376 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set | 388 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set |
| @@ -379,6 +391,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
| 379 | # CONFIG_NETFILTER_XT_TARGET_TRACE is not set | 391 | # CONFIG_NETFILTER_XT_TARGET_TRACE is not set |
| 380 | # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set | 392 | # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set |
| 381 | # CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set | 393 | # CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set |
| 394 | # CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set | ||
| 382 | # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set | 395 | # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set |
| 383 | # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set | 396 | # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set |
| 384 | # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set | 397 | # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set |
| @@ -389,6 +402,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
| 389 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set | 402 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set |
| 390 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set | 403 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set |
| 391 | # CONFIG_NETFILTER_XT_MATCH_HELPER is not set | 404 | # CONFIG_NETFILTER_XT_MATCH_HELPER is not set |
| 405 | # CONFIG_NETFILTER_XT_MATCH_HL is not set | ||
| 392 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set | 406 | # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set |
| 393 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set | 407 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set |
| 394 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set | 408 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set |
| @@ -465,6 +479,7 @@ CONFIG_IP_NF_ARP_MANGLE=m | |||
| 465 | # CONFIG_LAPB is not set | 479 | # CONFIG_LAPB is not set |
| 466 | # CONFIG_ECONET is not set | 480 | # CONFIG_ECONET is not set |
| 467 | # CONFIG_WAN_ROUTER is not set | 481 | # CONFIG_WAN_ROUTER is not set |
| 482 | # CONFIG_PHONET is not set | ||
| 468 | # CONFIG_NET_SCHED is not set | 483 | # CONFIG_NET_SCHED is not set |
| 469 | # CONFIG_DCB is not set | 484 | # CONFIG_DCB is not set |
| 470 | 485 | ||
| @@ -477,7 +492,6 @@ CONFIG_IP_NF_ARP_MANGLE=m | |||
| 477 | # CONFIG_IRDA is not set | 492 | # CONFIG_IRDA is not set |
| 478 | # CONFIG_BT is not set | 493 | # CONFIG_BT is not set |
| 479 | # CONFIG_AF_RXRPC is not set | 494 | # CONFIG_AF_RXRPC is not set |
| 480 | # CONFIG_PHONET is not set | ||
| 481 | CONFIG_WIRELESS=y | 495 | CONFIG_WIRELESS=y |
| 482 | # CONFIG_CFG80211 is not set | 496 | # CONFIG_CFG80211 is not set |
| 483 | CONFIG_WIRELESS_OLD_REGULATORY=y | 497 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -625,6 +639,7 @@ CONFIG_MISC_DEVICES=y | |||
| 625 | # CONFIG_ICS932S401 is not set | 639 | # CONFIG_ICS932S401 is not set |
| 626 | # CONFIG_ENCLOSURE_SERVICES is not set | 640 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 627 | # CONFIG_HP_ILO is not set | 641 | # CONFIG_HP_ILO is not set |
| 642 | # CONFIG_ISL29003 is not set | ||
| 628 | # CONFIG_C2PORT is not set | 643 | # CONFIG_C2PORT is not set |
| 629 | 644 | ||
| 630 | # | 645 | # |
| @@ -690,9 +705,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 690 | # CONFIG_MEGARAID_NEWGEN is not set | 705 | # CONFIG_MEGARAID_NEWGEN is not set |
| 691 | # CONFIG_MEGARAID_LEGACY is not set | 706 | # CONFIG_MEGARAID_LEGACY is not set |
| 692 | # CONFIG_MEGARAID_SAS is not set | 707 | # CONFIG_MEGARAID_SAS is not set |
| 708 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 693 | # CONFIG_SCSI_HPTIOP is not set | 709 | # CONFIG_SCSI_HPTIOP is not set |
| 694 | # CONFIG_SCSI_BUSLOGIC is not set | 710 | # CONFIG_SCSI_BUSLOGIC is not set |
| 695 | # CONFIG_LIBFC is not set | 711 | # CONFIG_LIBFC is not set |
| 712 | # CONFIG_LIBFCOE is not set | ||
| 696 | # CONFIG_FCOE is not set | 713 | # CONFIG_FCOE is not set |
| 697 | # CONFIG_SCSI_DMX3191D is not set | 714 | # CONFIG_SCSI_DMX3191D is not set |
| 698 | # CONFIG_SCSI_EATA is not set | 715 | # CONFIG_SCSI_EATA is not set |
| @@ -715,6 +732,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 715 | # CONFIG_SCSI_DEBUG is not set | 732 | # CONFIG_SCSI_DEBUG is not set |
| 716 | # CONFIG_SCSI_SRP is not set | 733 | # CONFIG_SCSI_SRP is not set |
| 717 | # CONFIG_SCSI_DH is not set | 734 | # CONFIG_SCSI_DH is not set |
| 735 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 718 | CONFIG_ATA=y | 736 | CONFIG_ATA=y |
| 719 | # CONFIG_ATA_NONSTANDARD is not set | 737 | # CONFIG_ATA_NONSTANDARD is not set |
| 720 | CONFIG_SATA_PMP=y | 738 | CONFIG_SATA_PMP=y |
| @@ -791,6 +809,7 @@ CONFIG_PATA_SIL680=y | |||
| 791 | # CONFIG_I2O is not set | 809 | # CONFIG_I2O is not set |
| 792 | # CONFIG_MACINTOSH_DRIVERS is not set | 810 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 793 | CONFIG_NETDEVICES=y | 811 | CONFIG_NETDEVICES=y |
| 812 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 794 | # CONFIG_DUMMY is not set | 813 | # CONFIG_DUMMY is not set |
| 795 | # CONFIG_BONDING is not set | 814 | # CONFIG_BONDING is not set |
| 796 | # CONFIG_MACVLAN is not set | 815 | # CONFIG_MACVLAN is not set |
| @@ -805,6 +824,8 @@ CONFIG_MII=y | |||
| 805 | # CONFIG_SUNGEM is not set | 824 | # CONFIG_SUNGEM is not set |
| 806 | # CONFIG_CASSINI is not set | 825 | # CONFIG_CASSINI is not set |
| 807 | # CONFIG_NET_VENDOR_3COM is not set | 826 | # CONFIG_NET_VENDOR_3COM is not set |
| 827 | # CONFIG_ETHOC is not set | ||
| 828 | # CONFIG_DNET is not set | ||
| 808 | CONFIG_NET_TULIP=y | 829 | CONFIG_NET_TULIP=y |
| 809 | # CONFIG_DE2104X is not set | 830 | # CONFIG_DE2104X is not set |
| 810 | CONFIG_TULIP=y | 831 | CONFIG_TULIP=y |
| @@ -833,6 +854,7 @@ CONFIG_NETDEV_1000=y | |||
| 833 | # CONFIG_E1000E is not set | 854 | # CONFIG_E1000E is not set |
| 834 | # CONFIG_IP1000 is not set | 855 | # CONFIG_IP1000 is not set |
| 835 | # CONFIG_IGB is not set | 856 | # CONFIG_IGB is not set |
| 857 | # CONFIG_IGBVF is not set | ||
| 836 | # CONFIG_NS83820 is not set | 858 | # CONFIG_NS83820 is not set |
| 837 | # CONFIG_HAMACHI is not set | 859 | # CONFIG_HAMACHI is not set |
| 838 | # CONFIG_YELLOWFIN is not set | 860 | # CONFIG_YELLOWFIN is not set |
| @@ -843,8 +865,8 @@ CONFIG_R8169=y | |||
| 843 | # CONFIG_VIA_VELOCITY is not set | 865 | # CONFIG_VIA_VELOCITY is not set |
| 844 | # CONFIG_TIGON3 is not set | 866 | # CONFIG_TIGON3 is not set |
| 845 | # CONFIG_BNX2 is not set | 867 | # CONFIG_BNX2 is not set |
| 868 | # CONFIG_FSL_PQ_MDIO is not set | ||
| 846 | # CONFIG_GIANFAR is not set | 869 | # CONFIG_GIANFAR is not set |
| 847 | # CONFIG_MV643XX_ETH is not set | ||
| 848 | # CONFIG_QLA3XXX is not set | 870 | # CONFIG_QLA3XXX is not set |
| 849 | # CONFIG_ATL1 is not set | 871 | # CONFIG_ATL1 is not set |
| 850 | # CONFIG_ATL1E is not set | 872 | # CONFIG_ATL1E is not set |
| @@ -858,6 +880,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 858 | # CONFIG_IXGBE is not set | 880 | # CONFIG_IXGBE is not set |
| 859 | # CONFIG_IXGB is not set | 881 | # CONFIG_IXGB is not set |
| 860 | # CONFIG_S2IO is not set | 882 | # CONFIG_S2IO is not set |
| 883 | # CONFIG_VXGE is not set | ||
| 861 | # CONFIG_MYRI10GE is not set | 884 | # CONFIG_MYRI10GE is not set |
| 862 | # CONFIG_NETXEN_NIC is not set | 885 | # CONFIG_NETXEN_NIC is not set |
| 863 | # CONFIG_NIU is not set | 886 | # CONFIG_NIU is not set |
| @@ -867,6 +890,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 867 | # CONFIG_BNX2X is not set | 890 | # CONFIG_BNX2X is not set |
| 868 | # CONFIG_QLGE is not set | 891 | # CONFIG_QLGE is not set |
| 869 | # CONFIG_SFC is not set | 892 | # CONFIG_SFC is not set |
| 893 | # CONFIG_BE2NET is not set | ||
| 870 | # CONFIG_TR is not set | 894 | # CONFIG_TR is not set |
| 871 | 895 | ||
| 872 | # | 896 | # |
| @@ -874,7 +898,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 874 | # | 898 | # |
| 875 | # CONFIG_WLAN_PRE80211 is not set | 899 | # CONFIG_WLAN_PRE80211 is not set |
| 876 | # CONFIG_WLAN_80211 is not set | 900 | # CONFIG_WLAN_80211 is not set |
| 877 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 878 | 901 | ||
| 879 | # | 902 | # |
| 880 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 903 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -985,6 +1008,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 985 | # CONFIG_HVC_UDBG is not set | 1008 | # CONFIG_HVC_UDBG is not set |
| 986 | # CONFIG_IPMI_HANDLER is not set | 1009 | # CONFIG_IPMI_HANDLER is not set |
| 987 | CONFIG_HW_RANDOM=y | 1010 | CONFIG_HW_RANDOM=y |
| 1011 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 988 | # CONFIG_NVRAM is not set | 1012 | # CONFIG_NVRAM is not set |
| 989 | # CONFIG_R3964 is not set | 1013 | # CONFIG_R3964 is not set |
| 990 | # CONFIG_APPLICOM is not set | 1014 | # CONFIG_APPLICOM is not set |
| @@ -1050,7 +1074,6 @@ CONFIG_I2C_MPC=y | |||
| 1050 | # CONFIG_SENSORS_PCF8574 is not set | 1074 | # CONFIG_SENSORS_PCF8574 is not set |
| 1051 | # CONFIG_PCF8575 is not set | 1075 | # CONFIG_PCF8575 is not set |
| 1052 | # CONFIG_SENSORS_PCA9539 is not set | 1076 | # CONFIG_SENSORS_PCA9539 is not set |
| 1053 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1054 | # CONFIG_SENSORS_MAX6875 is not set | 1077 | # CONFIG_SENSORS_MAX6875 is not set |
| 1055 | # CONFIG_SENSORS_TSL2550 is not set | 1078 | # CONFIG_SENSORS_TSL2550 is not set |
| 1056 | # CONFIG_I2C_DEBUG_CORE is not set | 1079 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -1082,6 +1105,7 @@ CONFIG_HWMON=y | |||
| 1082 | # CONFIG_SENSORS_F71805F is not set | 1105 | # CONFIG_SENSORS_F71805F is not set |
| 1083 | # CONFIG_SENSORS_F71882FG is not set | 1106 | # CONFIG_SENSORS_F71882FG is not set |
| 1084 | # CONFIG_SENSORS_F75375S is not set | 1107 | # CONFIG_SENSORS_F75375S is not set |
| 1108 | # CONFIG_SENSORS_G760A is not set | ||
| 1085 | # CONFIG_SENSORS_GL518SM is not set | 1109 | # CONFIG_SENSORS_GL518SM is not set |
| 1086 | # CONFIG_SENSORS_GL520SM is not set | 1110 | # CONFIG_SENSORS_GL520SM is not set |
| 1087 | # CONFIG_SENSORS_IT87 is not set | 1111 | # CONFIG_SENSORS_IT87 is not set |
| @@ -1096,11 +1120,14 @@ CONFIG_HWMON=y | |||
| 1096 | # CONFIG_SENSORS_LM90 is not set | 1120 | # CONFIG_SENSORS_LM90 is not set |
| 1097 | # CONFIG_SENSORS_LM92 is not set | 1121 | # CONFIG_SENSORS_LM92 is not set |
| 1098 | # CONFIG_SENSORS_LM93 is not set | 1122 | # CONFIG_SENSORS_LM93 is not set |
| 1123 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 1099 | # CONFIG_SENSORS_LTC4245 is not set | 1124 | # CONFIG_SENSORS_LTC4245 is not set |
| 1125 | # CONFIG_SENSORS_LM95241 is not set | ||
| 1100 | # CONFIG_SENSORS_MAX1619 is not set | 1126 | # CONFIG_SENSORS_MAX1619 is not set |
| 1101 | # CONFIG_SENSORS_MAX6650 is not set | 1127 | # CONFIG_SENSORS_MAX6650 is not set |
| 1102 | # CONFIG_SENSORS_PC87360 is not set | 1128 | # CONFIG_SENSORS_PC87360 is not set |
| 1103 | # CONFIG_SENSORS_PC87427 is not set | 1129 | # CONFIG_SENSORS_PC87427 is not set |
| 1130 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1104 | # CONFIG_SENSORS_SIS5595 is not set | 1131 | # CONFIG_SENSORS_SIS5595 is not set |
| 1105 | # CONFIG_SENSORS_DME1737 is not set | 1132 | # CONFIG_SENSORS_DME1737 is not set |
| 1106 | # CONFIG_SENSORS_SMSC47M1 is not set | 1133 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -1195,7 +1222,6 @@ CONFIG_HID=m | |||
| 1195 | # | 1222 | # |
| 1196 | # Special HID drivers | 1223 | # Special HID drivers |
| 1197 | # | 1224 | # |
| 1198 | CONFIG_HID_COMPAT=y | ||
| 1199 | CONFIG_USB_SUPPORT=y | 1225 | CONFIG_USB_SUPPORT=y |
| 1200 | CONFIG_USB_ARCH_HAS_HCD=y | 1226 | CONFIG_USB_ARCH_HAS_HCD=y |
| 1201 | CONFIG_USB_ARCH_HAS_OHCI=y | 1227 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -1250,11 +1276,11 @@ CONFIG_USB_PRINTER=m | |||
| 1250 | # CONFIG_USB_TMC is not set | 1276 | # CONFIG_USB_TMC is not set |
| 1251 | 1277 | ||
| 1252 | # | 1278 | # |
| 1253 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1279 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1254 | # | 1280 | # |
| 1255 | 1281 | ||
| 1256 | # | 1282 | # |
| 1257 | # see USB_STORAGE Help for more information | 1283 | # also be needed; see USB_STORAGE Help for more info |
| 1258 | # | 1284 | # |
| 1259 | CONFIG_USB_STORAGE=m | 1285 | CONFIG_USB_STORAGE=m |
| 1260 | # CONFIG_USB_STORAGE_DEBUG is not set | 1286 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1290,7 +1316,7 @@ CONFIG_USB_SERIAL_CONSOLE=y | |||
| 1290 | # CONFIG_USB_SERIAL_CH341 is not set | 1316 | # CONFIG_USB_SERIAL_CH341 is not set |
| 1291 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | 1317 | # CONFIG_USB_SERIAL_WHITEHEAT is not set |
| 1292 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | 1318 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set |
| 1293 | # CONFIG_USB_SERIAL_CP2101 is not set | 1319 | # CONFIG_USB_SERIAL_CP210X is not set |
| 1294 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set | 1320 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set |
| 1295 | # CONFIG_USB_SERIAL_EMPEG is not set | 1321 | # CONFIG_USB_SERIAL_EMPEG is not set |
| 1296 | CONFIG_USB_SERIAL_FTDI_SIO=y | 1322 | CONFIG_USB_SERIAL_FTDI_SIO=y |
| @@ -1314,11 +1340,13 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
| 1314 | # CONFIG_USB_SERIAL_NAVMAN is not set | 1340 | # CONFIG_USB_SERIAL_NAVMAN is not set |
| 1315 | # CONFIG_USB_SERIAL_PL2303 is not set | 1341 | # CONFIG_USB_SERIAL_PL2303 is not set |
| 1316 | # CONFIG_USB_SERIAL_OTI6858 is not set | 1342 | # CONFIG_USB_SERIAL_OTI6858 is not set |
| 1343 | # CONFIG_USB_SERIAL_QUALCOMM is not set | ||
| 1317 | # CONFIG_USB_SERIAL_SPCP8X5 is not set | 1344 | # CONFIG_USB_SERIAL_SPCP8X5 is not set |
| 1318 | # CONFIG_USB_SERIAL_HP4X is not set | 1345 | # CONFIG_USB_SERIAL_HP4X is not set |
| 1319 | # CONFIG_USB_SERIAL_SAFE is not set | 1346 | # CONFIG_USB_SERIAL_SAFE is not set |
| 1320 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set | 1347 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set |
| 1321 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1348 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
| 1349 | # CONFIG_USB_SERIAL_SYMBOL is not set | ||
| 1322 | # CONFIG_USB_SERIAL_TI is not set | 1350 | # CONFIG_USB_SERIAL_TI is not set |
| 1323 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 1351 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
| 1324 | # CONFIG_USB_SERIAL_XIRCOM is not set | 1352 | # CONFIG_USB_SERIAL_XIRCOM is not set |
| @@ -1341,7 +1369,6 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
| 1341 | # CONFIG_USB_LED is not set | 1369 | # CONFIG_USB_LED is not set |
| 1342 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1370 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1343 | # CONFIG_USB_CYTHERM is not set | 1371 | # CONFIG_USB_CYTHERM is not set |
| 1344 | # CONFIG_USB_PHIDGET is not set | ||
| 1345 | # CONFIG_USB_IDMOUSE is not set | 1372 | # CONFIG_USB_IDMOUSE is not set |
| 1346 | # CONFIG_USB_FTDI_ELAN is not set | 1373 | # CONFIG_USB_FTDI_ELAN is not set |
| 1347 | # CONFIG_USB_APPLEDISPLAY is not set | 1374 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1357,6 +1384,7 @@ CONFIG_USB_SERIAL_FTDI_SIO=y | |||
| 1357 | # | 1384 | # |
| 1358 | # OTG and related infrastructure | 1385 | # OTG and related infrastructure |
| 1359 | # | 1386 | # |
| 1387 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1360 | # CONFIG_UWB is not set | 1388 | # CONFIG_UWB is not set |
| 1361 | # CONFIG_MMC is not set | 1389 | # CONFIG_MMC is not set |
| 1362 | # CONFIG_MEMSTICK is not set | 1390 | # CONFIG_MEMSTICK is not set |
| @@ -1418,8 +1446,9 @@ CONFIG_RTC_DRV_RS5C372=y | |||
| 1418 | # | 1446 | # |
| 1419 | # on-CPU RTC drivers | 1447 | # on-CPU RTC drivers |
| 1420 | # | 1448 | # |
| 1421 | # CONFIG_RTC_DRV_PPC is not set | 1449 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1422 | # CONFIG_DMADEVICES is not set | 1450 | # CONFIG_DMADEVICES is not set |
| 1451 | # CONFIG_AUXDISPLAY is not set | ||
| 1423 | # CONFIG_UIO is not set | 1452 | # CONFIG_UIO is not set |
| 1424 | # CONFIG_STAGING is not set | 1453 | # CONFIG_STAGING is not set |
| 1425 | 1454 | ||
| @@ -1430,6 +1459,7 @@ CONFIG_EXT2_FS=y | |||
| 1430 | # CONFIG_EXT2_FS_XATTR is not set | 1459 | # CONFIG_EXT2_FS_XATTR is not set |
| 1431 | # CONFIG_EXT2_FS_XIP is not set | 1460 | # CONFIG_EXT2_FS_XIP is not set |
| 1432 | CONFIG_EXT3_FS=y | 1461 | CONFIG_EXT3_FS=y |
| 1462 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1433 | CONFIG_EXT3_FS_XATTR=y | 1463 | CONFIG_EXT3_FS_XATTR=y |
| 1434 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1464 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1435 | # CONFIG_EXT3_FS_SECURITY is not set | 1465 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1456,6 +1486,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1456 | # CONFIG_FUSE_FS is not set | 1486 | # CONFIG_FUSE_FS is not set |
| 1457 | 1487 | ||
| 1458 | # | 1488 | # |
| 1489 | # Caches | ||
| 1490 | # | ||
| 1491 | # CONFIG_FSCACHE is not set | ||
| 1492 | |||
| 1493 | # | ||
| 1459 | # CD-ROM/DVD Filesystems | 1494 | # CD-ROM/DVD Filesystems |
| 1460 | # | 1495 | # |
| 1461 | CONFIG_ISO9660_FS=m | 1496 | CONFIG_ISO9660_FS=m |
| @@ -1507,6 +1542,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1507 | # CONFIG_ROMFS_FS is not set | 1542 | # CONFIG_ROMFS_FS is not set |
| 1508 | # CONFIG_SYSV_FS is not set | 1543 | # CONFIG_SYSV_FS is not set |
| 1509 | # CONFIG_UFS_FS is not set | 1544 | # CONFIG_UFS_FS is not set |
| 1545 | # CONFIG_NILFS2_FS is not set | ||
| 1510 | CONFIG_NETWORK_FILESYSTEMS=y | 1546 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1511 | CONFIG_NFS_FS=y | 1547 | CONFIG_NFS_FS=y |
| 1512 | CONFIG_NFS_V3=y | 1548 | CONFIG_NFS_V3=y |
| @@ -1524,7 +1560,6 @@ CONFIG_NFS_ACL_SUPPORT=y | |||
| 1524 | CONFIG_NFS_COMMON=y | 1560 | CONFIG_NFS_COMMON=y |
| 1525 | CONFIG_SUNRPC=y | 1561 | CONFIG_SUNRPC=y |
| 1526 | CONFIG_SUNRPC_GSS=y | 1562 | CONFIG_SUNRPC_GSS=y |
| 1527 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1528 | CONFIG_RPCSEC_GSS_KRB5=y | 1563 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1529 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1564 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1530 | # CONFIG_SMB_FS is not set | 1565 | # CONFIG_SMB_FS is not set |
| @@ -1584,6 +1619,7 @@ CONFIG_NLS_ISO8859_1=m | |||
| 1584 | # CONFIG_NLS_KOI8_U is not set | 1619 | # CONFIG_NLS_KOI8_U is not set |
| 1585 | CONFIG_NLS_UTF8=m | 1620 | CONFIG_NLS_UTF8=m |
| 1586 | # CONFIG_DLM is not set | 1621 | # CONFIG_DLM is not set |
| 1622 | # CONFIG_BINARY_PRINTF is not set | ||
| 1587 | 1623 | ||
| 1588 | # | 1624 | # |
| 1589 | # Library routines | 1625 | # Library routines |
| @@ -1597,15 +1633,18 @@ CONFIG_CRC_ITU_T=m | |||
| 1597 | CONFIG_CRC32=y | 1633 | CONFIG_CRC32=y |
| 1598 | # CONFIG_CRC7 is not set | 1634 | # CONFIG_CRC7 is not set |
| 1599 | CONFIG_LIBCRC32C=m | 1635 | CONFIG_LIBCRC32C=m |
| 1600 | CONFIG_ZLIB_INFLATE=m | 1636 | CONFIG_ZLIB_INFLATE=y |
| 1601 | CONFIG_ZLIB_DEFLATE=m | 1637 | CONFIG_ZLIB_DEFLATE=m |
| 1638 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1639 | CONFIG_DECOMPRESS_BZIP2=y | ||
| 1640 | CONFIG_DECOMPRESS_LZMA=y | ||
| 1602 | CONFIG_TEXTSEARCH=y | 1641 | CONFIG_TEXTSEARCH=y |
| 1603 | CONFIG_TEXTSEARCH_KMP=m | 1642 | CONFIG_TEXTSEARCH_KMP=m |
| 1604 | CONFIG_PLIST=y | ||
| 1605 | CONFIG_HAS_IOMEM=y | 1643 | CONFIG_HAS_IOMEM=y |
| 1606 | CONFIG_HAS_IOPORT=y | 1644 | CONFIG_HAS_IOPORT=y |
| 1607 | CONFIG_HAS_DMA=y | 1645 | CONFIG_HAS_DMA=y |
| 1608 | CONFIG_HAVE_LMB=y | 1646 | CONFIG_HAVE_LMB=y |
| 1647 | CONFIG_NLATTR=y | ||
| 1609 | 1648 | ||
| 1610 | # | 1649 | # |
| 1611 | # Kernel hacking | 1650 | # Kernel hacking |
| @@ -1623,6 +1662,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1623 | CONFIG_DETECT_SOFTLOCKUP=y | 1662 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1624 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1663 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1625 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1664 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1665 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1666 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1667 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1626 | CONFIG_SCHED_DEBUG=y | 1668 | CONFIG_SCHED_DEBUG=y |
| 1627 | # CONFIG_SCHEDSTATS is not set | 1669 | # CONFIG_SCHEDSTATS is not set |
| 1628 | # CONFIG_TIMER_STATS is not set | 1670 | # CONFIG_TIMER_STATS is not set |
| @@ -1652,9 +1694,12 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
| 1652 | # CONFIG_FAULT_INJECTION is not set | 1694 | # CONFIG_FAULT_INJECTION is not set |
| 1653 | # CONFIG_LATENCYTOP is not set | 1695 | # CONFIG_LATENCYTOP is not set |
| 1654 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1696 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1697 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1655 | CONFIG_HAVE_FUNCTION_TRACER=y | 1698 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1699 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1656 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1700 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1657 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1701 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1702 | CONFIG_TRACING_SUPPORT=y | ||
| 1658 | 1703 | ||
| 1659 | # | 1704 | # |
| 1660 | # Tracers | 1705 | # Tracers |
| @@ -1662,17 +1707,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1662 | # CONFIG_FUNCTION_TRACER is not set | 1707 | # CONFIG_FUNCTION_TRACER is not set |
| 1663 | # CONFIG_SCHED_TRACER is not set | 1708 | # CONFIG_SCHED_TRACER is not set |
| 1664 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1709 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1710 | # CONFIG_EVENT_TRACER is not set | ||
| 1665 | # CONFIG_BOOT_TRACER is not set | 1711 | # CONFIG_BOOT_TRACER is not set |
| 1666 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1712 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1667 | # CONFIG_STACK_TRACER is not set | 1713 | # CONFIG_STACK_TRACER is not set |
| 1668 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1714 | # CONFIG_KMEMTRACE is not set |
| 1715 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1716 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1669 | # CONFIG_SAMPLES is not set | 1717 | # CONFIG_SAMPLES is not set |
| 1670 | CONFIG_HAVE_ARCH_KGDB=y | 1718 | CONFIG_HAVE_ARCH_KGDB=y |
| 1671 | # CONFIG_KGDB is not set | 1719 | # CONFIG_KGDB is not set |
| 1672 | CONFIG_PRINT_STACK_DEPTH=64 | 1720 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1673 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1721 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1674 | # CONFIG_DEBUG_STACK_USAGE is not set | 1722 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1675 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1676 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1723 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1677 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1724 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1678 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1725 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1703,10 +1750,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1703 | CONFIG_CRYPTO_HASH=y | 1750 | CONFIG_CRYPTO_HASH=y |
| 1704 | CONFIG_CRYPTO_HASH2=y | 1751 | CONFIG_CRYPTO_HASH2=y |
| 1705 | CONFIG_CRYPTO_RNG2=y | 1752 | CONFIG_CRYPTO_RNG2=y |
| 1753 | CONFIG_CRYPTO_PCOMP=y | ||
| 1706 | CONFIG_CRYPTO_MANAGER=y | 1754 | CONFIG_CRYPTO_MANAGER=y |
| 1707 | CONFIG_CRYPTO_MANAGER2=y | 1755 | CONFIG_CRYPTO_MANAGER2=y |
| 1708 | # CONFIG_CRYPTO_GF128MUL is not set | 1756 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1709 | # CONFIG_CRYPTO_NULL is not set | 1757 | # CONFIG_CRYPTO_NULL is not set |
| 1758 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1710 | # CONFIG_CRYPTO_CRYPTD is not set | 1759 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1711 | # CONFIG_CRYPTO_AUTHENC is not set | 1760 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1712 | # CONFIG_CRYPTO_TEST is not set | 1761 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1776,6 +1825,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
| 1776 | # Compression | 1825 | # Compression |
| 1777 | # | 1826 | # |
| 1778 | CONFIG_CRYPTO_DEFLATE=m | 1827 | CONFIG_CRYPTO_DEFLATE=m |
| 1828 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1779 | # CONFIG_CRYPTO_LZO is not set | 1829 | # CONFIG_CRYPTO_LZO is not set |
| 1780 | 1830 | ||
| 1781 | # | 1831 | # |
diff --git a/arch/powerpc/configs/mgcoge_defconfig b/arch/powerpc/configs/mgcoge_defconfig index c58c38d5b7a6..31e1df665157 100644 --- a/arch/powerpc/configs/mgcoge_defconfig +++ b/arch/powerpc/configs/mgcoge_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:30 2009 | 4 | # Wed May 13 17:21:55 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| @@ -57,6 +58,7 @@ CONFIG_HIBERNATE_32=y | |||
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 58 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 58 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 59 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 61 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 61 | 63 | ||
| 62 | # | 64 | # |
| @@ -73,6 +75,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
| 78 | |||
| 79 | # | ||
| 80 | # RCU Subsystem | ||
| 81 | # | ||
| 82 | CONFIG_CLASSIC_RCU=y | ||
| 83 | # CONFIG_TREE_RCU is not set | ||
| 84 | # CONFIG_PREEMPT_RCU is not set | ||
| 85 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 86 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | CONFIG_IKCONFIG=y | 87 | CONFIG_IKCONFIG=y |
| 77 | CONFIG_IKCONFIG_PROC=y | 88 | CONFIG_IKCONFIG_PROC=y |
| 78 | CONFIG_LOG_BUF_SHIFT=14 | 89 | CONFIG_LOG_BUF_SHIFT=14 |
| @@ -83,23 +94,25 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 83 | # CONFIG_NAMESPACES is not set | 94 | # CONFIG_NAMESPACES is not set |
| 84 | CONFIG_BLK_DEV_INITRD=y | 95 | CONFIG_BLK_DEV_INITRD=y |
| 85 | CONFIG_INITRAMFS_SOURCE="" | 96 | CONFIG_INITRAMFS_SOURCE="" |
| 97 | CONFIG_RD_GZIP=y | ||
| 98 | # CONFIG_RD_BZIP2 is not set | ||
| 99 | # CONFIG_RD_LZMA is not set | ||
| 86 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 100 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 87 | CONFIG_SYSCTL=y | 101 | CONFIG_SYSCTL=y |
| 102 | CONFIG_ANON_INODES=y | ||
| 88 | CONFIG_EMBEDDED=y | 103 | CONFIG_EMBEDDED=y |
| 89 | CONFIG_SYSCTL_SYSCALL=y | 104 | CONFIG_SYSCTL_SYSCALL=y |
| 90 | CONFIG_KALLSYMS=y | 105 | CONFIG_KALLSYMS=y |
| 91 | CONFIG_KALLSYMS_ALL=y | 106 | CONFIG_KALLSYMS_ALL=y |
| 92 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 107 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 108 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 94 | CONFIG_HOTPLUG=y | 109 | CONFIG_HOTPLUG=y |
| 95 | CONFIG_PRINTK=y | 110 | CONFIG_PRINTK=y |
| 96 | CONFIG_BUG=y | 111 | CONFIG_BUG=y |
| 97 | CONFIG_ELF_CORE=y | 112 | CONFIG_ELF_CORE=y |
| 98 | CONFIG_PCSPKR_PLATFORM=y | 113 | CONFIG_PCSPKR_PLATFORM=y |
| 99 | CONFIG_COMPAT_BRK=y | ||
| 100 | CONFIG_BASE_FULL=y | 114 | CONFIG_BASE_FULL=y |
| 101 | CONFIG_FUTEX=y | 115 | CONFIG_FUTEX=y |
| 102 | CONFIG_ANON_INODES=y | ||
| 103 | CONFIG_EPOLL=y | 116 | CONFIG_EPOLL=y |
| 104 | CONFIG_SIGNALFD=y | 117 | CONFIG_SIGNALFD=y |
| 105 | CONFIG_TIMERFD=y | 118 | CONFIG_TIMERFD=y |
| @@ -108,10 +121,12 @@ CONFIG_SHMEM=y | |||
| 108 | CONFIG_AIO=y | 121 | CONFIG_AIO=y |
| 109 | CONFIG_VM_EVENT_COUNTERS=y | 122 | CONFIG_VM_EVENT_COUNTERS=y |
| 110 | CONFIG_PCI_QUIRKS=y | 123 | CONFIG_PCI_QUIRKS=y |
| 124 | CONFIG_COMPAT_BRK=y | ||
| 111 | CONFIG_SLAB=y | 125 | CONFIG_SLAB=y |
| 112 | # CONFIG_SLUB is not set | 126 | # CONFIG_SLUB is not set |
| 113 | # CONFIG_SLOB is not set | 127 | # CONFIG_SLOB is not set |
| 114 | # CONFIG_PROFILING is not set | 128 | # CONFIG_PROFILING is not set |
| 129 | # CONFIG_MARKERS is not set | ||
| 115 | CONFIG_HAVE_OPROFILE=y | 130 | CONFIG_HAVE_OPROFILE=y |
| 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 131 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 117 | CONFIG_HAVE_IOREMAP_PROT=y | 132 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -119,6 +134,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 119 | CONFIG_HAVE_KRETPROBES=y | 134 | CONFIG_HAVE_KRETPROBES=y |
| 120 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 135 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 121 | CONFIG_HAVE_CLK=y | 136 | CONFIG_HAVE_CLK=y |
| 137 | # CONFIG_SLOW_WORK is not set | ||
| 122 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 138 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 123 | CONFIG_SLABINFO=y | 139 | CONFIG_SLABINFO=y |
| 124 | CONFIG_RT_MUTEXES=y | 140 | CONFIG_RT_MUTEXES=y |
| @@ -126,7 +142,6 @@ CONFIG_BASE_SMALL=0 | |||
| 126 | # CONFIG_MODULES is not set | 142 | # CONFIG_MODULES is not set |
| 127 | CONFIG_BLOCK=y | 143 | CONFIG_BLOCK=y |
| 128 | # CONFIG_LBD is not set | 144 | # CONFIG_LBD is not set |
| 129 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 130 | # CONFIG_BLK_DEV_INTEGRITY is not set | 145 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 131 | 146 | ||
| 132 | # | 147 | # |
| @@ -141,18 +156,11 @@ CONFIG_DEFAULT_DEADLINE=y | |||
| 141 | # CONFIG_DEFAULT_CFQ is not set | 156 | # CONFIG_DEFAULT_CFQ is not set |
| 142 | # CONFIG_DEFAULT_NOOP is not set | 157 | # CONFIG_DEFAULT_NOOP is not set |
| 143 | CONFIG_DEFAULT_IOSCHED="deadline" | 158 | CONFIG_DEFAULT_IOSCHED="deadline" |
| 144 | CONFIG_CLASSIC_RCU=y | ||
| 145 | # CONFIG_TREE_RCU is not set | ||
| 146 | # CONFIG_PREEMPT_RCU is not set | ||
| 147 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 148 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 149 | # CONFIG_FREEZER is not set | 159 | # CONFIG_FREEZER is not set |
| 150 | 160 | ||
| 151 | # | 161 | # |
| 152 | # Platform support | 162 | # Platform support |
| 153 | # | 163 | # |
| 154 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 155 | CONFIG_CLASSIC32=y | ||
| 156 | CONFIG_PPC_CHRP=y | 164 | CONFIG_PPC_CHRP=y |
| 157 | # CONFIG_MPC5121_ADS is not set | 165 | # CONFIG_MPC5121_ADS is not set |
| 158 | # CONFIG_MPC5121_GENERIC is not set | 166 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -171,7 +179,9 @@ CONFIG_8272=y | |||
| 171 | # CONFIG_PPC_83xx is not set | 179 | # CONFIG_PPC_83xx is not set |
| 172 | # CONFIG_PPC_86xx is not set | 180 | # CONFIG_PPC_86xx is not set |
| 173 | # CONFIG_EMBEDDED6xx is not set | 181 | # CONFIG_EMBEDDED6xx is not set |
| 182 | # CONFIG_AMIGAONE is not set | ||
| 174 | CONFIG_PPC_NATIVE=y | 183 | CONFIG_PPC_NATIVE=y |
| 184 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 175 | # CONFIG_UDBG_RTAS_CONSOLE is not set | 185 | # CONFIG_UDBG_RTAS_CONSOLE is not set |
| 176 | # CONFIG_IPIC is not set | 186 | # CONFIG_IPIC is not set |
| 177 | CONFIG_MPIC=y | 187 | CONFIG_MPIC=y |
| @@ -231,9 +241,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 231 | CONFIG_BOUNCE=y | 241 | CONFIG_BOUNCE=y |
| 232 | CONFIG_VIRT_TO_BUS=y | 242 | CONFIG_VIRT_TO_BUS=y |
| 233 | CONFIG_UNEVICTABLE_LRU=y | 243 | CONFIG_UNEVICTABLE_LRU=y |
| 244 | CONFIG_HAVE_MLOCK=y | ||
| 245 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 234 | CONFIG_PPC_4K_PAGES=y | 246 | CONFIG_PPC_4K_PAGES=y |
| 235 | # CONFIG_PPC_16K_PAGES is not set | 247 | # CONFIG_PPC_16K_PAGES is not set |
| 236 | # CONFIG_PPC_64K_PAGES is not set | 248 | # CONFIG_PPC_64K_PAGES is not set |
| 249 | # CONFIG_PPC_256K_PAGES is not set | ||
| 237 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 238 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
| 239 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -260,6 +273,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 260 | # CONFIG_PCI_LEGACY is not set | 273 | # CONFIG_PCI_LEGACY is not set |
| 261 | # CONFIG_PCI_DEBUG is not set | 274 | # CONFIG_PCI_DEBUG is not set |
| 262 | # CONFIG_PCI_STUB is not set | 275 | # CONFIG_PCI_STUB is not set |
| 276 | # CONFIG_PCI_IOV is not set | ||
| 263 | # CONFIG_PCCARD is not set | 277 | # CONFIG_PCCARD is not set |
| 264 | # CONFIG_HOTPLUG_PCI is not set | 278 | # CONFIG_HOTPLUG_PCI is not set |
| 265 | # CONFIG_HAS_RAPIDIO is not set | 279 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -282,7 +296,6 @@ CONFIG_NET=y | |||
| 282 | # | 296 | # |
| 283 | # Networking options | 297 | # Networking options |
| 284 | # | 298 | # |
| 285 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 286 | CONFIG_PACKET=y | 299 | CONFIG_PACKET=y |
| 287 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
| 288 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
| @@ -344,6 +357,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
| 344 | # CONFIG_LLC2 is not set | 357 | # CONFIG_LLC2 is not set |
| 345 | # CONFIG_IPX is not set | 358 | # CONFIG_IPX is not set |
| 346 | # CONFIG_ATALK is not set | 359 | # CONFIG_ATALK is not set |
| 360 | # CONFIG_PHONET is not set | ||
| 347 | # CONFIG_NET_SCHED is not set | 361 | # CONFIG_NET_SCHED is not set |
| 348 | # CONFIG_DCB is not set | 362 | # CONFIG_DCB is not set |
| 349 | 363 | ||
| @@ -355,7 +369,6 @@ CONFIG_NETFILTER_ADVANCED=y | |||
| 355 | # CONFIG_CAN is not set | 369 | # CONFIG_CAN is not set |
| 356 | # CONFIG_IRDA is not set | 370 | # CONFIG_IRDA is not set |
| 357 | # CONFIG_BT is not set | 371 | # CONFIG_BT is not set |
| 358 | # CONFIG_PHONET is not set | ||
| 359 | CONFIG_WIRELESS=y | 372 | CONFIG_WIRELESS=y |
| 360 | # CONFIG_CFG80211 is not set | 373 | # CONFIG_CFG80211 is not set |
| 361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 374 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -464,7 +477,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 464 | # LPDDR flash memory drivers | 477 | # LPDDR flash memory drivers |
| 465 | # | 478 | # |
| 466 | # CONFIG_MTD_LPDDR is not set | 479 | # CONFIG_MTD_LPDDR is not set |
| 467 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 468 | 480 | ||
| 469 | # | 481 | # |
| 470 | # UBI - Unsorted block images | 482 | # UBI - Unsorted block images |
| @@ -517,6 +529,7 @@ CONFIG_HAVE_IDE=y | |||
| 517 | # CONFIG_I2O is not set | 529 | # CONFIG_I2O is not set |
| 518 | # CONFIG_MACINTOSH_DRIVERS is not set | 530 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 519 | CONFIG_NETDEVICES=y | 531 | CONFIG_NETDEVICES=y |
| 532 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 520 | # CONFIG_DUMMY is not set | 533 | # CONFIG_DUMMY is not set |
| 521 | # CONFIG_BONDING is not set | 534 | # CONFIG_BONDING is not set |
| 522 | # CONFIG_EQUALIZER is not set | 535 | # CONFIG_EQUALIZER is not set |
| @@ -551,6 +564,8 @@ CONFIG_MII=y | |||
| 551 | # CONFIG_SUNGEM is not set | 564 | # CONFIG_SUNGEM is not set |
| 552 | # CONFIG_CASSINI is not set | 565 | # CONFIG_CASSINI is not set |
| 553 | # CONFIG_NET_VENDOR_3COM is not set | 566 | # CONFIG_NET_VENDOR_3COM is not set |
| 567 | # CONFIG_ETHOC is not set | ||
| 568 | # CONFIG_DNET is not set | ||
| 554 | # CONFIG_NET_TULIP is not set | 569 | # CONFIG_NET_TULIP is not set |
| 555 | # CONFIG_HP100 is not set | 570 | # CONFIG_HP100 is not set |
| 556 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 571 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -576,7 +591,6 @@ CONFIG_FS_ENET_HAS_SCC=y | |||
| 576 | # | 591 | # |
| 577 | # CONFIG_WLAN_PRE80211 is not set | 592 | # CONFIG_WLAN_PRE80211 is not set |
| 578 | # CONFIG_WLAN_80211 is not set | 593 | # CONFIG_WLAN_80211 is not set |
| 579 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 580 | 594 | ||
| 581 | # | 595 | # |
| 582 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 596 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -631,6 +645,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 631 | # CONFIG_HVC_RTAS is not set | 645 | # CONFIG_HVC_RTAS is not set |
| 632 | # CONFIG_IPMI_HANDLER is not set | 646 | # CONFIG_IPMI_HANDLER is not set |
| 633 | CONFIG_HW_RANDOM=y | 647 | CONFIG_HW_RANDOM=y |
| 648 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 634 | # CONFIG_NVRAM is not set | 649 | # CONFIG_NVRAM is not set |
| 635 | # CONFIG_GEN_RTC is not set | 650 | # CONFIG_GEN_RTC is not set |
| 636 | # CONFIG_R3964 is not set | 651 | # CONFIG_R3964 is not set |
| @@ -720,8 +735,10 @@ CONFIG_SSB_POSSIBLE=y | |||
| 720 | # CONFIG_NEW_LEDS is not set | 735 | # CONFIG_NEW_LEDS is not set |
| 721 | # CONFIG_ACCESSIBILITY is not set | 736 | # CONFIG_ACCESSIBILITY is not set |
| 722 | # CONFIG_INFINIBAND is not set | 737 | # CONFIG_INFINIBAND is not set |
| 738 | # CONFIG_EDAC is not set | ||
| 723 | # CONFIG_RTC_CLASS is not set | 739 | # CONFIG_RTC_CLASS is not set |
| 724 | # CONFIG_DMADEVICES is not set | 740 | # CONFIG_DMADEVICES is not set |
| 741 | # CONFIG_AUXDISPLAY is not set | ||
| 725 | # CONFIG_UIO is not set | 742 | # CONFIG_UIO is not set |
| 726 | # CONFIG_STAGING is not set | 743 | # CONFIG_STAGING is not set |
| 727 | 744 | ||
| @@ -732,6 +749,7 @@ CONFIG_EXT2_FS=y | |||
| 732 | # CONFIG_EXT2_FS_XATTR is not set | 749 | # CONFIG_EXT2_FS_XATTR is not set |
| 733 | # CONFIG_EXT2_FS_XIP is not set | 750 | # CONFIG_EXT2_FS_XIP is not set |
| 734 | CONFIG_EXT3_FS=y | 751 | CONFIG_EXT3_FS=y |
| 752 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 735 | # CONFIG_EXT3_FS_XATTR is not set | 753 | # CONFIG_EXT3_FS_XATTR is not set |
| 736 | # CONFIG_EXT4_FS is not set | 754 | # CONFIG_EXT4_FS is not set |
| 737 | CONFIG_JBD=y | 755 | CONFIG_JBD=y |
| @@ -751,6 +769,10 @@ CONFIG_AUTOFS4_FS=y | |||
| 751 | # CONFIG_FUSE_FS is not set | 769 | # CONFIG_FUSE_FS is not set |
| 752 | 770 | ||
| 753 | # | 771 | # |
| 772 | # Caches | ||
| 773 | # | ||
| 774 | |||
| 775 | # | ||
| 754 | # CD-ROM/DVD Filesystems | 776 | # CD-ROM/DVD Filesystems |
| 755 | # | 777 | # |
| 756 | # CONFIG_ISO9660_FS is not set | 778 | # CONFIG_ISO9660_FS is not set |
| @@ -872,6 +894,7 @@ CONFIG_NLS_ISO8859_1=y | |||
| 872 | # CONFIG_NLS_KOI8_R is not set | 894 | # CONFIG_NLS_KOI8_R is not set |
| 873 | # CONFIG_NLS_KOI8_U is not set | 895 | # CONFIG_NLS_KOI8_U is not set |
| 874 | CONFIG_NLS_UTF8=y | 896 | CONFIG_NLS_UTF8=y |
| 897 | # CONFIG_BINARY_PRINTF is not set | ||
| 875 | 898 | ||
| 876 | # | 899 | # |
| 877 | # Library routines | 900 | # Library routines |
| @@ -887,11 +910,12 @@ CONFIG_CRC32=y | |||
| 887 | # CONFIG_LIBCRC32C is not set | 910 | # CONFIG_LIBCRC32C is not set |
| 888 | CONFIG_ZLIB_INFLATE=y | 911 | CONFIG_ZLIB_INFLATE=y |
| 889 | CONFIG_ZLIB_DEFLATE=y | 912 | CONFIG_ZLIB_DEFLATE=y |
| 890 | CONFIG_PLIST=y | 913 | CONFIG_DECOMPRESS_GZIP=y |
| 891 | CONFIG_HAS_IOMEM=y | 914 | CONFIG_HAS_IOMEM=y |
| 892 | CONFIG_HAS_IOPORT=y | 915 | CONFIG_HAS_IOPORT=y |
| 893 | CONFIG_HAS_DMA=y | 916 | CONFIG_HAS_DMA=y |
| 894 | CONFIG_HAVE_LMB=y | 917 | CONFIG_HAVE_LMB=y |
| 918 | CONFIG_NLATTR=y | ||
| 895 | 919 | ||
| 896 | # | 920 | # |
| 897 | # Kernel hacking | 921 | # Kernel hacking |
| @@ -907,6 +931,7 @@ CONFIG_DEBUG_FS=y | |||
| 907 | CONFIG_DEBUG_KERNEL=y | 931 | CONFIG_DEBUG_KERNEL=y |
| 908 | # CONFIG_DEBUG_SHIRQ is not set | 932 | # CONFIG_DEBUG_SHIRQ is not set |
| 909 | # CONFIG_DETECT_SOFTLOCKUP is not set | 933 | # CONFIG_DETECT_SOFTLOCKUP is not set |
| 934 | # CONFIG_DETECT_HUNG_TASK is not set | ||
| 910 | # CONFIG_SCHED_DEBUG is not set | 935 | # CONFIG_SCHED_DEBUG is not set |
| 911 | # CONFIG_SCHEDSTATS is not set | 936 | # CONFIG_SCHEDSTATS is not set |
| 912 | # CONFIG_TIMER_STATS is not set | 937 | # CONFIG_TIMER_STATS is not set |
| @@ -935,9 +960,12 @@ CONFIG_DEBUG_INFO=y | |||
| 935 | # CONFIG_FAULT_INJECTION is not set | 960 | # CONFIG_FAULT_INJECTION is not set |
| 936 | # CONFIG_LATENCYTOP is not set | 961 | # CONFIG_LATENCYTOP is not set |
| 937 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 962 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 963 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 938 | CONFIG_HAVE_FUNCTION_TRACER=y | 964 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 965 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 939 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 966 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 940 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 967 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 968 | CONFIG_TRACING_SUPPORT=y | ||
| 941 | 969 | ||
| 942 | # | 970 | # |
| 943 | # Tracers | 971 | # Tracers |
| @@ -945,16 +973,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 945 | # CONFIG_FUNCTION_TRACER is not set | 973 | # CONFIG_FUNCTION_TRACER is not set |
| 946 | # CONFIG_SCHED_TRACER is not set | 974 | # CONFIG_SCHED_TRACER is not set |
| 947 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 975 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 976 | # CONFIG_EVENT_TRACER is not set | ||
| 948 | # CONFIG_BOOT_TRACER is not set | 977 | # CONFIG_BOOT_TRACER is not set |
| 949 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 978 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 950 | # CONFIG_STACK_TRACER is not set | 979 | # CONFIG_STACK_TRACER is not set |
| 951 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 980 | # CONFIG_KMEMTRACE is not set |
| 981 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 982 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 983 | # CONFIG_DYNAMIC_DEBUG is not set | ||
| 952 | # CONFIG_SAMPLES is not set | 984 | # CONFIG_SAMPLES is not set |
| 953 | CONFIG_HAVE_ARCH_KGDB=y | 985 | CONFIG_HAVE_ARCH_KGDB=y |
| 954 | CONFIG_PRINT_STACK_DEPTH=64 | 986 | CONFIG_PRINT_STACK_DEPTH=64 |
| 955 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 987 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 956 | # CONFIG_DEBUG_STACK_USAGE is not set | 988 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 957 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 958 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 989 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 959 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 990 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 960 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 991 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -986,9 +1017,11 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 986 | CONFIG_CRYPTO_HASH=y | 1017 | CONFIG_CRYPTO_HASH=y |
| 987 | CONFIG_CRYPTO_HASH2=y | 1018 | CONFIG_CRYPTO_HASH2=y |
| 988 | CONFIG_CRYPTO_RNG2=y | 1019 | CONFIG_CRYPTO_RNG2=y |
| 1020 | CONFIG_CRYPTO_PCOMP=y | ||
| 989 | CONFIG_CRYPTO_MANAGER=y | 1021 | CONFIG_CRYPTO_MANAGER=y |
| 990 | CONFIG_CRYPTO_MANAGER2=y | 1022 | CONFIG_CRYPTO_MANAGER2=y |
| 991 | # CONFIG_CRYPTO_NULL is not set | 1023 | # CONFIG_CRYPTO_NULL is not set |
| 1024 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 992 | # CONFIG_CRYPTO_CRYPTD is not set | 1025 | # CONFIG_CRYPTO_CRYPTD is not set |
| 993 | # CONFIG_CRYPTO_AUTHENC is not set | 1026 | # CONFIG_CRYPTO_AUTHENC is not set |
| 994 | 1027 | ||
| @@ -1052,6 +1085,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1052 | # Compression | 1085 | # Compression |
| 1053 | # | 1086 | # |
| 1054 | # CONFIG_CRYPTO_DEFLATE is not set | 1087 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1088 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1055 | # CONFIG_CRYPTO_LZO is not set | 1089 | # CONFIG_CRYPTO_LZO is not set |
| 1056 | 1090 | ||
| 1057 | # | 1091 | # |
diff --git a/arch/powerpc/configs/mgsuvd_defconfig b/arch/powerpc/configs/mgsuvd_defconfig index 297b5d5042be..24fa90792c54 100644 --- a/arch/powerpc/configs/mgsuvd_defconfig +++ b/arch/powerpc/configs/mgsuvd_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:32 2009 | 4 | # Wed May 13 17:21:55 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -51,6 +51,7 @@ CONFIG_AUDIT_ARCH=y | |||
| 51 | # CONFIG_DEFAULT_UIMAGE is not set | 51 | # CONFIG_DEFAULT_UIMAGE is not set |
| 52 | # CONFIG_PPC_DCR_NATIVE is not set | 52 | # CONFIG_PPC_DCR_NATIVE is not set |
| 53 | # CONFIG_PPC_DCR_MMIO is not set | 53 | # CONFIG_PPC_DCR_MMIO is not set |
| 54 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 54 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 55 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 55 | 56 | ||
| 56 | # | 57 | # |
| @@ -68,6 +69,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
| 70 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
| 72 | |||
| 73 | # | ||
| 74 | # RCU Subsystem | ||
| 75 | # | ||
| 76 | CONFIG_CLASSIC_RCU=y | ||
| 77 | # CONFIG_TREE_RCU is not set | ||
| 78 | # CONFIG_PREEMPT_RCU is not set | ||
| 79 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 80 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 71 | # CONFIG_IKCONFIG is not set | 81 | # CONFIG_IKCONFIG is not set |
| 72 | CONFIG_LOG_BUF_SHIFT=17 | 82 | CONFIG_LOG_BUF_SHIFT=17 |
| 73 | CONFIG_GROUP_SCHED=y | 83 | CONFIG_GROUP_SCHED=y |
| @@ -82,20 +92,23 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 82 | # CONFIG_NAMESPACES is not set | 92 | # CONFIG_NAMESPACES is not set |
| 83 | CONFIG_BLK_DEV_INITRD=y | 93 | CONFIG_BLK_DEV_INITRD=y |
| 84 | CONFIG_INITRAMFS_SOURCE="" | 94 | CONFIG_INITRAMFS_SOURCE="" |
| 95 | CONFIG_RD_GZIP=y | ||
| 96 | # CONFIG_RD_BZIP2 is not set | ||
| 97 | # CONFIG_RD_LZMA is not set | ||
| 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 98 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 86 | CONFIG_SYSCTL=y | 99 | CONFIG_SYSCTL=y |
| 100 | CONFIG_ANON_INODES=y | ||
| 87 | CONFIG_EMBEDDED=y | 101 | CONFIG_EMBEDDED=y |
| 88 | # CONFIG_SYSCTL_SYSCALL is not set | 102 | # CONFIG_SYSCTL_SYSCALL is not set |
| 89 | CONFIG_KALLSYMS=y | 103 | CONFIG_KALLSYMS=y |
| 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 104 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 105 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 91 | # CONFIG_HOTPLUG is not set | 106 | # CONFIG_HOTPLUG is not set |
| 92 | CONFIG_PRINTK=y | 107 | CONFIG_PRINTK=y |
| 93 | # CONFIG_BUG is not set | 108 | # CONFIG_BUG is not set |
| 94 | CONFIG_ELF_CORE=y | 109 | CONFIG_ELF_CORE=y |
| 95 | CONFIG_COMPAT_BRK=y | ||
| 96 | # CONFIG_BASE_FULL is not set | 110 | # CONFIG_BASE_FULL is not set |
| 97 | CONFIG_FUTEX=y | 111 | CONFIG_FUTEX=y |
| 98 | CONFIG_ANON_INODES=y | ||
| 99 | # CONFIG_EPOLL is not set | 112 | # CONFIG_EPOLL is not set |
| 100 | CONFIG_SIGNALFD=y | 113 | CONFIG_SIGNALFD=y |
| 101 | CONFIG_TIMERFD=y | 114 | CONFIG_TIMERFD=y |
| @@ -103,10 +116,12 @@ CONFIG_EVENTFD=y | |||
| 103 | CONFIG_SHMEM=y | 116 | CONFIG_SHMEM=y |
| 104 | CONFIG_AIO=y | 117 | CONFIG_AIO=y |
| 105 | # CONFIG_VM_EVENT_COUNTERS is not set | 118 | # CONFIG_VM_EVENT_COUNTERS is not set |
| 119 | CONFIG_COMPAT_BRK=y | ||
| 106 | CONFIG_SLAB=y | 120 | CONFIG_SLAB=y |
| 107 | # CONFIG_SLUB is not set | 121 | # CONFIG_SLUB is not set |
| 108 | # CONFIG_SLOB is not set | 122 | # CONFIG_SLOB is not set |
| 109 | # CONFIG_PROFILING is not set | 123 | # CONFIG_PROFILING is not set |
| 124 | # CONFIG_MARKERS is not set | ||
| 110 | CONFIG_HAVE_OPROFILE=y | 125 | CONFIG_HAVE_OPROFILE=y |
| 111 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 126 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 112 | CONFIG_HAVE_IOREMAP_PROT=y | 127 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -114,6 +129,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 114 | CONFIG_HAVE_KRETPROBES=y | 129 | CONFIG_HAVE_KRETPROBES=y |
| 115 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 130 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 116 | CONFIG_HAVE_CLK=y | 131 | CONFIG_HAVE_CLK=y |
| 132 | # CONFIG_SLOW_WORK is not set | ||
| 117 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 118 | CONFIG_SLABINFO=y | 134 | CONFIG_SLABINFO=y |
| 119 | CONFIG_RT_MUTEXES=y | 135 | CONFIG_RT_MUTEXES=y |
| @@ -121,7 +137,6 @@ CONFIG_BASE_SMALL=1 | |||
| 121 | # CONFIG_MODULES is not set | 137 | # CONFIG_MODULES is not set |
| 122 | CONFIG_BLOCK=y | 138 | CONFIG_BLOCK=y |
| 123 | # CONFIG_LBD is not set | 139 | # CONFIG_LBD is not set |
| 124 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 125 | # CONFIG_BLK_DEV_BSG is not set | 140 | # CONFIG_BLK_DEV_BSG is not set |
| 126 | # CONFIG_BLK_DEV_INTEGRITY is not set | 141 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 127 | 142 | ||
| @@ -137,11 +152,6 @@ CONFIG_DEFAULT_AS=y | |||
| 137 | # CONFIG_DEFAULT_CFQ is not set | 152 | # CONFIG_DEFAULT_CFQ is not set |
| 138 | # CONFIG_DEFAULT_NOOP is not set | 153 | # CONFIG_DEFAULT_NOOP is not set |
| 139 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 154 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 140 | CONFIG_CLASSIC_RCU=y | ||
| 141 | # CONFIG_TREE_RCU is not set | ||
| 142 | # CONFIG_PREEMPT_RCU is not set | ||
| 143 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 144 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 145 | # CONFIG_FREEZER is not set | 155 | # CONFIG_FREEZER is not set |
| 146 | 156 | ||
| 147 | # | 157 | # |
| @@ -232,9 +242,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 232 | CONFIG_BOUNCE=y | 242 | CONFIG_BOUNCE=y |
| 233 | CONFIG_VIRT_TO_BUS=y | 243 | CONFIG_VIRT_TO_BUS=y |
| 234 | CONFIG_UNEVICTABLE_LRU=y | 244 | CONFIG_UNEVICTABLE_LRU=y |
| 245 | CONFIG_HAVE_MLOCK=y | ||
| 246 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 235 | CONFIG_PPC_4K_PAGES=y | 247 | CONFIG_PPC_4K_PAGES=y |
| 236 | # CONFIG_PPC_16K_PAGES is not set | 248 | # CONFIG_PPC_16K_PAGES is not set |
| 237 | # CONFIG_PPC_64K_PAGES is not set | 249 | # CONFIG_PPC_64K_PAGES is not set |
| 250 | # CONFIG_PPC_256K_PAGES is not set | ||
| 238 | CONFIG_FORCE_MAX_ZONEORDER=11 | 251 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 239 | # CONFIG_PROC_DEVICETREE is not set | 252 | # CONFIG_PROC_DEVICETREE is not set |
| 240 | # CONFIG_CMDLINE_BOOL is not set | 253 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -268,14 +281,11 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 268 | CONFIG_KERNEL_START=0xc0000000 | 281 | CONFIG_KERNEL_START=0xc0000000 |
| 269 | CONFIG_PHYSICAL_START=0x00000000 | 282 | CONFIG_PHYSICAL_START=0x00000000 |
| 270 | CONFIG_TASK_SIZE=0x80000000 | 283 | CONFIG_TASK_SIZE=0x80000000 |
| 271 | CONFIG_CONSISTENT_START=0xfd000000 | ||
| 272 | CONFIG_CONSISTENT_SIZE=0x00200000 | ||
| 273 | CONFIG_NET=y | 284 | CONFIG_NET=y |
| 274 | 285 | ||
| 275 | # | 286 | # |
| 276 | # Networking options | 287 | # Networking options |
| 277 | # | 288 | # |
| 278 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 279 | CONFIG_PACKET=y | 289 | CONFIG_PACKET=y |
| 280 | # CONFIG_PACKET_MMAP is not set | 290 | # CONFIG_PACKET_MMAP is not set |
| 281 | CONFIG_UNIX=y | 291 | CONFIG_UNIX=y |
| @@ -331,6 +341,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 331 | # CONFIG_LAPB is not set | 341 | # CONFIG_LAPB is not set |
| 332 | # CONFIG_ECONET is not set | 342 | # CONFIG_ECONET is not set |
| 333 | # CONFIG_WAN_ROUTER is not set | 343 | # CONFIG_WAN_ROUTER is not set |
| 344 | # CONFIG_PHONET is not set | ||
| 334 | # CONFIG_NET_SCHED is not set | 345 | # CONFIG_NET_SCHED is not set |
| 335 | # CONFIG_DCB is not set | 346 | # CONFIG_DCB is not set |
| 336 | 347 | ||
| @@ -343,7 +354,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 343 | # CONFIG_IRDA is not set | 354 | # CONFIG_IRDA is not set |
| 344 | # CONFIG_BT is not set | 355 | # CONFIG_BT is not set |
| 345 | # CONFIG_AF_RXRPC is not set | 356 | # CONFIG_AF_RXRPC is not set |
| 346 | # CONFIG_PHONET is not set | ||
| 347 | CONFIG_WIRELESS=y | 357 | CONFIG_WIRELESS=y |
| 348 | # CONFIG_CFG80211 is not set | 358 | # CONFIG_CFG80211 is not set |
| 349 | CONFIG_WIRELESS_OLD_REGULATORY=y | 359 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -447,7 +457,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 447 | # LPDDR flash memory drivers | 457 | # LPDDR flash memory drivers |
| 448 | # | 458 | # |
| 449 | # CONFIG_MTD_LPDDR is not set | 459 | # CONFIG_MTD_LPDDR is not set |
| 450 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 451 | 460 | ||
| 452 | # | 461 | # |
| 453 | # UBI - Unsorted block images | 462 | # UBI - Unsorted block images |
| @@ -483,6 +492,7 @@ CONFIG_HAVE_IDE=y | |||
| 483 | # CONFIG_MD is not set | 492 | # CONFIG_MD is not set |
| 484 | # CONFIG_MACINTOSH_DRIVERS is not set | 493 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 485 | CONFIG_NETDEVICES=y | 494 | CONFIG_NETDEVICES=y |
| 495 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 486 | # CONFIG_DUMMY is not set | 496 | # CONFIG_DUMMY is not set |
| 487 | # CONFIG_BONDING is not set | 497 | # CONFIG_BONDING is not set |
| 488 | # CONFIG_MACVLAN is not set | 498 | # CONFIG_MACVLAN is not set |
| @@ -511,6 +521,8 @@ CONFIG_FIXED_PHY=y | |||
| 511 | # CONFIG_MDIO_BITBANG is not set | 521 | # CONFIG_MDIO_BITBANG is not set |
| 512 | CONFIG_NET_ETHERNET=y | 522 | CONFIG_NET_ETHERNET=y |
| 513 | CONFIG_MII=y | 523 | CONFIG_MII=y |
| 524 | # CONFIG_ETHOC is not set | ||
| 525 | # CONFIG_DNET is not set | ||
| 514 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 526 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 515 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 527 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 516 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 528 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -531,7 +543,6 @@ CONFIG_FS_ENET_HAS_SCC=y | |||
| 531 | # | 543 | # |
| 532 | # CONFIG_WLAN_PRE80211 is not set | 544 | # CONFIG_WLAN_PRE80211 is not set |
| 533 | # CONFIG_WLAN_80211 is not set | 545 | # CONFIG_WLAN_80211 is not set |
| 534 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 535 | 546 | ||
| 536 | # | 547 | # |
| 537 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 548 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -582,6 +593,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 582 | # CONFIG_HVC_UDBG is not set | 593 | # CONFIG_HVC_UDBG is not set |
| 583 | # CONFIG_IPMI_HANDLER is not set | 594 | # CONFIG_IPMI_HANDLER is not set |
| 584 | CONFIG_HW_RANDOM=y | 595 | CONFIG_HW_RANDOM=y |
| 596 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 585 | # CONFIG_NVRAM is not set | 597 | # CONFIG_NVRAM is not set |
| 586 | CONFIG_GEN_RTC=y | 598 | CONFIG_GEN_RTC=y |
| 587 | # CONFIG_GEN_RTC_X is not set | 599 | # CONFIG_GEN_RTC_X is not set |
| @@ -651,6 +663,7 @@ CONFIG_SSB_POSSIBLE=y | |||
| 651 | # CONFIG_EDAC is not set | 663 | # CONFIG_EDAC is not set |
| 652 | # CONFIG_RTC_CLASS is not set | 664 | # CONFIG_RTC_CLASS is not set |
| 653 | # CONFIG_DMADEVICES is not set | 665 | # CONFIG_DMADEVICES is not set |
| 666 | # CONFIG_AUXDISPLAY is not set | ||
| 654 | # CONFIG_UIO is not set | 667 | # CONFIG_UIO is not set |
| 655 | # CONFIG_STAGING is not set | 668 | # CONFIG_STAGING is not set |
| 656 | 669 | ||
| @@ -663,6 +676,7 @@ CONFIG_EXT2_FS_XATTR=y | |||
| 663 | # CONFIG_EXT2_FS_SECURITY is not set | 676 | # CONFIG_EXT2_FS_SECURITY is not set |
| 664 | # CONFIG_EXT2_FS_XIP is not set | 677 | # CONFIG_EXT2_FS_XIP is not set |
| 665 | CONFIG_EXT3_FS=y | 678 | CONFIG_EXT3_FS=y |
| 679 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 666 | CONFIG_EXT3_FS_XATTR=y | 680 | CONFIG_EXT3_FS_XATTR=y |
| 667 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 681 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 668 | # CONFIG_EXT3_FS_SECURITY is not set | 682 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -686,6 +700,11 @@ CONFIG_INOTIFY_USER=y | |||
| 686 | # CONFIG_FUSE_FS is not set | 700 | # CONFIG_FUSE_FS is not set |
| 687 | 701 | ||
| 688 | # | 702 | # |
| 703 | # Caches | ||
| 704 | # | ||
| 705 | # CONFIG_FSCACHE is not set | ||
| 706 | |||
| 707 | # | ||
| 689 | # CD-ROM/DVD Filesystems | 708 | # CD-ROM/DVD Filesystems |
| 690 | # | 709 | # |
| 691 | # CONFIG_ISO9660_FS is not set | 710 | # CONFIG_ISO9660_FS is not set |
| @@ -739,6 +758,7 @@ CONFIG_CRAMFS=y | |||
| 739 | # CONFIG_ROMFS_FS is not set | 758 | # CONFIG_ROMFS_FS is not set |
| 740 | # CONFIG_SYSV_FS is not set | 759 | # CONFIG_SYSV_FS is not set |
| 741 | # CONFIG_UFS_FS is not set | 760 | # CONFIG_UFS_FS is not set |
| 761 | # CONFIG_NILFS2_FS is not set | ||
| 742 | CONFIG_NETWORK_FILESYSTEMS=y | 762 | CONFIG_NETWORK_FILESYSTEMS=y |
| 743 | CONFIG_NFS_FS=y | 763 | CONFIG_NFS_FS=y |
| 744 | CONFIG_NFS_V3=y | 764 | CONFIG_NFS_V3=y |
| @@ -750,7 +770,6 @@ CONFIG_LOCKD=y | |||
| 750 | CONFIG_LOCKD_V4=y | 770 | CONFIG_LOCKD_V4=y |
| 751 | CONFIG_NFS_COMMON=y | 771 | CONFIG_NFS_COMMON=y |
| 752 | CONFIG_SUNRPC=y | 772 | CONFIG_SUNRPC=y |
| 753 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 754 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 773 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 755 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 774 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 756 | # CONFIG_SMB_FS is not set | 775 | # CONFIG_SMB_FS is not set |
| @@ -782,6 +801,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 782 | # CONFIG_SYSV68_PARTITION is not set | 801 | # CONFIG_SYSV68_PARTITION is not set |
| 783 | # CONFIG_NLS is not set | 802 | # CONFIG_NLS is not set |
| 784 | # CONFIG_DLM is not set | 803 | # CONFIG_DLM is not set |
| 804 | # CONFIG_BINARY_PRINTF is not set | ||
| 785 | 805 | ||
| 786 | # | 806 | # |
| 787 | # Library routines | 807 | # Library routines |
| @@ -797,11 +817,12 @@ CONFIG_CRC32=y | |||
| 797 | # CONFIG_LIBCRC32C is not set | 817 | # CONFIG_LIBCRC32C is not set |
| 798 | CONFIG_ZLIB_INFLATE=y | 818 | CONFIG_ZLIB_INFLATE=y |
| 799 | CONFIG_ZLIB_DEFLATE=y | 819 | CONFIG_ZLIB_DEFLATE=y |
| 800 | CONFIG_PLIST=y | 820 | CONFIG_DECOMPRESS_GZIP=y |
| 801 | CONFIG_HAS_IOMEM=y | 821 | CONFIG_HAS_IOMEM=y |
| 802 | CONFIG_HAS_IOPORT=y | 822 | CONFIG_HAS_IOPORT=y |
| 803 | CONFIG_HAS_DMA=y | 823 | CONFIG_HAS_DMA=y |
| 804 | CONFIG_HAVE_LMB=y | 824 | CONFIG_HAVE_LMB=y |
| 825 | CONFIG_NLATTR=y | ||
| 805 | 826 | ||
| 806 | # | 827 | # |
| 807 | # Kernel hacking | 828 | # Kernel hacking |
| @@ -819,13 +840,25 @@ CONFIG_DEBUG_FS=y | |||
| 819 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 840 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
| 820 | # CONFIG_LATENCYTOP is not set | 841 | # CONFIG_LATENCYTOP is not set |
| 821 | CONFIG_HAVE_FUNCTION_TRACER=y | 842 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 843 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 822 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 844 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 823 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 845 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 846 | CONFIG_TRACING_SUPPORT=y | ||
| 824 | 847 | ||
| 825 | # | 848 | # |
| 826 | # Tracers | 849 | # Tracers |
| 827 | # | 850 | # |
| 828 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 851 | # CONFIG_FUNCTION_TRACER is not set |
| 852 | # CONFIG_SCHED_TRACER is not set | ||
| 853 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 854 | # CONFIG_EVENT_TRACER is not set | ||
| 855 | # CONFIG_BOOT_TRACER is not set | ||
| 856 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 857 | # CONFIG_STACK_TRACER is not set | ||
| 858 | # CONFIG_KMEMTRACE is not set | ||
| 859 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 860 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 861 | # CONFIG_DYNAMIC_DEBUG is not set | ||
| 829 | # CONFIG_SAMPLES is not set | 862 | # CONFIG_SAMPLES is not set |
| 830 | CONFIG_HAVE_ARCH_KGDB=y | 863 | CONFIG_HAVE_ARCH_KGDB=y |
| 831 | CONFIG_PRINT_STACK_DEPTH=64 | 864 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -917,6 +950,7 @@ CONFIG_CRYPTO=y | |||
| 917 | # Compression | 950 | # Compression |
| 918 | # | 951 | # |
| 919 | # CONFIG_CRYPTO_DEFLATE is not set | 952 | # CONFIG_CRYPTO_DEFLATE is not set |
| 953 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 920 | # CONFIG_CRYPTO_LZO is not set | 954 | # CONFIG_CRYPTO_LZO is not set |
| 921 | 955 | ||
| 922 | # | 956 | # |
diff --git a/arch/powerpc/configs/mpc7448_hpc2_defconfig b/arch/powerpc/configs/mpc7448_hpc2_defconfig index 38712e861c46..642ab67c8431 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:33 2009 | 4 | # Wed May 13 17:21:56 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | CONFIG_ALTIVEC=y | 19 | CONFIG_ALTIVEC=y |
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| @@ -54,6 +55,7 @@ CONFIG_GENERIC_BUG=y | |||
| 54 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
| 55 | # CONFIG_PPC_DCR_NATIVE is not set | 56 | # CONFIG_PPC_DCR_NATIVE is not set |
| 56 | # CONFIG_PPC_DCR_MMIO is not set | 57 | # CONFIG_PPC_DCR_MMIO is not set |
| 58 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 57 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 58 | 60 | ||
| 59 | # | 61 | # |
| @@ -71,6 +73,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 71 | # CONFIG_BSD_PROCESS_ACCT is not set | 73 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 72 | # CONFIG_TASKSTATS is not set | 74 | # CONFIG_TASKSTATS is not set |
| 73 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
| 76 | |||
| 77 | # | ||
| 78 | # RCU Subsystem | ||
| 79 | # | ||
| 80 | CONFIG_CLASSIC_RCU=y | ||
| 81 | # CONFIG_TREE_RCU is not set | ||
| 82 | # CONFIG_PREEMPT_RCU is not set | ||
| 83 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 84 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 74 | # CONFIG_IKCONFIG is not set | 85 | # CONFIG_IKCONFIG is not set |
| 75 | CONFIG_LOG_BUF_SHIFT=14 | 86 | CONFIG_LOG_BUF_SHIFT=14 |
| 76 | CONFIG_GROUP_SCHED=y | 87 | CONFIG_GROUP_SCHED=y |
| @@ -85,20 +96,23 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 85 | # CONFIG_NAMESPACES is not set | 96 | # CONFIG_NAMESPACES is not set |
| 86 | CONFIG_BLK_DEV_INITRD=y | 97 | CONFIG_BLK_DEV_INITRD=y |
| 87 | CONFIG_INITRAMFS_SOURCE="" | 98 | CONFIG_INITRAMFS_SOURCE="" |
| 99 | CONFIG_RD_GZIP=y | ||
| 100 | # CONFIG_RD_BZIP2 is not set | ||
| 101 | # CONFIG_RD_LZMA is not set | ||
| 88 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 102 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 89 | CONFIG_SYSCTL=y | 103 | CONFIG_SYSCTL=y |
| 104 | CONFIG_ANON_INODES=y | ||
| 90 | CONFIG_EMBEDDED=y | 105 | CONFIG_EMBEDDED=y |
| 91 | CONFIG_SYSCTL_SYSCALL=y | 106 | CONFIG_SYSCTL_SYSCALL=y |
| 92 | CONFIG_KALLSYMS=y | 107 | CONFIG_KALLSYMS=y |
| 93 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 108 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 109 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 94 | CONFIG_HOTPLUG=y | 110 | CONFIG_HOTPLUG=y |
| 95 | CONFIG_PRINTK=y | 111 | CONFIG_PRINTK=y |
| 96 | CONFIG_BUG=y | 112 | CONFIG_BUG=y |
| 97 | CONFIG_ELF_CORE=y | 113 | CONFIG_ELF_CORE=y |
| 98 | CONFIG_COMPAT_BRK=y | ||
| 99 | CONFIG_BASE_FULL=y | 114 | CONFIG_BASE_FULL=y |
| 100 | CONFIG_FUTEX=y | 115 | CONFIG_FUTEX=y |
| 101 | CONFIG_ANON_INODES=y | ||
| 102 | CONFIG_EPOLL=y | 116 | CONFIG_EPOLL=y |
| 103 | CONFIG_SIGNALFD=y | 117 | CONFIG_SIGNALFD=y |
| 104 | CONFIG_TIMERFD=y | 118 | CONFIG_TIMERFD=y |
| @@ -108,16 +122,19 @@ CONFIG_AIO=y | |||
| 108 | CONFIG_VM_EVENT_COUNTERS=y | 122 | CONFIG_VM_EVENT_COUNTERS=y |
| 109 | CONFIG_PCI_QUIRKS=y | 123 | CONFIG_PCI_QUIRKS=y |
| 110 | CONFIG_SLUB_DEBUG=y | 124 | CONFIG_SLUB_DEBUG=y |
| 125 | CONFIG_COMPAT_BRK=y | ||
| 111 | # CONFIG_SLAB is not set | 126 | # CONFIG_SLAB is not set |
| 112 | CONFIG_SLUB=y | 127 | CONFIG_SLUB=y |
| 113 | # CONFIG_SLOB is not set | 128 | # CONFIG_SLOB is not set |
| 114 | # CONFIG_PROFILING is not set | 129 | # CONFIG_PROFILING is not set |
| 130 | # CONFIG_MARKERS is not set | ||
| 115 | CONFIG_HAVE_OPROFILE=y | 131 | CONFIG_HAVE_OPROFILE=y |
| 116 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 132 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 117 | CONFIG_HAVE_IOREMAP_PROT=y | 133 | CONFIG_HAVE_IOREMAP_PROT=y |
| 118 | CONFIG_HAVE_KPROBES=y | 134 | CONFIG_HAVE_KPROBES=y |
| 119 | CONFIG_HAVE_KRETPROBES=y | 135 | CONFIG_HAVE_KRETPROBES=y |
| 120 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 136 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 137 | # CONFIG_SLOW_WORK is not set | ||
| 121 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 138 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 122 | CONFIG_SLABINFO=y | 139 | CONFIG_SLABINFO=y |
| 123 | CONFIG_RT_MUTEXES=y | 140 | CONFIG_RT_MUTEXES=y |
| @@ -125,7 +142,6 @@ CONFIG_BASE_SMALL=0 | |||
| 125 | # CONFIG_MODULES is not set | 142 | # CONFIG_MODULES is not set |
| 126 | CONFIG_BLOCK=y | 143 | CONFIG_BLOCK=y |
| 127 | CONFIG_LBD=y | 144 | CONFIG_LBD=y |
| 128 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 129 | # CONFIG_BLK_DEV_BSG is not set | 145 | # CONFIG_BLK_DEV_BSG is not set |
| 130 | # CONFIG_BLK_DEV_INTEGRITY is not set | 146 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 131 | 147 | ||
| @@ -141,18 +157,11 @@ CONFIG_DEFAULT_AS=y | |||
| 141 | # CONFIG_DEFAULT_CFQ is not set | 157 | # CONFIG_DEFAULT_CFQ is not set |
| 142 | # CONFIG_DEFAULT_NOOP is not set | 158 | # CONFIG_DEFAULT_NOOP is not set |
| 143 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 159 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 144 | CONFIG_CLASSIC_RCU=y | ||
| 145 | # CONFIG_TREE_RCU is not set | ||
| 146 | # CONFIG_PREEMPT_RCU is not set | ||
| 147 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 148 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 149 | # CONFIG_FREEZER is not set | 160 | # CONFIG_FREEZER is not set |
| 150 | 161 | ||
| 151 | # | 162 | # |
| 152 | # Platform support | 163 | # Platform support |
| 153 | # | 164 | # |
| 154 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 155 | CONFIG_CLASSIC32=y | ||
| 156 | # CONFIG_PPC_CHRP is not set | 165 | # CONFIG_PPC_CHRP is not set |
| 157 | # CONFIG_MPC5121_ADS is not set | 166 | # CONFIG_MPC5121_ADS is not set |
| 158 | # CONFIG_MPC5121_GENERIC is not set | 167 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -172,6 +181,8 @@ CONFIG_MPC7448HPC2=y | |||
| 172 | # CONFIG_PPC_PRPMC2800 is not set | 181 | # CONFIG_PPC_PRPMC2800 is not set |
| 173 | # CONFIG_PPC_C2K is not set | 182 | # CONFIG_PPC_C2K is not set |
| 174 | CONFIG_TSI108_BRIDGE=y | 183 | CONFIG_TSI108_BRIDGE=y |
| 184 | # CONFIG_AMIGAONE is not set | ||
| 185 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 175 | # CONFIG_IPIC is not set | 186 | # CONFIG_IPIC is not set |
| 176 | CONFIG_MPIC=y | 187 | CONFIG_MPIC=y |
| 177 | CONFIG_MPIC_WEIRD=y | 188 | CONFIG_MPIC_WEIRD=y |
| @@ -230,9 +241,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 230 | CONFIG_BOUNCE=y | 241 | CONFIG_BOUNCE=y |
| 231 | CONFIG_VIRT_TO_BUS=y | 242 | CONFIG_VIRT_TO_BUS=y |
| 232 | CONFIG_UNEVICTABLE_LRU=y | 243 | CONFIG_UNEVICTABLE_LRU=y |
| 244 | CONFIG_HAVE_MLOCK=y | ||
| 245 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 233 | CONFIG_PPC_4K_PAGES=y | 246 | CONFIG_PPC_4K_PAGES=y |
| 234 | # CONFIG_PPC_16K_PAGES is not set | 247 | # CONFIG_PPC_16K_PAGES is not set |
| 235 | # CONFIG_PPC_64K_PAGES is not set | 248 | # CONFIG_PPC_64K_PAGES is not set |
| 249 | # CONFIG_PPC_256K_PAGES is not set | ||
| 236 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 237 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
| 238 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -255,6 +269,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 255 | # CONFIG_PCI_MSI is not set | 269 | # CONFIG_PCI_MSI is not set |
| 256 | # CONFIG_PCI_LEGACY is not set | 270 | # CONFIG_PCI_LEGACY is not set |
| 257 | # CONFIG_PCI_STUB is not set | 271 | # CONFIG_PCI_STUB is not set |
| 272 | # CONFIG_PCI_IOV is not set | ||
| 258 | # CONFIG_PCCARD is not set | 273 | # CONFIG_PCCARD is not set |
| 259 | # CONFIG_HOTPLUG_PCI is not set | 274 | # CONFIG_HOTPLUG_PCI is not set |
| 260 | # CONFIG_HAS_RAPIDIO is not set | 275 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -277,7 +292,6 @@ CONFIG_NET=y | |||
| 277 | # | 292 | # |
| 278 | # Networking options | 293 | # Networking options |
| 279 | # | 294 | # |
| 280 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 281 | CONFIG_PACKET=y | 295 | CONFIG_PACKET=y |
| 282 | # CONFIG_PACKET_MMAP is not set | 296 | # CONFIG_PACKET_MMAP is not set |
| 283 | CONFIG_UNIX=y | 297 | CONFIG_UNIX=y |
| @@ -333,6 +347,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 333 | # CONFIG_LAPB is not set | 347 | # CONFIG_LAPB is not set |
| 334 | # CONFIG_ECONET is not set | 348 | # CONFIG_ECONET is not set |
| 335 | # CONFIG_WAN_ROUTER is not set | 349 | # CONFIG_WAN_ROUTER is not set |
| 350 | # CONFIG_PHONET is not set | ||
| 336 | # CONFIG_NET_SCHED is not set | 351 | # CONFIG_NET_SCHED is not set |
| 337 | # CONFIG_DCB is not set | 352 | # CONFIG_DCB is not set |
| 338 | 353 | ||
| @@ -345,7 +360,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 345 | # CONFIG_IRDA is not set | 360 | # CONFIG_IRDA is not set |
| 346 | # CONFIG_BT is not set | 361 | # CONFIG_BT is not set |
| 347 | # CONFIG_AF_RXRPC is not set | 362 | # CONFIG_AF_RXRPC is not set |
| 348 | # CONFIG_PHONET is not set | ||
| 349 | CONFIG_WIRELESS=y | 363 | CONFIG_WIRELESS=y |
| 350 | # CONFIG_CFG80211 is not set | 364 | # CONFIG_CFG80211 is not set |
| 351 | CONFIG_WIRELESS_OLD_REGULATORY=y | 365 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -392,12 +406,16 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 392 | # CONFIG_BLK_DEV_HD is not set | 406 | # CONFIG_BLK_DEV_HD is not set |
| 393 | CONFIG_MISC_DEVICES=y | 407 | CONFIG_MISC_DEVICES=y |
| 394 | # CONFIG_PHANTOM is not set | 408 | # CONFIG_PHANTOM is not set |
| 395 | # CONFIG_EEPROM_93CX6 is not set | ||
| 396 | # CONFIG_SGI_IOC4 is not set | 409 | # CONFIG_SGI_IOC4 is not set |
| 397 | # CONFIG_TIFM_CORE is not set | 410 | # CONFIG_TIFM_CORE is not set |
| 398 | # CONFIG_ENCLOSURE_SERVICES is not set | 411 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 399 | # CONFIG_HP_ILO is not set | 412 | # CONFIG_HP_ILO is not set |
| 400 | # CONFIG_C2PORT is not set | 413 | # CONFIG_C2PORT is not set |
| 414 | |||
| 415 | # | ||
| 416 | # EEPROM support | ||
| 417 | # | ||
| 418 | # CONFIG_EEPROM_93CX6 is not set | ||
| 401 | CONFIG_HAVE_IDE=y | 419 | CONFIG_HAVE_IDE=y |
| 402 | # CONFIG_IDE is not set | 420 | # CONFIG_IDE is not set |
| 403 | 421 | ||
| @@ -454,9 +472,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 454 | # CONFIG_MEGARAID_NEWGEN is not set | 472 | # CONFIG_MEGARAID_NEWGEN is not set |
| 455 | # CONFIG_MEGARAID_LEGACY is not set | 473 | # CONFIG_MEGARAID_LEGACY is not set |
| 456 | # CONFIG_MEGARAID_SAS is not set | 474 | # CONFIG_MEGARAID_SAS is not set |
| 475 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 457 | # CONFIG_SCSI_HPTIOP is not set | 476 | # CONFIG_SCSI_HPTIOP is not set |
| 458 | # CONFIG_SCSI_BUSLOGIC is not set | 477 | # CONFIG_SCSI_BUSLOGIC is not set |
| 459 | # CONFIG_LIBFC is not set | 478 | # CONFIG_LIBFC is not set |
| 479 | # CONFIG_LIBFCOE is not set | ||
| 460 | # CONFIG_FCOE is not set | 480 | # CONFIG_FCOE is not set |
| 461 | # CONFIG_SCSI_DMX3191D is not set | 481 | # CONFIG_SCSI_DMX3191D is not set |
| 462 | # CONFIG_SCSI_EATA is not set | 482 | # CONFIG_SCSI_EATA is not set |
| @@ -479,6 +499,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 479 | # CONFIG_SCSI_DEBUG is not set | 499 | # CONFIG_SCSI_DEBUG is not set |
| 480 | # CONFIG_SCSI_SRP is not set | 500 | # CONFIG_SCSI_SRP is not set |
| 481 | # CONFIG_SCSI_DH is not set | 501 | # CONFIG_SCSI_DH is not set |
| 502 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 482 | CONFIG_ATA=y | 503 | CONFIG_ATA=y |
| 483 | # CONFIG_ATA_NONSTANDARD is not set | 504 | # CONFIG_ATA_NONSTANDARD is not set |
| 484 | CONFIG_SATA_PMP=y | 505 | CONFIG_SATA_PMP=y |
| @@ -554,6 +575,7 @@ CONFIG_SATA_MV=y | |||
| 554 | # CONFIG_I2O is not set | 575 | # CONFIG_I2O is not set |
| 555 | # CONFIG_MACINTOSH_DRIVERS is not set | 576 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 556 | CONFIG_NETDEVICES=y | 577 | CONFIG_NETDEVICES=y |
| 578 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 557 | # CONFIG_DUMMY is not set | 579 | # CONFIG_DUMMY is not set |
| 558 | # CONFIG_BONDING is not set | 580 | # CONFIG_BONDING is not set |
| 559 | # CONFIG_MACVLAN is not set | 581 | # CONFIG_MACVLAN is not set |
| @@ -587,6 +609,8 @@ CONFIG_MII=y | |||
| 587 | # CONFIG_SUNGEM is not set | 609 | # CONFIG_SUNGEM is not set |
| 588 | # CONFIG_CASSINI is not set | 610 | # CONFIG_CASSINI is not set |
| 589 | # CONFIG_NET_VENDOR_3COM is not set | 611 | # CONFIG_NET_VENDOR_3COM is not set |
| 612 | # CONFIG_ETHOC is not set | ||
| 613 | # CONFIG_DNET is not set | ||
| 590 | # CONFIG_NET_TULIP is not set | 614 | # CONFIG_NET_TULIP is not set |
| 591 | # CONFIG_HP100 is not set | 615 | # CONFIG_HP100 is not set |
| 592 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 616 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -628,6 +652,7 @@ CONFIG_NETDEV_1000=y | |||
| 628 | # CONFIG_E1000E is not set | 652 | # CONFIG_E1000E is not set |
| 629 | # CONFIG_IP1000 is not set | 653 | # CONFIG_IP1000 is not set |
| 630 | # CONFIG_IGB is not set | 654 | # CONFIG_IGB is not set |
| 655 | # CONFIG_IGBVF is not set | ||
| 631 | # CONFIG_NS83820 is not set | 656 | # CONFIG_NS83820 is not set |
| 632 | # CONFIG_HAMACHI is not set | 657 | # CONFIG_HAMACHI is not set |
| 633 | # CONFIG_YELLOWFIN is not set | 658 | # CONFIG_YELLOWFIN is not set |
| @@ -639,10 +664,10 @@ CONFIG_NETDEV_1000=y | |||
| 639 | # CONFIG_TIGON3 is not set | 664 | # CONFIG_TIGON3 is not set |
| 640 | # CONFIG_BNX2 is not set | 665 | # CONFIG_BNX2 is not set |
| 641 | CONFIG_TSI108_ETH=y | 666 | CONFIG_TSI108_ETH=y |
| 642 | # CONFIG_MV643XX_ETH is not set | ||
| 643 | # CONFIG_QLA3XXX is not set | 667 | # CONFIG_QLA3XXX is not set |
| 644 | # CONFIG_ATL1 is not set | 668 | # CONFIG_ATL1 is not set |
| 645 | # CONFIG_ATL1E is not set | 669 | # CONFIG_ATL1E is not set |
| 670 | # CONFIG_ATL1C is not set | ||
| 646 | # CONFIG_JME is not set | 671 | # CONFIG_JME is not set |
| 647 | CONFIG_NETDEV_10000=y | 672 | CONFIG_NETDEV_10000=y |
| 648 | # CONFIG_CHELSIO_T1 is not set | 673 | # CONFIG_CHELSIO_T1 is not set |
| @@ -652,6 +677,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 652 | # CONFIG_IXGBE is not set | 677 | # CONFIG_IXGBE is not set |
| 653 | # CONFIG_IXGB is not set | 678 | # CONFIG_IXGB is not set |
| 654 | # CONFIG_S2IO is not set | 679 | # CONFIG_S2IO is not set |
| 680 | # CONFIG_VXGE is not set | ||
| 655 | # CONFIG_MYRI10GE is not set | 681 | # CONFIG_MYRI10GE is not set |
| 656 | # CONFIG_NETXEN_NIC is not set | 682 | # CONFIG_NETXEN_NIC is not set |
| 657 | # CONFIG_NIU is not set | 683 | # CONFIG_NIU is not set |
| @@ -661,6 +687,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 661 | # CONFIG_BNX2X is not set | 687 | # CONFIG_BNX2X is not set |
| 662 | # CONFIG_QLGE is not set | 688 | # CONFIG_QLGE is not set |
| 663 | # CONFIG_SFC is not set | 689 | # CONFIG_SFC is not set |
| 690 | # CONFIG_BE2NET is not set | ||
| 664 | # CONFIG_TR is not set | 691 | # CONFIG_TR is not set |
| 665 | 692 | ||
| 666 | # | 693 | # |
| @@ -668,7 +695,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 668 | # | 695 | # |
| 669 | # CONFIG_WLAN_PRE80211 is not set | 696 | # CONFIG_WLAN_PRE80211 is not set |
| 670 | # CONFIG_WLAN_80211 is not set | 697 | # CONFIG_WLAN_80211 is not set |
| 671 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 672 | 698 | ||
| 673 | # | 699 | # |
| 674 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 700 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -839,7 +865,6 @@ CONFIG_HID=y | |||
| 839 | # | 865 | # |
| 840 | # Special HID drivers | 866 | # Special HID drivers |
| 841 | # | 867 | # |
| 842 | CONFIG_HID_COMPAT=y | ||
| 843 | CONFIG_USB_SUPPORT=y | 868 | CONFIG_USB_SUPPORT=y |
| 844 | CONFIG_USB_ARCH_HAS_HCD=y | 869 | CONFIG_USB_ARCH_HAS_HCD=y |
| 845 | CONFIG_USB_ARCH_HAS_OHCI=y | 870 | CONFIG_USB_ARCH_HAS_OHCI=y |
| @@ -853,7 +878,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 853 | # | 878 | # |
| 854 | 879 | ||
| 855 | # | 880 | # |
| 856 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 881 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 857 | # | 882 | # |
| 858 | # CONFIG_USB_GADGET is not set | 883 | # CONFIG_USB_GADGET is not set |
| 859 | 884 | ||
| @@ -869,6 +894,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 869 | # CONFIG_EDAC is not set | 894 | # CONFIG_EDAC is not set |
| 870 | # CONFIG_RTC_CLASS is not set | 895 | # CONFIG_RTC_CLASS is not set |
| 871 | # CONFIG_DMADEVICES is not set | 896 | # CONFIG_DMADEVICES is not set |
| 897 | # CONFIG_AUXDISPLAY is not set | ||
| 872 | # CONFIG_UIO is not set | 898 | # CONFIG_UIO is not set |
| 873 | # CONFIG_STAGING is not set | 899 | # CONFIG_STAGING is not set |
| 874 | 900 | ||
| @@ -879,6 +905,7 @@ CONFIG_EXT2_FS=y | |||
| 879 | # CONFIG_EXT2_FS_XATTR is not set | 905 | # CONFIG_EXT2_FS_XATTR is not set |
| 880 | # CONFIG_EXT2_FS_XIP is not set | 906 | # CONFIG_EXT2_FS_XIP is not set |
| 881 | CONFIG_EXT3_FS=y | 907 | CONFIG_EXT3_FS=y |
| 908 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 882 | CONFIG_EXT3_FS_XATTR=y | 909 | CONFIG_EXT3_FS_XATTR=y |
| 883 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 910 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 884 | # CONFIG_EXT3_FS_SECURITY is not set | 911 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -902,6 +929,11 @@ CONFIG_INOTIFY_USER=y | |||
| 902 | # CONFIG_FUSE_FS is not set | 929 | # CONFIG_FUSE_FS is not set |
| 903 | 930 | ||
| 904 | # | 931 | # |
| 932 | # Caches | ||
| 933 | # | ||
| 934 | # CONFIG_FSCACHE is not set | ||
| 935 | |||
| 936 | # | ||
| 905 | # CD-ROM/DVD Filesystems | 937 | # CD-ROM/DVD Filesystems |
| 906 | # | 938 | # |
| 907 | # CONFIG_ISO9660_FS is not set | 939 | # CONFIG_ISO9660_FS is not set |
| @@ -944,6 +976,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 944 | # CONFIG_ROMFS_FS is not set | 976 | # CONFIG_ROMFS_FS is not set |
| 945 | # CONFIG_SYSV_FS is not set | 977 | # CONFIG_SYSV_FS is not set |
| 946 | # CONFIG_UFS_FS is not set | 978 | # CONFIG_UFS_FS is not set |
| 979 | # CONFIG_NILFS2_FS is not set | ||
| 947 | CONFIG_NETWORK_FILESYSTEMS=y | 980 | CONFIG_NETWORK_FILESYSTEMS=y |
| 948 | CONFIG_NFS_FS=y | 981 | CONFIG_NFS_FS=y |
| 949 | # CONFIG_NFS_V3 is not set | 982 | # CONFIG_NFS_V3 is not set |
| @@ -953,7 +986,6 @@ CONFIG_ROOT_NFS=y | |||
| 953 | CONFIG_LOCKD=y | 986 | CONFIG_LOCKD=y |
| 954 | CONFIG_NFS_COMMON=y | 987 | CONFIG_NFS_COMMON=y |
| 955 | CONFIG_SUNRPC=y | 988 | CONFIG_SUNRPC=y |
| 956 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 957 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 989 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 958 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 990 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 959 | # CONFIG_SMB_FS is not set | 991 | # CONFIG_SMB_FS is not set |
| @@ -985,6 +1017,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 985 | # CONFIG_SYSV68_PARTITION is not set | 1017 | # CONFIG_SYSV68_PARTITION is not set |
| 986 | # CONFIG_NLS is not set | 1018 | # CONFIG_NLS is not set |
| 987 | # CONFIG_DLM is not set | 1019 | # CONFIG_DLM is not set |
| 1020 | # CONFIG_BINARY_PRINTF is not set | ||
| 988 | 1021 | ||
| 989 | # | 1022 | # |
| 990 | # Library routines | 1023 | # Library routines |
| @@ -998,11 +1031,13 @@ CONFIG_CRC_T10DIF=y | |||
| 998 | CONFIG_CRC32=y | 1031 | CONFIG_CRC32=y |
| 999 | # CONFIG_CRC7 is not set | 1032 | # CONFIG_CRC7 is not set |
| 1000 | # CONFIG_LIBCRC32C is not set | 1033 | # CONFIG_LIBCRC32C is not set |
| 1001 | CONFIG_PLIST=y | 1034 | CONFIG_ZLIB_INFLATE=y |
| 1035 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1002 | CONFIG_HAS_IOMEM=y | 1036 | CONFIG_HAS_IOMEM=y |
| 1003 | CONFIG_HAS_IOPORT=y | 1037 | CONFIG_HAS_IOPORT=y |
| 1004 | CONFIG_HAS_DMA=y | 1038 | CONFIG_HAS_DMA=y |
| 1005 | CONFIG_HAVE_LMB=y | 1039 | CONFIG_HAVE_LMB=y |
| 1040 | CONFIG_NLATTR=y | ||
| 1006 | 1041 | ||
| 1007 | # | 1042 | # |
| 1008 | # Kernel hacking | 1043 | # Kernel hacking |
| @@ -1024,13 +1059,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1024 | # CONFIG_LATENCYTOP is not set | 1059 | # CONFIG_LATENCYTOP is not set |
| 1025 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1060 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1026 | CONFIG_HAVE_FUNCTION_TRACER=y | 1061 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1062 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1027 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1063 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1028 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1064 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1065 | CONFIG_TRACING_SUPPORT=y | ||
| 1029 | 1066 | ||
| 1030 | # | 1067 | # |
| 1031 | # Tracers | 1068 | # Tracers |
| 1032 | # | 1069 | # |
| 1033 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1070 | # CONFIG_FUNCTION_TRACER is not set |
| 1071 | # CONFIG_SCHED_TRACER is not set | ||
| 1072 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1073 | # CONFIG_EVENT_TRACER is not set | ||
| 1074 | # CONFIG_BOOT_TRACER is not set | ||
| 1075 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1076 | # CONFIG_STACK_TRACER is not set | ||
| 1077 | # CONFIG_KMEMTRACE is not set | ||
| 1078 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1079 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1034 | # CONFIG_SAMPLES is not set | 1080 | # CONFIG_SAMPLES is not set |
| 1035 | CONFIG_HAVE_ARCH_KGDB=y | 1081 | CONFIG_HAVE_ARCH_KGDB=y |
| 1036 | CONFIG_PRINT_STACK_DEPTH=64 | 1082 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1122,6 +1168,7 @@ CONFIG_CRYPTO=y | |||
| 1122 | # Compression | 1168 | # Compression |
| 1123 | # | 1169 | # |
| 1124 | # CONFIG_CRYPTO_DEFLATE is not set | 1170 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1171 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1125 | # CONFIG_CRYPTO_LZO is not set | 1172 | # CONFIG_CRYPTO_LZO is not set |
| 1126 | 1173 | ||
| 1127 | # | 1174 | # |
diff --git a/arch/powerpc/configs/mpc8272_ads_defconfig b/arch/powerpc/configs/mpc8272_ads_defconfig index d85a43cb821f..cb966ca2ce89 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:35 2009 | 4 | # Wed May 13 17:21:57 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| @@ -55,6 +56,7 @@ CONFIG_GENERIC_BUG=y | |||
| 55 | CONFIG_DEFAULT_UIMAGE=y | 56 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | # CONFIG_PPC_DCR_NATIVE is not set | 57 | # CONFIG_PPC_DCR_NATIVE is not set |
| 57 | # CONFIG_PPC_DCR_MMIO is not set | 58 | # CONFIG_PPC_DCR_MMIO is not set |
| 59 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 58 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 59 | 61 | ||
| 60 | # | 62 | # |
| @@ -71,6 +73,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 71 | # CONFIG_BSD_PROCESS_ACCT is not set | 73 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 72 | # CONFIG_TASKSTATS is not set | 74 | # CONFIG_TASKSTATS is not set |
| 73 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
| 76 | |||
| 77 | # | ||
| 78 | # RCU Subsystem | ||
| 79 | # | ||
| 80 | CONFIG_CLASSIC_RCU=y | ||
| 81 | # CONFIG_TREE_RCU is not set | ||
| 82 | # CONFIG_PREEMPT_RCU is not set | ||
| 83 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 84 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 74 | CONFIG_IKCONFIG=y | 85 | CONFIG_IKCONFIG=y |
| 75 | CONFIG_IKCONFIG_PROC=y | 86 | CONFIG_IKCONFIG_PROC=y |
| 76 | CONFIG_LOG_BUF_SHIFT=14 | 87 | CONFIG_LOG_BUF_SHIFT=14 |
| @@ -82,20 +93,19 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 82 | # CONFIG_BLK_DEV_INITRD is not set | 93 | # CONFIG_BLK_DEV_INITRD is not set |
| 83 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 94 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 84 | CONFIG_SYSCTL=y | 95 | CONFIG_SYSCTL=y |
| 96 | CONFIG_ANON_INODES=y | ||
| 85 | CONFIG_EMBEDDED=y | 97 | CONFIG_EMBEDDED=y |
| 86 | CONFIG_SYSCTL_SYSCALL=y | 98 | CONFIG_SYSCTL_SYSCALL=y |
| 87 | CONFIG_KALLSYMS=y | 99 | CONFIG_KALLSYMS=y |
| 88 | CONFIG_KALLSYMS_ALL=y | 100 | CONFIG_KALLSYMS_ALL=y |
| 89 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 90 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 101 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 102 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 91 | CONFIG_HOTPLUG=y | 103 | CONFIG_HOTPLUG=y |
| 92 | CONFIG_PRINTK=y | 104 | CONFIG_PRINTK=y |
| 93 | CONFIG_BUG=y | 105 | CONFIG_BUG=y |
| 94 | CONFIG_ELF_CORE=y | 106 | CONFIG_ELF_CORE=y |
| 95 | CONFIG_COMPAT_BRK=y | ||
| 96 | CONFIG_BASE_FULL=y | 107 | CONFIG_BASE_FULL=y |
| 97 | CONFIG_FUTEX=y | 108 | CONFIG_FUTEX=y |
| 98 | CONFIG_ANON_INODES=y | ||
| 99 | CONFIG_EPOLL=y | 109 | CONFIG_EPOLL=y |
| 100 | CONFIG_SIGNALFD=y | 110 | CONFIG_SIGNALFD=y |
| 101 | CONFIG_TIMERFD=y | 111 | CONFIG_TIMERFD=y |
| @@ -105,10 +115,12 @@ CONFIG_AIO=y | |||
| 105 | CONFIG_VM_EVENT_COUNTERS=y | 115 | CONFIG_VM_EVENT_COUNTERS=y |
| 106 | CONFIG_PCI_QUIRKS=y | 116 | CONFIG_PCI_QUIRKS=y |
| 107 | CONFIG_SLUB_DEBUG=y | 117 | CONFIG_SLUB_DEBUG=y |
| 118 | CONFIG_COMPAT_BRK=y | ||
| 108 | # CONFIG_SLAB is not set | 119 | # CONFIG_SLAB is not set |
| 109 | CONFIG_SLUB=y | 120 | CONFIG_SLUB=y |
| 110 | # CONFIG_SLOB is not set | 121 | # CONFIG_SLOB is not set |
| 111 | # CONFIG_PROFILING is not set | 122 | # CONFIG_PROFILING is not set |
| 123 | # CONFIG_MARKERS is not set | ||
| 112 | CONFIG_HAVE_OPROFILE=y | 124 | CONFIG_HAVE_OPROFILE=y |
| 113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 125 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 114 | CONFIG_HAVE_IOREMAP_PROT=y | 126 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -116,6 +128,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 116 | CONFIG_HAVE_KRETPROBES=y | 128 | CONFIG_HAVE_KRETPROBES=y |
| 117 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 129 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 118 | CONFIG_HAVE_CLK=y | 130 | CONFIG_HAVE_CLK=y |
| 131 | # CONFIG_SLOW_WORK is not set | ||
| 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 132 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 120 | CONFIG_SLABINFO=y | 133 | CONFIG_SLABINFO=y |
| 121 | CONFIG_RT_MUTEXES=y | 134 | CONFIG_RT_MUTEXES=y |
| @@ -123,7 +136,6 @@ CONFIG_BASE_SMALL=0 | |||
| 123 | # CONFIG_MODULES is not set | 136 | # CONFIG_MODULES is not set |
| 124 | CONFIG_BLOCK=y | 137 | CONFIG_BLOCK=y |
| 125 | # CONFIG_LBD is not set | 138 | # CONFIG_LBD is not set |
| 126 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 127 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 128 | 140 | ||
| 129 | # | 141 | # |
| @@ -138,18 +150,11 @@ CONFIG_DEFAULT_AS=y | |||
| 138 | # CONFIG_DEFAULT_CFQ is not set | 150 | # CONFIG_DEFAULT_CFQ is not set |
| 139 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
| 140 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 152 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 141 | CONFIG_CLASSIC_RCU=y | ||
| 142 | # CONFIG_TREE_RCU is not set | ||
| 143 | # CONFIG_PREEMPT_RCU is not set | ||
| 144 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 145 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 146 | # CONFIG_FREEZER is not set | 153 | # CONFIG_FREEZER is not set |
| 147 | 154 | ||
| 148 | # | 155 | # |
| 149 | # Platform support | 156 | # Platform support |
| 150 | # | 157 | # |
| 151 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 152 | CONFIG_CLASSIC32=y | ||
| 153 | # CONFIG_PPC_CHRP is not set | 158 | # CONFIG_PPC_CHRP is not set |
| 154 | # CONFIG_MPC5121_ADS is not set | 159 | # CONFIG_MPC5121_ADS is not set |
| 155 | # CONFIG_MPC5121_GENERIC is not set | 160 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -169,6 +174,8 @@ CONFIG_PQ2_ADS_PCI_PIC=y | |||
| 169 | # CONFIG_PPC_83xx is not set | 174 | # CONFIG_PPC_83xx is not set |
| 170 | # CONFIG_PPC_86xx is not set | 175 | # CONFIG_PPC_86xx is not set |
| 171 | # CONFIG_EMBEDDED6xx is not set | 176 | # CONFIG_EMBEDDED6xx is not set |
| 177 | # CONFIG_AMIGAONE is not set | ||
| 178 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 172 | # CONFIG_IPIC is not set | 179 | # CONFIG_IPIC is not set |
| 173 | # CONFIG_MPIC is not set | 180 | # CONFIG_MPIC is not set |
| 174 | # CONFIG_MPIC_WEIRD is not set | 181 | # CONFIG_MPIC_WEIRD is not set |
| @@ -225,9 +232,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 225 | CONFIG_BOUNCE=y | 232 | CONFIG_BOUNCE=y |
| 226 | CONFIG_VIRT_TO_BUS=y | 233 | CONFIG_VIRT_TO_BUS=y |
| 227 | CONFIG_UNEVICTABLE_LRU=y | 234 | CONFIG_UNEVICTABLE_LRU=y |
| 235 | CONFIG_HAVE_MLOCK=y | ||
| 236 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 228 | CONFIG_PPC_4K_PAGES=y | 237 | CONFIG_PPC_4K_PAGES=y |
| 229 | # CONFIG_PPC_16K_PAGES is not set | 238 | # CONFIG_PPC_16K_PAGES is not set |
| 230 | # CONFIG_PPC_64K_PAGES is not set | 239 | # CONFIG_PPC_64K_PAGES is not set |
| 240 | # CONFIG_PPC_256K_PAGES is not set | ||
| 231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 241 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 232 | CONFIG_PROC_DEVICETREE=y | 242 | CONFIG_PROC_DEVICETREE=y |
| 233 | # CONFIG_CMDLINE_BOOL is not set | 243 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -253,6 +263,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 253 | # CONFIG_PCI_LEGACY is not set | 263 | # CONFIG_PCI_LEGACY is not set |
| 254 | # CONFIG_PCI_DEBUG is not set | 264 | # CONFIG_PCI_DEBUG is not set |
| 255 | # CONFIG_PCI_STUB is not set | 265 | # CONFIG_PCI_STUB is not set |
| 266 | # CONFIG_PCI_IOV is not set | ||
| 256 | # CONFIG_PCCARD is not set | 267 | # CONFIG_PCCARD is not set |
| 257 | # CONFIG_HOTPLUG_PCI is not set | 268 | # CONFIG_HOTPLUG_PCI is not set |
| 258 | # CONFIG_HAS_RAPIDIO is not set | 269 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -275,7 +286,6 @@ CONFIG_NET=y | |||
| 275 | # | 286 | # |
| 276 | # Networking options | 287 | # Networking options |
| 277 | # | 288 | # |
| 278 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 279 | CONFIG_PACKET=y | 289 | CONFIG_PACKET=y |
| 280 | # CONFIG_PACKET_MMAP is not set | 290 | # CONFIG_PACKET_MMAP is not set |
| 281 | CONFIG_UNIX=y | 291 | CONFIG_UNIX=y |
| @@ -356,6 +366,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
| 356 | # CONFIG_LLC2 is not set | 366 | # CONFIG_LLC2 is not set |
| 357 | # CONFIG_IPX is not set | 367 | # CONFIG_IPX is not set |
| 358 | # CONFIG_ATALK is not set | 368 | # CONFIG_ATALK is not set |
| 369 | # CONFIG_PHONET is not set | ||
| 359 | # CONFIG_NET_SCHED is not set | 370 | # CONFIG_NET_SCHED is not set |
| 360 | # CONFIG_DCB is not set | 371 | # CONFIG_DCB is not set |
| 361 | 372 | ||
| @@ -367,7 +378,6 @@ CONFIG_NETFILTER_ADVANCED=y | |||
| 367 | # CONFIG_CAN is not set | 378 | # CONFIG_CAN is not set |
| 368 | # CONFIG_IRDA is not set | 379 | # CONFIG_IRDA is not set |
| 369 | # CONFIG_BT is not set | 380 | # CONFIG_BT is not set |
| 370 | # CONFIG_PHONET is not set | ||
| 371 | CONFIG_WIRELESS=y | 381 | CONFIG_WIRELESS=y |
| 372 | # CONFIG_CFG80211 is not set | 382 | # CONFIG_CFG80211 is not set |
| 373 | CONFIG_WIRELESS_OLD_REGULATORY=y | 383 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -472,7 +482,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 472 | # LPDDR flash memory drivers | 482 | # LPDDR flash memory drivers |
| 473 | # | 483 | # |
| 474 | # CONFIG_MTD_LPDDR is not set | 484 | # CONFIG_MTD_LPDDR is not set |
| 475 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 476 | 485 | ||
| 477 | # | 486 | # |
| 478 | # UBI - Unsorted block images | 487 | # UBI - Unsorted block images |
| @@ -521,6 +530,7 @@ CONFIG_HAVE_IDE=y | |||
| 521 | # CONFIG_I2O is not set | 530 | # CONFIG_I2O is not set |
| 522 | # CONFIG_MACINTOSH_DRIVERS is not set | 531 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 523 | CONFIG_NETDEVICES=y | 532 | CONFIG_NETDEVICES=y |
| 533 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 524 | # CONFIG_DUMMY is not set | 534 | # CONFIG_DUMMY is not set |
| 525 | # CONFIG_BONDING is not set | 535 | # CONFIG_BONDING is not set |
| 526 | # CONFIG_EQUALIZER is not set | 536 | # CONFIG_EQUALIZER is not set |
| @@ -554,6 +564,8 @@ CONFIG_MII=y | |||
| 554 | # CONFIG_SUNGEM is not set | 564 | # CONFIG_SUNGEM is not set |
| 555 | # CONFIG_CASSINI is not set | 565 | # CONFIG_CASSINI is not set |
| 556 | # CONFIG_NET_VENDOR_3COM is not set | 566 | # CONFIG_NET_VENDOR_3COM is not set |
| 567 | # CONFIG_ETHOC is not set | ||
| 568 | # CONFIG_DNET is not set | ||
| 557 | # CONFIG_NET_TULIP is not set | 569 | # CONFIG_NET_TULIP is not set |
| 558 | # CONFIG_HP100 is not set | 570 | # CONFIG_HP100 is not set |
| 559 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 571 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -576,6 +588,7 @@ CONFIG_NETDEV_1000=y | |||
| 576 | # CONFIG_E1000 is not set | 588 | # CONFIG_E1000 is not set |
| 577 | # CONFIG_E1000E is not set | 589 | # CONFIG_E1000E is not set |
| 578 | # CONFIG_IGB is not set | 590 | # CONFIG_IGB is not set |
| 591 | # CONFIG_IGBVF is not set | ||
| 579 | # CONFIG_NS83820 is not set | 592 | # CONFIG_NS83820 is not set |
| 580 | # CONFIG_HAMACHI is not set | 593 | # CONFIG_HAMACHI is not set |
| 581 | # CONFIG_R8169 is not set | 594 | # CONFIG_R8169 is not set |
| @@ -585,8 +598,8 @@ CONFIG_NETDEV_1000=y | |||
| 585 | # CONFIG_VIA_VELOCITY is not set | 598 | # CONFIG_VIA_VELOCITY is not set |
| 586 | # CONFIG_TIGON3 is not set | 599 | # CONFIG_TIGON3 is not set |
| 587 | # CONFIG_BNX2 is not set | 600 | # CONFIG_BNX2 is not set |
| 601 | # CONFIG_FSL_PQ_MDIO is not set | ||
| 588 | # CONFIG_GIANFAR is not set | 602 | # CONFIG_GIANFAR is not set |
| 589 | # CONFIG_MV643XX_ETH is not set | ||
| 590 | # CONFIG_QLA3XXX is not set | 603 | # CONFIG_QLA3XXX is not set |
| 591 | # CONFIG_ATL1 is not set | 604 | # CONFIG_ATL1 is not set |
| 592 | # CONFIG_JME is not set | 605 | # CONFIG_JME is not set |
| @@ -598,6 +611,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 598 | # CONFIG_IXGBE is not set | 611 | # CONFIG_IXGBE is not set |
| 599 | # CONFIG_IXGB is not set | 612 | # CONFIG_IXGB is not set |
| 600 | # CONFIG_S2IO is not set | 613 | # CONFIG_S2IO is not set |
| 614 | # CONFIG_VXGE is not set | ||
| 601 | # CONFIG_MYRI10GE is not set | 615 | # CONFIG_MYRI10GE is not set |
| 602 | # CONFIG_NETXEN_NIC is not set | 616 | # CONFIG_NETXEN_NIC is not set |
| 603 | # CONFIG_NIU is not set | 617 | # CONFIG_NIU is not set |
| @@ -607,6 +621,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 607 | # CONFIG_BNX2X is not set | 621 | # CONFIG_BNX2X is not set |
| 608 | # CONFIG_QLGE is not set | 622 | # CONFIG_QLGE is not set |
| 609 | # CONFIG_SFC is not set | 623 | # CONFIG_SFC is not set |
| 624 | # CONFIG_BE2NET is not set | ||
| 610 | # CONFIG_TR is not set | 625 | # CONFIG_TR is not set |
| 611 | 626 | ||
| 612 | # | 627 | # |
| @@ -614,7 +629,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 614 | # | 629 | # |
| 615 | # CONFIG_WLAN_PRE80211 is not set | 630 | # CONFIG_WLAN_PRE80211 is not set |
| 616 | # CONFIG_WLAN_80211 is not set | 631 | # CONFIG_WLAN_80211 is not set |
| 617 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 618 | 632 | ||
| 619 | # | 633 | # |
| 620 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 634 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -668,7 +682,6 @@ CONFIG_MOUSE_PS2=y | |||
| 668 | CONFIG_MOUSE_PS2_ALPS=y | 682 | CONFIG_MOUSE_PS2_ALPS=y |
| 669 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 683 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
| 670 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 684 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
| 671 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
| 672 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 685 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
| 673 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 686 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
| 674 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 687 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| @@ -719,6 +732,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 719 | CONFIG_LEGACY_PTY_COUNT=256 | 732 | CONFIG_LEGACY_PTY_COUNT=256 |
| 720 | # CONFIG_IPMI_HANDLER is not set | 733 | # CONFIG_IPMI_HANDLER is not set |
| 721 | CONFIG_HW_RANDOM=y | 734 | CONFIG_HW_RANDOM=y |
| 735 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 722 | # CONFIG_NVRAM is not set | 736 | # CONFIG_NVRAM is not set |
| 723 | # CONFIG_GEN_RTC is not set | 737 | # CONFIG_GEN_RTC is not set |
| 724 | # CONFIG_R3964 is not set | 738 | # CONFIG_R3964 is not set |
| @@ -809,8 +823,10 @@ CONFIG_DAB=y | |||
| 809 | # CONFIG_NEW_LEDS is not set | 823 | # CONFIG_NEW_LEDS is not set |
| 810 | # CONFIG_ACCESSIBILITY is not set | 824 | # CONFIG_ACCESSIBILITY is not set |
| 811 | # CONFIG_INFINIBAND is not set | 825 | # CONFIG_INFINIBAND is not set |
| 826 | # CONFIG_EDAC is not set | ||
| 812 | # CONFIG_RTC_CLASS is not set | 827 | # CONFIG_RTC_CLASS is not set |
| 813 | # CONFIG_DMADEVICES is not set | 828 | # CONFIG_DMADEVICES is not set |
| 829 | # CONFIG_AUXDISPLAY is not set | ||
| 814 | # CONFIG_UIO is not set | 830 | # CONFIG_UIO is not set |
| 815 | # CONFIG_STAGING is not set | 831 | # CONFIG_STAGING is not set |
| 816 | 832 | ||
| @@ -821,6 +837,7 @@ CONFIG_EXT2_FS=y | |||
| 821 | # CONFIG_EXT2_FS_XATTR is not set | 837 | # CONFIG_EXT2_FS_XATTR is not set |
| 822 | # CONFIG_EXT2_FS_XIP is not set | 838 | # CONFIG_EXT2_FS_XIP is not set |
| 823 | CONFIG_EXT3_FS=y | 839 | CONFIG_EXT3_FS=y |
| 840 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 824 | CONFIG_EXT3_FS_XATTR=y | 841 | CONFIG_EXT3_FS_XATTR=y |
| 825 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 842 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 826 | # CONFIG_EXT3_FS_SECURITY is not set | 843 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -842,6 +859,10 @@ CONFIG_AUTOFS4_FS=y | |||
| 842 | # CONFIG_FUSE_FS is not set | 859 | # CONFIG_FUSE_FS is not set |
| 843 | 860 | ||
| 844 | # | 861 | # |
| 862 | # Caches | ||
| 863 | # | ||
| 864 | |||
| 865 | # | ||
| 845 | # CD-ROM/DVD Filesystems | 866 | # CD-ROM/DVD Filesystems |
| 846 | # | 867 | # |
| 847 | # CONFIG_ISO9660_FS is not set | 868 | # CONFIG_ISO9660_FS is not set |
| @@ -956,6 +977,7 @@ CONFIG_NLS_ISO8859_1=y | |||
| 956 | # CONFIG_NLS_KOI8_R is not set | 977 | # CONFIG_NLS_KOI8_R is not set |
| 957 | # CONFIG_NLS_KOI8_U is not set | 978 | # CONFIG_NLS_KOI8_U is not set |
| 958 | CONFIG_NLS_UTF8=y | 979 | CONFIG_NLS_UTF8=y |
| 980 | # CONFIG_BINARY_PRINTF is not set | ||
| 959 | 981 | ||
| 960 | # | 982 | # |
| 961 | # Library routines | 983 | # Library routines |
| @@ -971,11 +993,11 @@ CONFIG_CRC32=y | |||
| 971 | # CONFIG_LIBCRC32C is not set | 993 | # CONFIG_LIBCRC32C is not set |
| 972 | CONFIG_ZLIB_INFLATE=y | 994 | CONFIG_ZLIB_INFLATE=y |
| 973 | CONFIG_ZLIB_DEFLATE=y | 995 | CONFIG_ZLIB_DEFLATE=y |
| 974 | CONFIG_PLIST=y | ||
| 975 | CONFIG_HAS_IOMEM=y | 996 | CONFIG_HAS_IOMEM=y |
| 976 | CONFIG_HAS_IOPORT=y | 997 | CONFIG_HAS_IOPORT=y |
| 977 | CONFIG_HAS_DMA=y | 998 | CONFIG_HAS_DMA=y |
| 978 | CONFIG_HAVE_LMB=y | 999 | CONFIG_HAVE_LMB=y |
| 1000 | CONFIG_NLATTR=y | ||
| 979 | 1001 | ||
| 980 | # | 1002 | # |
| 981 | # Kernel hacking | 1003 | # Kernel hacking |
| @@ -993,6 +1015,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 993 | CONFIG_DETECT_SOFTLOCKUP=y | 1015 | CONFIG_DETECT_SOFTLOCKUP=y |
| 994 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1016 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 995 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1017 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1018 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1019 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1020 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 996 | CONFIG_SCHED_DEBUG=y | 1021 | CONFIG_SCHED_DEBUG=y |
| 997 | # CONFIG_SCHEDSTATS is not set | 1022 | # CONFIG_SCHEDSTATS is not set |
| 998 | # CONFIG_TIMER_STATS is not set | 1023 | # CONFIG_TIMER_STATS is not set |
| @@ -1022,9 +1047,12 @@ CONFIG_DEBUG_INFO=y | |||
| 1022 | # CONFIG_FAULT_INJECTION is not set | 1047 | # CONFIG_FAULT_INJECTION is not set |
| 1023 | # CONFIG_LATENCYTOP is not set | 1048 | # CONFIG_LATENCYTOP is not set |
| 1024 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1049 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1050 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1025 | CONFIG_HAVE_FUNCTION_TRACER=y | 1051 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1052 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1026 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1053 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1027 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1054 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1055 | CONFIG_TRACING_SUPPORT=y | ||
| 1028 | 1056 | ||
| 1029 | # | 1057 | # |
| 1030 | # Tracers | 1058 | # Tracers |
| @@ -1032,16 +1060,18 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1032 | # CONFIG_FUNCTION_TRACER is not set | 1060 | # CONFIG_FUNCTION_TRACER is not set |
| 1033 | # CONFIG_SCHED_TRACER is not set | 1061 | # CONFIG_SCHED_TRACER is not set |
| 1034 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1062 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1063 | # CONFIG_EVENT_TRACER is not set | ||
| 1035 | # CONFIG_BOOT_TRACER is not set | 1064 | # CONFIG_BOOT_TRACER is not set |
| 1036 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1065 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1037 | # CONFIG_STACK_TRACER is not set | 1066 | # CONFIG_STACK_TRACER is not set |
| 1038 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1067 | # CONFIG_KMEMTRACE is not set |
| 1068 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1069 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1039 | # CONFIG_SAMPLES is not set | 1070 | # CONFIG_SAMPLES is not set |
| 1040 | CONFIG_HAVE_ARCH_KGDB=y | 1071 | CONFIG_HAVE_ARCH_KGDB=y |
| 1041 | CONFIG_PRINT_STACK_DEPTH=64 | 1072 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1042 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1073 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1043 | # CONFIG_DEBUG_STACK_USAGE is not set | 1074 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1044 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1045 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1075 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1046 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1076 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1047 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1077 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1072,9 +1102,11 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1072 | CONFIG_CRYPTO_HASH=y | 1102 | CONFIG_CRYPTO_HASH=y |
| 1073 | CONFIG_CRYPTO_HASH2=y | 1103 | CONFIG_CRYPTO_HASH2=y |
| 1074 | CONFIG_CRYPTO_RNG2=y | 1104 | CONFIG_CRYPTO_RNG2=y |
| 1105 | CONFIG_CRYPTO_PCOMP=y | ||
| 1075 | CONFIG_CRYPTO_MANAGER=y | 1106 | CONFIG_CRYPTO_MANAGER=y |
| 1076 | CONFIG_CRYPTO_MANAGER2=y | 1107 | CONFIG_CRYPTO_MANAGER2=y |
| 1077 | # CONFIG_CRYPTO_NULL is not set | 1108 | # CONFIG_CRYPTO_NULL is not set |
| 1109 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1078 | # CONFIG_CRYPTO_CRYPTD is not set | 1110 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1079 | # CONFIG_CRYPTO_AUTHENC is not set | 1111 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1080 | 1112 | ||
| @@ -1138,6 +1170,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1138 | # Compression | 1170 | # Compression |
| 1139 | # | 1171 | # |
| 1140 | # CONFIG_CRYPTO_DEFLATE is not set | 1172 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1173 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1141 | # CONFIG_CRYPTO_LZO is not set | 1174 | # CONFIG_CRYPTO_LZO is not set |
| 1142 | 1175 | ||
| 1143 | # | 1176 | # |
diff --git a/arch/powerpc/configs/mpc83xx_defconfig b/arch/powerpc/configs/mpc83xx_defconfig index 45f03cad8db6..433c303eb82b 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:36 2009 | 4 | # Wed May 13 17:21:58 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_FSL_EMB_PERFMON is not set | 19 | # CONFIG_FSL_EMB_PERFMON is not set |
| 19 | # CONFIG_ALTIVEC is not set | 20 | # CONFIG_ALTIVEC is not set |
| @@ -58,6 +59,7 @@ CONFIG_REDBOOT=y | |||
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 59 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 59 | # CONFIG_PPC_DCR_NATIVE is not set | 60 | # CONFIG_PPC_DCR_NATIVE is not set |
| 60 | # CONFIG_PPC_DCR_MMIO is not set | 61 | # CONFIG_PPC_DCR_MMIO is not set |
| 62 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 63 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 62 | 64 | ||
| 63 | # | 65 | # |
| @@ -75,6 +77,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 75 | # CONFIG_BSD_PROCESS_ACCT is not set | 77 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 76 | # CONFIG_TASKSTATS is not set | 78 | # CONFIG_TASKSTATS is not set |
| 77 | # CONFIG_AUDIT is not set | 79 | # CONFIG_AUDIT is not set |
| 80 | |||
| 81 | # | ||
| 82 | # RCU Subsystem | ||
| 83 | # | ||
| 84 | CONFIG_CLASSIC_RCU=y | ||
| 85 | # CONFIG_TREE_RCU is not set | ||
| 86 | # CONFIG_PREEMPT_RCU is not set | ||
| 87 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 88 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 78 | # CONFIG_IKCONFIG is not set | 89 | # CONFIG_IKCONFIG is not set |
| 79 | CONFIG_LOG_BUF_SHIFT=14 | 90 | CONFIG_LOG_BUF_SHIFT=14 |
| 80 | CONFIG_GROUP_SCHED=y | 91 | CONFIG_GROUP_SCHED=y |
| @@ -89,20 +100,23 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 89 | # CONFIG_NAMESPACES is not set | 100 | # CONFIG_NAMESPACES is not set |
| 90 | CONFIG_BLK_DEV_INITRD=y | 101 | CONFIG_BLK_DEV_INITRD=y |
| 91 | CONFIG_INITRAMFS_SOURCE="" | 102 | CONFIG_INITRAMFS_SOURCE="" |
| 103 | CONFIG_RD_GZIP=y | ||
| 104 | # CONFIG_RD_BZIP2 is not set | ||
| 105 | # CONFIG_RD_LZMA is not set | ||
| 92 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 106 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 93 | CONFIG_SYSCTL=y | 107 | CONFIG_SYSCTL=y |
| 108 | CONFIG_ANON_INODES=y | ||
| 94 | CONFIG_EMBEDDED=y | 109 | CONFIG_EMBEDDED=y |
| 95 | CONFIG_SYSCTL_SYSCALL=y | 110 | CONFIG_SYSCTL_SYSCALL=y |
| 96 | CONFIG_KALLSYMS=y | 111 | CONFIG_KALLSYMS=y |
| 97 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 112 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 113 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 98 | CONFIG_HOTPLUG=y | 114 | CONFIG_HOTPLUG=y |
| 99 | CONFIG_PRINTK=y | 115 | CONFIG_PRINTK=y |
| 100 | CONFIG_BUG=y | 116 | CONFIG_BUG=y |
| 101 | CONFIG_ELF_CORE=y | 117 | CONFIG_ELF_CORE=y |
| 102 | CONFIG_COMPAT_BRK=y | ||
| 103 | CONFIG_BASE_FULL=y | 118 | CONFIG_BASE_FULL=y |
| 104 | CONFIG_FUTEX=y | 119 | CONFIG_FUTEX=y |
| 105 | CONFIG_ANON_INODES=y | ||
| 106 | # CONFIG_EPOLL is not set | 120 | # CONFIG_EPOLL is not set |
| 107 | CONFIG_SIGNALFD=y | 121 | CONFIG_SIGNALFD=y |
| 108 | CONFIG_TIMERFD=y | 122 | CONFIG_TIMERFD=y |
| @@ -111,10 +125,12 @@ CONFIG_SHMEM=y | |||
| 111 | CONFIG_AIO=y | 125 | CONFIG_AIO=y |
| 112 | CONFIG_VM_EVENT_COUNTERS=y | 126 | CONFIG_VM_EVENT_COUNTERS=y |
| 113 | CONFIG_PCI_QUIRKS=y | 127 | CONFIG_PCI_QUIRKS=y |
| 128 | CONFIG_COMPAT_BRK=y | ||
| 114 | CONFIG_SLAB=y | 129 | CONFIG_SLAB=y |
| 115 | # CONFIG_SLUB is not set | 130 | # CONFIG_SLUB is not set |
| 116 | # CONFIG_SLOB is not set | 131 | # CONFIG_SLOB is not set |
| 117 | # CONFIG_PROFILING is not set | 132 | # CONFIG_PROFILING is not set |
| 133 | # CONFIG_MARKERS is not set | ||
| 118 | CONFIG_HAVE_OPROFILE=y | 134 | CONFIG_HAVE_OPROFILE=y |
| 119 | # CONFIG_KPROBES is not set | 135 | # CONFIG_KPROBES is not set |
| 120 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 136 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -122,6 +138,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
| 122 | CONFIG_HAVE_KPROBES=y | 138 | CONFIG_HAVE_KPROBES=y |
| 123 | CONFIG_HAVE_KRETPROBES=y | 139 | CONFIG_HAVE_KRETPROBES=y |
| 124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 140 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 141 | # CONFIG_SLOW_WORK is not set | ||
| 125 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 142 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 126 | CONFIG_SLABINFO=y | 143 | CONFIG_SLABINFO=y |
| 127 | CONFIG_RT_MUTEXES=y | 144 | CONFIG_RT_MUTEXES=y |
| @@ -134,7 +151,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 134 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 151 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 135 | CONFIG_BLOCK=y | 152 | CONFIG_BLOCK=y |
| 136 | # CONFIG_LBD is not set | 153 | # CONFIG_LBD is not set |
| 137 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 138 | # CONFIG_BLK_DEV_BSG is not set | 154 | # CONFIG_BLK_DEV_BSG is not set |
| 139 | # CONFIG_BLK_DEV_INTEGRITY is not set | 155 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 140 | 156 | ||
| @@ -150,18 +166,11 @@ CONFIG_DEFAULT_AS=y | |||
| 150 | # CONFIG_DEFAULT_CFQ is not set | 166 | # CONFIG_DEFAULT_CFQ is not set |
| 151 | # CONFIG_DEFAULT_NOOP is not set | 167 | # CONFIG_DEFAULT_NOOP is not set |
| 152 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 168 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 153 | CONFIG_CLASSIC_RCU=y | ||
| 154 | # CONFIG_TREE_RCU is not set | ||
| 155 | # CONFIG_PREEMPT_RCU is not set | ||
| 156 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 157 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 158 | # CONFIG_FREEZER is not set | 169 | # CONFIG_FREEZER is not set |
| 159 | 170 | ||
| 160 | # | 171 | # |
| 161 | # Platform support | 172 | # Platform support |
| 162 | # | 173 | # |
| 163 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 164 | CONFIG_CLASSIC32=y | ||
| 165 | # CONFIG_PPC_CHRP is not set | 174 | # CONFIG_PPC_CHRP is not set |
| 166 | # CONFIG_MPC5121_ADS is not set | 175 | # CONFIG_MPC5121_ADS is not set |
| 167 | # CONFIG_MPC5121_GENERIC is not set | 176 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -189,6 +198,8 @@ CONFIG_PPC_MPC834x=y | |||
| 189 | CONFIG_PPC_MPC837x=y | 198 | CONFIG_PPC_MPC837x=y |
| 190 | # CONFIG_PPC_86xx is not set | 199 | # CONFIG_PPC_86xx is not set |
| 191 | # CONFIG_EMBEDDED6xx is not set | 200 | # CONFIG_EMBEDDED6xx is not set |
| 201 | # CONFIG_AMIGAONE is not set | ||
| 202 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 192 | CONFIG_IPIC=y | 203 | CONFIG_IPIC=y |
| 193 | # CONFIG_MPIC is not set | 204 | # CONFIG_MPIC is not set |
| 194 | # CONFIG_MPIC_WEIRD is not set | 205 | # CONFIG_MPIC_WEIRD is not set |
| @@ -251,9 +262,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 251 | CONFIG_BOUNCE=y | 262 | CONFIG_BOUNCE=y |
| 252 | CONFIG_VIRT_TO_BUS=y | 263 | CONFIG_VIRT_TO_BUS=y |
| 253 | CONFIG_UNEVICTABLE_LRU=y | 264 | CONFIG_UNEVICTABLE_LRU=y |
| 265 | CONFIG_HAVE_MLOCK=y | ||
| 266 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 254 | CONFIG_PPC_4K_PAGES=y | 267 | CONFIG_PPC_4K_PAGES=y |
| 255 | # CONFIG_PPC_16K_PAGES is not set | 268 | # CONFIG_PPC_16K_PAGES is not set |
| 256 | # CONFIG_PPC_64K_PAGES is not set | 269 | # CONFIG_PPC_64K_PAGES is not set |
| 270 | # CONFIG_PPC_256K_PAGES is not set | ||
| 257 | CONFIG_FORCE_MAX_ZONEORDER=11 | 271 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 258 | CONFIG_PROC_DEVICETREE=y | 272 | CONFIG_PROC_DEVICETREE=y |
| 259 | # CONFIG_CMDLINE_BOOL is not set | 273 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -281,6 +295,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 281 | # CONFIG_PCI_MSI is not set | 295 | # CONFIG_PCI_MSI is not set |
| 282 | # CONFIG_PCI_LEGACY is not set | 296 | # CONFIG_PCI_LEGACY is not set |
| 283 | # CONFIG_PCI_STUB is not set | 297 | # CONFIG_PCI_STUB is not set |
| 298 | # CONFIG_PCI_IOV is not set | ||
| 284 | # CONFIG_PCCARD is not set | 299 | # CONFIG_PCCARD is not set |
| 285 | # CONFIG_HOTPLUG_PCI is not set | 300 | # CONFIG_HOTPLUG_PCI is not set |
| 286 | # CONFIG_HAS_RAPIDIO is not set | 301 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -303,7 +318,6 @@ CONFIG_NET=y | |||
| 303 | # | 318 | # |
| 304 | # Networking options | 319 | # Networking options |
| 305 | # | 320 | # |
| 306 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 307 | CONFIG_PACKET=y | 321 | CONFIG_PACKET=y |
| 308 | # CONFIG_PACKET_MMAP is not set | 322 | # CONFIG_PACKET_MMAP is not set |
| 309 | CONFIG_UNIX=y | 323 | CONFIG_UNIX=y |
| @@ -359,6 +373,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 359 | # CONFIG_LAPB is not set | 373 | # CONFIG_LAPB is not set |
| 360 | # CONFIG_ECONET is not set | 374 | # CONFIG_ECONET is not set |
| 361 | # CONFIG_WAN_ROUTER is not set | 375 | # CONFIG_WAN_ROUTER is not set |
| 376 | # CONFIG_PHONET is not set | ||
| 362 | # CONFIG_NET_SCHED is not set | 377 | # CONFIG_NET_SCHED is not set |
| 363 | # CONFIG_DCB is not set | 378 | # CONFIG_DCB is not set |
| 364 | 379 | ||
| @@ -371,7 +386,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 371 | # CONFIG_IRDA is not set | 386 | # CONFIG_IRDA is not set |
| 372 | # CONFIG_BT is not set | 387 | # CONFIG_BT is not set |
| 373 | # CONFIG_AF_RXRPC is not set | 388 | # CONFIG_AF_RXRPC is not set |
| 374 | # CONFIG_PHONET is not set | ||
| 375 | CONFIG_WIRELESS=y | 389 | CONFIG_WIRELESS=y |
| 376 | # CONFIG_CFG80211 is not set | 390 | # CONFIG_CFG80211 is not set |
| 377 | CONFIG_WIRELESS_OLD_REGULATORY=y | 391 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -485,7 +499,6 @@ CONFIG_MTD_NAND_FSL_ELBC=y | |||
| 485 | # LPDDR flash memory drivers | 499 | # LPDDR flash memory drivers |
| 486 | # | 500 | # |
| 487 | # CONFIG_MTD_LPDDR is not set | 501 | # CONFIG_MTD_LPDDR is not set |
| 488 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 489 | 502 | ||
| 490 | # | 503 | # |
| 491 | # UBI - Unsorted block images | 504 | # UBI - Unsorted block images |
| @@ -516,13 +529,20 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
| 516 | # CONFIG_BLK_DEV_HD is not set | 529 | # CONFIG_BLK_DEV_HD is not set |
| 517 | CONFIG_MISC_DEVICES=y | 530 | CONFIG_MISC_DEVICES=y |
| 518 | # CONFIG_PHANTOM is not set | 531 | # CONFIG_PHANTOM is not set |
| 519 | # CONFIG_EEPROM_93CX6 is not set | ||
| 520 | # CONFIG_SGI_IOC4 is not set | 532 | # CONFIG_SGI_IOC4 is not set |
| 521 | # CONFIG_TIFM_CORE is not set | 533 | # CONFIG_TIFM_CORE is not set |
| 522 | # CONFIG_ICS932S401 is not set | 534 | # CONFIG_ICS932S401 is not set |
| 523 | # CONFIG_ENCLOSURE_SERVICES is not set | 535 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 524 | # CONFIG_HP_ILO is not set | 536 | # CONFIG_HP_ILO is not set |
| 537 | # CONFIG_ISL29003 is not set | ||
| 525 | # CONFIG_C2PORT is not set | 538 | # CONFIG_C2PORT is not set |
| 539 | |||
| 540 | # | ||
| 541 | # EEPROM support | ||
| 542 | # | ||
| 543 | # CONFIG_EEPROM_AT24 is not set | ||
| 544 | # CONFIG_EEPROM_LEGACY is not set | ||
| 545 | # CONFIG_EEPROM_93CX6 is not set | ||
| 526 | CONFIG_HAVE_IDE=y | 546 | CONFIG_HAVE_IDE=y |
| 527 | # CONFIG_IDE is not set | 547 | # CONFIG_IDE is not set |
| 528 | 548 | ||
| @@ -580,9 +600,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 580 | # CONFIG_MEGARAID_NEWGEN is not set | 600 | # CONFIG_MEGARAID_NEWGEN is not set |
| 581 | # CONFIG_MEGARAID_LEGACY is not set | 601 | # CONFIG_MEGARAID_LEGACY is not set |
| 582 | # CONFIG_MEGARAID_SAS is not set | 602 | # CONFIG_MEGARAID_SAS is not set |
| 603 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 583 | # CONFIG_SCSI_HPTIOP is not set | 604 | # CONFIG_SCSI_HPTIOP is not set |
| 584 | # CONFIG_SCSI_BUSLOGIC is not set | 605 | # CONFIG_SCSI_BUSLOGIC is not set |
| 585 | # CONFIG_LIBFC is not set | 606 | # CONFIG_LIBFC is not set |
| 607 | # CONFIG_LIBFCOE is not set | ||
| 586 | # CONFIG_FCOE is not set | 608 | # CONFIG_FCOE is not set |
| 587 | # CONFIG_SCSI_DMX3191D is not set | 609 | # CONFIG_SCSI_DMX3191D is not set |
| 588 | # CONFIG_SCSI_EATA is not set | 610 | # CONFIG_SCSI_EATA is not set |
| @@ -605,6 +627,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 605 | # CONFIG_SCSI_DEBUG is not set | 627 | # CONFIG_SCSI_DEBUG is not set |
| 606 | # CONFIG_SCSI_SRP is not set | 628 | # CONFIG_SCSI_SRP is not set |
| 607 | # CONFIG_SCSI_DH is not set | 629 | # CONFIG_SCSI_DH is not set |
| 630 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 608 | CONFIG_ATA=y | 631 | CONFIG_ATA=y |
| 609 | # CONFIG_ATA_NONSTANDARD is not set | 632 | # CONFIG_ATA_NONSTANDARD is not set |
| 610 | CONFIG_SATA_PMP=y | 633 | CONFIG_SATA_PMP=y |
| @@ -681,6 +704,7 @@ CONFIG_ATA_SFF=y | |||
| 681 | # CONFIG_I2O is not set | 704 | # CONFIG_I2O is not set |
| 682 | # CONFIG_MACINTOSH_DRIVERS is not set | 705 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 683 | CONFIG_NETDEVICES=y | 706 | CONFIG_NETDEVICES=y |
| 707 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 684 | # CONFIG_DUMMY is not set | 708 | # CONFIG_DUMMY is not set |
| 685 | # CONFIG_BONDING is not set | 709 | # CONFIG_BONDING is not set |
| 686 | # CONFIG_MACVLAN is not set | 710 | # CONFIG_MACVLAN is not set |
| @@ -714,6 +738,8 @@ CONFIG_MII=y | |||
| 714 | # CONFIG_SUNGEM is not set | 738 | # CONFIG_SUNGEM is not set |
| 715 | # CONFIG_CASSINI is not set | 739 | # CONFIG_CASSINI is not set |
| 716 | # CONFIG_NET_VENDOR_3COM is not set | 740 | # CONFIG_NET_VENDOR_3COM is not set |
| 741 | # CONFIG_ETHOC is not set | ||
| 742 | # CONFIG_DNET is not set | ||
| 717 | # CONFIG_NET_TULIP is not set | 743 | # CONFIG_NET_TULIP is not set |
| 718 | # CONFIG_HP100 is not set | 744 | # CONFIG_HP100 is not set |
| 719 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 745 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -733,6 +759,7 @@ CONFIG_NETDEV_1000=y | |||
| 733 | # CONFIG_E1000E is not set | 759 | # CONFIG_E1000E is not set |
| 734 | # CONFIG_IP1000 is not set | 760 | # CONFIG_IP1000 is not set |
| 735 | # CONFIG_IGB is not set | 761 | # CONFIG_IGB is not set |
| 762 | # CONFIG_IGBVF is not set | ||
| 736 | # CONFIG_NS83820 is not set | 763 | # CONFIG_NS83820 is not set |
| 737 | # CONFIG_HAMACHI is not set | 764 | # CONFIG_HAMACHI is not set |
| 738 | # CONFIG_YELLOWFIN is not set | 765 | # CONFIG_YELLOWFIN is not set |
| @@ -743,14 +770,15 @@ CONFIG_NETDEV_1000=y | |||
| 743 | # CONFIG_VIA_VELOCITY is not set | 770 | # CONFIG_VIA_VELOCITY is not set |
| 744 | # CONFIG_TIGON3 is not set | 771 | # CONFIG_TIGON3 is not set |
| 745 | # CONFIG_BNX2 is not set | 772 | # CONFIG_BNX2 is not set |
| 773 | CONFIG_FSL_PQ_MDIO=y | ||
| 746 | CONFIG_GIANFAR=y | 774 | CONFIG_GIANFAR=y |
| 747 | CONFIG_UCC_GETH=y | 775 | CONFIG_UCC_GETH=y |
| 748 | # CONFIG_UGETH_MAGIC_PACKET is not set | 776 | # CONFIG_UGETH_MAGIC_PACKET is not set |
| 749 | # CONFIG_UGETH_TX_ON_DEMAND is not set | 777 | # CONFIG_UGETH_TX_ON_DEMAND is not set |
| 750 | # CONFIG_MV643XX_ETH is not set | ||
| 751 | # CONFIG_QLA3XXX is not set | 778 | # CONFIG_QLA3XXX is not set |
| 752 | # CONFIG_ATL1 is not set | 779 | # CONFIG_ATL1 is not set |
| 753 | # CONFIG_ATL1E is not set | 780 | # CONFIG_ATL1E is not set |
| 781 | # CONFIG_ATL1C is not set | ||
| 754 | # CONFIG_JME is not set | 782 | # CONFIG_JME is not set |
| 755 | CONFIG_NETDEV_10000=y | 783 | CONFIG_NETDEV_10000=y |
| 756 | # CONFIG_CHELSIO_T1 is not set | 784 | # CONFIG_CHELSIO_T1 is not set |
| @@ -760,6 +788,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 760 | # CONFIG_IXGBE is not set | 788 | # CONFIG_IXGBE is not set |
| 761 | # CONFIG_IXGB is not set | 789 | # CONFIG_IXGB is not set |
| 762 | # CONFIG_S2IO is not set | 790 | # CONFIG_S2IO is not set |
| 791 | # CONFIG_VXGE is not set | ||
| 763 | # CONFIG_MYRI10GE is not set | 792 | # CONFIG_MYRI10GE is not set |
| 764 | # CONFIG_NETXEN_NIC is not set | 793 | # CONFIG_NETXEN_NIC is not set |
| 765 | # CONFIG_NIU is not set | 794 | # CONFIG_NIU is not set |
| @@ -769,6 +798,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 769 | # CONFIG_BNX2X is not set | 798 | # CONFIG_BNX2X is not set |
| 770 | # CONFIG_QLGE is not set | 799 | # CONFIG_QLGE is not set |
| 771 | # CONFIG_SFC is not set | 800 | # CONFIG_SFC is not set |
| 801 | # CONFIG_BE2NET is not set | ||
| 772 | # CONFIG_TR is not set | 802 | # CONFIG_TR is not set |
| 773 | 803 | ||
| 774 | # | 804 | # |
| @@ -776,7 +806,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 776 | # | 806 | # |
| 777 | # CONFIG_WLAN_PRE80211 is not set | 807 | # CONFIG_WLAN_PRE80211 is not set |
| 778 | # CONFIG_WLAN_80211 is not set | 808 | # CONFIG_WLAN_80211 is not set |
| 779 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 780 | 809 | ||
| 781 | # | 810 | # |
| 782 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 811 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -867,6 +896,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 867 | # CONFIG_HVC_UDBG is not set | 896 | # CONFIG_HVC_UDBG is not set |
| 868 | # CONFIG_IPMI_HANDLER is not set | 897 | # CONFIG_IPMI_HANDLER is not set |
| 869 | CONFIG_HW_RANDOM=y | 898 | CONFIG_HW_RANDOM=y |
| 899 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 870 | # CONFIG_NVRAM is not set | 900 | # CONFIG_NVRAM is not set |
| 871 | CONFIG_GEN_RTC=y | 901 | CONFIG_GEN_RTC=y |
| 872 | # CONFIG_GEN_RTC_X is not set | 902 | # CONFIG_GEN_RTC_X is not set |
| @@ -932,12 +962,9 @@ CONFIG_I2C_MPC=y | |||
| 932 | # Miscellaneous I2C Chip support | 962 | # Miscellaneous I2C Chip support |
| 933 | # | 963 | # |
| 934 | # CONFIG_DS1682 is not set | 964 | # CONFIG_DS1682 is not set |
| 935 | # CONFIG_EEPROM_AT24 is not set | ||
| 936 | # CONFIG_EEPROM_LEGACY is not set | ||
| 937 | # CONFIG_SENSORS_PCF8574 is not set | 965 | # CONFIG_SENSORS_PCF8574 is not set |
| 938 | # CONFIG_PCF8575 is not set | 966 | # CONFIG_PCF8575 is not set |
| 939 | # CONFIG_SENSORS_PCA9539 is not set | 967 | # CONFIG_SENSORS_PCA9539 is not set |
| 940 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 941 | # CONFIG_SENSORS_MAX6875 is not set | 968 | # CONFIG_SENSORS_MAX6875 is not set |
| 942 | # CONFIG_SENSORS_TSL2550 is not set | 969 | # CONFIG_SENSORS_TSL2550 is not set |
| 943 | # CONFIG_I2C_DEBUG_CORE is not set | 970 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -992,6 +1019,7 @@ CONFIG_HWMON=y | |||
| 992 | # CONFIG_SENSORS_F71805F is not set | 1019 | # CONFIG_SENSORS_F71805F is not set |
| 993 | # CONFIG_SENSORS_F71882FG is not set | 1020 | # CONFIG_SENSORS_F71882FG is not set |
| 994 | # CONFIG_SENSORS_F75375S is not set | 1021 | # CONFIG_SENSORS_F75375S is not set |
| 1022 | # CONFIG_SENSORS_G760A is not set | ||
| 995 | # CONFIG_SENSORS_GL518SM is not set | 1023 | # CONFIG_SENSORS_GL518SM is not set |
| 996 | # CONFIG_SENSORS_GL520SM is not set | 1024 | # CONFIG_SENSORS_GL520SM is not set |
| 997 | # CONFIG_SENSORS_IT87 is not set | 1025 | # CONFIG_SENSORS_IT87 is not set |
| @@ -1006,11 +1034,15 @@ CONFIG_HWMON=y | |||
| 1006 | # CONFIG_SENSORS_LM90 is not set | 1034 | # CONFIG_SENSORS_LM90 is not set |
| 1007 | # CONFIG_SENSORS_LM92 is not set | 1035 | # CONFIG_SENSORS_LM92 is not set |
| 1008 | # CONFIG_SENSORS_LM93 is not set | 1036 | # CONFIG_SENSORS_LM93 is not set |
| 1037 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 1009 | # CONFIG_SENSORS_LTC4245 is not set | 1038 | # CONFIG_SENSORS_LTC4245 is not set |
| 1039 | # CONFIG_SENSORS_LM95241 is not set | ||
| 1010 | # CONFIG_SENSORS_MAX1619 is not set | 1040 | # CONFIG_SENSORS_MAX1619 is not set |
| 1011 | # CONFIG_SENSORS_MAX6650 is not set | 1041 | # CONFIG_SENSORS_MAX6650 is not set |
| 1012 | # CONFIG_SENSORS_PC87360 is not set | 1042 | # CONFIG_SENSORS_PC87360 is not set |
| 1013 | # CONFIG_SENSORS_PC87427 is not set | 1043 | # CONFIG_SENSORS_PC87427 is not set |
| 1044 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1045 | # CONFIG_SENSORS_SHT15 is not set | ||
| 1014 | # CONFIG_SENSORS_SIS5595 is not set | 1046 | # CONFIG_SENSORS_SIS5595 is not set |
| 1015 | # CONFIG_SENSORS_DME1737 is not set | 1047 | # CONFIG_SENSORS_DME1737 is not set |
| 1016 | # CONFIG_SENSORS_SMSC47M1 is not set | 1048 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -1121,15 +1153,17 @@ CONFIG_USB_HID=y | |||
| 1121 | # | 1153 | # |
| 1122 | # Special HID drivers | 1154 | # Special HID drivers |
| 1123 | # | 1155 | # |
| 1124 | CONFIG_HID_COMPAT=y | ||
| 1125 | CONFIG_HID_A4TECH=y | 1156 | CONFIG_HID_A4TECH=y |
| 1126 | CONFIG_HID_APPLE=y | 1157 | CONFIG_HID_APPLE=y |
| 1127 | CONFIG_HID_BELKIN=y | 1158 | CONFIG_HID_BELKIN=y |
| 1128 | CONFIG_HID_CHERRY=y | 1159 | CONFIG_HID_CHERRY=y |
| 1129 | CONFIG_HID_CHICONY=y | 1160 | CONFIG_HID_CHICONY=y |
| 1130 | CONFIG_HID_CYPRESS=y | 1161 | CONFIG_HID_CYPRESS=y |
| 1162 | # CONFIG_DRAGONRISE_FF is not set | ||
| 1131 | CONFIG_HID_EZKEY=y | 1163 | CONFIG_HID_EZKEY=y |
| 1164 | # CONFIG_HID_KYE is not set | ||
| 1132 | CONFIG_HID_GYRATION=y | 1165 | CONFIG_HID_GYRATION=y |
| 1166 | # CONFIG_HID_KENSINGTON is not set | ||
| 1133 | CONFIG_HID_LOGITECH=y | 1167 | CONFIG_HID_LOGITECH=y |
| 1134 | # CONFIG_LOGITECH_FF is not set | 1168 | # CONFIG_LOGITECH_FF is not set |
| 1135 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1169 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
| @@ -1181,6 +1215,7 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 1181 | # CONFIG_USB_ISP1760_HCD is not set | 1215 | # CONFIG_USB_ISP1760_HCD is not set |
| 1182 | # CONFIG_USB_OHCI_HCD is not set | 1216 | # CONFIG_USB_OHCI_HCD is not set |
| 1183 | # CONFIG_USB_UHCI_HCD is not set | 1217 | # CONFIG_USB_UHCI_HCD is not set |
| 1218 | # CONFIG_USB_FHCI_HCD is not set | ||
| 1184 | # CONFIG_USB_SL811_HCD is not set | 1219 | # CONFIG_USB_SL811_HCD is not set |
| 1185 | # CONFIG_USB_R8A66597_HCD is not set | 1220 | # CONFIG_USB_R8A66597_HCD is not set |
| 1186 | # CONFIG_USB_WHCI_HCD is not set | 1221 | # CONFIG_USB_WHCI_HCD is not set |
| @@ -1195,11 +1230,11 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 1195 | # CONFIG_USB_TMC is not set | 1230 | # CONFIG_USB_TMC is not set |
| 1196 | 1231 | ||
| 1197 | # | 1232 | # |
| 1198 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1233 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1199 | # | 1234 | # |
| 1200 | 1235 | ||
| 1201 | # | 1236 | # |
| 1202 | # see USB_STORAGE Help for more information | 1237 | # also be needed; see USB_STORAGE Help for more info |
| 1203 | # | 1238 | # |
| 1204 | # CONFIG_USB_STORAGE is not set | 1239 | # CONFIG_USB_STORAGE is not set |
| 1205 | # CONFIG_USB_LIBUSUAL is not set | 1240 | # CONFIG_USB_LIBUSUAL is not set |
| @@ -1229,7 +1264,6 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 1229 | # CONFIG_USB_LED is not set | 1264 | # CONFIG_USB_LED is not set |
| 1230 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1265 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1231 | # CONFIG_USB_CYTHERM is not set | 1266 | # CONFIG_USB_CYTHERM is not set |
| 1232 | # CONFIG_USB_PHIDGET is not set | ||
| 1233 | # CONFIG_USB_IDMOUSE is not set | 1267 | # CONFIG_USB_IDMOUSE is not set |
| 1234 | # CONFIG_USB_FTDI_ELAN is not set | 1268 | # CONFIG_USB_FTDI_ELAN is not set |
| 1235 | # CONFIG_USB_APPLEDISPLAY is not set | 1269 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1245,6 +1279,7 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 1245 | # OTG and related infrastructure | 1279 | # OTG and related infrastructure |
| 1246 | # | 1280 | # |
| 1247 | # CONFIG_USB_GPIO_VBUS is not set | 1281 | # CONFIG_USB_GPIO_VBUS is not set |
| 1282 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1248 | # CONFIG_UWB is not set | 1283 | # CONFIG_UWB is not set |
| 1249 | # CONFIG_MMC is not set | 1284 | # CONFIG_MMC is not set |
| 1250 | # CONFIG_MEMSTICK is not set | 1285 | # CONFIG_MEMSTICK is not set |
| @@ -1254,6 +1289,7 @@ CONFIG_USB_EHCI_HCD_PPC_OF=y | |||
| 1254 | # CONFIG_EDAC is not set | 1289 | # CONFIG_EDAC is not set |
| 1255 | # CONFIG_RTC_CLASS is not set | 1290 | # CONFIG_RTC_CLASS is not set |
| 1256 | # CONFIG_DMADEVICES is not set | 1291 | # CONFIG_DMADEVICES is not set |
| 1292 | # CONFIG_AUXDISPLAY is not set | ||
| 1257 | # CONFIG_UIO is not set | 1293 | # CONFIG_UIO is not set |
| 1258 | # CONFIG_STAGING is not set | 1294 | # CONFIG_STAGING is not set |
| 1259 | 1295 | ||
| @@ -1264,6 +1300,7 @@ CONFIG_EXT2_FS=y | |||
| 1264 | # CONFIG_EXT2_FS_XATTR is not set | 1300 | # CONFIG_EXT2_FS_XATTR is not set |
| 1265 | # CONFIG_EXT2_FS_XIP is not set | 1301 | # CONFIG_EXT2_FS_XIP is not set |
| 1266 | CONFIG_EXT3_FS=y | 1302 | CONFIG_EXT3_FS=y |
| 1303 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1267 | CONFIG_EXT3_FS_XATTR=y | 1304 | CONFIG_EXT3_FS_XATTR=y |
| 1268 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1305 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1269 | # CONFIG_EXT3_FS_SECURITY is not set | 1306 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1286,6 +1323,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1286 | # CONFIG_FUSE_FS is not set | 1323 | # CONFIG_FUSE_FS is not set |
| 1287 | 1324 | ||
| 1288 | # | 1325 | # |
| 1326 | # Caches | ||
| 1327 | # | ||
| 1328 | # CONFIG_FSCACHE is not set | ||
| 1329 | |||
| 1330 | # | ||
| 1289 | # CD-ROM/DVD Filesystems | 1331 | # CD-ROM/DVD Filesystems |
| 1290 | # | 1332 | # |
| 1291 | # CONFIG_ISO9660_FS is not set | 1333 | # CONFIG_ISO9660_FS is not set |
| @@ -1329,6 +1371,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1329 | # CONFIG_ROMFS_FS is not set | 1371 | # CONFIG_ROMFS_FS is not set |
| 1330 | # CONFIG_SYSV_FS is not set | 1372 | # CONFIG_SYSV_FS is not set |
| 1331 | # CONFIG_UFS_FS is not set | 1373 | # CONFIG_UFS_FS is not set |
| 1374 | # CONFIG_NILFS2_FS is not set | ||
| 1332 | CONFIG_NETWORK_FILESYSTEMS=y | 1375 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1333 | CONFIG_NFS_FS=y | 1376 | CONFIG_NFS_FS=y |
| 1334 | CONFIG_NFS_V3=y | 1377 | CONFIG_NFS_V3=y |
| @@ -1341,7 +1384,6 @@ CONFIG_LOCKD_V4=y | |||
| 1341 | CONFIG_NFS_COMMON=y | 1384 | CONFIG_NFS_COMMON=y |
| 1342 | CONFIG_SUNRPC=y | 1385 | CONFIG_SUNRPC=y |
| 1343 | CONFIG_SUNRPC_GSS=y | 1386 | CONFIG_SUNRPC_GSS=y |
| 1344 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1345 | CONFIG_RPCSEC_GSS_KRB5=y | 1387 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1346 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1388 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1347 | # CONFIG_SMB_FS is not set | 1389 | # CONFIG_SMB_FS is not set |
| @@ -1375,6 +1417,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1375 | # CONFIG_DLM is not set | 1417 | # CONFIG_DLM is not set |
| 1376 | CONFIG_UCC_FAST=y | 1418 | CONFIG_UCC_FAST=y |
| 1377 | CONFIG_UCC=y | 1419 | CONFIG_UCC=y |
| 1420 | # CONFIG_BINARY_PRINTF is not set | ||
| 1378 | 1421 | ||
| 1379 | # | 1422 | # |
| 1380 | # Library routines | 1423 | # Library routines |
| @@ -1388,11 +1431,13 @@ CONFIG_CRC_T10DIF=y | |||
| 1388 | CONFIG_CRC32=y | 1431 | CONFIG_CRC32=y |
| 1389 | # CONFIG_CRC7 is not set | 1432 | # CONFIG_CRC7 is not set |
| 1390 | # CONFIG_LIBCRC32C is not set | 1433 | # CONFIG_LIBCRC32C is not set |
| 1391 | CONFIG_PLIST=y | 1434 | CONFIG_ZLIB_INFLATE=y |
| 1435 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1392 | CONFIG_HAS_IOMEM=y | 1436 | CONFIG_HAS_IOMEM=y |
| 1393 | CONFIG_HAS_IOPORT=y | 1437 | CONFIG_HAS_IOPORT=y |
| 1394 | CONFIG_HAS_DMA=y | 1438 | CONFIG_HAS_DMA=y |
| 1395 | CONFIG_HAVE_LMB=y | 1439 | CONFIG_HAVE_LMB=y |
| 1440 | CONFIG_NLATTR=y | ||
| 1396 | 1441 | ||
| 1397 | # | 1442 | # |
| 1398 | # Kernel hacking | 1443 | # Kernel hacking |
| @@ -1412,13 +1457,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1412 | # CONFIG_LATENCYTOP is not set | 1457 | # CONFIG_LATENCYTOP is not set |
| 1413 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1458 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1414 | CONFIG_HAVE_FUNCTION_TRACER=y | 1459 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1460 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1415 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1461 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1416 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1462 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1463 | CONFIG_TRACING_SUPPORT=y | ||
| 1417 | 1464 | ||
| 1418 | # | 1465 | # |
| 1419 | # Tracers | 1466 | # Tracers |
| 1420 | # | 1467 | # |
| 1421 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1468 | # CONFIG_FUNCTION_TRACER is not set |
| 1469 | # CONFIG_SCHED_TRACER is not set | ||
| 1470 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1471 | # CONFIG_EVENT_TRACER is not set | ||
| 1472 | # CONFIG_BOOT_TRACER is not set | ||
| 1473 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1474 | # CONFIG_STACK_TRACER is not set | ||
| 1475 | # CONFIG_KMEMTRACE is not set | ||
| 1476 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1477 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1422 | # CONFIG_SAMPLES is not set | 1478 | # CONFIG_SAMPLES is not set |
| 1423 | CONFIG_HAVE_ARCH_KGDB=y | 1479 | CONFIG_HAVE_ARCH_KGDB=y |
| 1424 | CONFIG_PRINT_STACK_DEPTH=64 | 1480 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1448,10 +1504,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1448 | CONFIG_CRYPTO_HASH=y | 1504 | CONFIG_CRYPTO_HASH=y |
| 1449 | CONFIG_CRYPTO_HASH2=y | 1505 | CONFIG_CRYPTO_HASH2=y |
| 1450 | CONFIG_CRYPTO_RNG2=y | 1506 | CONFIG_CRYPTO_RNG2=y |
| 1507 | CONFIG_CRYPTO_PCOMP=y | ||
| 1451 | CONFIG_CRYPTO_MANAGER=y | 1508 | CONFIG_CRYPTO_MANAGER=y |
| 1452 | CONFIG_CRYPTO_MANAGER2=y | 1509 | CONFIG_CRYPTO_MANAGER2=y |
| 1453 | # CONFIG_CRYPTO_GF128MUL is not set | 1510 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1454 | # CONFIG_CRYPTO_NULL is not set | 1511 | # CONFIG_CRYPTO_NULL is not set |
| 1512 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1455 | # CONFIG_CRYPTO_CRYPTD is not set | 1513 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1456 | CONFIG_CRYPTO_AUTHENC=y | 1514 | CONFIG_CRYPTO_AUTHENC=y |
| 1457 | # CONFIG_CRYPTO_TEST is not set | 1515 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1520,6 +1578,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1520 | # Compression | 1578 | # Compression |
| 1521 | # | 1579 | # |
| 1522 | # CONFIG_CRYPTO_DEFLATE is not set | 1580 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1581 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1523 | # CONFIG_CRYPTO_LZO is not set | 1582 | # CONFIG_CRYPTO_LZO is not set |
| 1524 | 1583 | ||
| 1525 | # | 1584 | # |
diff --git a/arch/powerpc/configs/mpc866_ads_defconfig b/arch/powerpc/configs/mpc866_ads_defconfig index 1793d08e9c01..3add6f62b21e 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:38 2009 | 4 | # Wed May 13 17:22:00 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -51,6 +51,7 @@ CONFIG_AUDIT_ARCH=y | |||
| 51 | # CONFIG_DEFAULT_UIMAGE is not set | 51 | # CONFIG_DEFAULT_UIMAGE is not set |
| 52 | # CONFIG_PPC_DCR_NATIVE is not set | 52 | # CONFIG_PPC_DCR_NATIVE is not set |
| 53 | # CONFIG_PPC_DCR_MMIO is not set | 53 | # CONFIG_PPC_DCR_MMIO is not set |
| 54 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 54 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 55 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 55 | 56 | ||
| 56 | # | 57 | # |
| @@ -68,6 +69,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 68 | # CONFIG_BSD_PROCESS_ACCT is not set | 69 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 69 | # CONFIG_TASKSTATS is not set | 70 | # CONFIG_TASKSTATS is not set |
| 70 | # CONFIG_AUDIT is not set | 71 | # CONFIG_AUDIT is not set |
| 72 | |||
| 73 | # | ||
| 74 | # RCU Subsystem | ||
| 75 | # | ||
| 76 | CONFIG_CLASSIC_RCU=y | ||
| 77 | # CONFIG_TREE_RCU is not set | ||
| 78 | # CONFIG_PREEMPT_RCU is not set | ||
| 79 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 80 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 71 | # CONFIG_IKCONFIG is not set | 81 | # CONFIG_IKCONFIG is not set |
| 72 | CONFIG_LOG_BUF_SHIFT=14 | 82 | CONFIG_LOG_BUF_SHIFT=14 |
| 73 | CONFIG_GROUP_SCHED=y | 83 | CONFIG_GROUP_SCHED=y |
| @@ -83,18 +93,18 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 83 | # CONFIG_BLK_DEV_INITRD is not set | 93 | # CONFIG_BLK_DEV_INITRD is not set |
| 84 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 94 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 85 | CONFIG_SYSCTL=y | 95 | CONFIG_SYSCTL=y |
| 96 | CONFIG_ANON_INODES=y | ||
| 86 | CONFIG_EMBEDDED=y | 97 | CONFIG_EMBEDDED=y |
| 87 | # CONFIG_SYSCTL_SYSCALL is not set | 98 | # CONFIG_SYSCTL_SYSCALL is not set |
| 88 | CONFIG_KALLSYMS=y | 99 | CONFIG_KALLSYMS=y |
| 89 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 100 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 101 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 90 | # CONFIG_HOTPLUG is not set | 102 | # CONFIG_HOTPLUG is not set |
| 91 | CONFIG_PRINTK=y | 103 | CONFIG_PRINTK=y |
| 92 | # CONFIG_BUG is not set | 104 | # CONFIG_BUG is not set |
| 93 | CONFIG_ELF_CORE=y | 105 | CONFIG_ELF_CORE=y |
| 94 | CONFIG_COMPAT_BRK=y | ||
| 95 | # CONFIG_BASE_FULL is not set | 106 | # CONFIG_BASE_FULL is not set |
| 96 | CONFIG_FUTEX=y | 107 | CONFIG_FUTEX=y |
| 97 | CONFIG_ANON_INODES=y | ||
| 98 | # CONFIG_EPOLL is not set | 108 | # CONFIG_EPOLL is not set |
| 99 | CONFIG_SIGNALFD=y | 109 | CONFIG_SIGNALFD=y |
| 100 | CONFIG_TIMERFD=y | 110 | CONFIG_TIMERFD=y |
| @@ -103,10 +113,12 @@ CONFIG_SHMEM=y | |||
| 103 | CONFIG_AIO=y | 113 | CONFIG_AIO=y |
| 104 | # CONFIG_VM_EVENT_COUNTERS is not set | 114 | # CONFIG_VM_EVENT_COUNTERS is not set |
| 105 | CONFIG_SLUB_DEBUG=y | 115 | CONFIG_SLUB_DEBUG=y |
| 116 | CONFIG_COMPAT_BRK=y | ||
| 106 | # CONFIG_SLAB is not set | 117 | # CONFIG_SLAB is not set |
| 107 | CONFIG_SLUB=y | 118 | CONFIG_SLUB=y |
| 108 | # CONFIG_SLOB is not set | 119 | # CONFIG_SLOB is not set |
| 109 | # CONFIG_PROFILING is not set | 120 | # CONFIG_PROFILING is not set |
| 121 | # CONFIG_MARKERS is not set | ||
| 110 | CONFIG_HAVE_OPROFILE=y | 122 | CONFIG_HAVE_OPROFILE=y |
| 111 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 112 | CONFIG_HAVE_IOREMAP_PROT=y | 124 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -114,6 +126,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 114 | CONFIG_HAVE_KRETPROBES=y | 126 | CONFIG_HAVE_KRETPROBES=y |
| 115 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 127 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 116 | CONFIG_HAVE_CLK=y | 128 | CONFIG_HAVE_CLK=y |
| 129 | # CONFIG_SLOW_WORK is not set | ||
| 117 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 118 | CONFIG_SLABINFO=y | 131 | CONFIG_SLABINFO=y |
| 119 | CONFIG_RT_MUTEXES=y | 132 | CONFIG_RT_MUTEXES=y |
| @@ -121,7 +134,6 @@ CONFIG_BASE_SMALL=1 | |||
| 121 | # CONFIG_MODULES is not set | 134 | # CONFIG_MODULES is not set |
| 122 | CONFIG_BLOCK=y | 135 | CONFIG_BLOCK=y |
| 123 | # CONFIG_LBD is not set | 136 | # CONFIG_LBD is not set |
| 124 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 125 | # CONFIG_BLK_DEV_BSG is not set | 137 | # CONFIG_BLK_DEV_BSG is not set |
| 126 | # CONFIG_BLK_DEV_INTEGRITY is not set | 138 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 127 | 139 | ||
| @@ -137,11 +149,6 @@ CONFIG_DEFAULT_AS=y | |||
| 137 | # CONFIG_DEFAULT_CFQ is not set | 149 | # CONFIG_DEFAULT_CFQ is not set |
| 138 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
| 139 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 151 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 140 | CONFIG_CLASSIC_RCU=y | ||
| 141 | # CONFIG_TREE_RCU is not set | ||
| 142 | # CONFIG_PREEMPT_RCU is not set | ||
| 143 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 144 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 145 | # CONFIG_FREEZER is not set | 152 | # CONFIG_FREEZER is not set |
| 146 | 153 | ||
| 147 | # | 154 | # |
| @@ -232,9 +239,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 232 | CONFIG_BOUNCE=y | 239 | CONFIG_BOUNCE=y |
| 233 | CONFIG_VIRT_TO_BUS=y | 240 | CONFIG_VIRT_TO_BUS=y |
| 234 | CONFIG_UNEVICTABLE_LRU=y | 241 | CONFIG_UNEVICTABLE_LRU=y |
| 242 | CONFIG_HAVE_MLOCK=y | ||
| 243 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 235 | CONFIG_PPC_4K_PAGES=y | 244 | CONFIG_PPC_4K_PAGES=y |
| 236 | # CONFIG_PPC_16K_PAGES is not set | 245 | # CONFIG_PPC_16K_PAGES is not set |
| 237 | # CONFIG_PPC_64K_PAGES is not set | 246 | # CONFIG_PPC_64K_PAGES is not set |
| 247 | # CONFIG_PPC_256K_PAGES is not set | ||
| 238 | CONFIG_FORCE_MAX_ZONEORDER=11 | 248 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 239 | # CONFIG_PROC_DEVICETREE is not set | 249 | # CONFIG_PROC_DEVICETREE is not set |
| 240 | # CONFIG_CMDLINE_BOOL is not set | 250 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -268,14 +278,11 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 268 | CONFIG_KERNEL_START=0xc0000000 | 278 | CONFIG_KERNEL_START=0xc0000000 |
| 269 | CONFIG_PHYSICAL_START=0x00000000 | 279 | CONFIG_PHYSICAL_START=0x00000000 |
| 270 | CONFIG_TASK_SIZE=0x80000000 | 280 | CONFIG_TASK_SIZE=0x80000000 |
| 271 | CONFIG_CONSISTENT_START=0xfd000000 | ||
| 272 | CONFIG_CONSISTENT_SIZE=0x00200000 | ||
| 273 | CONFIG_NET=y | 281 | CONFIG_NET=y |
| 274 | 282 | ||
| 275 | # | 283 | # |
| 276 | # Networking options | 284 | # Networking options |
| 277 | # | 285 | # |
| 278 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 279 | CONFIG_PACKET=y | 286 | CONFIG_PACKET=y |
| 280 | # CONFIG_PACKET_MMAP is not set | 287 | # CONFIG_PACKET_MMAP is not set |
| 281 | CONFIG_UNIX=y | 288 | CONFIG_UNIX=y |
| @@ -331,6 +338,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 331 | # CONFIG_LAPB is not set | 338 | # CONFIG_LAPB is not set |
| 332 | # CONFIG_ECONET is not set | 339 | # CONFIG_ECONET is not set |
| 333 | # CONFIG_WAN_ROUTER is not set | 340 | # CONFIG_WAN_ROUTER is not set |
| 341 | # CONFIG_PHONET is not set | ||
| 334 | # CONFIG_NET_SCHED is not set | 342 | # CONFIG_NET_SCHED is not set |
| 335 | # CONFIG_DCB is not set | 343 | # CONFIG_DCB is not set |
| 336 | 344 | ||
| @@ -343,7 +351,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 343 | # CONFIG_IRDA is not set | 351 | # CONFIG_IRDA is not set |
| 344 | # CONFIG_BT is not set | 352 | # CONFIG_BT is not set |
| 345 | # CONFIG_AF_RXRPC is not set | 353 | # CONFIG_AF_RXRPC is not set |
| 346 | # CONFIG_PHONET is not set | ||
| 347 | CONFIG_WIRELESS=y | 354 | CONFIG_WIRELESS=y |
| 348 | # CONFIG_CFG80211 is not set | 355 | # CONFIG_CFG80211 is not set |
| 349 | CONFIG_WIRELESS_OLD_REGULATORY=y | 356 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -379,9 +386,13 @@ CONFIG_BLK_DEV_LOOP=y | |||
| 379 | # CONFIG_ATA_OVER_ETH is not set | 386 | # CONFIG_ATA_OVER_ETH is not set |
| 380 | # CONFIG_BLK_DEV_HD is not set | 387 | # CONFIG_BLK_DEV_HD is not set |
| 381 | CONFIG_MISC_DEVICES=y | 388 | CONFIG_MISC_DEVICES=y |
| 382 | # CONFIG_EEPROM_93CX6 is not set | ||
| 383 | # CONFIG_ENCLOSURE_SERVICES is not set | 389 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 384 | # CONFIG_C2PORT is not set | 390 | # CONFIG_C2PORT is not set |
| 391 | |||
| 392 | # | ||
| 393 | # EEPROM support | ||
| 394 | # | ||
| 395 | # CONFIG_EEPROM_93CX6 is not set | ||
| 385 | CONFIG_HAVE_IDE=y | 396 | CONFIG_HAVE_IDE=y |
| 386 | # CONFIG_IDE is not set | 397 | # CONFIG_IDE is not set |
| 387 | 398 | ||
| @@ -396,6 +407,7 @@ CONFIG_HAVE_IDE=y | |||
| 396 | # CONFIG_MD is not set | 407 | # CONFIG_MD is not set |
| 397 | # CONFIG_MACINTOSH_DRIVERS is not set | 408 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 398 | CONFIG_NETDEVICES=y | 409 | CONFIG_NETDEVICES=y |
| 410 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 399 | # CONFIG_DUMMY is not set | 411 | # CONFIG_DUMMY is not set |
| 400 | # CONFIG_BONDING is not set | 412 | # CONFIG_BONDING is not set |
| 401 | # CONFIG_MACVLAN is not set | 413 | # CONFIG_MACVLAN is not set |
| @@ -424,6 +436,8 @@ CONFIG_FIXED_PHY=y | |||
| 424 | # CONFIG_MDIO_BITBANG is not set | 436 | # CONFIG_MDIO_BITBANG is not set |
| 425 | CONFIG_NET_ETHERNET=y | 437 | CONFIG_NET_ETHERNET=y |
| 426 | CONFIG_MII=y | 438 | CONFIG_MII=y |
| 439 | # CONFIG_ETHOC is not set | ||
| 440 | # CONFIG_DNET is not set | ||
| 427 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 441 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 428 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 442 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 429 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 443 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -437,6 +451,7 @@ CONFIG_FS_ENET_HAS_SCC=y | |||
| 437 | CONFIG_FS_ENET_HAS_FEC=y | 451 | CONFIG_FS_ENET_HAS_FEC=y |
| 438 | CONFIG_FS_ENET_MDIO_FEC=y | 452 | CONFIG_FS_ENET_MDIO_FEC=y |
| 439 | CONFIG_NETDEV_1000=y | 453 | CONFIG_NETDEV_1000=y |
| 454 | # CONFIG_FSL_PQ_MDIO is not set | ||
| 440 | # CONFIG_GIANFAR is not set | 455 | # CONFIG_GIANFAR is not set |
| 441 | CONFIG_NETDEV_10000=y | 456 | CONFIG_NETDEV_10000=y |
| 442 | 457 | ||
| @@ -445,7 +460,6 @@ CONFIG_NETDEV_10000=y | |||
| 445 | # | 460 | # |
| 446 | # CONFIG_WLAN_PRE80211 is not set | 461 | # CONFIG_WLAN_PRE80211 is not set |
| 447 | # CONFIG_WLAN_80211 is not set | 462 | # CONFIG_WLAN_80211 is not set |
| 448 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 449 | 463 | ||
| 450 | # | 464 | # |
| 451 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 465 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -492,7 +506,6 @@ CONFIG_MOUSE_PS2=y | |||
| 492 | CONFIG_MOUSE_PS2_ALPS=y | 506 | CONFIG_MOUSE_PS2_ALPS=y |
| 493 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 507 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
| 494 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 508 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
| 495 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
| 496 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 509 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
| 497 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 510 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
| 498 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 511 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| @@ -540,6 +553,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 540 | # CONFIG_HVC_UDBG is not set | 553 | # CONFIG_HVC_UDBG is not set |
| 541 | # CONFIG_IPMI_HANDLER is not set | 554 | # CONFIG_IPMI_HANDLER is not set |
| 542 | CONFIG_HW_RANDOM=y | 555 | CONFIG_HW_RANDOM=y |
| 556 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 543 | # CONFIG_NVRAM is not set | 557 | # CONFIG_NVRAM is not set |
| 544 | CONFIG_GEN_RTC=y | 558 | CONFIG_GEN_RTC=y |
| 545 | # CONFIG_GEN_RTC_X is not set | 559 | # CONFIG_GEN_RTC_X is not set |
| @@ -622,7 +636,6 @@ CONFIG_HID=y | |||
| 622 | # | 636 | # |
| 623 | # Special HID drivers | 637 | # Special HID drivers |
| 624 | # | 638 | # |
| 625 | CONFIG_HID_COMPAT=y | ||
| 626 | CONFIG_USB_SUPPORT=y | 639 | CONFIG_USB_SUPPORT=y |
| 627 | # CONFIG_USB_ARCH_HAS_HCD is not set | 640 | # CONFIG_USB_ARCH_HAS_HCD is not set |
| 628 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 641 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
| @@ -635,7 +648,7 @@ CONFIG_USB_SUPPORT=y | |||
| 635 | # | 648 | # |
| 636 | 649 | ||
| 637 | # | 650 | # |
| 638 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 651 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 639 | # | 652 | # |
| 640 | # CONFIG_USB_GADGET is not set | 653 | # CONFIG_USB_GADGET is not set |
| 641 | 654 | ||
| @@ -649,6 +662,7 @@ CONFIG_USB_SUPPORT=y | |||
| 649 | # CONFIG_EDAC is not set | 662 | # CONFIG_EDAC is not set |
| 650 | # CONFIG_RTC_CLASS is not set | 663 | # CONFIG_RTC_CLASS is not set |
| 651 | # CONFIG_DMADEVICES is not set | 664 | # CONFIG_DMADEVICES is not set |
| 665 | # CONFIG_AUXDISPLAY is not set | ||
| 652 | # CONFIG_UIO is not set | 666 | # CONFIG_UIO is not set |
| 653 | # CONFIG_STAGING is not set | 667 | # CONFIG_STAGING is not set |
| 654 | 668 | ||
| @@ -661,6 +675,7 @@ CONFIG_EXT2_FS_XATTR=y | |||
| 661 | # CONFIG_EXT2_FS_SECURITY is not set | 675 | # CONFIG_EXT2_FS_SECURITY is not set |
| 662 | # CONFIG_EXT2_FS_XIP is not set | 676 | # CONFIG_EXT2_FS_XIP is not set |
| 663 | CONFIG_EXT3_FS=y | 677 | CONFIG_EXT3_FS=y |
| 678 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 664 | CONFIG_EXT3_FS_XATTR=y | 679 | CONFIG_EXT3_FS_XATTR=y |
| 665 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 680 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 666 | # CONFIG_EXT3_FS_SECURITY is not set | 681 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -683,6 +698,11 @@ CONFIG_INOTIFY_USER=y | |||
| 683 | # CONFIG_FUSE_FS is not set | 698 | # CONFIG_FUSE_FS is not set |
| 684 | 699 | ||
| 685 | # | 700 | # |
| 701 | # Caches | ||
| 702 | # | ||
| 703 | # CONFIG_FSCACHE is not set | ||
| 704 | |||
| 705 | # | ||
| 686 | # CD-ROM/DVD Filesystems | 706 | # CD-ROM/DVD Filesystems |
| 687 | # | 707 | # |
| 688 | # CONFIG_ISO9660_FS is not set | 708 | # CONFIG_ISO9660_FS is not set |
| @@ -725,6 +745,7 @@ CONFIG_CRAMFS=y | |||
| 725 | # CONFIG_ROMFS_FS is not set | 745 | # CONFIG_ROMFS_FS is not set |
| 726 | # CONFIG_SYSV_FS is not set | 746 | # CONFIG_SYSV_FS is not set |
| 727 | # CONFIG_UFS_FS is not set | 747 | # CONFIG_UFS_FS is not set |
| 748 | # CONFIG_NILFS2_FS is not set | ||
| 728 | CONFIG_NETWORK_FILESYSTEMS=y | 749 | CONFIG_NETWORK_FILESYSTEMS=y |
| 729 | CONFIG_NFS_FS=y | 750 | CONFIG_NFS_FS=y |
| 730 | CONFIG_NFS_V3=y | 751 | CONFIG_NFS_V3=y |
| @@ -736,7 +757,6 @@ CONFIG_LOCKD=y | |||
| 736 | CONFIG_LOCKD_V4=y | 757 | CONFIG_LOCKD_V4=y |
| 737 | CONFIG_NFS_COMMON=y | 758 | CONFIG_NFS_COMMON=y |
| 738 | CONFIG_SUNRPC=y | 759 | CONFIG_SUNRPC=y |
| 739 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 740 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 760 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 741 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 761 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 742 | # CONFIG_SMB_FS is not set | 762 | # CONFIG_SMB_FS is not set |
| @@ -768,6 +788,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 768 | # CONFIG_SYSV68_PARTITION is not set | 788 | # CONFIG_SYSV68_PARTITION is not set |
| 769 | # CONFIG_NLS is not set | 789 | # CONFIG_NLS is not set |
| 770 | # CONFIG_DLM is not set | 790 | # CONFIG_DLM is not set |
| 791 | # CONFIG_BINARY_PRINTF is not set | ||
| 771 | 792 | ||
| 772 | # | 793 | # |
| 773 | # Library routines | 794 | # Library routines |
| @@ -782,11 +803,11 @@ CONFIG_CRC32=y | |||
| 782 | # CONFIG_CRC7 is not set | 803 | # CONFIG_CRC7 is not set |
| 783 | # CONFIG_LIBCRC32C is not set | 804 | # CONFIG_LIBCRC32C is not set |
| 784 | CONFIG_ZLIB_INFLATE=y | 805 | CONFIG_ZLIB_INFLATE=y |
| 785 | CONFIG_PLIST=y | ||
| 786 | CONFIG_HAS_IOMEM=y | 806 | CONFIG_HAS_IOMEM=y |
| 787 | CONFIG_HAS_IOPORT=y | 807 | CONFIG_HAS_IOPORT=y |
| 788 | CONFIG_HAS_DMA=y | 808 | CONFIG_HAS_DMA=y |
| 789 | CONFIG_HAVE_LMB=y | 809 | CONFIG_HAVE_LMB=y |
| 810 | CONFIG_NLATTR=y | ||
| 790 | 811 | ||
| 791 | # | 812 | # |
| 792 | # Kernel hacking | 813 | # Kernel hacking |
| @@ -806,13 +827,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 806 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 827 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
| 807 | # CONFIG_LATENCYTOP is not set | 828 | # CONFIG_LATENCYTOP is not set |
| 808 | CONFIG_HAVE_FUNCTION_TRACER=y | 829 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 830 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 809 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 831 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 810 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 832 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 833 | CONFIG_TRACING_SUPPORT=y | ||
| 811 | 834 | ||
| 812 | # | 835 | # |
| 813 | # Tracers | 836 | # Tracers |
| 814 | # | 837 | # |
| 815 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 838 | # CONFIG_FUNCTION_TRACER is not set |
| 839 | # CONFIG_SCHED_TRACER is not set | ||
| 840 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 841 | # CONFIG_EVENT_TRACER is not set | ||
| 842 | # CONFIG_BOOT_TRACER is not set | ||
| 843 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 844 | # CONFIG_STACK_TRACER is not set | ||
| 845 | # CONFIG_KMEMTRACE is not set | ||
| 846 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 847 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 816 | # CONFIG_SAMPLES is not set | 848 | # CONFIG_SAMPLES is not set |
| 817 | CONFIG_HAVE_ARCH_KGDB=y | 849 | CONFIG_HAVE_ARCH_KGDB=y |
| 818 | CONFIG_PRINT_STACK_DEPTH=64 | 850 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -903,6 +935,7 @@ CONFIG_CRYPTO=y | |||
| 903 | # Compression | 935 | # Compression |
| 904 | # | 936 | # |
| 905 | # CONFIG_CRYPTO_DEFLATE is not set | 937 | # CONFIG_CRYPTO_DEFLATE is not set |
| 938 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 906 | # CONFIG_CRYPTO_LZO is not set | 939 | # CONFIG_CRYPTO_LZO is not set |
| 907 | 940 | ||
| 908 | # | 941 | # |
diff --git a/arch/powerpc/configs/mpc86xx_defconfig b/arch/powerpc/configs/mpc86xx_defconfig index adc756e1f252..5bb1b8eb0b49 100644 --- a/arch/powerpc/configs/mpc86xx_defconfig +++ b/arch/powerpc/configs/mpc86xx_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:39 2009 | 4 | # Wed May 13 17:22:00 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_PHYS_64BIT is not set | 19 | # CONFIG_PHYS_64BIT is not set |
| 19 | CONFIG_ALTIVEC=y | 20 | CONFIG_ALTIVEC=y |
| @@ -57,6 +58,7 @@ CONFIG_GENERIC_BUG=y | |||
| 57 | CONFIG_DEFAULT_UIMAGE=y | 58 | CONFIG_DEFAULT_UIMAGE=y |
| 58 | # CONFIG_PPC_DCR_NATIVE is not set | 59 | # CONFIG_PPC_DCR_NATIVE is not set |
| 59 | # CONFIG_PPC_DCR_MMIO is not set | 60 | # CONFIG_PPC_DCR_MMIO is not set |
| 61 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 61 | 63 | ||
| 62 | # | 64 | # |
| @@ -71,11 +73,21 @@ CONFIG_SWAP=y | |||
| 71 | CONFIG_SYSVIPC=y | 73 | CONFIG_SYSVIPC=y |
| 72 | CONFIG_SYSVIPC_SYSCTL=y | 74 | CONFIG_SYSVIPC_SYSCTL=y |
| 73 | CONFIG_POSIX_MQUEUE=y | 75 | CONFIG_POSIX_MQUEUE=y |
| 76 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 74 | CONFIG_BSD_PROCESS_ACCT=y | 77 | CONFIG_BSD_PROCESS_ACCT=y |
| 75 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 78 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
| 76 | # CONFIG_TASKSTATS is not set | 79 | # CONFIG_TASKSTATS is not set |
| 77 | CONFIG_AUDIT=y | 80 | CONFIG_AUDIT=y |
| 78 | # CONFIG_AUDITSYSCALL is not set | 81 | # CONFIG_AUDITSYSCALL is not set |
| 82 | |||
| 83 | # | ||
| 84 | # RCU Subsystem | ||
| 85 | # | ||
| 86 | CONFIG_CLASSIC_RCU=y | ||
| 87 | # CONFIG_TREE_RCU is not set | ||
| 88 | # CONFIG_PREEMPT_RCU is not set | ||
| 89 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 90 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 79 | CONFIG_IKCONFIG=y | 91 | CONFIG_IKCONFIG=y |
| 80 | CONFIG_IKCONFIG_PROC=y | 92 | CONFIG_IKCONFIG_PROC=y |
| 81 | CONFIG_LOG_BUF_SHIFT=14 | 93 | CONFIG_LOG_BUF_SHIFT=14 |
| @@ -91,22 +103,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 91 | # CONFIG_NAMESPACES is not set | 103 | # CONFIG_NAMESPACES is not set |
| 92 | CONFIG_BLK_DEV_INITRD=y | 104 | CONFIG_BLK_DEV_INITRD=y |
| 93 | CONFIG_INITRAMFS_SOURCE="" | 105 | CONFIG_INITRAMFS_SOURCE="" |
| 106 | CONFIG_RD_GZIP=y | ||
| 107 | # CONFIG_RD_BZIP2 is not set | ||
| 108 | # CONFIG_RD_LZMA is not set | ||
| 94 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 109 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 95 | CONFIG_SYSCTL=y | 110 | CONFIG_SYSCTL=y |
| 111 | CONFIG_ANON_INODES=y | ||
| 96 | CONFIG_EMBEDDED=y | 112 | CONFIG_EMBEDDED=y |
| 97 | CONFIG_SYSCTL_SYSCALL=y | 113 | CONFIG_SYSCTL_SYSCALL=y |
| 98 | CONFIG_KALLSYMS=y | 114 | CONFIG_KALLSYMS=y |
| 99 | CONFIG_KALLSYMS_ALL=y | 115 | CONFIG_KALLSYMS_ALL=y |
| 100 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 101 | CONFIG_KALLSYMS_EXTRA_PASS=y | 116 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| 117 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 102 | CONFIG_HOTPLUG=y | 118 | CONFIG_HOTPLUG=y |
| 103 | CONFIG_PRINTK=y | 119 | CONFIG_PRINTK=y |
| 104 | CONFIG_BUG=y | 120 | CONFIG_BUG=y |
| 105 | CONFIG_ELF_CORE=y | 121 | CONFIG_ELF_CORE=y |
| 106 | CONFIG_COMPAT_BRK=y | ||
| 107 | CONFIG_BASE_FULL=y | 122 | CONFIG_BASE_FULL=y |
| 108 | CONFIG_FUTEX=y | 123 | CONFIG_FUTEX=y |
| 109 | CONFIG_ANON_INODES=y | ||
| 110 | CONFIG_EPOLL=y | 124 | CONFIG_EPOLL=y |
| 111 | CONFIG_SIGNALFD=y | 125 | CONFIG_SIGNALFD=y |
| 112 | CONFIG_TIMERFD=y | 126 | CONFIG_TIMERFD=y |
| @@ -116,10 +130,12 @@ CONFIG_AIO=y | |||
| 116 | CONFIG_VM_EVENT_COUNTERS=y | 130 | CONFIG_VM_EVENT_COUNTERS=y |
| 117 | CONFIG_PCI_QUIRKS=y | 131 | CONFIG_PCI_QUIRKS=y |
| 118 | CONFIG_SLUB_DEBUG=y | 132 | CONFIG_SLUB_DEBUG=y |
| 133 | CONFIG_COMPAT_BRK=y | ||
| 119 | # CONFIG_SLAB is not set | 134 | # CONFIG_SLAB is not set |
| 120 | CONFIG_SLUB=y | 135 | CONFIG_SLUB=y |
| 121 | # CONFIG_SLOB is not set | 136 | # CONFIG_SLOB is not set |
| 122 | # CONFIG_PROFILING is not set | 137 | # CONFIG_PROFILING is not set |
| 138 | # CONFIG_MARKERS is not set | ||
| 123 | CONFIG_HAVE_OPROFILE=y | 139 | CONFIG_HAVE_OPROFILE=y |
| 124 | # CONFIG_KPROBES is not set | 140 | # CONFIG_KPROBES is not set |
| 125 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 141 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| @@ -128,6 +144,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 128 | CONFIG_HAVE_KRETPROBES=y | 144 | CONFIG_HAVE_KRETPROBES=y |
| 129 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 145 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 130 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 146 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
| 147 | # CONFIG_SLOW_WORK is not set | ||
| 131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 148 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 132 | CONFIG_SLABINFO=y | 149 | CONFIG_SLABINFO=y |
| 133 | CONFIG_RT_MUTEXES=y | 150 | CONFIG_RT_MUTEXES=y |
| @@ -141,7 +158,6 @@ CONFIG_MODVERSIONS=y | |||
| 141 | CONFIG_STOP_MACHINE=y | 158 | CONFIG_STOP_MACHINE=y |
| 142 | CONFIG_BLOCK=y | 159 | CONFIG_BLOCK=y |
| 143 | CONFIG_LBD=y | 160 | CONFIG_LBD=y |
| 144 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 145 | # CONFIG_BLK_DEV_BSG is not set | 161 | # CONFIG_BLK_DEV_BSG is not set |
| 146 | # CONFIG_BLK_DEV_INTEGRITY is not set | 162 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 147 | 163 | ||
| @@ -157,18 +173,11 @@ CONFIG_IOSCHED_CFQ=y | |||
| 157 | CONFIG_DEFAULT_CFQ=y | 173 | CONFIG_DEFAULT_CFQ=y |
| 158 | # CONFIG_DEFAULT_NOOP is not set | 174 | # CONFIG_DEFAULT_NOOP is not set |
| 159 | CONFIG_DEFAULT_IOSCHED="cfq" | 175 | CONFIG_DEFAULT_IOSCHED="cfq" |
| 160 | CONFIG_CLASSIC_RCU=y | ||
| 161 | # CONFIG_TREE_RCU is not set | ||
| 162 | # CONFIG_PREEMPT_RCU is not set | ||
| 163 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 164 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 165 | # CONFIG_FREEZER is not set | 176 | # CONFIG_FREEZER is not set |
| 166 | 177 | ||
| 167 | # | 178 | # |
| 168 | # Platform support | 179 | # Platform support |
| 169 | # | 180 | # |
| 170 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 171 | CONFIG_CLASSIC32=y | ||
| 172 | # CONFIG_PPC_CHRP is not set | 181 | # CONFIG_PPC_CHRP is not set |
| 173 | # CONFIG_MPC5121_ADS is not set | 182 | # CONFIG_MPC5121_ADS is not set |
| 174 | # CONFIG_MPC5121_GENERIC is not set | 183 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -183,9 +192,12 @@ CONFIG_PPC_86xx=y | |||
| 183 | CONFIG_MPC8641_HPCN=y | 192 | CONFIG_MPC8641_HPCN=y |
| 184 | CONFIG_SBC8641D=y | 193 | CONFIG_SBC8641D=y |
| 185 | CONFIG_MPC8610_HPCD=y | 194 | CONFIG_MPC8610_HPCD=y |
| 195 | # CONFIG_GEF_PPC9A is not set | ||
| 196 | # CONFIG_GEF_SBC310 is not set | ||
| 186 | CONFIG_GEF_SBC610=y | 197 | CONFIG_GEF_SBC610=y |
| 187 | CONFIG_MPC8641=y | 198 | CONFIG_MPC8641=y |
| 188 | CONFIG_MPC8610=y | 199 | CONFIG_MPC8610=y |
| 200 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 189 | # CONFIG_IPIC is not set | 201 | # CONFIG_IPIC is not set |
| 190 | CONFIG_MPIC=y | 202 | CONFIG_MPIC=y |
| 191 | # CONFIG_MPIC_WEIRD is not set | 203 | # CONFIG_MPIC_WEIRD is not set |
| @@ -247,9 +259,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 247 | CONFIG_BOUNCE=y | 259 | CONFIG_BOUNCE=y |
| 248 | CONFIG_VIRT_TO_BUS=y | 260 | CONFIG_VIRT_TO_BUS=y |
| 249 | CONFIG_UNEVICTABLE_LRU=y | 261 | CONFIG_UNEVICTABLE_LRU=y |
| 262 | CONFIG_HAVE_MLOCK=y | ||
| 263 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 250 | CONFIG_PPC_4K_PAGES=y | 264 | CONFIG_PPC_4K_PAGES=y |
| 251 | # CONFIG_PPC_16K_PAGES is not set | 265 | # CONFIG_PPC_16K_PAGES is not set |
| 252 | # CONFIG_PPC_64K_PAGES is not set | 266 | # CONFIG_PPC_64K_PAGES is not set |
| 267 | # CONFIG_PPC_256K_PAGES is not set | ||
| 253 | CONFIG_FORCE_MAX_ZONEORDER=11 | 268 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 254 | CONFIG_PROC_DEVICETREE=y | 269 | CONFIG_PROC_DEVICETREE=y |
| 255 | # CONFIG_CMDLINE_BOOL is not set | 270 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -276,6 +291,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 276 | # CONFIG_PCI_LEGACY is not set | 291 | # CONFIG_PCI_LEGACY is not set |
| 277 | # CONFIG_PCI_DEBUG is not set | 292 | # CONFIG_PCI_DEBUG is not set |
| 278 | # CONFIG_PCI_STUB is not set | 293 | # CONFIG_PCI_STUB is not set |
| 294 | # CONFIG_PCI_IOV is not set | ||
| 279 | # CONFIG_PCCARD is not set | 295 | # CONFIG_PCCARD is not set |
| 280 | # CONFIG_HOTPLUG_PCI is not set | 296 | # CONFIG_HOTPLUG_PCI is not set |
| 281 | CONFIG_HAS_RAPIDIO=y | 297 | CONFIG_HAS_RAPIDIO=y |
| @@ -299,7 +315,6 @@ CONFIG_NET=y | |||
| 299 | # | 315 | # |
| 300 | # Networking options | 316 | # Networking options |
| 301 | # | 317 | # |
| 302 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 303 | CONFIG_PACKET=y | 318 | CONFIG_PACKET=y |
| 304 | # CONFIG_PACKET_MMAP is not set | 319 | # CONFIG_PACKET_MMAP is not set |
| 305 | CONFIG_UNIX=y | 320 | CONFIG_UNIX=y |
| @@ -387,6 +402,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
| 387 | # CONFIG_LAPB is not set | 402 | # CONFIG_LAPB is not set |
| 388 | # CONFIG_ECONET is not set | 403 | # CONFIG_ECONET is not set |
| 389 | # CONFIG_WAN_ROUTER is not set | 404 | # CONFIG_WAN_ROUTER is not set |
| 405 | # CONFIG_PHONET is not set | ||
| 390 | # CONFIG_NET_SCHED is not set | 406 | # CONFIG_NET_SCHED is not set |
| 391 | # CONFIG_DCB is not set | 407 | # CONFIG_DCB is not set |
| 392 | 408 | ||
| @@ -399,7 +415,6 @@ CONFIG_SCTP_HMAC_MD5=y | |||
| 399 | # CONFIG_IRDA is not set | 415 | # CONFIG_IRDA is not set |
| 400 | # CONFIG_BT is not set | 416 | # CONFIG_BT is not set |
| 401 | # CONFIG_AF_RXRPC is not set | 417 | # CONFIG_AF_RXRPC is not set |
| 402 | # CONFIG_PHONET is not set | ||
| 403 | CONFIG_FIB_RULES=y | 418 | CONFIG_FIB_RULES=y |
| 404 | CONFIG_WIRELESS=y | 419 | CONFIG_WIRELESS=y |
| 405 | # CONFIG_CFG80211 is not set | 420 | # CONFIG_CFG80211 is not set |
| @@ -454,13 +469,20 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 454 | # CONFIG_BLK_DEV_HD is not set | 469 | # CONFIG_BLK_DEV_HD is not set |
| 455 | CONFIG_MISC_DEVICES=y | 470 | CONFIG_MISC_DEVICES=y |
| 456 | # CONFIG_PHANTOM is not set | 471 | # CONFIG_PHANTOM is not set |
| 457 | # CONFIG_EEPROM_93CX6 is not set | ||
| 458 | # CONFIG_SGI_IOC4 is not set | 472 | # CONFIG_SGI_IOC4 is not set |
| 459 | # CONFIG_TIFM_CORE is not set | 473 | # CONFIG_TIFM_CORE is not set |
| 460 | # CONFIG_ICS932S401 is not set | 474 | # CONFIG_ICS932S401 is not set |
| 461 | # CONFIG_ENCLOSURE_SERVICES is not set | 475 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 462 | # CONFIG_HP_ILO is not set | 476 | # CONFIG_HP_ILO is not set |
| 477 | # CONFIG_ISL29003 is not set | ||
| 463 | # CONFIG_C2PORT is not set | 478 | # CONFIG_C2PORT is not set |
| 479 | |||
| 480 | # | ||
| 481 | # EEPROM support | ||
| 482 | # | ||
| 483 | # CONFIG_EEPROM_AT24 is not set | ||
| 484 | CONFIG_EEPROM_LEGACY=y | ||
| 485 | # CONFIG_EEPROM_93CX6 is not set | ||
| 464 | CONFIG_HAVE_IDE=y | 486 | CONFIG_HAVE_IDE=y |
| 465 | # CONFIG_IDE is not set | 487 | # CONFIG_IDE is not set |
| 466 | 488 | ||
| @@ -519,9 +541,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 519 | # CONFIG_MEGARAID_NEWGEN is not set | 541 | # CONFIG_MEGARAID_NEWGEN is not set |
| 520 | # CONFIG_MEGARAID_LEGACY is not set | 542 | # CONFIG_MEGARAID_LEGACY is not set |
| 521 | # CONFIG_MEGARAID_SAS is not set | 543 | # CONFIG_MEGARAID_SAS is not set |
| 544 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 522 | # CONFIG_SCSI_HPTIOP is not set | 545 | # CONFIG_SCSI_HPTIOP is not set |
| 523 | # CONFIG_SCSI_BUSLOGIC is not set | 546 | # CONFIG_SCSI_BUSLOGIC is not set |
| 524 | # CONFIG_LIBFC is not set | 547 | # CONFIG_LIBFC is not set |
| 548 | # CONFIG_LIBFCOE is not set | ||
| 525 | # CONFIG_FCOE is not set | 549 | # CONFIG_FCOE is not set |
| 526 | # CONFIG_SCSI_DMX3191D is not set | 550 | # CONFIG_SCSI_DMX3191D is not set |
| 527 | # CONFIG_SCSI_EATA is not set | 551 | # CONFIG_SCSI_EATA is not set |
| @@ -544,6 +568,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 544 | # CONFIG_SCSI_DEBUG is not set | 568 | # CONFIG_SCSI_DEBUG is not set |
| 545 | # CONFIG_SCSI_SRP is not set | 569 | # CONFIG_SCSI_SRP is not set |
| 546 | # CONFIG_SCSI_DH is not set | 570 | # CONFIG_SCSI_DH is not set |
| 571 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 547 | CONFIG_ATA=y | 572 | CONFIG_ATA=y |
| 548 | # CONFIG_ATA_NONSTANDARD is not set | 573 | # CONFIG_ATA_NONSTANDARD is not set |
| 549 | CONFIG_SATA_PMP=y | 574 | CONFIG_SATA_PMP=y |
| @@ -620,6 +645,7 @@ CONFIG_PATA_ALI=y | |||
| 620 | # CONFIG_I2O is not set | 645 | # CONFIG_I2O is not set |
| 621 | # CONFIG_MACINTOSH_DRIVERS is not set | 646 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 622 | CONFIG_NETDEVICES=y | 647 | CONFIG_NETDEVICES=y |
| 648 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 623 | CONFIG_DUMMY=y | 649 | CONFIG_DUMMY=y |
| 624 | # CONFIG_BONDING is not set | 650 | # CONFIG_BONDING is not set |
| 625 | # CONFIG_MACVLAN is not set | 651 | # CONFIG_MACVLAN is not set |
| @@ -653,6 +679,8 @@ CONFIG_MII=y | |||
| 653 | # CONFIG_SUNGEM is not set | 679 | # CONFIG_SUNGEM is not set |
| 654 | # CONFIG_CASSINI is not set | 680 | # CONFIG_CASSINI is not set |
| 655 | # CONFIG_NET_VENDOR_3COM is not set | 681 | # CONFIG_NET_VENDOR_3COM is not set |
| 682 | # CONFIG_ETHOC is not set | ||
| 683 | # CONFIG_DNET is not set | ||
| 656 | # CONFIG_NET_TULIP is not set | 684 | # CONFIG_NET_TULIP is not set |
| 657 | # CONFIG_HP100 is not set | 685 | # CONFIG_HP100 is not set |
| 658 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 686 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -672,6 +700,7 @@ CONFIG_NETDEV_1000=y | |||
| 672 | # CONFIG_E1000E is not set | 700 | # CONFIG_E1000E is not set |
| 673 | # CONFIG_IP1000 is not set | 701 | # CONFIG_IP1000 is not set |
| 674 | # CONFIG_IGB is not set | 702 | # CONFIG_IGB is not set |
| 703 | # CONFIG_IGBVF is not set | ||
| 675 | # CONFIG_NS83820 is not set | 704 | # CONFIG_NS83820 is not set |
| 676 | # CONFIG_HAMACHI is not set | 705 | # CONFIG_HAMACHI is not set |
| 677 | # CONFIG_YELLOWFIN is not set | 706 | # CONFIG_YELLOWFIN is not set |
| @@ -682,11 +711,12 @@ CONFIG_NETDEV_1000=y | |||
| 682 | # CONFIG_VIA_VELOCITY is not set | 711 | # CONFIG_VIA_VELOCITY is not set |
| 683 | # CONFIG_TIGON3 is not set | 712 | # CONFIG_TIGON3 is not set |
| 684 | # CONFIG_BNX2 is not set | 713 | # CONFIG_BNX2 is not set |
| 714 | CONFIG_FSL_PQ_MDIO=y | ||
| 685 | CONFIG_GIANFAR=y | 715 | CONFIG_GIANFAR=y |
| 686 | # CONFIG_MV643XX_ETH is not set | ||
| 687 | # CONFIG_QLA3XXX is not set | 716 | # CONFIG_QLA3XXX is not set |
| 688 | # CONFIG_ATL1 is not set | 717 | # CONFIG_ATL1 is not set |
| 689 | # CONFIG_ATL1E is not set | 718 | # CONFIG_ATL1E is not set |
| 719 | # CONFIG_ATL1C is not set | ||
| 690 | # CONFIG_JME is not set | 720 | # CONFIG_JME is not set |
| 691 | CONFIG_NETDEV_10000=y | 721 | CONFIG_NETDEV_10000=y |
| 692 | # CONFIG_CHELSIO_T1 is not set | 722 | # CONFIG_CHELSIO_T1 is not set |
| @@ -696,6 +726,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 696 | # CONFIG_IXGBE is not set | 726 | # CONFIG_IXGBE is not set |
| 697 | # CONFIG_IXGB is not set | 727 | # CONFIG_IXGB is not set |
| 698 | # CONFIG_S2IO is not set | 728 | # CONFIG_S2IO is not set |
| 729 | # CONFIG_VXGE is not set | ||
| 699 | # CONFIG_MYRI10GE is not set | 730 | # CONFIG_MYRI10GE is not set |
| 700 | # CONFIG_NETXEN_NIC is not set | 731 | # CONFIG_NETXEN_NIC is not set |
| 701 | # CONFIG_NIU is not set | 732 | # CONFIG_NIU is not set |
| @@ -705,6 +736,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 705 | # CONFIG_BNX2X is not set | 736 | # CONFIG_BNX2X is not set |
| 706 | # CONFIG_QLGE is not set | 737 | # CONFIG_QLGE is not set |
| 707 | # CONFIG_SFC is not set | 738 | # CONFIG_SFC is not set |
| 739 | # CONFIG_BE2NET is not set | ||
| 708 | # CONFIG_TR is not set | 740 | # CONFIG_TR is not set |
| 709 | 741 | ||
| 710 | # | 742 | # |
| @@ -712,7 +744,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 712 | # | 744 | # |
| 713 | # CONFIG_WLAN_PRE80211 is not set | 745 | # CONFIG_WLAN_PRE80211 is not set |
| 714 | # CONFIG_WLAN_80211 is not set | 746 | # CONFIG_WLAN_80211 is not set |
| 715 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 716 | 747 | ||
| 717 | # | 748 | # |
| 718 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 749 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -879,12 +910,9 @@ CONFIG_I2C_MPC=y | |||
| 879 | # Miscellaneous I2C Chip support | 910 | # Miscellaneous I2C Chip support |
| 880 | # | 911 | # |
| 881 | # CONFIG_DS1682 is not set | 912 | # CONFIG_DS1682 is not set |
| 882 | # CONFIG_EEPROM_AT24 is not set | ||
| 883 | CONFIG_EEPROM_LEGACY=y | ||
| 884 | # CONFIG_SENSORS_PCF8574 is not set | 913 | # CONFIG_SENSORS_PCF8574 is not set |
| 885 | # CONFIG_PCF8575 is not set | 914 | # CONFIG_PCF8575 is not set |
| 886 | # CONFIG_SENSORS_PCA9539 is not set | 915 | # CONFIG_SENSORS_PCA9539 is not set |
| 887 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 888 | # CONFIG_SENSORS_MAX6875 is not set | 916 | # CONFIG_SENSORS_MAX6875 is not set |
| 889 | # CONFIG_SENSORS_TSL2550 is not set | 917 | # CONFIG_SENSORS_TSL2550 is not set |
| 890 | # CONFIG_I2C_DEBUG_CORE is not set | 918 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -963,7 +991,7 @@ CONFIG_VIDEO_MEDIA=m | |||
| 963 | # | 991 | # |
| 964 | # CONFIG_MEDIA_ATTACH is not set | 992 | # CONFIG_MEDIA_ATTACH is not set |
| 965 | CONFIG_MEDIA_TUNER=m | 993 | CONFIG_MEDIA_TUNER=m |
| 966 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | 994 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
| 967 | CONFIG_MEDIA_TUNER_SIMPLE=m | 995 | CONFIG_MEDIA_TUNER_SIMPLE=m |
| 968 | CONFIG_MEDIA_TUNER_TDA8290=m | 996 | CONFIG_MEDIA_TUNER_TDA8290=m |
| 969 | CONFIG_MEDIA_TUNER_TDA9887=m | 997 | CONFIG_MEDIA_TUNER_TDA9887=m |
| @@ -972,6 +1000,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
| 972 | CONFIG_MEDIA_TUNER_MT20XX=m | 1000 | CONFIG_MEDIA_TUNER_MT20XX=m |
| 973 | CONFIG_MEDIA_TUNER_XC2028=m | 1001 | CONFIG_MEDIA_TUNER_XC2028=m |
| 974 | CONFIG_MEDIA_TUNER_XC5000=m | 1002 | CONFIG_MEDIA_TUNER_XC5000=m |
| 1003 | CONFIG_MEDIA_TUNER_MC44S803=m | ||
| 975 | # CONFIG_DVB_DYNAMIC_MINORS is not set | 1004 | # CONFIG_DVB_DYNAMIC_MINORS is not set |
| 976 | CONFIG_DVB_CAPTURE_DRIVERS=y | 1005 | CONFIG_DVB_CAPTURE_DRIVERS=y |
| 977 | 1006 | ||
| @@ -1011,103 +1040,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
| 1011 | # | 1040 | # |
| 1012 | # Supported DVB Frontends | 1041 | # Supported DVB Frontends |
| 1013 | # | 1042 | # |
| 1014 | |||
| 1015 | # | ||
| 1016 | # Customise DVB Frontends | ||
| 1017 | # | ||
| 1018 | # CONFIG_DVB_FE_CUSTOMISE is not set | 1043 | # CONFIG_DVB_FE_CUSTOMISE is not set |
| 1019 | |||
| 1020 | # | ||
| 1021 | # Multistandard (satellite) frontends | ||
| 1022 | # | ||
| 1023 | # CONFIG_DVB_STB0899 is not set | ||
| 1024 | # CONFIG_DVB_STB6100 is not set | ||
| 1025 | |||
| 1026 | # | ||
| 1027 | # DVB-S (satellite) frontends | ||
| 1028 | # | ||
| 1029 | # CONFIG_DVB_CX24110 is not set | ||
| 1030 | # CONFIG_DVB_CX24123 is not set | ||
| 1031 | # CONFIG_DVB_MT312 is not set | ||
| 1032 | # CONFIG_DVB_S5H1420 is not set | ||
| 1033 | # CONFIG_DVB_STV0288 is not set | ||
| 1034 | # CONFIG_DVB_STB6000 is not set | ||
| 1035 | # CONFIG_DVB_STV0299 is not set | ||
| 1036 | # CONFIG_DVB_TDA8083 is not set | ||
| 1037 | # CONFIG_DVB_TDA10086 is not set | ||
| 1038 | # CONFIG_DVB_TDA8261 is not set | ||
| 1039 | # CONFIG_DVB_VES1X93 is not set | ||
| 1040 | # CONFIG_DVB_TUNER_ITD1000 is not set | ||
| 1041 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
| 1042 | # CONFIG_DVB_TDA826X is not set | ||
| 1043 | # CONFIG_DVB_TUA6100 is not set | ||
| 1044 | # CONFIG_DVB_CX24116 is not set | ||
| 1045 | # CONFIG_DVB_SI21XX is not set | ||
| 1046 | |||
| 1047 | # | ||
| 1048 | # DVB-T (terrestrial) frontends | ||
| 1049 | # | ||
| 1050 | # CONFIG_DVB_SP8870 is not set | ||
| 1051 | # CONFIG_DVB_SP887X is not set | ||
| 1052 | # CONFIG_DVB_CX22700 is not set | ||
| 1053 | # CONFIG_DVB_CX22702 is not set | ||
| 1054 | # CONFIG_DVB_DRX397XD is not set | ||
| 1055 | # CONFIG_DVB_L64781 is not set | ||
| 1056 | # CONFIG_DVB_TDA1004X is not set | ||
| 1057 | # CONFIG_DVB_NXT6000 is not set | ||
| 1058 | # CONFIG_DVB_MT352 is not set | ||
| 1059 | # CONFIG_DVB_ZL10353 is not set | ||
| 1060 | # CONFIG_DVB_DIB3000MB is not set | ||
| 1061 | # CONFIG_DVB_DIB3000MC is not set | ||
| 1062 | # CONFIG_DVB_DIB7000M is not set | ||
| 1063 | # CONFIG_DVB_DIB7000P is not set | ||
| 1064 | # CONFIG_DVB_TDA10048 is not set | ||
| 1065 | |||
| 1066 | # | ||
| 1067 | # DVB-C (cable) frontends | ||
| 1068 | # | ||
| 1069 | # CONFIG_DVB_VES1820 is not set | ||
| 1070 | # CONFIG_DVB_TDA10021 is not set | ||
| 1071 | # CONFIG_DVB_TDA10023 is not set | ||
| 1072 | # CONFIG_DVB_STV0297 is not set | ||
| 1073 | |||
| 1074 | # | ||
| 1075 | # ATSC (North American/Korean Terrestrial/Cable DTV) frontends | ||
| 1076 | # | ||
| 1077 | # CONFIG_DVB_NXT200X is not set | ||
| 1078 | # CONFIG_DVB_OR51211 is not set | ||
| 1079 | # CONFIG_DVB_OR51132 is not set | ||
| 1080 | # CONFIG_DVB_BCM3510 is not set | ||
| 1081 | # CONFIG_DVB_LGDT330X is not set | ||
| 1082 | # CONFIG_DVB_LGDT3304 is not set | ||
| 1083 | # CONFIG_DVB_S5H1409 is not set | ||
| 1084 | # CONFIG_DVB_AU8522 is not set | ||
| 1085 | # CONFIG_DVB_S5H1411 is not set | ||
| 1086 | |||
| 1087 | # | ||
| 1088 | # ISDB-T (terrestrial) frontends | ||
| 1089 | # | ||
| 1090 | # CONFIG_DVB_S921 is not set | ||
| 1091 | |||
| 1092 | # | ||
| 1093 | # Digital terrestrial only tuners/PLL | ||
| 1094 | # | ||
| 1095 | # CONFIG_DVB_PLL is not set | ||
| 1096 | # CONFIG_DVB_TUNER_DIB0070 is not set | ||
| 1097 | |||
| 1098 | # | ||
| 1099 | # SEC control devices for DVB-S | ||
| 1100 | # | ||
| 1101 | # CONFIG_DVB_LNBP21 is not set | ||
| 1102 | # CONFIG_DVB_ISL6405 is not set | ||
| 1103 | # CONFIG_DVB_ISL6421 is not set | ||
| 1104 | # CONFIG_DVB_LGS8GL5 is not set | ||
| 1105 | |||
| 1106 | # | ||
| 1107 | # Tools to develop new frontends | ||
| 1108 | # | ||
| 1109 | # CONFIG_DVB_DUMMY_FE is not set | ||
| 1110 | # CONFIG_DVB_AF9013 is not set | ||
| 1111 | CONFIG_DAB=y | 1044 | CONFIG_DAB=y |
| 1112 | # CONFIG_USB_DABUSB is not set | 1045 | # CONFIG_USB_DABUSB is not set |
| 1113 | 1046 | ||
| @@ -1187,6 +1120,8 @@ CONFIG_SND_PCI=y | |||
| 1187 | # CONFIG_SND_INDIGO is not set | 1120 | # CONFIG_SND_INDIGO is not set |
| 1188 | # CONFIG_SND_INDIGOIO is not set | 1121 | # CONFIG_SND_INDIGOIO is not set |
| 1189 | # CONFIG_SND_INDIGODJ is not set | 1122 | # CONFIG_SND_INDIGODJ is not set |
| 1123 | # CONFIG_SND_INDIGOIOX is not set | ||
| 1124 | # CONFIG_SND_INDIGODJX is not set | ||
| 1190 | # CONFIG_SND_EMU10K1 is not set | 1125 | # CONFIG_SND_EMU10K1 is not set |
| 1191 | # CONFIG_SND_EMU10K1X is not set | 1126 | # CONFIG_SND_EMU10K1X is not set |
| 1192 | # CONFIG_SND_ENS1370 is not set | 1127 | # CONFIG_SND_ENS1370 is not set |
| @@ -1241,15 +1176,17 @@ CONFIG_USB_HID=y | |||
| 1241 | # | 1176 | # |
| 1242 | # Special HID drivers | 1177 | # Special HID drivers |
| 1243 | # | 1178 | # |
| 1244 | CONFIG_HID_COMPAT=y | ||
| 1245 | CONFIG_HID_A4TECH=y | 1179 | CONFIG_HID_A4TECH=y |
| 1246 | CONFIG_HID_APPLE=y | 1180 | CONFIG_HID_APPLE=y |
| 1247 | CONFIG_HID_BELKIN=y | 1181 | CONFIG_HID_BELKIN=y |
| 1248 | CONFIG_HID_CHERRY=y | 1182 | CONFIG_HID_CHERRY=y |
| 1249 | CONFIG_HID_CHICONY=y | 1183 | CONFIG_HID_CHICONY=y |
| 1250 | CONFIG_HID_CYPRESS=y | 1184 | CONFIG_HID_CYPRESS=y |
| 1185 | # CONFIG_DRAGONRISE_FF is not set | ||
| 1251 | CONFIG_HID_EZKEY=y | 1186 | CONFIG_HID_EZKEY=y |
| 1187 | # CONFIG_HID_KYE is not set | ||
| 1252 | CONFIG_HID_GYRATION=y | 1188 | CONFIG_HID_GYRATION=y |
| 1189 | # CONFIG_HID_KENSINGTON is not set | ||
| 1253 | CONFIG_HID_LOGITECH=y | 1190 | CONFIG_HID_LOGITECH=y |
| 1254 | # CONFIG_LOGITECH_FF is not set | 1191 | # CONFIG_LOGITECH_FF is not set |
| 1255 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1192 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
| @@ -1322,11 +1259,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1322 | # CONFIG_USB_TMC is not set | 1259 | # CONFIG_USB_TMC is not set |
| 1323 | 1260 | ||
| 1324 | # | 1261 | # |
| 1325 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1262 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1326 | # | 1263 | # |
| 1327 | 1264 | ||
| 1328 | # | 1265 | # |
| 1329 | # see USB_STORAGE Help for more information | 1266 | # also be needed; see USB_STORAGE Help for more info |
| 1330 | # | 1267 | # |
| 1331 | CONFIG_USB_STORAGE=y | 1268 | CONFIG_USB_STORAGE=y |
| 1332 | # CONFIG_USB_STORAGE_DEBUG is not set | 1269 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1368,7 +1305,6 @@ CONFIG_USB_STORAGE=y | |||
| 1368 | # CONFIG_USB_LED is not set | 1305 | # CONFIG_USB_LED is not set |
| 1369 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1306 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1370 | # CONFIG_USB_CYTHERM is not set | 1307 | # CONFIG_USB_CYTHERM is not set |
| 1371 | # CONFIG_USB_PHIDGET is not set | ||
| 1372 | # CONFIG_USB_IDMOUSE is not set | 1308 | # CONFIG_USB_IDMOUSE is not set |
| 1373 | # CONFIG_USB_FTDI_ELAN is not set | 1309 | # CONFIG_USB_FTDI_ELAN is not set |
| 1374 | # CONFIG_USB_APPLEDISPLAY is not set | 1310 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1385,6 +1321,7 @@ CONFIG_USB_STORAGE=y | |||
| 1385 | # OTG and related infrastructure | 1321 | # OTG and related infrastructure |
| 1386 | # | 1322 | # |
| 1387 | # CONFIG_USB_GPIO_VBUS is not set | 1323 | # CONFIG_USB_GPIO_VBUS is not set |
| 1324 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1388 | # CONFIG_UWB is not set | 1325 | # CONFIG_UWB is not set |
| 1389 | # CONFIG_MMC is not set | 1326 | # CONFIG_MMC is not set |
| 1390 | # CONFIG_MEMSTICK is not set | 1327 | # CONFIG_MEMSTICK is not set |
| @@ -1446,8 +1383,9 @@ CONFIG_RTC_DRV_CMOS=y | |||
| 1446 | # | 1383 | # |
| 1447 | # on-CPU RTC drivers | 1384 | # on-CPU RTC drivers |
| 1448 | # | 1385 | # |
| 1449 | # CONFIG_RTC_DRV_PPC is not set | 1386 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1450 | # CONFIG_DMADEVICES is not set | 1387 | # CONFIG_DMADEVICES is not set |
| 1388 | # CONFIG_AUXDISPLAY is not set | ||
| 1451 | # CONFIG_UIO is not set | 1389 | # CONFIG_UIO is not set |
| 1452 | # CONFIG_STAGING is not set | 1390 | # CONFIG_STAGING is not set |
| 1453 | 1391 | ||
| @@ -1458,6 +1396,7 @@ CONFIG_EXT2_FS=y | |||
| 1458 | # CONFIG_EXT2_FS_XATTR is not set | 1396 | # CONFIG_EXT2_FS_XATTR is not set |
| 1459 | # CONFIG_EXT2_FS_XIP is not set | 1397 | # CONFIG_EXT2_FS_XIP is not set |
| 1460 | CONFIG_EXT3_FS=y | 1398 | CONFIG_EXT3_FS=y |
| 1399 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1461 | CONFIG_EXT3_FS_XATTR=y | 1400 | CONFIG_EXT3_FS_XATTR=y |
| 1462 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1401 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1463 | # CONFIG_EXT3_FS_SECURITY is not set | 1402 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1481,6 +1420,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1481 | # CONFIG_FUSE_FS is not set | 1420 | # CONFIG_FUSE_FS is not set |
| 1482 | 1421 | ||
| 1483 | # | 1422 | # |
| 1423 | # Caches | ||
| 1424 | # | ||
| 1425 | # CONFIG_FSCACHE is not set | ||
| 1426 | |||
| 1427 | # | ||
| 1484 | # CD-ROM/DVD Filesystems | 1428 | # CD-ROM/DVD Filesystems |
| 1485 | # | 1429 | # |
| 1486 | CONFIG_ISO9660_FS=m | 1430 | CONFIG_ISO9660_FS=m |
| @@ -1535,6 +1479,7 @@ CONFIG_SYSV_FS=m | |||
| 1535 | CONFIG_UFS_FS=m | 1479 | CONFIG_UFS_FS=m |
| 1536 | # CONFIG_UFS_FS_WRITE is not set | 1480 | # CONFIG_UFS_FS_WRITE is not set |
| 1537 | # CONFIG_UFS_DEBUG is not set | 1481 | # CONFIG_UFS_DEBUG is not set |
| 1482 | # CONFIG_NILFS2_FS is not set | ||
| 1538 | CONFIG_NETWORK_FILESYSTEMS=y | 1483 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1539 | CONFIG_NFS_FS=y | 1484 | CONFIG_NFS_FS=y |
| 1540 | CONFIG_NFS_V3=y | 1485 | CONFIG_NFS_V3=y |
| @@ -1550,7 +1495,6 @@ CONFIG_EXPORTFS=y | |||
| 1550 | CONFIG_NFS_COMMON=y | 1495 | CONFIG_NFS_COMMON=y |
| 1551 | CONFIG_SUNRPC=y | 1496 | CONFIG_SUNRPC=y |
| 1552 | CONFIG_SUNRPC_GSS=y | 1497 | CONFIG_SUNRPC_GSS=y |
| 1553 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1554 | CONFIG_RPCSEC_GSS_KRB5=y | 1498 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1555 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1499 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1556 | # CONFIG_SMB_FS is not set | 1500 | # CONFIG_SMB_FS is not set |
| @@ -1621,6 +1565,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
| 1621 | # CONFIG_NLS_KOI8_U is not set | 1565 | # CONFIG_NLS_KOI8_U is not set |
| 1622 | CONFIG_NLS_UTF8=m | 1566 | CONFIG_NLS_UTF8=m |
| 1623 | # CONFIG_DLM is not set | 1567 | # CONFIG_DLM is not set |
| 1568 | # CONFIG_BINARY_PRINTF is not set | ||
| 1624 | 1569 | ||
| 1625 | # | 1570 | # |
| 1626 | # Library routines | 1571 | # Library routines |
| @@ -1635,11 +1580,12 @@ CONFIG_CRC32=y | |||
| 1635 | # CONFIG_CRC7 is not set | 1580 | # CONFIG_CRC7 is not set |
| 1636 | CONFIG_LIBCRC32C=m | 1581 | CONFIG_LIBCRC32C=m |
| 1637 | CONFIG_ZLIB_INFLATE=y | 1582 | CONFIG_ZLIB_INFLATE=y |
| 1638 | CONFIG_PLIST=y | 1583 | CONFIG_DECOMPRESS_GZIP=y |
| 1639 | CONFIG_HAS_IOMEM=y | 1584 | CONFIG_HAS_IOMEM=y |
| 1640 | CONFIG_HAS_IOPORT=y | 1585 | CONFIG_HAS_IOPORT=y |
| 1641 | CONFIG_HAS_DMA=y | 1586 | CONFIG_HAS_DMA=y |
| 1642 | CONFIG_HAVE_LMB=y | 1587 | CONFIG_HAVE_LMB=y |
| 1588 | CONFIG_NLATTR=y | ||
| 1643 | 1589 | ||
| 1644 | # | 1590 | # |
| 1645 | # Kernel hacking | 1591 | # Kernel hacking |
| @@ -1657,6 +1603,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1657 | CONFIG_DETECT_SOFTLOCKUP=y | 1603 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1658 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1604 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1659 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1605 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1606 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1607 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1608 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1660 | CONFIG_SCHED_DEBUG=y | 1609 | CONFIG_SCHED_DEBUG=y |
| 1661 | # CONFIG_SCHEDSTATS is not set | 1610 | # CONFIG_SCHEDSTATS is not set |
| 1662 | # CONFIG_TIMER_STATS is not set | 1611 | # CONFIG_TIMER_STATS is not set |
| @@ -1687,9 +1636,12 @@ CONFIG_DEBUG_INFO=y | |||
| 1687 | # CONFIG_FAULT_INJECTION is not set | 1636 | # CONFIG_FAULT_INJECTION is not set |
| 1688 | # CONFIG_LATENCYTOP is not set | 1637 | # CONFIG_LATENCYTOP is not set |
| 1689 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1638 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1639 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1690 | CONFIG_HAVE_FUNCTION_TRACER=y | 1640 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1641 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1691 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1642 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1692 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1643 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1644 | CONFIG_TRACING_SUPPORT=y | ||
| 1693 | 1645 | ||
| 1694 | # | 1646 | # |
| 1695 | # Tracers | 1647 | # Tracers |
| @@ -1697,17 +1649,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1697 | # CONFIG_FUNCTION_TRACER is not set | 1649 | # CONFIG_FUNCTION_TRACER is not set |
| 1698 | # CONFIG_SCHED_TRACER is not set | 1650 | # CONFIG_SCHED_TRACER is not set |
| 1699 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1651 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1652 | # CONFIG_EVENT_TRACER is not set | ||
| 1700 | # CONFIG_BOOT_TRACER is not set | 1653 | # CONFIG_BOOT_TRACER is not set |
| 1701 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1654 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1702 | # CONFIG_STACK_TRACER is not set | 1655 | # CONFIG_STACK_TRACER is not set |
| 1703 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1656 | # CONFIG_KMEMTRACE is not set |
| 1657 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1658 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1704 | # CONFIG_SAMPLES is not set | 1659 | # CONFIG_SAMPLES is not set |
| 1705 | CONFIG_HAVE_ARCH_KGDB=y | 1660 | CONFIG_HAVE_ARCH_KGDB=y |
| 1706 | # CONFIG_KGDB is not set | 1661 | # CONFIG_KGDB is not set |
| 1707 | CONFIG_PRINT_STACK_DEPTH=64 | 1662 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1708 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1663 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1709 | # CONFIG_DEBUG_STACK_USAGE is not set | 1664 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1710 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1711 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1665 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1712 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1666 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1713 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1667 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1738,10 +1692,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1738 | CONFIG_CRYPTO_HASH=y | 1692 | CONFIG_CRYPTO_HASH=y |
| 1739 | CONFIG_CRYPTO_HASH2=y | 1693 | CONFIG_CRYPTO_HASH2=y |
| 1740 | CONFIG_CRYPTO_RNG2=y | 1694 | CONFIG_CRYPTO_RNG2=y |
| 1695 | CONFIG_CRYPTO_PCOMP=y | ||
| 1741 | CONFIG_CRYPTO_MANAGER=y | 1696 | CONFIG_CRYPTO_MANAGER=y |
| 1742 | CONFIG_CRYPTO_MANAGER2=y | 1697 | CONFIG_CRYPTO_MANAGER2=y |
| 1743 | # CONFIG_CRYPTO_GF128MUL is not set | 1698 | # CONFIG_CRYPTO_GF128MUL is not set |
| 1744 | # CONFIG_CRYPTO_NULL is not set | 1699 | # CONFIG_CRYPTO_NULL is not set |
| 1700 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1745 | # CONFIG_CRYPTO_CRYPTD is not set | 1701 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1746 | # CONFIG_CRYPTO_AUTHENC is not set | 1702 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1747 | # CONFIG_CRYPTO_TEST is not set | 1703 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1810,6 +1766,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1810 | # Compression | 1766 | # Compression |
| 1811 | # | 1767 | # |
| 1812 | # CONFIG_CRYPTO_DEFLATE is not set | 1768 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1769 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1813 | # CONFIG_CRYPTO_LZO is not set | 1770 | # CONFIG_CRYPTO_LZO is not set |
| 1814 | 1771 | ||
| 1815 | # | 1772 | # |
diff --git a/arch/powerpc/configs/mpc885_ads_defconfig b/arch/powerpc/configs/mpc885_ads_defconfig index 4b76321c0ec4..42e64ebc279d 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:41 2009 | 4 | # Wed May 13 17:22:01 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -52,6 +52,7 @@ CONFIG_GENERIC_BUG=y | |||
| 52 | # CONFIG_DEFAULT_UIMAGE is not set | 52 | # CONFIG_DEFAULT_UIMAGE is not set |
| 53 | # CONFIG_PPC_DCR_NATIVE is not set | 53 | # CONFIG_PPC_DCR_NATIVE is not set |
| 54 | # CONFIG_PPC_DCR_MMIO is not set | 54 | # CONFIG_PPC_DCR_MMIO is not set |
| 55 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 55 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 56 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 56 | 57 | ||
| 57 | # | 58 | # |
| @@ -69,6 +70,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 69 | # CONFIG_BSD_PROCESS_ACCT is not set | 70 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 70 | # CONFIG_TASKSTATS is not set | 71 | # CONFIG_TASKSTATS is not set |
| 71 | # CONFIG_AUDIT is not set | 72 | # CONFIG_AUDIT is not set |
| 73 | |||
| 74 | # | ||
| 75 | # RCU Subsystem | ||
| 76 | # | ||
| 77 | CONFIG_CLASSIC_RCU=y | ||
| 78 | # CONFIG_TREE_RCU is not set | ||
| 79 | # CONFIG_PREEMPT_RCU is not set | ||
| 80 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 81 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 72 | # CONFIG_IKCONFIG is not set | 82 | # CONFIG_IKCONFIG is not set |
| 73 | CONFIG_LOG_BUF_SHIFT=14 | 83 | CONFIG_LOG_BUF_SHIFT=14 |
| 74 | CONFIG_GROUP_SCHED=y | 84 | CONFIG_GROUP_SCHED=y |
| @@ -84,19 +94,19 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 84 | # CONFIG_BLK_DEV_INITRD is not set | 94 | # CONFIG_BLK_DEV_INITRD is not set |
| 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 95 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 86 | CONFIG_SYSCTL=y | 96 | CONFIG_SYSCTL=y |
| 97 | CONFIG_ANON_INODES=y | ||
| 87 | CONFIG_EMBEDDED=y | 98 | CONFIG_EMBEDDED=y |
| 88 | # CONFIG_SYSCTL_SYSCALL is not set | 99 | # CONFIG_SYSCTL_SYSCALL is not set |
| 89 | CONFIG_KALLSYMS=y | 100 | CONFIG_KALLSYMS=y |
| 90 | # CONFIG_KALLSYMS_ALL is not set | 101 | # CONFIG_KALLSYMS_ALL is not set |
| 91 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 102 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 103 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 92 | CONFIG_HOTPLUG=y | 104 | CONFIG_HOTPLUG=y |
| 93 | CONFIG_PRINTK=y | 105 | CONFIG_PRINTK=y |
| 94 | CONFIG_BUG=y | 106 | CONFIG_BUG=y |
| 95 | # CONFIG_ELF_CORE is not set | 107 | # CONFIG_ELF_CORE is not set |
| 96 | CONFIG_COMPAT_BRK=y | ||
| 97 | # CONFIG_BASE_FULL is not set | 108 | # CONFIG_BASE_FULL is not set |
| 98 | # CONFIG_FUTEX is not set | 109 | # CONFIG_FUTEX is not set |
| 99 | CONFIG_ANON_INODES=y | ||
| 100 | CONFIG_EPOLL=y | 110 | CONFIG_EPOLL=y |
| 101 | CONFIG_SIGNALFD=y | 111 | CONFIG_SIGNALFD=y |
| 102 | CONFIG_TIMERFD=y | 112 | CONFIG_TIMERFD=y |
| @@ -105,10 +115,12 @@ CONFIG_SHMEM=y | |||
| 105 | CONFIG_AIO=y | 115 | CONFIG_AIO=y |
| 106 | # CONFIG_VM_EVENT_COUNTERS is not set | 116 | # CONFIG_VM_EVENT_COUNTERS is not set |
| 107 | CONFIG_SLUB_DEBUG=y | 117 | CONFIG_SLUB_DEBUG=y |
| 118 | CONFIG_COMPAT_BRK=y | ||
| 108 | # CONFIG_SLAB is not set | 119 | # CONFIG_SLAB is not set |
| 109 | CONFIG_SLUB=y | 120 | CONFIG_SLUB=y |
| 110 | # CONFIG_SLOB is not set | 121 | # CONFIG_SLOB is not set |
| 111 | # CONFIG_PROFILING is not set | 122 | # CONFIG_PROFILING is not set |
| 123 | # CONFIG_MARKERS is not set | ||
| 112 | CONFIG_HAVE_OPROFILE=y | 124 | CONFIG_HAVE_OPROFILE=y |
| 113 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 125 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 114 | CONFIG_HAVE_IOREMAP_PROT=y | 126 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -116,13 +128,13 @@ CONFIG_HAVE_KPROBES=y | |||
| 116 | CONFIG_HAVE_KRETPROBES=y | 128 | CONFIG_HAVE_KRETPROBES=y |
| 117 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 129 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 118 | CONFIG_HAVE_CLK=y | 130 | CONFIG_HAVE_CLK=y |
| 131 | # CONFIG_SLOW_WORK is not set | ||
| 119 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 132 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 120 | CONFIG_SLABINFO=y | 133 | CONFIG_SLABINFO=y |
| 121 | CONFIG_BASE_SMALL=1 | 134 | CONFIG_BASE_SMALL=1 |
| 122 | # CONFIG_MODULES is not set | 135 | # CONFIG_MODULES is not set |
| 123 | CONFIG_BLOCK=y | 136 | CONFIG_BLOCK=y |
| 124 | # CONFIG_LBD is not set | 137 | # CONFIG_LBD is not set |
| 125 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 126 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
| 127 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 128 | 140 | ||
| @@ -138,11 +150,6 @@ CONFIG_DEFAULT_DEADLINE=y | |||
| 138 | # CONFIG_DEFAULT_CFQ is not set | 150 | # CONFIG_DEFAULT_CFQ is not set |
| 139 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
| 140 | CONFIG_DEFAULT_IOSCHED="deadline" | 152 | CONFIG_DEFAULT_IOSCHED="deadline" |
| 141 | CONFIG_CLASSIC_RCU=y | ||
| 142 | # CONFIG_TREE_RCU is not set | ||
| 143 | # CONFIG_PREEMPT_RCU is not set | ||
| 144 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 145 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 146 | # CONFIG_FREEZER is not set | 153 | # CONFIG_FREEZER is not set |
| 147 | 154 | ||
| 148 | # | 155 | # |
| @@ -240,9 +247,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 240 | CONFIG_BOUNCE=y | 247 | CONFIG_BOUNCE=y |
| 241 | CONFIG_VIRT_TO_BUS=y | 248 | CONFIG_VIRT_TO_BUS=y |
| 242 | CONFIG_UNEVICTABLE_LRU=y | 249 | CONFIG_UNEVICTABLE_LRU=y |
| 250 | CONFIG_HAVE_MLOCK=y | ||
| 251 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 243 | CONFIG_PPC_4K_PAGES=y | 252 | CONFIG_PPC_4K_PAGES=y |
| 244 | # CONFIG_PPC_16K_PAGES is not set | 253 | # CONFIG_PPC_16K_PAGES is not set |
| 245 | # CONFIG_PPC_64K_PAGES is not set | 254 | # CONFIG_PPC_64K_PAGES is not set |
| 255 | # CONFIG_PPC_256K_PAGES is not set | ||
| 246 | CONFIG_FORCE_MAX_ZONEORDER=11 | 256 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 247 | CONFIG_PROC_DEVICETREE=y | 257 | CONFIG_PROC_DEVICETREE=y |
| 248 | # CONFIG_CMDLINE_BOOL is not set | 258 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -277,14 +287,11 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 277 | CONFIG_KERNEL_START=0xc0000000 | 287 | CONFIG_KERNEL_START=0xc0000000 |
| 278 | CONFIG_PHYSICAL_START=0x00000000 | 288 | CONFIG_PHYSICAL_START=0x00000000 |
| 279 | CONFIG_TASK_SIZE=0x80000000 | 289 | CONFIG_TASK_SIZE=0x80000000 |
| 280 | CONFIG_CONSISTENT_START=0xfd000000 | ||
| 281 | CONFIG_CONSISTENT_SIZE=0x00200000 | ||
| 282 | CONFIG_NET=y | 290 | CONFIG_NET=y |
| 283 | 291 | ||
| 284 | # | 292 | # |
| 285 | # Networking options | 293 | # Networking options |
| 286 | # | 294 | # |
| 287 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 288 | CONFIG_PACKET=y | 295 | CONFIG_PACKET=y |
| 289 | # CONFIG_PACKET_MMAP is not set | 296 | # CONFIG_PACKET_MMAP is not set |
| 290 | CONFIG_UNIX=y | 297 | CONFIG_UNIX=y |
| @@ -335,6 +342,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 335 | # CONFIG_LAPB is not set | 342 | # CONFIG_LAPB is not set |
| 336 | # CONFIG_ECONET is not set | 343 | # CONFIG_ECONET is not set |
| 337 | # CONFIG_WAN_ROUTER is not set | 344 | # CONFIG_WAN_ROUTER is not set |
| 345 | # CONFIG_PHONET is not set | ||
| 338 | # CONFIG_NET_SCHED is not set | 346 | # CONFIG_NET_SCHED is not set |
| 339 | # CONFIG_DCB is not set | 347 | # CONFIG_DCB is not set |
| 340 | 348 | ||
| @@ -347,7 +355,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 347 | # CONFIG_IRDA is not set | 355 | # CONFIG_IRDA is not set |
| 348 | # CONFIG_BT is not set | 356 | # CONFIG_BT is not set |
| 349 | # CONFIG_AF_RXRPC is not set | 357 | # CONFIG_AF_RXRPC is not set |
| 350 | # CONFIG_PHONET is not set | ||
| 351 | CONFIG_WIRELESS=y | 358 | CONFIG_WIRELESS=y |
| 352 | # CONFIG_CFG80211 is not set | 359 | # CONFIG_CFG80211 is not set |
| 353 | CONFIG_WIRELESS_OLD_REGULATORY=y | 360 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -450,7 +457,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 450 | # LPDDR flash memory drivers | 457 | # LPDDR flash memory drivers |
| 451 | # | 458 | # |
| 452 | # CONFIG_MTD_LPDDR is not set | 459 | # CONFIG_MTD_LPDDR is not set |
| 453 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 454 | 460 | ||
| 455 | # | 461 | # |
| 456 | # UBI - Unsorted block images | 462 | # UBI - Unsorted block images |
| @@ -474,6 +480,7 @@ CONFIG_HAVE_IDE=y | |||
| 474 | # CONFIG_MD is not set | 480 | # CONFIG_MD is not set |
| 475 | # CONFIG_MACINTOSH_DRIVERS is not set | 481 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 476 | CONFIG_NETDEVICES=y | 482 | CONFIG_NETDEVICES=y |
| 483 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 477 | # CONFIG_DUMMY is not set | 484 | # CONFIG_DUMMY is not set |
| 478 | # CONFIG_BONDING is not set | 485 | # CONFIG_BONDING is not set |
| 479 | # CONFIG_MACVLAN is not set | 486 | # CONFIG_MACVLAN is not set |
| @@ -502,6 +509,8 @@ CONFIG_DAVICOM_PHY=y | |||
| 502 | # CONFIG_MDIO_BITBANG is not set | 509 | # CONFIG_MDIO_BITBANG is not set |
| 503 | CONFIG_NET_ETHERNET=y | 510 | CONFIG_NET_ETHERNET=y |
| 504 | CONFIG_MII=y | 511 | CONFIG_MII=y |
| 512 | # CONFIG_ETHOC is not set | ||
| 513 | # CONFIG_DNET is not set | ||
| 505 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 514 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 506 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 515 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 507 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 516 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -522,7 +531,6 @@ CONFIG_FS_ENET_MDIO_FEC=y | |||
| 522 | # | 531 | # |
| 523 | # CONFIG_WLAN_PRE80211 is not set | 532 | # CONFIG_WLAN_PRE80211 is not set |
| 524 | # CONFIG_WLAN_80211 is not set | 533 | # CONFIG_WLAN_80211 is not set |
| 525 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 526 | 534 | ||
| 527 | # | 535 | # |
| 528 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 536 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -573,6 +581,7 @@ CONFIG_UNIX98_PTYS=y | |||
| 573 | # CONFIG_HVC_UDBG is not set | 581 | # CONFIG_HVC_UDBG is not set |
| 574 | # CONFIG_IPMI_HANDLER is not set | 582 | # CONFIG_IPMI_HANDLER is not set |
| 575 | CONFIG_HW_RANDOM=y | 583 | CONFIG_HW_RANDOM=y |
| 584 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 576 | # CONFIG_NVRAM is not set | 585 | # CONFIG_NVRAM is not set |
| 577 | CONFIG_GEN_RTC=y | 586 | CONFIG_GEN_RTC=y |
| 578 | # CONFIG_GEN_RTC_X is not set | 587 | # CONFIG_GEN_RTC_X is not set |
| @@ -642,6 +651,7 @@ CONFIG_DAB=y | |||
| 642 | # CONFIG_EDAC is not set | 651 | # CONFIG_EDAC is not set |
| 643 | # CONFIG_RTC_CLASS is not set | 652 | # CONFIG_RTC_CLASS is not set |
| 644 | # CONFIG_DMADEVICES is not set | 653 | # CONFIG_DMADEVICES is not set |
| 654 | # CONFIG_AUXDISPLAY is not set | ||
| 645 | # CONFIG_UIO is not set | 655 | # CONFIG_UIO is not set |
| 646 | # CONFIG_STAGING is not set | 656 | # CONFIG_STAGING is not set |
| 647 | 657 | ||
| @@ -666,6 +676,11 @@ CONFIG_FILE_LOCKING=y | |||
| 666 | # CONFIG_FUSE_FS is not set | 676 | # CONFIG_FUSE_FS is not set |
| 667 | 677 | ||
| 668 | # | 678 | # |
| 679 | # Caches | ||
| 680 | # | ||
| 681 | # CONFIG_FSCACHE is not set | ||
| 682 | |||
| 683 | # | ||
| 669 | # CD-ROM/DVD Filesystems | 684 | # CD-ROM/DVD Filesystems |
| 670 | # | 685 | # |
| 671 | # CONFIG_ISO9660_FS is not set | 686 | # CONFIG_ISO9660_FS is not set |
| @@ -709,6 +724,7 @@ CONFIG_CRAMFS=y | |||
| 709 | # CONFIG_ROMFS_FS is not set | 724 | # CONFIG_ROMFS_FS is not set |
| 710 | # CONFIG_SYSV_FS is not set | 725 | # CONFIG_SYSV_FS is not set |
| 711 | # CONFIG_UFS_FS is not set | 726 | # CONFIG_UFS_FS is not set |
| 727 | # CONFIG_NILFS2_FS is not set | ||
| 712 | CONFIG_NETWORK_FILESYSTEMS=y | 728 | CONFIG_NETWORK_FILESYSTEMS=y |
| 713 | CONFIG_NFS_FS=y | 729 | CONFIG_NFS_FS=y |
| 714 | CONFIG_NFS_V3=y | 730 | CONFIG_NFS_V3=y |
| @@ -720,7 +736,6 @@ CONFIG_LOCKD=y | |||
| 720 | CONFIG_LOCKD_V4=y | 736 | CONFIG_LOCKD_V4=y |
| 721 | CONFIG_NFS_COMMON=y | 737 | CONFIG_NFS_COMMON=y |
| 722 | CONFIG_SUNRPC=y | 738 | CONFIG_SUNRPC=y |
| 723 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 724 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 739 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 725 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 740 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 726 | # CONFIG_SMB_FS is not set | 741 | # CONFIG_SMB_FS is not set |
| @@ -752,6 +767,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 752 | # CONFIG_SYSV68_PARTITION is not set | 767 | # CONFIG_SYSV68_PARTITION is not set |
| 753 | # CONFIG_NLS is not set | 768 | # CONFIG_NLS is not set |
| 754 | # CONFIG_DLM is not set | 769 | # CONFIG_DLM is not set |
| 770 | # CONFIG_BINARY_PRINTF is not set | ||
| 755 | 771 | ||
| 756 | # | 772 | # |
| 757 | # Library routines | 773 | # Library routines |
| @@ -769,6 +785,7 @@ CONFIG_HAS_IOMEM=y | |||
| 769 | CONFIG_HAS_IOPORT=y | 785 | CONFIG_HAS_IOPORT=y |
| 770 | CONFIG_HAS_DMA=y | 786 | CONFIG_HAS_DMA=y |
| 771 | CONFIG_HAVE_LMB=y | 787 | CONFIG_HAVE_LMB=y |
| 788 | CONFIG_NLATTR=y | ||
| 772 | 789 | ||
| 773 | # | 790 | # |
| 774 | # Kernel hacking | 791 | # Kernel hacking |
| @@ -786,6 +803,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 786 | CONFIG_DETECT_SOFTLOCKUP=y | 803 | CONFIG_DETECT_SOFTLOCKUP=y |
| 787 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 804 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 788 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 805 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 806 | CONFIG_DETECT_HUNG_TASK=y | ||
| 807 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 808 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 789 | CONFIG_SCHED_DEBUG=y | 809 | CONFIG_SCHED_DEBUG=y |
| 790 | # CONFIG_SCHEDSTATS is not set | 810 | # CONFIG_SCHEDSTATS is not set |
| 791 | # CONFIG_TIMER_STATS is not set | 811 | # CONFIG_TIMER_STATS is not set |
| @@ -812,9 +832,12 @@ CONFIG_DEBUG_INFO=y | |||
| 812 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 832 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
| 813 | # CONFIG_FAULT_INJECTION is not set | 833 | # CONFIG_FAULT_INJECTION is not set |
| 814 | # CONFIG_LATENCYTOP is not set | 834 | # CONFIG_LATENCYTOP is not set |
| 835 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 815 | CONFIG_HAVE_FUNCTION_TRACER=y | 836 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 837 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 816 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 838 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 817 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 839 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 840 | CONFIG_TRACING_SUPPORT=y | ||
| 818 | 841 | ||
| 819 | # | 842 | # |
| 820 | # Tracers | 843 | # Tracers |
| @@ -822,17 +845,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 822 | # CONFIG_FUNCTION_TRACER is not set | 845 | # CONFIG_FUNCTION_TRACER is not set |
| 823 | # CONFIG_SCHED_TRACER is not set | 846 | # CONFIG_SCHED_TRACER is not set |
| 824 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 847 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 848 | # CONFIG_EVENT_TRACER is not set | ||
| 825 | # CONFIG_BOOT_TRACER is not set | 849 | # CONFIG_BOOT_TRACER is not set |
| 826 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 850 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 827 | # CONFIG_STACK_TRACER is not set | 851 | # CONFIG_STACK_TRACER is not set |
| 828 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 852 | # CONFIG_KMEMTRACE is not set |
| 853 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 854 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 829 | # CONFIG_SAMPLES is not set | 855 | # CONFIG_SAMPLES is not set |
| 830 | CONFIG_HAVE_ARCH_KGDB=y | 856 | CONFIG_HAVE_ARCH_KGDB=y |
| 831 | # CONFIG_KGDB is not set | 857 | # CONFIG_KGDB is not set |
| 832 | CONFIG_PRINT_STACK_DEPTH=64 | 858 | CONFIG_PRINT_STACK_DEPTH=64 |
| 833 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 859 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 834 | # CONFIG_DEBUG_STACK_USAGE is not set | 860 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 835 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 836 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 861 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 837 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 862 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 838 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 863 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
diff --git a/arch/powerpc/configs/pmac32_defconfig b/arch/powerpc/configs/pmac32_defconfig index 5339bb44cce9..ea8870a34482 100644 --- a/arch/powerpc/configs/pmac32_defconfig +++ b/arch/powerpc/configs/pmac32_defconfig | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.28-rc3 | 3 | # Linux kernel version: 2.6.30-rc7 |
| 4 | # Tue Nov 11 19:36:51 2008 | 4 | # Mon May 25 14:53:25 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | CONFIG_ALTIVEC=y | 19 | CONFIG_ALTIVEC=y |
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| @@ -43,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
| 43 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
| 44 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
| 45 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
| 46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
| 47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
| 48 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
| 49 | CONFIG_OF=y | 50 | CONFIG_OF=y |
| @@ -52,12 +53,14 @@ CONFIG_OF=y | |||
| 52 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
| 53 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
| 54 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | 55 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y |
| 56 | CONFIG_DTC=y | ||
| 55 | # CONFIG_DEFAULT_UIMAGE is not set | 57 | # CONFIG_DEFAULT_UIMAGE is not set |
| 56 | CONFIG_HIBERNATE_32=y | 58 | CONFIG_HIBERNATE_32=y |
| 57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 59 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
| 58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 60 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
| 59 | # CONFIG_PPC_DCR_NATIVE is not set | 61 | # CONFIG_PPC_DCR_NATIVE is not set |
| 60 | # CONFIG_PPC_DCR_MMIO is not set | 62 | # CONFIG_PPC_DCR_MMIO is not set |
| 63 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 64 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 62 | 65 | ||
| 63 | # | 66 | # |
| @@ -72,14 +75,24 @@ CONFIG_SWAP=y | |||
| 72 | CONFIG_SYSVIPC=y | 75 | CONFIG_SYSVIPC=y |
| 73 | CONFIG_SYSVIPC_SYSCTL=y | 76 | CONFIG_SYSVIPC_SYSCTL=y |
| 74 | CONFIG_POSIX_MQUEUE=y | 77 | CONFIG_POSIX_MQUEUE=y |
| 78 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 75 | # CONFIG_BSD_PROCESS_ACCT is not set | 79 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 76 | # CONFIG_TASKSTATS is not set | 80 | # CONFIG_TASKSTATS is not set |
| 77 | # CONFIG_AUDIT is not set | 81 | # CONFIG_AUDIT is not set |
| 82 | |||
| 83 | # | ||
| 84 | # RCU Subsystem | ||
| 85 | # | ||
| 86 | CONFIG_CLASSIC_RCU=y | ||
| 87 | # CONFIG_TREE_RCU is not set | ||
| 88 | # CONFIG_PREEMPT_RCU is not set | ||
| 89 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 90 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 78 | CONFIG_IKCONFIG=y | 91 | CONFIG_IKCONFIG=y |
| 79 | CONFIG_IKCONFIG_PROC=y | 92 | CONFIG_IKCONFIG_PROC=y |
| 80 | CONFIG_LOG_BUF_SHIFT=14 | 93 | CONFIG_LOG_BUF_SHIFT=14 |
| 81 | # CONFIG_CGROUPS is not set | ||
| 82 | # CONFIG_GROUP_SCHED is not set | 94 | # CONFIG_GROUP_SCHED is not set |
| 95 | # CONFIG_CGROUPS is not set | ||
| 83 | CONFIG_SYSFS_DEPRECATED=y | 96 | CONFIG_SYSFS_DEPRECATED=y |
| 84 | CONFIG_SYSFS_DEPRECATED_V2=y | 97 | CONFIG_SYSFS_DEPRECATED_V2=y |
| 85 | # CONFIG_RELAY is not set | 98 | # CONFIG_RELAY is not set |
| @@ -88,23 +101,27 @@ CONFIG_NAMESPACES=y | |||
| 88 | # CONFIG_IPC_NS is not set | 101 | # CONFIG_IPC_NS is not set |
| 89 | # CONFIG_USER_NS is not set | 102 | # CONFIG_USER_NS is not set |
| 90 | # CONFIG_PID_NS is not set | 103 | # CONFIG_PID_NS is not set |
| 104 | # CONFIG_NET_NS is not set | ||
| 91 | CONFIG_BLK_DEV_INITRD=y | 105 | CONFIG_BLK_DEV_INITRD=y |
| 92 | CONFIG_INITRAMFS_SOURCE="" | 106 | CONFIG_INITRAMFS_SOURCE="" |
| 107 | CONFIG_RD_GZIP=y | ||
| 108 | CONFIG_RD_BZIP2=y | ||
| 109 | CONFIG_RD_LZMA=y | ||
| 93 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 110 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 94 | CONFIG_SYSCTL=y | 111 | CONFIG_SYSCTL=y |
| 112 | CONFIG_ANON_INODES=y | ||
| 95 | # CONFIG_EMBEDDED is not set | 113 | # CONFIG_EMBEDDED is not set |
| 96 | CONFIG_SYSCTL_SYSCALL=y | 114 | CONFIG_SYSCTL_SYSCALL=y |
| 97 | CONFIG_KALLSYMS=y | 115 | CONFIG_KALLSYMS=y |
| 98 | CONFIG_KALLSYMS_ALL=y | 116 | CONFIG_KALLSYMS_ALL=y |
| 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 117 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 118 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 100 | CONFIG_HOTPLUG=y | 119 | CONFIG_HOTPLUG=y |
| 101 | CONFIG_PRINTK=y | 120 | CONFIG_PRINTK=y |
| 102 | CONFIG_BUG=y | 121 | CONFIG_BUG=y |
| 103 | CONFIG_ELF_CORE=y | 122 | CONFIG_ELF_CORE=y |
| 104 | # CONFIG_COMPAT_BRK is not set | ||
| 105 | CONFIG_BASE_FULL=y | 123 | CONFIG_BASE_FULL=y |
| 106 | CONFIG_FUTEX=y | 124 | CONFIG_FUTEX=y |
| 107 | CONFIG_ANON_INODES=y | ||
| 108 | CONFIG_EPOLL=y | 125 | CONFIG_EPOLL=y |
| 109 | CONFIG_SIGNALFD=y | 126 | CONFIG_SIGNALFD=y |
| 110 | CONFIG_TIMERFD=y | 127 | CONFIG_TIMERFD=y |
| @@ -114,10 +131,12 @@ CONFIG_AIO=y | |||
| 114 | CONFIG_VM_EVENT_COUNTERS=y | 131 | CONFIG_VM_EVENT_COUNTERS=y |
| 115 | CONFIG_PCI_QUIRKS=y | 132 | CONFIG_PCI_QUIRKS=y |
| 116 | CONFIG_SLUB_DEBUG=y | 133 | CONFIG_SLUB_DEBUG=y |
| 134 | # CONFIG_COMPAT_BRK is not set | ||
| 117 | # CONFIG_SLAB is not set | 135 | # CONFIG_SLAB is not set |
| 118 | CONFIG_SLUB=y | 136 | CONFIG_SLUB=y |
| 119 | # CONFIG_SLOB is not set | 137 | # CONFIG_SLOB is not set |
| 120 | CONFIG_PROFILING=y | 138 | CONFIG_PROFILING=y |
| 139 | CONFIG_TRACEPOINTS=y | ||
| 121 | # CONFIG_MARKERS is not set | 140 | # CONFIG_MARKERS is not set |
| 122 | CONFIG_OPROFILE=y | 141 | CONFIG_OPROFILE=y |
| 123 | CONFIG_HAVE_OPROFILE=y | 142 | CONFIG_HAVE_OPROFILE=y |
| @@ -127,10 +146,10 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
| 127 | CONFIG_HAVE_KPROBES=y | 146 | CONFIG_HAVE_KPROBES=y |
| 128 | CONFIG_HAVE_KRETPROBES=y | 147 | CONFIG_HAVE_KRETPROBES=y |
| 129 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 148 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 149 | # CONFIG_SLOW_WORK is not set | ||
| 130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 150 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 131 | CONFIG_SLABINFO=y | 151 | CONFIG_SLABINFO=y |
| 132 | CONFIG_RT_MUTEXES=y | 152 | CONFIG_RT_MUTEXES=y |
| 133 | # CONFIG_TINY_SHMEM is not set | ||
| 134 | CONFIG_BASE_SMALL=0 | 153 | CONFIG_BASE_SMALL=0 |
| 135 | CONFIG_MODULES=y | 154 | CONFIG_MODULES=y |
| 136 | # CONFIG_MODULE_FORCE_LOAD is not set | 155 | # CONFIG_MODULE_FORCE_LOAD is not set |
| @@ -138,11 +157,8 @@ CONFIG_MODULE_UNLOAD=y | |||
| 138 | CONFIG_MODULE_FORCE_UNLOAD=y | 157 | CONFIG_MODULE_FORCE_UNLOAD=y |
| 139 | # CONFIG_MODVERSIONS is not set | 158 | # CONFIG_MODVERSIONS is not set |
| 140 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 159 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 141 | CONFIG_KMOD=y | ||
| 142 | CONFIG_BLOCK=y | 160 | CONFIG_BLOCK=y |
| 143 | CONFIG_LBD=y | 161 | CONFIG_LBD=y |
| 144 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 145 | CONFIG_LSF=y | ||
| 146 | CONFIG_BLK_DEV_BSG=y | 162 | CONFIG_BLK_DEV_BSG=y |
| 147 | # CONFIG_BLK_DEV_INTEGRITY is not set | 163 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 148 | 164 | ||
| @@ -158,14 +174,11 @@ CONFIG_DEFAULT_AS=y | |||
| 158 | # CONFIG_DEFAULT_CFQ is not set | 174 | # CONFIG_DEFAULT_CFQ is not set |
| 159 | # CONFIG_DEFAULT_NOOP is not set | 175 | # CONFIG_DEFAULT_NOOP is not set |
| 160 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 176 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 161 | CONFIG_CLASSIC_RCU=y | ||
| 162 | CONFIG_FREEZER=y | 177 | CONFIG_FREEZER=y |
| 163 | 178 | ||
| 164 | # | 179 | # |
| 165 | # Platform support | 180 | # Platform support |
| 166 | # | 181 | # |
| 167 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 168 | CONFIG_CLASSIC32=y | ||
| 169 | # CONFIG_PPC_CHRP is not set | 182 | # CONFIG_PPC_CHRP is not set |
| 170 | # CONFIG_MPC5121_ADS is not set | 183 | # CONFIG_MPC5121_ADS is not set |
| 171 | # CONFIG_MPC5121_GENERIC is not set | 184 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -178,7 +191,9 @@ CONFIG_PPC_PMAC=y | |||
| 178 | # CONFIG_PPC_83xx is not set | 191 | # CONFIG_PPC_83xx is not set |
| 179 | # CONFIG_PPC_86xx is not set | 192 | # CONFIG_PPC_86xx is not set |
| 180 | # CONFIG_EMBEDDED6xx is not set | 193 | # CONFIG_EMBEDDED6xx is not set |
| 194 | # CONFIG_AMIGAONE is not set | ||
| 181 | CONFIG_PPC_NATIVE=y | 195 | CONFIG_PPC_NATIVE=y |
| 196 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 182 | # CONFIG_IPIC is not set | 197 | # CONFIG_IPIC is not set |
| 183 | CONFIG_MPIC=y | 198 | CONFIG_MPIC=y |
| 184 | # CONFIG_MPIC_WEIRD is not set | 199 | # CONFIG_MPIC_WEIRD is not set |
| @@ -212,11 +227,12 @@ CONFIG_CPU_FREQ_PMAC=y | |||
| 212 | CONFIG_PPC601_SYNC_FIX=y | 227 | CONFIG_PPC601_SYNC_FIX=y |
| 213 | # CONFIG_TAU is not set | 228 | # CONFIG_TAU is not set |
| 214 | # CONFIG_FSL_ULI1575 is not set | 229 | # CONFIG_FSL_ULI1575 is not set |
| 230 | # CONFIG_SIMPLE_GPIO is not set | ||
| 215 | 231 | ||
| 216 | # | 232 | # |
| 217 | # Kernel options | 233 | # Kernel options |
| 218 | # | 234 | # |
| 219 | # CONFIG_HIGHMEM is not set | 235 | CONFIG_HIGHMEM=y |
| 220 | CONFIG_TICK_ONESHOT=y | 236 | CONFIG_TICK_ONESHOT=y |
| 221 | CONFIG_NO_HZ=y | 237 | CONFIG_NO_HZ=y |
| 222 | CONFIG_HIGH_RES_TIMERS=y | 238 | CONFIG_HIGH_RES_TIMERS=y |
| @@ -239,6 +255,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
| 239 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 255 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
| 240 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 256 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
| 241 | # CONFIG_KEXEC is not set | 257 | # CONFIG_KEXEC is not set |
| 258 | # CONFIG_CRASH_DUMP is not set | ||
| 242 | CONFIG_ARCH_FLATMEM_ENABLE=y | 259 | CONFIG_ARCH_FLATMEM_ENABLE=y |
| 243 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 260 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
| 244 | CONFIG_SELECT_MEMORY_MODEL=y | 261 | CONFIG_SELECT_MEMORY_MODEL=y |
| @@ -250,12 +267,17 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
| 250 | CONFIG_PAGEFLAGS_EXTENDED=y | 267 | CONFIG_PAGEFLAGS_EXTENDED=y |
| 251 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 268 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
| 252 | # CONFIG_MIGRATION is not set | 269 | # CONFIG_MIGRATION is not set |
| 253 | # CONFIG_RESOURCES_64BIT is not set | ||
| 254 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 270 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
| 255 | CONFIG_ZONE_DMA_FLAG=1 | 271 | CONFIG_ZONE_DMA_FLAG=1 |
| 256 | CONFIG_BOUNCE=y | 272 | CONFIG_BOUNCE=y |
| 257 | CONFIG_VIRT_TO_BUS=y | 273 | CONFIG_VIRT_TO_BUS=y |
| 258 | CONFIG_UNEVICTABLE_LRU=y | 274 | CONFIG_UNEVICTABLE_LRU=y |
| 275 | CONFIG_HAVE_MLOCK=y | ||
| 276 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 277 | CONFIG_PPC_4K_PAGES=y | ||
| 278 | # CONFIG_PPC_16K_PAGES is not set | ||
| 279 | # CONFIG_PPC_64K_PAGES is not set | ||
| 280 | # CONFIG_PPC_256K_PAGES is not set | ||
| 259 | CONFIG_FORCE_MAX_ZONEORDER=11 | 281 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 260 | CONFIG_PROC_DEVICETREE=y | 282 | CONFIG_PROC_DEVICETREE=y |
| 261 | # CONFIG_CMDLINE_BOOL is not set | 283 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -288,6 +310,8 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 288 | # CONFIG_PCI_MSI is not set | 310 | # CONFIG_PCI_MSI is not set |
| 289 | # CONFIG_PCI_LEGACY is not set | 311 | # CONFIG_PCI_LEGACY is not set |
| 290 | # CONFIG_PCI_DEBUG is not set | 312 | # CONFIG_PCI_DEBUG is not set |
| 313 | # CONFIG_PCI_STUB is not set | ||
| 314 | # CONFIG_PCI_IOV is not set | ||
| 291 | CONFIG_PCCARD=m | 315 | CONFIG_PCCARD=m |
| 292 | # CONFIG_PCMCIA_DEBUG is not set | 316 | # CONFIG_PCMCIA_DEBUG is not set |
| 293 | CONFIG_PCMCIA=m | 317 | CONFIG_PCMCIA=m |
| @@ -397,6 +421,8 @@ CONFIG_NETFILTER_XTABLES=m | |||
| 397 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 421 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
| 398 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set | 422 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set |
| 399 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | 423 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set |
| 424 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
| 425 | # CONFIG_NETFILTER_XT_TARGET_LED is not set | ||
| 400 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 426 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
| 401 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 427 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
| 402 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 428 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
| @@ -405,6 +431,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
| 405 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 431 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
| 406 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 432 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
| 407 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 433 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
| 434 | # CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set | ||
| 408 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 435 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
| 409 | # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set | 436 | # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set |
| 410 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 437 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
| @@ -415,6 +442,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
| 415 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 442 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
| 416 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set | 443 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set |
| 417 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 444 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
| 445 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
| 418 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 446 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
| 419 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 447 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
| 420 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 448 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
| @@ -478,17 +506,15 @@ CONFIG_IP_NF_ARPFILTER=m | |||
| 478 | CONFIG_IP_NF_ARP_MANGLE=m | 506 | CONFIG_IP_NF_ARP_MANGLE=m |
| 479 | CONFIG_IP_DCCP=m | 507 | CONFIG_IP_DCCP=m |
| 480 | CONFIG_INET_DCCP_DIAG=m | 508 | CONFIG_INET_DCCP_DIAG=m |
| 481 | CONFIG_IP_DCCP_ACKVEC=y | ||
| 482 | 509 | ||
| 483 | # | 510 | # |
| 484 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 511 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
| 485 | # | 512 | # |
| 486 | CONFIG_IP_DCCP_CCID2=m | ||
| 487 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 513 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
| 488 | CONFIG_IP_DCCP_CCID3=m | 514 | CONFIG_IP_DCCP_CCID3=y |
| 489 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | 515 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set |
| 490 | CONFIG_IP_DCCP_CCID3_RTO=100 | 516 | CONFIG_IP_DCCP_CCID3_RTO=100 |
| 491 | CONFIG_IP_DCCP_TFRC_LIB=m | 517 | CONFIG_IP_DCCP_TFRC_LIB=y |
| 492 | 518 | ||
| 493 | # | 519 | # |
| 494 | # DCCP Kernel Hacking | 520 | # DCCP Kernel Hacking |
| @@ -508,13 +534,16 @@ CONFIG_IP_DCCP_TFRC_LIB=m | |||
| 508 | # CONFIG_LAPB is not set | 534 | # CONFIG_LAPB is not set |
| 509 | # CONFIG_ECONET is not set | 535 | # CONFIG_ECONET is not set |
| 510 | # CONFIG_WAN_ROUTER is not set | 536 | # CONFIG_WAN_ROUTER is not set |
| 537 | # CONFIG_PHONET is not set | ||
| 511 | # CONFIG_NET_SCHED is not set | 538 | # CONFIG_NET_SCHED is not set |
| 512 | CONFIG_NET_CLS_ROUTE=y | 539 | CONFIG_NET_CLS_ROUTE=y |
| 540 | # CONFIG_DCB is not set | ||
| 513 | 541 | ||
| 514 | # | 542 | # |
| 515 | # Network testing | 543 | # Network testing |
| 516 | # | 544 | # |
| 517 | # CONFIG_NET_PKTGEN is not set | 545 | # CONFIG_NET_PKTGEN is not set |
| 546 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 518 | # CONFIG_HAMRADIO is not set | 547 | # CONFIG_HAMRADIO is not set |
| 519 | # CONFIG_CAN is not set | 548 | # CONFIG_CAN is not set |
| 520 | CONFIG_IRDA=m | 549 | CONFIG_IRDA=m |
| @@ -577,8 +606,6 @@ CONFIG_BT_HIDP=m | |||
| 577 | # | 606 | # |
| 578 | # Bluetooth device drivers | 607 | # Bluetooth device drivers |
| 579 | # | 608 | # |
| 580 | CONFIG_BT_HCIUSB=m | ||
| 581 | # CONFIG_BT_HCIUSB_SCO is not set | ||
| 582 | # CONFIG_BT_HCIBTUSB is not set | 609 | # CONFIG_BT_HCIBTUSB is not set |
| 583 | # CONFIG_BT_HCIUART is not set | 610 | # CONFIG_BT_HCIUART is not set |
| 584 | CONFIG_BT_HCIBCM203X=m | 611 | CONFIG_BT_HCIBCM203X=m |
| @@ -590,31 +617,27 @@ CONFIG_BT_HCIBFUSB=m | |||
| 590 | # CONFIG_BT_HCIBTUART is not set | 617 | # CONFIG_BT_HCIBTUART is not set |
| 591 | # CONFIG_BT_HCIVHCI is not set | 618 | # CONFIG_BT_HCIVHCI is not set |
| 592 | # CONFIG_AF_RXRPC is not set | 619 | # CONFIG_AF_RXRPC is not set |
| 593 | # CONFIG_PHONET is not set | ||
| 594 | CONFIG_WIRELESS=y | 620 | CONFIG_WIRELESS=y |
| 595 | CONFIG_CFG80211=m | 621 | CONFIG_CFG80211=m |
| 596 | CONFIG_NL80211=y | 622 | # CONFIG_CFG80211_REG_DEBUG is not set |
| 597 | CONFIG_WIRELESS_OLD_REGULATORY=y | 623 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| 598 | CONFIG_WIRELESS_EXT=y | 624 | CONFIG_WIRELESS_EXT=y |
| 599 | CONFIG_WIRELESS_EXT_SYSFS=y | 625 | CONFIG_WIRELESS_EXT_SYSFS=y |
| 626 | # CONFIG_LIB80211 is not set | ||
| 600 | CONFIG_MAC80211=m | 627 | CONFIG_MAC80211=m |
| 601 | 628 | ||
| 602 | # | 629 | # |
| 603 | # Rate control algorithm selection | 630 | # Rate control algorithm selection |
| 604 | # | 631 | # |
| 605 | CONFIG_MAC80211_RC_PID=y | 632 | CONFIG_MAC80211_RC_MINSTREL=y |
| 606 | # CONFIG_MAC80211_RC_MINSTREL is not set | 633 | # CONFIG_MAC80211_RC_DEFAULT_PID is not set |
| 607 | CONFIG_MAC80211_RC_DEFAULT_PID=y | 634 | CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y |
| 608 | # CONFIG_MAC80211_RC_DEFAULT_MINSTREL is not set | 635 | CONFIG_MAC80211_RC_DEFAULT="minstrel" |
| 609 | CONFIG_MAC80211_RC_DEFAULT="pid" | ||
| 610 | # CONFIG_MAC80211_MESH is not set | 636 | # CONFIG_MAC80211_MESH is not set |
| 611 | CONFIG_MAC80211_LEDS=y | 637 | CONFIG_MAC80211_LEDS=y |
| 638 | # CONFIG_MAC80211_DEBUGFS is not set | ||
| 612 | # CONFIG_MAC80211_DEBUG_MENU is not set | 639 | # CONFIG_MAC80211_DEBUG_MENU is not set |
| 613 | CONFIG_IEEE80211=m | 640 | # CONFIG_WIMAX is not set |
| 614 | # CONFIG_IEEE80211_DEBUG is not set | ||
| 615 | CONFIG_IEEE80211_CRYPT_WEP=m | ||
| 616 | CONFIG_IEEE80211_CRYPT_CCMP=m | ||
| 617 | CONFIG_IEEE80211_CRYPT_TKIP=m | ||
| 618 | # CONFIG_RFKILL is not set | 641 | # CONFIG_RFKILL is not set |
| 619 | # CONFIG_NET_9P is not set | 642 | # CONFIG_NET_9P is not set |
| 620 | 643 | ||
| @@ -662,17 +685,27 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
| 662 | # CONFIG_BLK_DEV_HD is not set | 685 | # CONFIG_BLK_DEV_HD is not set |
| 663 | CONFIG_MISC_DEVICES=y | 686 | CONFIG_MISC_DEVICES=y |
| 664 | # CONFIG_PHANTOM is not set | 687 | # CONFIG_PHANTOM is not set |
| 665 | # CONFIG_EEPROM_93CX6 is not set | ||
| 666 | # CONFIG_SGI_IOC4 is not set | 688 | # CONFIG_SGI_IOC4 is not set |
| 667 | # CONFIG_TIFM_CORE is not set | 689 | # CONFIG_TIFM_CORE is not set |
| 690 | # CONFIG_ICS932S401 is not set | ||
| 668 | # CONFIG_ENCLOSURE_SERVICES is not set | 691 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 669 | # CONFIG_HP_ILO is not set | 692 | # CONFIG_HP_ILO is not set |
| 693 | # CONFIG_ISL29003 is not set | ||
| 694 | # CONFIG_C2PORT is not set | ||
| 695 | |||
| 696 | # | ||
| 697 | # EEPROM support | ||
| 698 | # | ||
| 699 | # CONFIG_EEPROM_AT24 is not set | ||
| 700 | # CONFIG_EEPROM_LEGACY is not set | ||
| 701 | # CONFIG_EEPROM_93CX6 is not set | ||
| 670 | CONFIG_HAVE_IDE=y | 702 | CONFIG_HAVE_IDE=y |
| 671 | CONFIG_IDE=y | 703 | CONFIG_IDE=y |
| 672 | 704 | ||
| 673 | # | 705 | # |
| 674 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 706 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 675 | # | 707 | # |
| 708 | CONFIG_IDE_XFER_MODE=y | ||
| 676 | CONFIG_IDE_TIMINGS=y | 709 | CONFIG_IDE_TIMINGS=y |
| 677 | CONFIG_IDE_ATAPI=y | 710 | CONFIG_IDE_ATAPI=y |
| 678 | # CONFIG_BLK_DEV_IDE_SATA is not set | 711 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| @@ -684,7 +717,6 @@ CONFIG_BLK_DEV_IDECS=m | |||
| 684 | CONFIG_BLK_DEV_IDECD=y | 717 | CONFIG_BLK_DEV_IDECD=y |
| 685 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | 718 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y |
| 686 | # CONFIG_BLK_DEV_IDETAPE is not set | 719 | # CONFIG_BLK_DEV_IDETAPE is not set |
| 687 | CONFIG_BLK_DEV_IDESCSI=y | ||
| 688 | # CONFIG_IDE_TASK_IOCTL is not set | 720 | # CONFIG_IDE_TASK_IOCTL is not set |
| 689 | CONFIG_IDE_PROC_FS=y | 721 | CONFIG_IDE_PROC_FS=y |
| 690 | 722 | ||
| @@ -714,6 +746,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
| 714 | # CONFIG_BLK_DEV_JMICRON is not set | 746 | # CONFIG_BLK_DEV_JMICRON is not set |
| 715 | # CONFIG_BLK_DEV_SC1200 is not set | 747 | # CONFIG_BLK_DEV_SC1200 is not set |
| 716 | # CONFIG_BLK_DEV_PIIX is not set | 748 | # CONFIG_BLK_DEV_PIIX is not set |
| 749 | # CONFIG_BLK_DEV_IT8172 is not set | ||
| 717 | # CONFIG_BLK_DEV_IT8213 is not set | 750 | # CONFIG_BLK_DEV_IT8213 is not set |
| 718 | # CONFIG_BLK_DEV_IT821X is not set | 751 | # CONFIG_BLK_DEV_IT821X is not set |
| 719 | # CONFIG_BLK_DEV_NS87415 is not set | 752 | # CONFIG_BLK_DEV_NS87415 is not set |
| @@ -728,7 +761,6 @@ CONFIG_BLK_DEV_SL82C105=y | |||
| 728 | # CONFIG_BLK_DEV_TC86C001 is not set | 761 | # CONFIG_BLK_DEV_TC86C001 is not set |
| 729 | CONFIG_BLK_DEV_IDE_PMAC=y | 762 | CONFIG_BLK_DEV_IDE_PMAC=y |
| 730 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y | 763 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y |
| 731 | CONFIG_BLK_DEV_IDEDMA_PMAC=y | ||
| 732 | CONFIG_BLK_DEV_IDEDMA=y | 764 | CONFIG_BLK_DEV_IDEDMA=y |
| 733 | 765 | ||
| 734 | # | 766 | # |
| @@ -772,6 +804,7 @@ CONFIG_SCSI_FC_ATTRS=y | |||
| 772 | # CONFIG_SCSI_SRP_ATTRS is not set | 804 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 773 | CONFIG_SCSI_LOWLEVEL=y | 805 | CONFIG_SCSI_LOWLEVEL=y |
| 774 | # CONFIG_ISCSI_TCP is not set | 806 | # CONFIG_ISCSI_TCP is not set |
| 807 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
| 775 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 808 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
| 776 | # CONFIG_SCSI_3W_9XXX is not set | 809 | # CONFIG_SCSI_3W_9XXX is not set |
| 777 | # CONFIG_SCSI_ACARD is not set | 810 | # CONFIG_SCSI_ACARD is not set |
| @@ -791,8 +824,12 @@ CONFIG_SCSI_AIC7XXX_OLD=m | |||
| 791 | # CONFIG_MEGARAID_NEWGEN is not set | 824 | # CONFIG_MEGARAID_NEWGEN is not set |
| 792 | # CONFIG_MEGARAID_LEGACY is not set | 825 | # CONFIG_MEGARAID_LEGACY is not set |
| 793 | # CONFIG_MEGARAID_SAS is not set | 826 | # CONFIG_MEGARAID_SAS is not set |
| 827 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 794 | # CONFIG_SCSI_HPTIOP is not set | 828 | # CONFIG_SCSI_HPTIOP is not set |
| 795 | # CONFIG_SCSI_BUSLOGIC is not set | 829 | # CONFIG_SCSI_BUSLOGIC is not set |
| 830 | # CONFIG_LIBFC is not set | ||
| 831 | # CONFIG_LIBFCOE is not set | ||
| 832 | # CONFIG_FCOE is not set | ||
| 796 | # CONFIG_SCSI_DMX3191D is not set | 833 | # CONFIG_SCSI_DMX3191D is not set |
| 797 | # CONFIG_SCSI_EATA is not set | 834 | # CONFIG_SCSI_EATA is not set |
| 798 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 835 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
| @@ -822,6 +859,7 @@ CONFIG_SCSI_MAC53C94=y | |||
| 822 | # CONFIG_SCSI_SRP is not set | 859 | # CONFIG_SCSI_SRP is not set |
| 823 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | 860 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set |
| 824 | # CONFIG_SCSI_DH is not set | 861 | # CONFIG_SCSI_DH is not set |
| 862 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 825 | # CONFIG_ATA is not set | 863 | # CONFIG_ATA is not set |
| 826 | CONFIG_MD=y | 864 | CONFIG_MD=y |
| 827 | CONFIG_BLK_DEV_MD=m | 865 | CONFIG_BLK_DEV_MD=m |
| @@ -881,6 +919,7 @@ CONFIG_THERM_ADT746X=m | |||
| 881 | # CONFIG_ANSLCD is not set | 919 | # CONFIG_ANSLCD is not set |
| 882 | CONFIG_PMAC_RACKMETER=m | 920 | CONFIG_PMAC_RACKMETER=m |
| 883 | CONFIG_NETDEVICES=y | 921 | CONFIG_NETDEVICES=y |
| 922 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 884 | CONFIG_DUMMY=m | 923 | CONFIG_DUMMY=m |
| 885 | # CONFIG_BONDING is not set | 924 | # CONFIG_BONDING is not set |
| 886 | # CONFIG_MACVLAN is not set | 925 | # CONFIG_MACVLAN is not set |
| @@ -898,6 +937,8 @@ CONFIG_BMAC=y | |||
| 898 | CONFIG_SUNGEM=y | 937 | CONFIG_SUNGEM=y |
| 899 | # CONFIG_CASSINI is not set | 938 | # CONFIG_CASSINI is not set |
| 900 | # CONFIG_NET_VENDOR_3COM is not set | 939 | # CONFIG_NET_VENDOR_3COM is not set |
| 940 | # CONFIG_ETHOC is not set | ||
| 941 | # CONFIG_DNET is not set | ||
| 901 | # CONFIG_NET_TULIP is not set | 942 | # CONFIG_NET_TULIP is not set |
| 902 | # CONFIG_HP100 is not set | 943 | # CONFIG_HP100 is not set |
| 903 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 944 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -913,7 +954,6 @@ CONFIG_PCNET32=y | |||
| 913 | # CONFIG_ADAPTEC_STARFIRE is not set | 954 | # CONFIG_ADAPTEC_STARFIRE is not set |
| 914 | # CONFIG_B44 is not set | 955 | # CONFIG_B44 is not set |
| 915 | # CONFIG_FORCEDETH is not set | 956 | # CONFIG_FORCEDETH is not set |
| 916 | # CONFIG_EEPRO100 is not set | ||
| 917 | # CONFIG_E100 is not set | 957 | # CONFIG_E100 is not set |
| 918 | # CONFIG_FEALNX is not set | 958 | # CONFIG_FEALNX is not set |
| 919 | # CONFIG_NATSEMI is not set | 959 | # CONFIG_NATSEMI is not set |
| @@ -923,6 +963,7 @@ CONFIG_PCNET32=y | |||
| 923 | # CONFIG_R6040 is not set | 963 | # CONFIG_R6040 is not set |
| 924 | # CONFIG_SIS900 is not set | 964 | # CONFIG_SIS900 is not set |
| 925 | # CONFIG_EPIC100 is not set | 965 | # CONFIG_EPIC100 is not set |
| 966 | # CONFIG_SMSC9420 is not set | ||
| 926 | # CONFIG_SUNDANCE is not set | 967 | # CONFIG_SUNDANCE is not set |
| 927 | # CONFIG_TLAN is not set | 968 | # CONFIG_TLAN is not set |
| 928 | # CONFIG_VIA_RHINE is not set | 969 | # CONFIG_VIA_RHINE is not set |
| @@ -935,6 +976,7 @@ CONFIG_NETDEV_1000=y | |||
| 935 | # CONFIG_E1000E is not set | 976 | # CONFIG_E1000E is not set |
| 936 | # CONFIG_IP1000 is not set | 977 | # CONFIG_IP1000 is not set |
| 937 | # CONFIG_IGB is not set | 978 | # CONFIG_IGB is not set |
| 979 | # CONFIG_IGBVF is not set | ||
| 938 | # CONFIG_NS83820 is not set | 980 | # CONFIG_NS83820 is not set |
| 939 | # CONFIG_HAMACHI is not set | 981 | # CONFIG_HAMACHI is not set |
| 940 | # CONFIG_YELLOWFIN is not set | 982 | # CONFIG_YELLOWFIN is not set |
| @@ -945,18 +987,20 @@ CONFIG_NETDEV_1000=y | |||
| 945 | # CONFIG_VIA_VELOCITY is not set | 987 | # CONFIG_VIA_VELOCITY is not set |
| 946 | # CONFIG_TIGON3 is not set | 988 | # CONFIG_TIGON3 is not set |
| 947 | # CONFIG_BNX2 is not set | 989 | # CONFIG_BNX2 is not set |
| 948 | # CONFIG_MV643XX_ETH is not set | ||
| 949 | # CONFIG_QLA3XXX is not set | 990 | # CONFIG_QLA3XXX is not set |
| 950 | # CONFIG_ATL1 is not set | 991 | # CONFIG_ATL1 is not set |
| 951 | # CONFIG_ATL1E is not set | 992 | # CONFIG_ATL1E is not set |
| 993 | # CONFIG_ATL1C is not set | ||
| 952 | # CONFIG_JME is not set | 994 | # CONFIG_JME is not set |
| 953 | CONFIG_NETDEV_10000=y | 995 | CONFIG_NETDEV_10000=y |
| 954 | # CONFIG_CHELSIO_T1 is not set | 996 | # CONFIG_CHELSIO_T1 is not set |
| 997 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
| 955 | # CONFIG_CHELSIO_T3 is not set | 998 | # CONFIG_CHELSIO_T3 is not set |
| 956 | # CONFIG_ENIC is not set | 999 | # CONFIG_ENIC is not set |
| 957 | # CONFIG_IXGBE is not set | 1000 | # CONFIG_IXGBE is not set |
| 958 | # CONFIG_IXGB is not set | 1001 | # CONFIG_IXGB is not set |
| 959 | # CONFIG_S2IO is not set | 1002 | # CONFIG_S2IO is not set |
| 1003 | # CONFIG_VXGE is not set | ||
| 960 | # CONFIG_MYRI10GE is not set | 1004 | # CONFIG_MYRI10GE is not set |
| 961 | # CONFIG_NETXEN_NIC is not set | 1005 | # CONFIG_NETXEN_NIC is not set |
| 962 | # CONFIG_NIU is not set | 1006 | # CONFIG_NIU is not set |
| @@ -966,6 +1010,7 @@ CONFIG_NETDEV_10000=y | |||
| 966 | # CONFIG_BNX2X is not set | 1010 | # CONFIG_BNX2X is not set |
| 967 | # CONFIG_QLGE is not set | 1011 | # CONFIG_QLGE is not set |
| 968 | # CONFIG_SFC is not set | 1012 | # CONFIG_SFC is not set |
| 1013 | # CONFIG_BE2NET is not set | ||
| 969 | # CONFIG_TR is not set | 1014 | # CONFIG_TR is not set |
| 970 | 1015 | ||
| 971 | # | 1016 | # |
| @@ -974,20 +1019,11 @@ CONFIG_NETDEV_10000=y | |||
| 974 | # CONFIG_WLAN_PRE80211 is not set | 1019 | # CONFIG_WLAN_PRE80211 is not set |
| 975 | CONFIG_WLAN_80211=y | 1020 | CONFIG_WLAN_80211=y |
| 976 | # CONFIG_PCMCIA_RAYCS is not set | 1021 | # CONFIG_PCMCIA_RAYCS is not set |
| 977 | # CONFIG_IPW2100 is not set | ||
| 978 | # CONFIG_IPW2200 is not set | ||
| 979 | # CONFIG_LIBERTAS is not set | 1022 | # CONFIG_LIBERTAS is not set |
| 980 | # CONFIG_LIBERTAS_THINFIRM is not set | 1023 | # CONFIG_LIBERTAS_THINFIRM is not set |
| 981 | # CONFIG_AIRO is not set | 1024 | # CONFIG_AIRO is not set |
| 982 | CONFIG_HERMES=m | ||
| 983 | CONFIG_APPLE_AIRPORT=m | ||
| 984 | # CONFIG_PLX_HERMES is not set | ||
| 985 | # CONFIG_TMD_HERMES is not set | ||
| 986 | # CONFIG_NORTEL_HERMES is not set | ||
| 987 | CONFIG_PCI_HERMES=m | ||
| 988 | CONFIG_PCMCIA_HERMES=m | ||
| 989 | # CONFIG_PCMCIA_SPECTRUM is not set | ||
| 990 | # CONFIG_ATMEL is not set | 1025 | # CONFIG_ATMEL is not set |
| 1026 | # CONFIG_AT76C50X_USB is not set | ||
| 991 | # CONFIG_AIRO_CS is not set | 1027 | # CONFIG_AIRO_CS is not set |
| 992 | # CONFIG_PCMCIA_WL3501 is not set | 1028 | # CONFIG_PCMCIA_WL3501 is not set |
| 993 | CONFIG_PRISM54=m | 1029 | CONFIG_PRISM54=m |
| @@ -997,15 +1033,17 @@ CONFIG_PRISM54=m | |||
| 997 | # CONFIG_RTL8187 is not set | 1033 | # CONFIG_RTL8187 is not set |
| 998 | # CONFIG_ADM8211 is not set | 1034 | # CONFIG_ADM8211 is not set |
| 999 | # CONFIG_MAC80211_HWSIM is not set | 1035 | # CONFIG_MAC80211_HWSIM is not set |
| 1036 | # CONFIG_MWL8K is not set | ||
| 1000 | CONFIG_P54_COMMON=m | 1037 | CONFIG_P54_COMMON=m |
| 1001 | # CONFIG_P54_USB is not set | 1038 | # CONFIG_P54_USB is not set |
| 1002 | # CONFIG_P54_PCI is not set | 1039 | # CONFIG_P54_PCI is not set |
| 1040 | CONFIG_P54_LEDS=y | ||
| 1003 | # CONFIG_ATH5K is not set | 1041 | # CONFIG_ATH5K is not set |
| 1004 | # CONFIG_ATH9K is not set | 1042 | # CONFIG_ATH9K is not set |
| 1005 | # CONFIG_IWLCORE is not set | 1043 | # CONFIG_AR9170_USB is not set |
| 1006 | # CONFIG_IWLWIFI_LEDS is not set | 1044 | # CONFIG_IPW2100 is not set |
| 1007 | # CONFIG_IWLAGN is not set | 1045 | # CONFIG_IPW2200 is not set |
| 1008 | # CONFIG_IWL3945 is not set | 1046 | # CONFIG_IWLWIFI is not set |
| 1009 | # CONFIG_HOSTAP is not set | 1047 | # CONFIG_HOSTAP is not set |
| 1010 | CONFIG_B43=m | 1048 | CONFIG_B43=m |
| 1011 | CONFIG_B43_PCI_AUTOSELECT=y | 1049 | CONFIG_B43_PCI_AUTOSELECT=y |
| @@ -1025,6 +1063,19 @@ CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y | |||
| 1025 | # CONFIG_B43LEGACY_PIO_MODE is not set | 1063 | # CONFIG_B43LEGACY_PIO_MODE is not set |
| 1026 | # CONFIG_ZD1211RW is not set | 1064 | # CONFIG_ZD1211RW is not set |
| 1027 | # CONFIG_RT2X00 is not set | 1065 | # CONFIG_RT2X00 is not set |
| 1066 | CONFIG_HERMES=m | ||
| 1067 | CONFIG_HERMES_CACHE_FW_ON_INIT=y | ||
| 1068 | CONFIG_APPLE_AIRPORT=m | ||
| 1069 | # CONFIG_PLX_HERMES is not set | ||
| 1070 | # CONFIG_TMD_HERMES is not set | ||
| 1071 | # CONFIG_NORTEL_HERMES is not set | ||
| 1072 | CONFIG_PCI_HERMES=m | ||
| 1073 | CONFIG_PCMCIA_HERMES=m | ||
| 1074 | # CONFIG_PCMCIA_SPECTRUM is not set | ||
| 1075 | |||
| 1076 | # | ||
| 1077 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 1078 | # | ||
| 1028 | 1079 | ||
| 1029 | # | 1080 | # |
| 1030 | # USB Network Adapters | 1081 | # USB Network Adapters |
| @@ -1036,6 +1087,7 @@ CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y | |||
| 1036 | CONFIG_USB_USBNET=m | 1087 | CONFIG_USB_USBNET=m |
| 1037 | CONFIG_USB_NET_AX8817X=m | 1088 | CONFIG_USB_NET_AX8817X=m |
| 1038 | CONFIG_USB_NET_CDCETHER=m | 1089 | CONFIG_USB_NET_CDCETHER=m |
| 1090 | # CONFIG_USB_NET_CDC_EEM is not set | ||
| 1039 | # CONFIG_USB_NET_DM9601 is not set | 1091 | # CONFIG_USB_NET_DM9601 is not set |
| 1040 | # CONFIG_USB_NET_SMSC95XX is not set | 1092 | # CONFIG_USB_NET_SMSC95XX is not set |
| 1041 | # CONFIG_USB_NET_GL620A is not set | 1093 | # CONFIG_USB_NET_GL620A is not set |
| @@ -1099,7 +1151,7 @@ CONFIG_INPUT_KEYBOARD=y | |||
| 1099 | CONFIG_INPUT_MOUSE=y | 1151 | CONFIG_INPUT_MOUSE=y |
| 1100 | # CONFIG_MOUSE_PS2 is not set | 1152 | # CONFIG_MOUSE_PS2 is not set |
| 1101 | # CONFIG_MOUSE_SERIAL is not set | 1153 | # CONFIG_MOUSE_SERIAL is not set |
| 1102 | # CONFIG_MOUSE_APPLETOUCH is not set | 1154 | CONFIG_MOUSE_APPLETOUCH=y |
| 1103 | # CONFIG_MOUSE_BCM5974 is not set | 1155 | # CONFIG_MOUSE_BCM5974 is not set |
| 1104 | # CONFIG_MOUSE_VSXXXAA is not set | 1156 | # CONFIG_MOUSE_VSXXXAA is not set |
| 1105 | # CONFIG_INPUT_JOYSTICK is not set | 1157 | # CONFIG_INPUT_JOYSTICK is not set |
| @@ -1150,10 +1202,13 @@ CONFIG_SERIAL_PMACZILOG_TTYS=y | |||
| 1150 | # CONFIG_SERIAL_JSM is not set | 1202 | # CONFIG_SERIAL_JSM is not set |
| 1151 | # CONFIG_SERIAL_OF_PLATFORM is not set | 1203 | # CONFIG_SERIAL_OF_PLATFORM is not set |
| 1152 | CONFIG_UNIX98_PTYS=y | 1204 | CONFIG_UNIX98_PTYS=y |
| 1205 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
| 1153 | CONFIG_LEGACY_PTYS=y | 1206 | CONFIG_LEGACY_PTYS=y |
| 1154 | CONFIG_LEGACY_PTY_COUNT=256 | 1207 | CONFIG_LEGACY_PTY_COUNT=256 |
| 1208 | # CONFIG_HVC_UDBG is not set | ||
| 1155 | # CONFIG_IPMI_HANDLER is not set | 1209 | # CONFIG_IPMI_HANDLER is not set |
| 1156 | CONFIG_HW_RANDOM=m | 1210 | CONFIG_HW_RANDOM=m |
| 1211 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 1157 | CONFIG_NVRAM=y | 1212 | CONFIG_NVRAM=y |
| 1158 | CONFIG_GEN_RTC=y | 1213 | CONFIG_GEN_RTC=y |
| 1159 | # CONFIG_GEN_RTC_X is not set | 1214 | # CONFIG_GEN_RTC_X is not set |
| @@ -1232,12 +1287,9 @@ CONFIG_I2C_POWERMAC=y | |||
| 1232 | # Miscellaneous I2C Chip support | 1287 | # Miscellaneous I2C Chip support |
| 1233 | # | 1288 | # |
| 1234 | # CONFIG_DS1682 is not set | 1289 | # CONFIG_DS1682 is not set |
| 1235 | # CONFIG_EEPROM_AT24 is not set | ||
| 1236 | # CONFIG_EEPROM_LEGACY is not set | ||
| 1237 | # CONFIG_SENSORS_PCF8574 is not set | 1290 | # CONFIG_SENSORS_PCF8574 is not set |
| 1238 | # CONFIG_PCF8575 is not set | 1291 | # CONFIG_PCF8575 is not set |
| 1239 | # CONFIG_SENSORS_PCA9539 is not set | 1292 | # CONFIG_SENSORS_PCA9539 is not set |
| 1240 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1241 | # CONFIG_SENSORS_MAX6875 is not set | 1293 | # CONFIG_SENSORS_MAX6875 is not set |
| 1242 | # CONFIG_SENSORS_TSL2550 is not set | 1294 | # CONFIG_SENSORS_TSL2550 is not set |
| 1243 | # CONFIG_I2C_DEBUG_CORE is not set | 1295 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -1259,11 +1311,11 @@ CONFIG_BATTERY_PMU=y | |||
| 1259 | # CONFIG_THERMAL is not set | 1311 | # CONFIG_THERMAL is not set |
| 1260 | # CONFIG_THERMAL_HWMON is not set | 1312 | # CONFIG_THERMAL_HWMON is not set |
| 1261 | # CONFIG_WATCHDOG is not set | 1313 | # CONFIG_WATCHDOG is not set |
| 1314 | CONFIG_SSB_POSSIBLE=y | ||
| 1262 | 1315 | ||
| 1263 | # | 1316 | # |
| 1264 | # Sonics Silicon Backplane | 1317 | # Sonics Silicon Backplane |
| 1265 | # | 1318 | # |
| 1266 | CONFIG_SSB_POSSIBLE=y | ||
| 1267 | CONFIG_SSB=m | 1319 | CONFIG_SSB=m |
| 1268 | CONFIG_SSB_SPROM=y | 1320 | CONFIG_SSB_SPROM=y |
| 1269 | CONFIG_SSB_PCIHOST_POSSIBLE=y | 1321 | CONFIG_SSB_PCIHOST_POSSIBLE=y |
| @@ -1281,18 +1333,13 @@ CONFIG_SSB_DRIVER_PCICORE=y | |||
| 1281 | # CONFIG_MFD_CORE is not set | 1333 | # CONFIG_MFD_CORE is not set |
| 1282 | # CONFIG_MFD_SM501 is not set | 1334 | # CONFIG_MFD_SM501 is not set |
| 1283 | # CONFIG_HTC_PASIC3 is not set | 1335 | # CONFIG_HTC_PASIC3 is not set |
| 1336 | # CONFIG_TWL4030_CORE is not set | ||
| 1284 | # CONFIG_MFD_TMIO is not set | 1337 | # CONFIG_MFD_TMIO is not set |
| 1285 | # CONFIG_PMIC_DA903X is not set | 1338 | # CONFIG_PMIC_DA903X is not set |
| 1286 | # CONFIG_MFD_WM8400 is not set | 1339 | # CONFIG_MFD_WM8400 is not set |
| 1287 | # CONFIG_MFD_WM8350_I2C is not set | 1340 | # CONFIG_MFD_WM8350_I2C is not set |
| 1288 | 1341 | # CONFIG_MFD_PCF50633 is not set | |
| 1289 | # | ||
| 1290 | # Voltage and Current regulators | ||
| 1291 | # | ||
| 1292 | # CONFIG_REGULATOR is not set | 1342 | # CONFIG_REGULATOR is not set |
| 1293 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
| 1294 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
| 1295 | # CONFIG_REGULATOR_BQ24022 is not set | ||
| 1296 | 1343 | ||
| 1297 | # | 1344 | # |
| 1298 | # Multimedia devices | 1345 | # Multimedia devices |
| @@ -1390,6 +1437,7 @@ CONFIG_FB_ATY_BACKLIGHT=y | |||
| 1390 | # CONFIG_FB_KYRO is not set | 1437 | # CONFIG_FB_KYRO is not set |
| 1391 | CONFIG_FB_3DFX=y | 1438 | CONFIG_FB_3DFX=y |
| 1392 | # CONFIG_FB_3DFX_ACCEL is not set | 1439 | # CONFIG_FB_3DFX_ACCEL is not set |
| 1440 | CONFIG_FB_3DFX_I2C=y | ||
| 1393 | # CONFIG_FB_VOODOO1 is not set | 1441 | # CONFIG_FB_VOODOO1 is not set |
| 1394 | # CONFIG_FB_VT8623 is not set | 1442 | # CONFIG_FB_VT8623 is not set |
| 1395 | # CONFIG_FB_TRIDENT is not set | 1443 | # CONFIG_FB_TRIDENT is not set |
| @@ -1399,12 +1447,14 @@ CONFIG_FB_3DFX=y | |||
| 1399 | # CONFIG_FB_IBM_GXT4500 is not set | 1447 | # CONFIG_FB_IBM_GXT4500 is not set |
| 1400 | # CONFIG_FB_VIRTUAL is not set | 1448 | # CONFIG_FB_VIRTUAL is not set |
| 1401 | # CONFIG_FB_METRONOME is not set | 1449 | # CONFIG_FB_METRONOME is not set |
| 1450 | # CONFIG_FB_MB862XX is not set | ||
| 1451 | # CONFIG_FB_BROADSHEET is not set | ||
| 1402 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 1452 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
| 1403 | CONFIG_LCD_CLASS_DEVICE=m | 1453 | CONFIG_LCD_CLASS_DEVICE=m |
| 1404 | # CONFIG_LCD_ILI9320 is not set | 1454 | # CONFIG_LCD_ILI9320 is not set |
| 1405 | # CONFIG_LCD_PLATFORM is not set | 1455 | # CONFIG_LCD_PLATFORM is not set |
| 1406 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 1456 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
| 1407 | # CONFIG_BACKLIGHT_CORGI is not set | 1457 | CONFIG_BACKLIGHT_GENERIC=y |
| 1408 | 1458 | ||
| 1409 | # | 1459 | # |
| 1410 | # Display device support | 1460 | # Display device support |
| @@ -1444,11 +1494,13 @@ CONFIG_SND_MIXER_OSS=m | |||
| 1444 | CONFIG_SND_PCM_OSS=m | 1494 | CONFIG_SND_PCM_OSS=m |
| 1445 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1495 | CONFIG_SND_PCM_OSS_PLUGINS=y |
| 1446 | CONFIG_SND_SEQUENCER_OSS=y | 1496 | CONFIG_SND_SEQUENCER_OSS=y |
| 1497 | # CONFIG_SND_HRTIMER is not set | ||
| 1447 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1498 | # CONFIG_SND_DYNAMIC_MINORS is not set |
| 1448 | CONFIG_SND_SUPPORT_OLD_API=y | 1499 | CONFIG_SND_SUPPORT_OLD_API=y |
| 1449 | CONFIG_SND_VERBOSE_PROCFS=y | 1500 | CONFIG_SND_VERBOSE_PROCFS=y |
| 1450 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1501 | # CONFIG_SND_VERBOSE_PRINTK is not set |
| 1451 | # CONFIG_SND_DEBUG is not set | 1502 | # CONFIG_SND_DEBUG is not set |
| 1503 | CONFIG_SND_VMASTER=y | ||
| 1452 | CONFIG_SND_DRIVERS=y | 1504 | CONFIG_SND_DRIVERS=y |
| 1453 | CONFIG_SND_DUMMY=m | 1505 | CONFIG_SND_DUMMY=m |
| 1454 | # CONFIG_SND_VIRMIDI is not set | 1506 | # CONFIG_SND_VIRMIDI is not set |
| @@ -1486,6 +1538,8 @@ CONFIG_SND_PCI=y | |||
| 1486 | # CONFIG_SND_INDIGO is not set | 1538 | # CONFIG_SND_INDIGO is not set |
| 1487 | # CONFIG_SND_INDIGOIO is not set | 1539 | # CONFIG_SND_INDIGOIO is not set |
| 1488 | # CONFIG_SND_INDIGODJ is not set | 1540 | # CONFIG_SND_INDIGODJ is not set |
| 1541 | # CONFIG_SND_INDIGOIOX is not set | ||
| 1542 | # CONFIG_SND_INDIGODJX is not set | ||
| 1489 | # CONFIG_SND_EMU10K1 is not set | 1543 | # CONFIG_SND_EMU10K1 is not set |
| 1490 | # CONFIG_SND_EMU10K1X is not set | 1544 | # CONFIG_SND_EMU10K1X is not set |
| 1491 | # CONFIG_SND_ENS1370 is not set | 1545 | # CONFIG_SND_ENS1370 is not set |
| @@ -1551,28 +1605,31 @@ CONFIG_USB_HID=y | |||
| 1551 | # | 1605 | # |
| 1552 | # Special HID drivers | 1606 | # Special HID drivers |
| 1553 | # | 1607 | # |
| 1554 | CONFIG_HID_COMPAT=y | ||
| 1555 | CONFIG_HID_A4TECH=y | 1608 | CONFIG_HID_A4TECH=y |
| 1556 | CONFIG_HID_APPLE=y | 1609 | CONFIG_HID_APPLE=y |
| 1557 | CONFIG_HID_BELKIN=y | 1610 | CONFIG_HID_BELKIN=y |
| 1558 | CONFIG_HID_BRIGHT=y | ||
| 1559 | CONFIG_HID_CHERRY=y | 1611 | CONFIG_HID_CHERRY=y |
| 1560 | CONFIG_HID_CHICONY=y | 1612 | CONFIG_HID_CHICONY=y |
| 1561 | CONFIG_HID_CYPRESS=y | 1613 | CONFIG_HID_CYPRESS=y |
| 1562 | CONFIG_HID_DELL=y | 1614 | # CONFIG_DRAGONRISE_FF is not set |
| 1563 | CONFIG_HID_EZKEY=y | 1615 | CONFIG_HID_EZKEY=y |
| 1616 | CONFIG_HID_KYE=y | ||
| 1564 | CONFIG_HID_GYRATION=y | 1617 | CONFIG_HID_GYRATION=y |
| 1618 | CONFIG_HID_KENSINGTON=y | ||
| 1565 | CONFIG_HID_LOGITECH=y | 1619 | CONFIG_HID_LOGITECH=y |
| 1566 | # CONFIG_LOGITECH_FF is not set | 1620 | # CONFIG_LOGITECH_FF is not set |
| 1567 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1621 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
| 1568 | CONFIG_HID_MICROSOFT=y | 1622 | CONFIG_HID_MICROSOFT=y |
| 1569 | CONFIG_HID_MONTEREY=y | 1623 | CONFIG_HID_MONTEREY=y |
| 1624 | CONFIG_HID_NTRIG=y | ||
| 1570 | CONFIG_HID_PANTHERLORD=y | 1625 | CONFIG_HID_PANTHERLORD=y |
| 1571 | # CONFIG_PANTHERLORD_FF is not set | 1626 | # CONFIG_PANTHERLORD_FF is not set |
| 1572 | CONFIG_HID_PETALYNX=y | 1627 | CONFIG_HID_PETALYNX=y |
| 1573 | CONFIG_HID_SAMSUNG=y | 1628 | CONFIG_HID_SAMSUNG=y |
| 1574 | CONFIG_HID_SONY=y | 1629 | CONFIG_HID_SONY=y |
| 1575 | CONFIG_HID_SUNPLUS=y | 1630 | CONFIG_HID_SUNPLUS=y |
| 1631 | # CONFIG_GREENASIA_FF is not set | ||
| 1632 | CONFIG_HID_TOPSEED=y | ||
| 1576 | # CONFIG_THRUSTMASTER_FF is not set | 1633 | # CONFIG_THRUSTMASTER_FF is not set |
| 1577 | # CONFIG_ZEROPLUS_FF is not set | 1634 | # CONFIG_ZEROPLUS_FF is not set |
| 1578 | CONFIG_USB_SUPPORT=y | 1635 | CONFIG_USB_SUPPORT=y |
| @@ -1603,6 +1660,7 @@ CONFIG_USB_EHCI_HCD=m | |||
| 1603 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 1660 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
| 1604 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1661 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
| 1605 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set | 1662 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set |
| 1663 | # CONFIG_USB_OXU210HP_HCD is not set | ||
| 1606 | # CONFIG_USB_ISP116X_HCD is not set | 1664 | # CONFIG_USB_ISP116X_HCD is not set |
| 1607 | # CONFIG_USB_ISP1760_HCD is not set | 1665 | # CONFIG_USB_ISP1760_HCD is not set |
| 1608 | CONFIG_USB_OHCI_HCD=y | 1666 | CONFIG_USB_OHCI_HCD=y |
| @@ -1625,24 +1683,23 @@ CONFIG_USB_PRINTER=m | |||
| 1625 | # CONFIG_USB_TMC is not set | 1683 | # CONFIG_USB_TMC is not set |
| 1626 | 1684 | ||
| 1627 | # | 1685 | # |
| 1628 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1686 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1629 | # | 1687 | # |
| 1630 | 1688 | ||
| 1631 | # | 1689 | # |
| 1632 | # may also be needed; see USB_STORAGE Help for more information | 1690 | # also be needed; see USB_STORAGE Help for more info |
| 1633 | # | 1691 | # |
| 1634 | CONFIG_USB_STORAGE=m | 1692 | CONFIG_USB_STORAGE=m |
| 1635 | # CONFIG_USB_STORAGE_DEBUG is not set | 1693 | # CONFIG_USB_STORAGE_DEBUG is not set |
| 1636 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1694 | # CONFIG_USB_STORAGE_DATAFAB is not set |
| 1637 | # CONFIG_USB_STORAGE_FREECOM is not set | 1695 | # CONFIG_USB_STORAGE_FREECOM is not set |
| 1638 | # CONFIG_USB_STORAGE_ISD200 is not set | 1696 | # CONFIG_USB_STORAGE_ISD200 is not set |
| 1639 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 1640 | # CONFIG_USB_STORAGE_USBAT is not set | 1697 | # CONFIG_USB_STORAGE_USBAT is not set |
| 1641 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1698 | # CONFIG_USB_STORAGE_SDDR09 is not set |
| 1642 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1699 | # CONFIG_USB_STORAGE_SDDR55 is not set |
| 1643 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 1700 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
| 1644 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1701 | # CONFIG_USB_STORAGE_ALAUDA is not set |
| 1645 | CONFIG_USB_STORAGE_ONETOUCH=y | 1702 | CONFIG_USB_STORAGE_ONETOUCH=m |
| 1646 | # CONFIG_USB_STORAGE_KARMA is not set | 1703 | # CONFIG_USB_STORAGE_KARMA is not set |
| 1647 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1704 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
| 1648 | # CONFIG_USB_LIBUSUAL is not set | 1705 | # CONFIG_USB_LIBUSUAL is not set |
| @@ -1665,7 +1722,7 @@ CONFIG_USB_EZUSB=y | |||
| 1665 | # CONFIG_USB_SERIAL_CH341 is not set | 1722 | # CONFIG_USB_SERIAL_CH341 is not set |
| 1666 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | 1723 | # CONFIG_USB_SERIAL_WHITEHEAT is not set |
| 1667 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | 1724 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set |
| 1668 | # CONFIG_USB_SERIAL_CP2101 is not set | 1725 | # CONFIG_USB_SERIAL_CP210X is not set |
| 1669 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set | 1726 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set |
| 1670 | # CONFIG_USB_SERIAL_EMPEG is not set | 1727 | # CONFIG_USB_SERIAL_EMPEG is not set |
| 1671 | # CONFIG_USB_SERIAL_FTDI_SIO is not set | 1728 | # CONFIG_USB_SERIAL_FTDI_SIO is not set |
| @@ -1701,15 +1758,19 @@ CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | |||
| 1701 | # CONFIG_USB_SERIAL_NAVMAN is not set | 1758 | # CONFIG_USB_SERIAL_NAVMAN is not set |
| 1702 | # CONFIG_USB_SERIAL_PL2303 is not set | 1759 | # CONFIG_USB_SERIAL_PL2303 is not set |
| 1703 | # CONFIG_USB_SERIAL_OTI6858 is not set | 1760 | # CONFIG_USB_SERIAL_OTI6858 is not set |
| 1761 | # CONFIG_USB_SERIAL_QUALCOMM is not set | ||
| 1704 | # CONFIG_USB_SERIAL_SPCP8X5 is not set | 1762 | # CONFIG_USB_SERIAL_SPCP8X5 is not set |
| 1705 | # CONFIG_USB_SERIAL_HP4X is not set | 1763 | # CONFIG_USB_SERIAL_HP4X is not set |
| 1706 | # CONFIG_USB_SERIAL_SAFE is not set | 1764 | # CONFIG_USB_SERIAL_SAFE is not set |
| 1765 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set | ||
| 1707 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1766 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
| 1767 | # CONFIG_USB_SERIAL_SYMBOL is not set | ||
| 1708 | # CONFIG_USB_SERIAL_TI is not set | 1768 | # CONFIG_USB_SERIAL_TI is not set |
| 1709 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 1769 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
| 1710 | # CONFIG_USB_SERIAL_XIRCOM is not set | 1770 | # CONFIG_USB_SERIAL_XIRCOM is not set |
| 1711 | # CONFIG_USB_SERIAL_OPTION is not set | 1771 | # CONFIG_USB_SERIAL_OPTION is not set |
| 1712 | # CONFIG_USB_SERIAL_OMNINET is not set | 1772 | # CONFIG_USB_SERIAL_OMNINET is not set |
| 1773 | # CONFIG_USB_SERIAL_OPTICON is not set | ||
| 1713 | # CONFIG_USB_SERIAL_DEBUG is not set | 1774 | # CONFIG_USB_SERIAL_DEBUG is not set |
| 1714 | 1775 | ||
| 1715 | # | 1776 | # |
| @@ -1726,7 +1787,6 @@ CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | |||
| 1726 | # CONFIG_USB_LED is not set | 1787 | # CONFIG_USB_LED is not set |
| 1727 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1788 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1728 | # CONFIG_USB_CYTHERM is not set | 1789 | # CONFIG_USB_CYTHERM is not set |
| 1729 | # CONFIG_USB_PHIDGET is not set | ||
| 1730 | # CONFIG_USB_IDMOUSE is not set | 1790 | # CONFIG_USB_IDMOUSE is not set |
| 1731 | # CONFIG_USB_FTDI_ELAN is not set | 1791 | # CONFIG_USB_FTDI_ELAN is not set |
| 1732 | CONFIG_USB_APPLEDISPLAY=m | 1792 | CONFIG_USB_APPLEDISPLAY=m |
| @@ -1738,6 +1798,11 @@ CONFIG_USB_APPLEDISPLAY=m | |||
| 1738 | # CONFIG_USB_ISIGHTFW is not set | 1798 | # CONFIG_USB_ISIGHTFW is not set |
| 1739 | # CONFIG_USB_VST is not set | 1799 | # CONFIG_USB_VST is not set |
| 1740 | # CONFIG_USB_GADGET is not set | 1800 | # CONFIG_USB_GADGET is not set |
| 1801 | |||
| 1802 | # | ||
| 1803 | # OTG and related infrastructure | ||
| 1804 | # | ||
| 1805 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1741 | # CONFIG_UWB is not set | 1806 | # CONFIG_UWB is not set |
| 1742 | # CONFIG_MMC is not set | 1807 | # CONFIG_MMC is not set |
| 1743 | # CONFIG_MEMSTICK is not set | 1808 | # CONFIG_MEMSTICK is not set |
| @@ -1748,7 +1813,9 @@ CONFIG_LEDS_CLASS=y | |||
| 1748 | # LED drivers | 1813 | # LED drivers |
| 1749 | # | 1814 | # |
| 1750 | # CONFIG_LEDS_PCA9532 is not set | 1815 | # CONFIG_LEDS_PCA9532 is not set |
| 1816 | # CONFIG_LEDS_LP5521 is not set | ||
| 1751 | # CONFIG_LEDS_PCA955X is not set | 1817 | # CONFIG_LEDS_PCA955X is not set |
| 1818 | # CONFIG_LEDS_BD2802 is not set | ||
| 1752 | 1819 | ||
| 1753 | # | 1820 | # |
| 1754 | # LED Triggers | 1821 | # LED Triggers |
| @@ -1759,11 +1826,16 @@ CONFIG_LEDS_TRIGGER_IDE_DISK=y | |||
| 1759 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set | 1826 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set |
| 1760 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set | 1827 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set |
| 1761 | CONFIG_LEDS_TRIGGER_DEFAULT_ON=y | 1828 | CONFIG_LEDS_TRIGGER_DEFAULT_ON=y |
| 1829 | |||
| 1830 | # | ||
| 1831 | # iptables trigger is under Netfilter config (LED target) | ||
| 1832 | # | ||
| 1762 | # CONFIG_ACCESSIBILITY is not set | 1833 | # CONFIG_ACCESSIBILITY is not set |
| 1763 | # CONFIG_INFINIBAND is not set | 1834 | # CONFIG_INFINIBAND is not set |
| 1764 | # CONFIG_EDAC is not set | 1835 | # CONFIG_EDAC is not set |
| 1765 | # CONFIG_RTC_CLASS is not set | 1836 | # CONFIG_RTC_CLASS is not set |
| 1766 | # CONFIG_DMADEVICES is not set | 1837 | # CONFIG_DMADEVICES is not set |
| 1838 | # CONFIG_AUXDISPLAY is not set | ||
| 1767 | # CONFIG_UIO is not set | 1839 | # CONFIG_UIO is not set |
| 1768 | # CONFIG_STAGING is not set | 1840 | # CONFIG_STAGING is not set |
| 1769 | 1841 | ||
| @@ -1774,6 +1846,7 @@ CONFIG_EXT2_FS=y | |||
| 1774 | # CONFIG_EXT2_FS_XATTR is not set | 1846 | # CONFIG_EXT2_FS_XATTR is not set |
| 1775 | # CONFIG_EXT2_FS_XIP is not set | 1847 | # CONFIG_EXT2_FS_XIP is not set |
| 1776 | CONFIG_EXT3_FS=y | 1848 | CONFIG_EXT3_FS=y |
| 1849 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1777 | CONFIG_EXT3_FS_XATTR=y | 1850 | CONFIG_EXT3_FS_XATTR=y |
| 1778 | CONFIG_EXT3_FS_POSIX_ACL=y | 1851 | CONFIG_EXT3_FS_POSIX_ACL=y |
| 1779 | # CONFIG_EXT3_FS_SECURITY is not set | 1852 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1783,7 +1856,9 @@ CONFIG_EXT4_FS_XATTR=y | |||
| 1783 | # CONFIG_EXT4_FS_POSIX_ACL is not set | 1856 | # CONFIG_EXT4_FS_POSIX_ACL is not set |
| 1784 | # CONFIG_EXT4_FS_SECURITY is not set | 1857 | # CONFIG_EXT4_FS_SECURITY is not set |
| 1785 | CONFIG_JBD=y | 1858 | CONFIG_JBD=y |
| 1859 | # CONFIG_JBD_DEBUG is not set | ||
| 1786 | CONFIG_JBD2=y | 1860 | CONFIG_JBD2=y |
| 1861 | # CONFIG_JBD2_DEBUG is not set | ||
| 1787 | CONFIG_FS_MBCACHE=y | 1862 | CONFIG_FS_MBCACHE=y |
| 1788 | # CONFIG_REISERFS_FS is not set | 1863 | # CONFIG_REISERFS_FS is not set |
| 1789 | # CONFIG_JFS_FS is not set | 1864 | # CONFIG_JFS_FS is not set |
| @@ -1792,6 +1867,7 @@ CONFIG_FILE_LOCKING=y | |||
| 1792 | # CONFIG_XFS_FS is not set | 1867 | # CONFIG_XFS_FS is not set |
| 1793 | # CONFIG_GFS2_FS is not set | 1868 | # CONFIG_GFS2_FS is not set |
| 1794 | # CONFIG_OCFS2_FS is not set | 1869 | # CONFIG_OCFS2_FS is not set |
| 1870 | # CONFIG_BTRFS_FS is not set | ||
| 1795 | CONFIG_DNOTIFY=y | 1871 | CONFIG_DNOTIFY=y |
| 1796 | CONFIG_INOTIFY=y | 1872 | CONFIG_INOTIFY=y |
| 1797 | CONFIG_INOTIFY_USER=y | 1873 | CONFIG_INOTIFY_USER=y |
| @@ -1801,6 +1877,11 @@ CONFIG_AUTOFS4_FS=m | |||
| 1801 | CONFIG_FUSE_FS=m | 1877 | CONFIG_FUSE_FS=m |
| 1802 | 1878 | ||
| 1803 | # | 1879 | # |
| 1880 | # Caches | ||
| 1881 | # | ||
| 1882 | # CONFIG_FSCACHE is not set | ||
| 1883 | |||
| 1884 | # | ||
| 1804 | # CD-ROM/DVD Filesystems | 1885 | # CD-ROM/DVD Filesystems |
| 1805 | # | 1886 | # |
| 1806 | CONFIG_ISO9660_FS=y | 1887 | CONFIG_ISO9660_FS=y |
| @@ -1831,10 +1912,7 @@ CONFIG_TMPFS=y | |||
| 1831 | # CONFIG_TMPFS_POSIX_ACL is not set | 1912 | # CONFIG_TMPFS_POSIX_ACL is not set |
| 1832 | # CONFIG_HUGETLB_PAGE is not set | 1913 | # CONFIG_HUGETLB_PAGE is not set |
| 1833 | # CONFIG_CONFIGFS_FS is not set | 1914 | # CONFIG_CONFIGFS_FS is not set |
| 1834 | 1915 | CONFIG_MISC_FILESYSTEMS=y | |
| 1835 | # | ||
| 1836 | # Miscellaneous filesystems | ||
| 1837 | # | ||
| 1838 | # CONFIG_ADFS_FS is not set | 1916 | # CONFIG_ADFS_FS is not set |
| 1839 | # CONFIG_AFFS_FS is not set | 1917 | # CONFIG_AFFS_FS is not set |
| 1840 | CONFIG_HFS_FS=m | 1918 | CONFIG_HFS_FS=m |
| @@ -1843,6 +1921,7 @@ CONFIG_HFSPLUS_FS=m | |||
| 1843 | # CONFIG_BFS_FS is not set | 1921 | # CONFIG_BFS_FS is not set |
| 1844 | # CONFIG_EFS_FS is not set | 1922 | # CONFIG_EFS_FS is not set |
| 1845 | # CONFIG_CRAMFS is not set | 1923 | # CONFIG_CRAMFS is not set |
| 1924 | # CONFIG_SQUASHFS is not set | ||
| 1846 | # CONFIG_VXFS_FS is not set | 1925 | # CONFIG_VXFS_FS is not set |
| 1847 | # CONFIG_MINIX_FS is not set | 1926 | # CONFIG_MINIX_FS is not set |
| 1848 | # CONFIG_OMFS_FS is not set | 1927 | # CONFIG_OMFS_FS is not set |
| @@ -1851,6 +1930,7 @@ CONFIG_HFSPLUS_FS=m | |||
| 1851 | # CONFIG_ROMFS_FS is not set | 1930 | # CONFIG_ROMFS_FS is not set |
| 1852 | # CONFIG_SYSV_FS is not set | 1931 | # CONFIG_SYSV_FS is not set |
| 1853 | # CONFIG_UFS_FS is not set | 1932 | # CONFIG_UFS_FS is not set |
| 1933 | # CONFIG_NILFS2_FS is not set | ||
| 1854 | CONFIG_NETWORK_FILESYSTEMS=y | 1934 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1855 | CONFIG_NFS_FS=y | 1935 | CONFIG_NFS_FS=y |
| 1856 | CONFIG_NFS_V3=y | 1936 | CONFIG_NFS_V3=y |
| @@ -1868,7 +1948,6 @@ CONFIG_NFS_ACL_SUPPORT=y | |||
| 1868 | CONFIG_NFS_COMMON=y | 1948 | CONFIG_NFS_COMMON=y |
| 1869 | CONFIG_SUNRPC=y | 1949 | CONFIG_SUNRPC=y |
| 1870 | CONFIG_SUNRPC_GSS=y | 1950 | CONFIG_SUNRPC_GSS=y |
| 1871 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1872 | CONFIG_RPCSEC_GSS_KRB5=y | 1951 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1873 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1952 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1874 | CONFIG_SMB_FS=m | 1953 | CONFIG_SMB_FS=m |
| @@ -1940,11 +2019,13 @@ CONFIG_NLS_ISO8859_1=m | |||
| 1940 | # CONFIG_NLS_KOI8_U is not set | 2019 | # CONFIG_NLS_KOI8_U is not set |
| 1941 | CONFIG_NLS_UTF8=m | 2020 | CONFIG_NLS_UTF8=m |
| 1942 | # CONFIG_DLM is not set | 2021 | # CONFIG_DLM is not set |
| 2022 | CONFIG_BINARY_PRINTF=y | ||
| 1943 | 2023 | ||
| 1944 | # | 2024 | # |
| 1945 | # Library routines | 2025 | # Library routines |
| 1946 | # | 2026 | # |
| 1947 | CONFIG_BITREVERSE=y | 2027 | CONFIG_BITREVERSE=y |
| 2028 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
| 1948 | CONFIG_CRC_CCITT=y | 2029 | CONFIG_CRC_CCITT=y |
| 1949 | CONFIG_CRC16=y | 2030 | CONFIG_CRC16=y |
| 1950 | CONFIG_CRC_T10DIF=y | 2031 | CONFIG_CRC_T10DIF=y |
| @@ -1954,15 +2035,18 @@ CONFIG_CRC32=y | |||
| 1954 | CONFIG_LIBCRC32C=m | 2035 | CONFIG_LIBCRC32C=m |
| 1955 | CONFIG_ZLIB_INFLATE=y | 2036 | CONFIG_ZLIB_INFLATE=y |
| 1956 | CONFIG_ZLIB_DEFLATE=y | 2037 | CONFIG_ZLIB_DEFLATE=y |
| 2038 | CONFIG_DECOMPRESS_GZIP=y | ||
| 2039 | CONFIG_DECOMPRESS_BZIP2=y | ||
| 2040 | CONFIG_DECOMPRESS_LZMA=y | ||
| 1957 | CONFIG_TEXTSEARCH=y | 2041 | CONFIG_TEXTSEARCH=y |
| 1958 | CONFIG_TEXTSEARCH_KMP=m | 2042 | CONFIG_TEXTSEARCH_KMP=m |
| 1959 | CONFIG_TEXTSEARCH_BM=m | 2043 | CONFIG_TEXTSEARCH_BM=m |
| 1960 | CONFIG_TEXTSEARCH_FSM=m | 2044 | CONFIG_TEXTSEARCH_FSM=m |
| 1961 | CONFIG_PLIST=y | ||
| 1962 | CONFIG_HAS_IOMEM=y | 2045 | CONFIG_HAS_IOMEM=y |
| 1963 | CONFIG_HAS_IOPORT=y | 2046 | CONFIG_HAS_IOPORT=y |
| 1964 | CONFIG_HAS_DMA=y | 2047 | CONFIG_HAS_DMA=y |
| 1965 | CONFIG_HAVE_LMB=y | 2048 | CONFIG_HAVE_LMB=y |
| 2049 | CONFIG_NLATTR=y | ||
| 1966 | 2050 | ||
| 1967 | # | 2051 | # |
| 1968 | # Kernel hacking | 2052 | # Kernel hacking |
| @@ -1973,13 +2057,16 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
| 1973 | CONFIG_FRAME_WARN=1024 | 2057 | CONFIG_FRAME_WARN=1024 |
| 1974 | CONFIG_MAGIC_SYSRQ=y | 2058 | CONFIG_MAGIC_SYSRQ=y |
| 1975 | # CONFIG_UNUSED_SYMBOLS is not set | 2059 | # CONFIG_UNUSED_SYMBOLS is not set |
| 1976 | # CONFIG_DEBUG_FS is not set | 2060 | CONFIG_DEBUG_FS=y |
| 1977 | # CONFIG_HEADERS_CHECK is not set | 2061 | # CONFIG_HEADERS_CHECK is not set |
| 1978 | CONFIG_DEBUG_KERNEL=y | 2062 | CONFIG_DEBUG_KERNEL=y |
| 1979 | # CONFIG_DEBUG_SHIRQ is not set | 2063 | # CONFIG_DEBUG_SHIRQ is not set |
| 1980 | CONFIG_DETECT_SOFTLOCKUP=y | 2064 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1981 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 2065 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1982 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 2066 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 2067 | CONFIG_DETECT_HUNG_TASK=y | ||
| 2068 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 2069 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1983 | CONFIG_SCHED_DEBUG=y | 2070 | CONFIG_SCHED_DEBUG=y |
| 1984 | CONFIG_SCHEDSTATS=y | 2071 | CONFIG_SCHEDSTATS=y |
| 1985 | # CONFIG_TIMER_STATS is not set | 2072 | # CONFIG_TIMER_STATS is not set |
| @@ -1994,6 +2081,7 @@ CONFIG_SCHEDSTATS=y | |||
| 1994 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 2081 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
| 1995 | CONFIG_STACKTRACE=y | 2082 | CONFIG_STACKTRACE=y |
| 1996 | # CONFIG_DEBUG_KOBJECT is not set | 2083 | # CONFIG_DEBUG_KOBJECT is not set |
| 2084 | # CONFIG_DEBUG_HIGHMEM is not set | ||
| 1997 | CONFIG_DEBUG_BUGVERBOSE=y | 2085 | CONFIG_DEBUG_BUGVERBOSE=y |
| 1998 | # CONFIG_DEBUG_INFO is not set | 2086 | # CONFIG_DEBUG_INFO is not set |
| 1999 | # CONFIG_DEBUG_VM is not set | 2087 | # CONFIG_DEBUG_VM is not set |
| @@ -2001,6 +2089,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
| 2001 | CONFIG_DEBUG_MEMORY_INIT=y | 2089 | CONFIG_DEBUG_MEMORY_INIT=y |
| 2002 | # CONFIG_DEBUG_LIST is not set | 2090 | # CONFIG_DEBUG_LIST is not set |
| 2003 | # CONFIG_DEBUG_SG is not set | 2091 | # CONFIG_DEBUG_SG is not set |
| 2092 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
| 2004 | # CONFIG_BOOT_PRINTK_DELAY is not set | 2093 | # CONFIG_BOOT_PRINTK_DELAY is not set |
| 2005 | # CONFIG_RCU_TORTURE_TEST is not set | 2094 | # CONFIG_RCU_TORTURE_TEST is not set |
| 2006 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 2095 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
| @@ -2009,7 +2098,14 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
| 2009 | # CONFIG_FAULT_INJECTION is not set | 2098 | # CONFIG_FAULT_INJECTION is not set |
| 2010 | CONFIG_LATENCYTOP=y | 2099 | CONFIG_LATENCYTOP=y |
| 2011 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 2100 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 2101 | CONFIG_NOP_TRACER=y | ||
| 2012 | CONFIG_HAVE_FUNCTION_TRACER=y | 2102 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 2103 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 2104 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 2105 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
| 2106 | CONFIG_RING_BUFFER=y | ||
| 2107 | CONFIG_TRACING=y | ||
| 2108 | CONFIG_TRACING_SUPPORT=y | ||
| 2013 | 2109 | ||
| 2014 | # | 2110 | # |
| 2015 | # Tracers | 2111 | # Tracers |
| @@ -2017,12 +2113,19 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
| 2017 | # CONFIG_FUNCTION_TRACER is not set | 2113 | # CONFIG_FUNCTION_TRACER is not set |
| 2018 | # CONFIG_SCHED_TRACER is not set | 2114 | # CONFIG_SCHED_TRACER is not set |
| 2019 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 2115 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 2116 | # CONFIG_EVENT_TRACER is not set | ||
| 2020 | # CONFIG_BOOT_TRACER is not set | 2117 | # CONFIG_BOOT_TRACER is not set |
| 2118 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 2021 | # CONFIG_STACK_TRACER is not set | 2119 | # CONFIG_STACK_TRACER is not set |
| 2022 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 2120 | # CONFIG_KMEMTRACE is not set |
| 2121 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 2122 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 2123 | # CONFIG_FTRACE_STARTUP_TEST is not set | ||
| 2124 | # CONFIG_DYNAMIC_DEBUG is not set | ||
| 2023 | # CONFIG_SAMPLES is not set | 2125 | # CONFIG_SAMPLES is not set |
| 2024 | CONFIG_HAVE_ARCH_KGDB=y | 2126 | CONFIG_HAVE_ARCH_KGDB=y |
| 2025 | # CONFIG_KGDB is not set | 2127 | # CONFIG_KGDB is not set |
| 2128 | CONFIG_PRINT_STACK_DEPTH=64 | ||
| 2026 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 2129 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 2027 | # CONFIG_DEBUG_STACK_USAGE is not set | 2130 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 2028 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 2131 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| @@ -2033,6 +2136,7 @@ CONFIG_XMON_DEFAULT=y | |||
| 2033 | CONFIG_XMON_DISASSEMBLY=y | 2136 | CONFIG_XMON_DISASSEMBLY=y |
| 2034 | CONFIG_DEBUGGER=y | 2137 | CONFIG_DEBUGGER=y |
| 2035 | CONFIG_IRQSTACKS=y | 2138 | CONFIG_IRQSTACKS=y |
| 2139 | # CONFIG_VIRQ_DEBUG is not set | ||
| 2036 | # CONFIG_BDI_SWITCH is not set | 2140 | # CONFIG_BDI_SWITCH is not set |
| 2037 | CONFIG_BOOTX_TEXT=y | 2141 | CONFIG_BOOTX_TEXT=y |
| 2038 | # CONFIG_PPC_EARLY_DEBUG is not set | 2142 | # CONFIG_PPC_EARLY_DEBUG is not set |
| @@ -2051,13 +2155,20 @@ CONFIG_CRYPTO=y | |||
| 2051 | # | 2155 | # |
| 2052 | # CONFIG_CRYPTO_FIPS is not set | 2156 | # CONFIG_CRYPTO_FIPS is not set |
| 2053 | CONFIG_CRYPTO_ALGAPI=y | 2157 | CONFIG_CRYPTO_ALGAPI=y |
| 2158 | CONFIG_CRYPTO_ALGAPI2=y | ||
| 2054 | CONFIG_CRYPTO_AEAD=y | 2159 | CONFIG_CRYPTO_AEAD=y |
| 2160 | CONFIG_CRYPTO_AEAD2=y | ||
| 2055 | CONFIG_CRYPTO_BLKCIPHER=y | 2161 | CONFIG_CRYPTO_BLKCIPHER=y |
| 2162 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
| 2056 | CONFIG_CRYPTO_HASH=y | 2163 | CONFIG_CRYPTO_HASH=y |
| 2057 | CONFIG_CRYPTO_RNG=y | 2164 | CONFIG_CRYPTO_HASH2=y |
| 2165 | CONFIG_CRYPTO_RNG2=y | ||
| 2166 | CONFIG_CRYPTO_PCOMP=y | ||
| 2058 | CONFIG_CRYPTO_MANAGER=y | 2167 | CONFIG_CRYPTO_MANAGER=y |
| 2168 | CONFIG_CRYPTO_MANAGER2=y | ||
| 2059 | # CONFIG_CRYPTO_GF128MUL is not set | 2169 | # CONFIG_CRYPTO_GF128MUL is not set |
| 2060 | CONFIG_CRYPTO_NULL=m | 2170 | CONFIG_CRYPTO_NULL=m |
| 2171 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 2061 | # CONFIG_CRYPTO_CRYPTD is not set | 2172 | # CONFIG_CRYPTO_CRYPTD is not set |
| 2062 | CONFIG_CRYPTO_AUTHENC=y | 2173 | CONFIG_CRYPTO_AUTHENC=y |
| 2063 | # CONFIG_CRYPTO_TEST is not set | 2174 | # CONFIG_CRYPTO_TEST is not set |
| @@ -2127,6 +2238,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
| 2127 | # Compression | 2238 | # Compression |
| 2128 | # | 2239 | # |
| 2129 | CONFIG_CRYPTO_DEFLATE=m | 2240 | CONFIG_CRYPTO_DEFLATE=m |
| 2241 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 2130 | # CONFIG_CRYPTO_LZO is not set | 2242 | # CONFIG_CRYPTO_LZO is not set |
| 2131 | 2243 | ||
| 2132 | # | 2244 | # |
diff --git a/arch/powerpc/configs/pq2fads_defconfig b/arch/powerpc/configs/pq2fads_defconfig index fdded96633a1..129d80860f2a 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:42 2009 | 4 | # Wed May 13 17:22:02 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| @@ -55,6 +56,7 @@ CONFIG_GENERIC_BUG=y | |||
| 55 | CONFIG_DEFAULT_UIMAGE=y | 56 | CONFIG_DEFAULT_UIMAGE=y |
| 56 | # CONFIG_PPC_DCR_NATIVE is not set | 57 | # CONFIG_PPC_DCR_NATIVE is not set |
| 57 | # CONFIG_PPC_DCR_MMIO is not set | 58 | # CONFIG_PPC_DCR_MMIO is not set |
| 59 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 58 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 59 | 61 | ||
| 60 | # | 62 | # |
| @@ -71,6 +73,15 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
| 71 | # CONFIG_BSD_PROCESS_ACCT is not set | 73 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 72 | # CONFIG_TASKSTATS is not set | 74 | # CONFIG_TASKSTATS is not set |
| 73 | # CONFIG_AUDIT is not set | 75 | # CONFIG_AUDIT is not set |
| 76 | |||
| 77 | # | ||
| 78 | # RCU Subsystem | ||
| 79 | # | ||
| 80 | CONFIG_CLASSIC_RCU=y | ||
| 81 | # CONFIG_TREE_RCU is not set | ||
| 82 | # CONFIG_PREEMPT_RCU is not set | ||
| 83 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 84 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 74 | CONFIG_IKCONFIG=y | 85 | CONFIG_IKCONFIG=y |
| 75 | CONFIG_IKCONFIG_PROC=y | 86 | CONFIG_IKCONFIG_PROC=y |
| 76 | CONFIG_LOG_BUF_SHIFT=14 | 87 | CONFIG_LOG_BUF_SHIFT=14 |
| @@ -81,22 +92,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 81 | # CONFIG_NAMESPACES is not set | 92 | # CONFIG_NAMESPACES is not set |
| 82 | CONFIG_BLK_DEV_INITRD=y | 93 | CONFIG_BLK_DEV_INITRD=y |
| 83 | CONFIG_INITRAMFS_SOURCE="" | 94 | CONFIG_INITRAMFS_SOURCE="" |
| 95 | CONFIG_RD_GZIP=y | ||
| 96 | # CONFIG_RD_BZIP2 is not set | ||
| 97 | # CONFIG_RD_LZMA is not set | ||
| 84 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 98 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 85 | CONFIG_SYSCTL=y | 99 | CONFIG_SYSCTL=y |
| 100 | CONFIG_ANON_INODES=y | ||
| 86 | CONFIG_EMBEDDED=y | 101 | CONFIG_EMBEDDED=y |
| 87 | CONFIG_SYSCTL_SYSCALL=y | 102 | CONFIG_SYSCTL_SYSCALL=y |
| 88 | CONFIG_KALLSYMS=y | 103 | CONFIG_KALLSYMS=y |
| 89 | CONFIG_KALLSYMS_ALL=y | 104 | CONFIG_KALLSYMS_ALL=y |
| 90 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
| 91 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 105 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 106 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 92 | CONFIG_HOTPLUG=y | 107 | CONFIG_HOTPLUG=y |
| 93 | CONFIG_PRINTK=y | 108 | CONFIG_PRINTK=y |
| 94 | CONFIG_BUG=y | 109 | CONFIG_BUG=y |
| 95 | CONFIG_ELF_CORE=y | 110 | CONFIG_ELF_CORE=y |
| 96 | CONFIG_COMPAT_BRK=y | ||
| 97 | CONFIG_BASE_FULL=y | 111 | CONFIG_BASE_FULL=y |
| 98 | CONFIG_FUTEX=y | 112 | CONFIG_FUTEX=y |
| 99 | CONFIG_ANON_INODES=y | ||
| 100 | CONFIG_EPOLL=y | 113 | CONFIG_EPOLL=y |
| 101 | CONFIG_SIGNALFD=y | 114 | CONFIG_SIGNALFD=y |
| 102 | CONFIG_TIMERFD=y | 115 | CONFIG_TIMERFD=y |
| @@ -106,10 +119,12 @@ CONFIG_AIO=y | |||
| 106 | CONFIG_VM_EVENT_COUNTERS=y | 119 | CONFIG_VM_EVENT_COUNTERS=y |
| 107 | CONFIG_PCI_QUIRKS=y | 120 | CONFIG_PCI_QUIRKS=y |
| 108 | CONFIG_SLUB_DEBUG=y | 121 | CONFIG_SLUB_DEBUG=y |
| 122 | CONFIG_COMPAT_BRK=y | ||
| 109 | # CONFIG_SLAB is not set | 123 | # CONFIG_SLAB is not set |
| 110 | CONFIG_SLUB=y | 124 | CONFIG_SLUB=y |
| 111 | # CONFIG_SLOB is not set | 125 | # CONFIG_SLOB is not set |
| 112 | # CONFIG_PROFILING is not set | 126 | # CONFIG_PROFILING is not set |
| 127 | # CONFIG_MARKERS is not set | ||
| 113 | CONFIG_HAVE_OPROFILE=y | 128 | CONFIG_HAVE_OPROFILE=y |
| 114 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 129 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 115 | CONFIG_HAVE_IOREMAP_PROT=y | 130 | CONFIG_HAVE_IOREMAP_PROT=y |
| @@ -117,6 +132,7 @@ CONFIG_HAVE_KPROBES=y | |||
| 117 | CONFIG_HAVE_KRETPROBES=y | 132 | CONFIG_HAVE_KRETPROBES=y |
| 118 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 133 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 119 | CONFIG_HAVE_CLK=y | 134 | CONFIG_HAVE_CLK=y |
| 135 | # CONFIG_SLOW_WORK is not set | ||
| 120 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 136 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 121 | CONFIG_SLABINFO=y | 137 | CONFIG_SLABINFO=y |
| 122 | CONFIG_RT_MUTEXES=y | 138 | CONFIG_RT_MUTEXES=y |
| @@ -124,7 +140,6 @@ CONFIG_BASE_SMALL=0 | |||
| 124 | # CONFIG_MODULES is not set | 140 | # CONFIG_MODULES is not set |
| 125 | CONFIG_BLOCK=y | 141 | CONFIG_BLOCK=y |
| 126 | # CONFIG_LBD is not set | 142 | # CONFIG_LBD is not set |
| 127 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 128 | # CONFIG_BLK_DEV_INTEGRITY is not set | 143 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 129 | 144 | ||
| 130 | # | 145 | # |
| @@ -139,18 +154,11 @@ CONFIG_DEFAULT_AS=y | |||
| 139 | # CONFIG_DEFAULT_CFQ is not set | 154 | # CONFIG_DEFAULT_CFQ is not set |
| 140 | # CONFIG_DEFAULT_NOOP is not set | 155 | # CONFIG_DEFAULT_NOOP is not set |
| 141 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 156 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 142 | CONFIG_CLASSIC_RCU=y | ||
| 143 | # CONFIG_TREE_RCU is not set | ||
| 144 | # CONFIG_PREEMPT_RCU is not set | ||
| 145 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 146 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 147 | # CONFIG_FREEZER is not set | 157 | # CONFIG_FREEZER is not set |
| 148 | 158 | ||
| 149 | # | 159 | # |
| 150 | # Platform support | 160 | # Platform support |
| 151 | # | 161 | # |
| 152 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 153 | CONFIG_CLASSIC32=y | ||
| 154 | # CONFIG_PPC_CHRP is not set | 162 | # CONFIG_PPC_CHRP is not set |
| 155 | # CONFIG_MPC5121_ADS is not set | 163 | # CONFIG_MPC5121_ADS is not set |
| 156 | # CONFIG_MPC5121_GENERIC is not set | 164 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -169,6 +177,8 @@ CONFIG_PQ2_ADS_PCI_PIC=y | |||
| 169 | # CONFIG_PPC_83xx is not set | 177 | # CONFIG_PPC_83xx is not set |
| 170 | # CONFIG_PPC_86xx is not set | 178 | # CONFIG_PPC_86xx is not set |
| 171 | # CONFIG_EMBEDDED6xx is not set | 179 | # CONFIG_EMBEDDED6xx is not set |
| 180 | # CONFIG_AMIGAONE is not set | ||
| 181 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 172 | # CONFIG_IPIC is not set | 182 | # CONFIG_IPIC is not set |
| 173 | # CONFIG_MPIC is not set | 183 | # CONFIG_MPIC is not set |
| 174 | # CONFIG_MPIC_WEIRD is not set | 184 | # CONFIG_MPIC_WEIRD is not set |
| @@ -225,9 +235,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 225 | CONFIG_BOUNCE=y | 235 | CONFIG_BOUNCE=y |
| 226 | CONFIG_VIRT_TO_BUS=y | 236 | CONFIG_VIRT_TO_BUS=y |
| 227 | CONFIG_UNEVICTABLE_LRU=y | 237 | CONFIG_UNEVICTABLE_LRU=y |
| 238 | CONFIG_HAVE_MLOCK=y | ||
| 239 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 228 | CONFIG_PPC_4K_PAGES=y | 240 | CONFIG_PPC_4K_PAGES=y |
| 229 | # CONFIG_PPC_16K_PAGES is not set | 241 | # CONFIG_PPC_16K_PAGES is not set |
| 230 | # CONFIG_PPC_64K_PAGES is not set | 242 | # CONFIG_PPC_64K_PAGES is not set |
| 243 | # CONFIG_PPC_256K_PAGES is not set | ||
| 231 | CONFIG_FORCE_MAX_ZONEORDER=11 | 244 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 232 | CONFIG_PROC_DEVICETREE=y | 245 | CONFIG_PROC_DEVICETREE=y |
| 233 | # CONFIG_CMDLINE_BOOL is not set | 246 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -254,6 +267,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 254 | # CONFIG_PCI_LEGACY is not set | 267 | # CONFIG_PCI_LEGACY is not set |
| 255 | # CONFIG_PCI_DEBUG is not set | 268 | # CONFIG_PCI_DEBUG is not set |
| 256 | # CONFIG_PCI_STUB is not set | 269 | # CONFIG_PCI_STUB is not set |
| 270 | # CONFIG_PCI_IOV is not set | ||
| 257 | # CONFIG_PCCARD is not set | 271 | # CONFIG_PCCARD is not set |
| 258 | # CONFIG_HOTPLUG_PCI is not set | 272 | # CONFIG_HOTPLUG_PCI is not set |
| 259 | # CONFIG_HAS_RAPIDIO is not set | 273 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -276,7 +290,6 @@ CONFIG_NET=y | |||
| 276 | # | 290 | # |
| 277 | # Networking options | 291 | # Networking options |
| 278 | # | 292 | # |
| 279 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 280 | CONFIG_PACKET=y | 293 | CONFIG_PACKET=y |
| 281 | # CONFIG_PACKET_MMAP is not set | 294 | # CONFIG_PACKET_MMAP is not set |
| 282 | CONFIG_UNIX=y | 295 | CONFIG_UNIX=y |
| @@ -357,6 +370,7 @@ CONFIG_NETFILTER_ADVANCED=y | |||
| 357 | # CONFIG_LLC2 is not set | 370 | # CONFIG_LLC2 is not set |
| 358 | # CONFIG_IPX is not set | 371 | # CONFIG_IPX is not set |
| 359 | # CONFIG_ATALK is not set | 372 | # CONFIG_ATALK is not set |
| 373 | # CONFIG_PHONET is not set | ||
| 360 | # CONFIG_NET_SCHED is not set | 374 | # CONFIG_NET_SCHED is not set |
| 361 | # CONFIG_DCB is not set | 375 | # CONFIG_DCB is not set |
| 362 | 376 | ||
| @@ -368,7 +382,6 @@ CONFIG_NETFILTER_ADVANCED=y | |||
| 368 | # CONFIG_CAN is not set | 382 | # CONFIG_CAN is not set |
| 369 | # CONFIG_IRDA is not set | 383 | # CONFIG_IRDA is not set |
| 370 | # CONFIG_BT is not set | 384 | # CONFIG_BT is not set |
| 371 | # CONFIG_PHONET is not set | ||
| 372 | CONFIG_WIRELESS=y | 385 | CONFIG_WIRELESS=y |
| 373 | # CONFIG_CFG80211 is not set | 386 | # CONFIG_CFG80211 is not set |
| 374 | CONFIG_WIRELESS_OLD_REGULATORY=y | 387 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -473,7 +486,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 473 | # LPDDR flash memory drivers | 486 | # LPDDR flash memory drivers |
| 474 | # | 487 | # |
| 475 | # CONFIG_MTD_LPDDR is not set | 488 | # CONFIG_MTD_LPDDR is not set |
| 476 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 477 | 489 | ||
| 478 | # | 490 | # |
| 479 | # UBI - Unsorted block images | 491 | # UBI - Unsorted block images |
| @@ -498,10 +510,14 @@ CONFIG_BLK_DEV_LOOP=y | |||
| 498 | # CONFIG_BLK_DEV_HD is not set | 510 | # CONFIG_BLK_DEV_HD is not set |
| 499 | CONFIG_MISC_DEVICES=y | 511 | CONFIG_MISC_DEVICES=y |
| 500 | # CONFIG_PHANTOM is not set | 512 | # CONFIG_PHANTOM is not set |
| 501 | # CONFIG_EEPROM_93CX6 is not set | ||
| 502 | # CONFIG_SGI_IOC4 is not set | 513 | # CONFIG_SGI_IOC4 is not set |
| 503 | # CONFIG_ENCLOSURE_SERVICES is not set | 514 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 504 | # CONFIG_HP_ILO is not set | 515 | # CONFIG_HP_ILO is not set |
| 516 | |||
| 517 | # | ||
| 518 | # EEPROM support | ||
| 519 | # | ||
| 520 | # CONFIG_EEPROM_93CX6 is not set | ||
| 505 | CONFIG_HAVE_IDE=y | 521 | CONFIG_HAVE_IDE=y |
| 506 | CONFIG_IDE=y | 522 | CONFIG_IDE=y |
| 507 | 523 | ||
| @@ -573,6 +589,7 @@ CONFIG_IDE_PROC_FS=y | |||
| 573 | # CONFIG_I2O is not set | 589 | # CONFIG_I2O is not set |
| 574 | # CONFIG_MACINTOSH_DRIVERS is not set | 590 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 575 | CONFIG_NETDEVICES=y | 591 | CONFIG_NETDEVICES=y |
| 592 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 576 | # CONFIG_DUMMY is not set | 593 | # CONFIG_DUMMY is not set |
| 577 | # CONFIG_BONDING is not set | 594 | # CONFIG_BONDING is not set |
| 578 | # CONFIG_EQUALIZER is not set | 595 | # CONFIG_EQUALIZER is not set |
| @@ -606,6 +623,8 @@ CONFIG_MII=y | |||
| 606 | # CONFIG_SUNGEM is not set | 623 | # CONFIG_SUNGEM is not set |
| 607 | # CONFIG_CASSINI is not set | 624 | # CONFIG_CASSINI is not set |
| 608 | # CONFIG_NET_VENDOR_3COM is not set | 625 | # CONFIG_NET_VENDOR_3COM is not set |
| 626 | # CONFIG_ETHOC is not set | ||
| 627 | # CONFIG_DNET is not set | ||
| 609 | # CONFIG_NET_TULIP is not set | 628 | # CONFIG_NET_TULIP is not set |
| 610 | # CONFIG_HP100 is not set | 629 | # CONFIG_HP100 is not set |
| 611 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 630 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -628,6 +647,7 @@ CONFIG_NETDEV_1000=y | |||
| 628 | # CONFIG_E1000 is not set | 647 | # CONFIG_E1000 is not set |
| 629 | # CONFIG_E1000E is not set | 648 | # CONFIG_E1000E is not set |
| 630 | # CONFIG_IGB is not set | 649 | # CONFIG_IGB is not set |
| 650 | # CONFIG_IGBVF is not set | ||
| 631 | # CONFIG_NS83820 is not set | 651 | # CONFIG_NS83820 is not set |
| 632 | # CONFIG_HAMACHI is not set | 652 | # CONFIG_HAMACHI is not set |
| 633 | # CONFIG_R8169 is not set | 653 | # CONFIG_R8169 is not set |
| @@ -637,8 +657,8 @@ CONFIG_NETDEV_1000=y | |||
| 637 | # CONFIG_VIA_VELOCITY is not set | 657 | # CONFIG_VIA_VELOCITY is not set |
| 638 | # CONFIG_TIGON3 is not set | 658 | # CONFIG_TIGON3 is not set |
| 639 | # CONFIG_BNX2 is not set | 659 | # CONFIG_BNX2 is not set |
| 660 | # CONFIG_FSL_PQ_MDIO is not set | ||
| 640 | # CONFIG_GIANFAR is not set | 661 | # CONFIG_GIANFAR is not set |
| 641 | # CONFIG_MV643XX_ETH is not set | ||
| 642 | # CONFIG_QLA3XXX is not set | 662 | # CONFIG_QLA3XXX is not set |
| 643 | # CONFIG_ATL1 is not set | 663 | # CONFIG_ATL1 is not set |
| 644 | # CONFIG_JME is not set | 664 | # CONFIG_JME is not set |
| @@ -650,6 +670,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 650 | # CONFIG_IXGBE is not set | 670 | # CONFIG_IXGBE is not set |
| 651 | # CONFIG_IXGB is not set | 671 | # CONFIG_IXGB is not set |
| 652 | # CONFIG_S2IO is not set | 672 | # CONFIG_S2IO is not set |
| 673 | # CONFIG_VXGE is not set | ||
| 653 | # CONFIG_MYRI10GE is not set | 674 | # CONFIG_MYRI10GE is not set |
| 654 | # CONFIG_NETXEN_NIC is not set | 675 | # CONFIG_NETXEN_NIC is not set |
| 655 | # CONFIG_NIU is not set | 676 | # CONFIG_NIU is not set |
| @@ -659,6 +680,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 659 | # CONFIG_BNX2X is not set | 680 | # CONFIG_BNX2X is not set |
| 660 | # CONFIG_QLGE is not set | 681 | # CONFIG_QLGE is not set |
| 661 | # CONFIG_SFC is not set | 682 | # CONFIG_SFC is not set |
| 683 | # CONFIG_BE2NET is not set | ||
| 662 | # CONFIG_TR is not set | 684 | # CONFIG_TR is not set |
| 663 | 685 | ||
| 664 | # | 686 | # |
| @@ -666,7 +688,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 666 | # | 688 | # |
| 667 | # CONFIG_WLAN_PRE80211 is not set | 689 | # CONFIG_WLAN_PRE80211 is not set |
| 668 | # CONFIG_WLAN_80211 is not set | 690 | # CONFIG_WLAN_80211 is not set |
| 669 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 670 | 691 | ||
| 671 | # | 692 | # |
| 672 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 693 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -720,7 +741,6 @@ CONFIG_MOUSE_PS2=y | |||
| 720 | CONFIG_MOUSE_PS2_ALPS=y | 741 | CONFIG_MOUSE_PS2_ALPS=y |
| 721 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 742 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
| 722 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 743 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
| 723 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
| 724 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 744 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
| 725 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 745 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
| 726 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 746 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
| @@ -773,6 +793,7 @@ CONFIG_LEGACY_PTYS=y | |||
| 773 | CONFIG_LEGACY_PTY_COUNT=256 | 793 | CONFIG_LEGACY_PTY_COUNT=256 |
| 774 | # CONFIG_IPMI_HANDLER is not set | 794 | # CONFIG_IPMI_HANDLER is not set |
| 775 | CONFIG_HW_RANDOM=y | 795 | CONFIG_HW_RANDOM=y |
| 796 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 776 | # CONFIG_NVRAM is not set | 797 | # CONFIG_NVRAM is not set |
| 777 | # CONFIG_GEN_RTC is not set | 798 | # CONFIG_GEN_RTC is not set |
| 778 | # CONFIG_R3964 is not set | 799 | # CONFIG_R3964 is not set |
| @@ -868,7 +889,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
| 868 | # CONFIG_USB_GADGET_MUSB_HDRC is not set | 889 | # CONFIG_USB_GADGET_MUSB_HDRC is not set |
| 869 | 890 | ||
| 870 | # | 891 | # |
| 871 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 892 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 872 | # | 893 | # |
| 873 | CONFIG_USB_GADGET=y | 894 | CONFIG_USB_GADGET=y |
| 874 | # CONFIG_USB_GADGET_DEBUG is not set | 895 | # CONFIG_USB_GADGET_DEBUG is not set |
| @@ -907,13 +928,16 @@ CONFIG_USB_ETH_RNDIS=y | |||
| 907 | # OTG and related infrastructure | 928 | # OTG and related infrastructure |
| 908 | # | 929 | # |
| 909 | # CONFIG_USB_GPIO_VBUS is not set | 930 | # CONFIG_USB_GPIO_VBUS is not set |
| 931 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 910 | # CONFIG_MMC is not set | 932 | # CONFIG_MMC is not set |
| 911 | # CONFIG_MEMSTICK is not set | 933 | # CONFIG_MEMSTICK is not set |
| 912 | # CONFIG_NEW_LEDS is not set | 934 | # CONFIG_NEW_LEDS is not set |
| 913 | # CONFIG_ACCESSIBILITY is not set | 935 | # CONFIG_ACCESSIBILITY is not set |
| 914 | # CONFIG_INFINIBAND is not set | 936 | # CONFIG_INFINIBAND is not set |
| 937 | # CONFIG_EDAC is not set | ||
| 915 | # CONFIG_RTC_CLASS is not set | 938 | # CONFIG_RTC_CLASS is not set |
| 916 | # CONFIG_DMADEVICES is not set | 939 | # CONFIG_DMADEVICES is not set |
| 940 | # CONFIG_AUXDISPLAY is not set | ||
| 917 | # CONFIG_UIO is not set | 941 | # CONFIG_UIO is not set |
| 918 | # CONFIG_STAGING is not set | 942 | # CONFIG_STAGING is not set |
| 919 | 943 | ||
| @@ -924,6 +948,7 @@ CONFIG_EXT2_FS=y | |||
| 924 | # CONFIG_EXT2_FS_XATTR is not set | 948 | # CONFIG_EXT2_FS_XATTR is not set |
| 925 | # CONFIG_EXT2_FS_XIP is not set | 949 | # CONFIG_EXT2_FS_XIP is not set |
| 926 | CONFIG_EXT3_FS=y | 950 | CONFIG_EXT3_FS=y |
| 951 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 927 | CONFIG_EXT3_FS_XATTR=y | 952 | CONFIG_EXT3_FS_XATTR=y |
| 928 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 953 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 929 | # CONFIG_EXT3_FS_SECURITY is not set | 954 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -945,6 +970,10 @@ CONFIG_AUTOFS4_FS=y | |||
| 945 | # CONFIG_FUSE_FS is not set | 970 | # CONFIG_FUSE_FS is not set |
| 946 | 971 | ||
| 947 | # | 972 | # |
| 973 | # Caches | ||
| 974 | # | ||
| 975 | |||
| 976 | # | ||
| 948 | # CD-ROM/DVD Filesystems | 977 | # CD-ROM/DVD Filesystems |
| 949 | # | 978 | # |
| 950 | # CONFIG_ISO9660_FS is not set | 979 | # CONFIG_ISO9660_FS is not set |
| @@ -1059,6 +1088,7 @@ CONFIG_NLS_ISO8859_1=y | |||
| 1059 | # CONFIG_NLS_KOI8_R is not set | 1088 | # CONFIG_NLS_KOI8_R is not set |
| 1060 | # CONFIG_NLS_KOI8_U is not set | 1089 | # CONFIG_NLS_KOI8_U is not set |
| 1061 | CONFIG_NLS_UTF8=y | 1090 | CONFIG_NLS_UTF8=y |
| 1091 | # CONFIG_BINARY_PRINTF is not set | ||
| 1062 | 1092 | ||
| 1063 | # | 1093 | # |
| 1064 | # Library routines | 1094 | # Library routines |
| @@ -1074,11 +1104,12 @@ CONFIG_CRC32=y | |||
| 1074 | # CONFIG_LIBCRC32C is not set | 1104 | # CONFIG_LIBCRC32C is not set |
| 1075 | CONFIG_ZLIB_INFLATE=y | 1105 | CONFIG_ZLIB_INFLATE=y |
| 1076 | CONFIG_ZLIB_DEFLATE=y | 1106 | CONFIG_ZLIB_DEFLATE=y |
| 1077 | CONFIG_PLIST=y | 1107 | CONFIG_DECOMPRESS_GZIP=y |
| 1078 | CONFIG_HAS_IOMEM=y | 1108 | CONFIG_HAS_IOMEM=y |
| 1079 | CONFIG_HAS_IOPORT=y | 1109 | CONFIG_HAS_IOPORT=y |
| 1080 | CONFIG_HAS_DMA=y | 1110 | CONFIG_HAS_DMA=y |
| 1081 | CONFIG_HAVE_LMB=y | 1111 | CONFIG_HAVE_LMB=y |
| 1112 | CONFIG_NLATTR=y | ||
| 1082 | 1113 | ||
| 1083 | # | 1114 | # |
| 1084 | # Kernel hacking | 1115 | # Kernel hacking |
| @@ -1096,6 +1127,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1096 | CONFIG_DETECT_SOFTLOCKUP=y | 1127 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1097 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1128 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1098 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1129 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1130 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1131 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1132 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1099 | # CONFIG_SCHED_DEBUG is not set | 1133 | # CONFIG_SCHED_DEBUG is not set |
| 1100 | # CONFIG_SCHEDSTATS is not set | 1134 | # CONFIG_SCHEDSTATS is not set |
| 1101 | # CONFIG_TIMER_STATS is not set | 1135 | # CONFIG_TIMER_STATS is not set |
| @@ -1125,9 +1159,12 @@ CONFIG_DEBUG_INFO=y | |||
| 1125 | # CONFIG_FAULT_INJECTION is not set | 1159 | # CONFIG_FAULT_INJECTION is not set |
| 1126 | # CONFIG_LATENCYTOP is not set | 1160 | # CONFIG_LATENCYTOP is not set |
| 1127 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1161 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1162 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1128 | CONFIG_HAVE_FUNCTION_TRACER=y | 1163 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1164 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1129 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1165 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1130 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1166 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1167 | CONFIG_TRACING_SUPPORT=y | ||
| 1131 | 1168 | ||
| 1132 | # | 1169 | # |
| 1133 | # Tracers | 1170 | # Tracers |
| @@ -1135,16 +1172,18 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
| 1135 | # CONFIG_FUNCTION_TRACER is not set | 1172 | # CONFIG_FUNCTION_TRACER is not set |
| 1136 | # CONFIG_SCHED_TRACER is not set | 1173 | # CONFIG_SCHED_TRACER is not set |
| 1137 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1174 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1175 | # CONFIG_EVENT_TRACER is not set | ||
| 1138 | # CONFIG_BOOT_TRACER is not set | 1176 | # CONFIG_BOOT_TRACER is not set |
| 1139 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1177 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1140 | # CONFIG_STACK_TRACER is not set | 1178 | # CONFIG_STACK_TRACER is not set |
| 1141 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1179 | # CONFIG_KMEMTRACE is not set |
| 1180 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1181 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1142 | # CONFIG_SAMPLES is not set | 1182 | # CONFIG_SAMPLES is not set |
| 1143 | CONFIG_HAVE_ARCH_KGDB=y | 1183 | CONFIG_HAVE_ARCH_KGDB=y |
| 1144 | CONFIG_PRINT_STACK_DEPTH=64 | 1184 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1145 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1185 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
| 1146 | # CONFIG_DEBUG_STACK_USAGE is not set | 1186 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1147 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1148 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1187 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1149 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1188 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1150 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1189 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1175,9 +1214,11 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
| 1175 | CONFIG_CRYPTO_HASH=y | 1214 | CONFIG_CRYPTO_HASH=y |
| 1176 | CONFIG_CRYPTO_HASH2=y | 1215 | CONFIG_CRYPTO_HASH2=y |
| 1177 | CONFIG_CRYPTO_RNG2=y | 1216 | CONFIG_CRYPTO_RNG2=y |
| 1217 | CONFIG_CRYPTO_PCOMP=y | ||
| 1178 | CONFIG_CRYPTO_MANAGER=y | 1218 | CONFIG_CRYPTO_MANAGER=y |
| 1179 | CONFIG_CRYPTO_MANAGER2=y | 1219 | CONFIG_CRYPTO_MANAGER2=y |
| 1180 | # CONFIG_CRYPTO_NULL is not set | 1220 | # CONFIG_CRYPTO_NULL is not set |
| 1221 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1181 | # CONFIG_CRYPTO_CRYPTD is not set | 1222 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1182 | # CONFIG_CRYPTO_AUTHENC is not set | 1223 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1183 | 1224 | ||
| @@ -1241,6 +1282,7 @@ CONFIG_CRYPTO_DES=y | |||
| 1241 | # Compression | 1282 | # Compression |
| 1242 | # | 1283 | # |
| 1243 | # CONFIG_CRYPTO_DEFLATE is not set | 1284 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1285 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1244 | # CONFIG_CRYPTO_LZO is not set | 1286 | # CONFIG_CRYPTO_LZO is not set |
| 1245 | 1287 | ||
| 1246 | # | 1288 | # |
diff --git a/arch/powerpc/configs/prpmc2800_defconfig b/arch/powerpc/configs/prpmc2800_defconfig index e971db171138..e9f287f313fa 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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Mon Jan 26 15:35:44 2009 | 4 | # Wed May 13 17:22:03 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | CONFIG_ALTIVEC=y | 19 | CONFIG_ALTIVEC=y |
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| @@ -56,6 +57,7 @@ CONFIG_GENERIC_BUG=y | |||
| 56 | # CONFIG_DEFAULT_UIMAGE is not set | 57 | # CONFIG_DEFAULT_UIMAGE is not set |
| 57 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
| 58 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
| 60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 60 | 62 | ||
| 61 | # | 63 | # |
| @@ -70,9 +72,19 @@ CONFIG_SWAP=y | |||
| 70 | CONFIG_SYSVIPC=y | 72 | CONFIG_SYSVIPC=y |
| 71 | CONFIG_SYSVIPC_SYSCTL=y | 73 | CONFIG_SYSVIPC_SYSCTL=y |
| 72 | CONFIG_POSIX_MQUEUE=y | 74 | CONFIG_POSIX_MQUEUE=y |
| 75 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 73 | # CONFIG_BSD_PROCESS_ACCT is not set | 76 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 74 | # CONFIG_TASKSTATS is not set | 77 | # CONFIG_TASKSTATS is not set |
| 75 | # CONFIG_AUDIT is not set | 78 | # CONFIG_AUDIT is not set |
| 79 | |||
| 80 | # | ||
| 81 | # RCU Subsystem | ||
| 82 | # | ||
| 83 | CONFIG_CLASSIC_RCU=y | ||
| 84 | # CONFIG_TREE_RCU is not set | ||
| 85 | # CONFIG_PREEMPT_RCU is not set | ||
| 86 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 87 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 76 | # CONFIG_IKCONFIG is not set | 88 | # CONFIG_IKCONFIG is not set |
| 77 | CONFIG_LOG_BUF_SHIFT=14 | 89 | CONFIG_LOG_BUF_SHIFT=14 |
| 78 | CONFIG_GROUP_SCHED=y | 90 | CONFIG_GROUP_SCHED=y |
| @@ -89,22 +101,26 @@ CONFIG_NAMESPACES=y | |||
| 89 | # CONFIG_IPC_NS is not set | 101 | # CONFIG_IPC_NS is not set |
| 90 | # CONFIG_USER_NS is not set | 102 | # CONFIG_USER_NS is not set |
| 91 | # CONFIG_PID_NS is not set | 103 | # CONFIG_PID_NS is not set |
| 104 | # CONFIG_NET_NS is not set | ||
| 92 | CONFIG_BLK_DEV_INITRD=y | 105 | CONFIG_BLK_DEV_INITRD=y |
| 93 | CONFIG_INITRAMFS_SOURCE="" | 106 | CONFIG_INITRAMFS_SOURCE="" |
| 107 | CONFIG_RD_GZIP=y | ||
| 108 | CONFIG_RD_BZIP2=y | ||
| 109 | CONFIG_RD_LZMA=y | ||
| 94 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 110 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
| 95 | CONFIG_SYSCTL=y | 111 | CONFIG_SYSCTL=y |
| 112 | CONFIG_ANON_INODES=y | ||
| 96 | # CONFIG_EMBEDDED is not set | 113 | # CONFIG_EMBEDDED is not set |
| 97 | CONFIG_SYSCTL_SYSCALL=y | 114 | CONFIG_SYSCTL_SYSCALL=y |
| 98 | CONFIG_KALLSYMS=y | 115 | CONFIG_KALLSYMS=y |
| 99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 116 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
| 117 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 100 | CONFIG_HOTPLUG=y | 118 | CONFIG_HOTPLUG=y |
| 101 | CONFIG_PRINTK=y | 119 | CONFIG_PRINTK=y |
| 102 | CONFIG_BUG=y | 120 | CONFIG_BUG=y |
| 103 | CONFIG_ELF_CORE=y | 121 | CONFIG_ELF_CORE=y |
| 104 | CONFIG_COMPAT_BRK=y | ||
| 105 | CONFIG_BASE_FULL=y | 122 | CONFIG_BASE_FULL=y |
| 106 | CONFIG_FUTEX=y | 123 | CONFIG_FUTEX=y |
| 107 | CONFIG_ANON_INODES=y | ||
| 108 | CONFIG_EPOLL=y | 124 | CONFIG_EPOLL=y |
| 109 | CONFIG_SIGNALFD=y | 125 | CONFIG_SIGNALFD=y |
| 110 | CONFIG_TIMERFD=y | 126 | CONFIG_TIMERFD=y |
| @@ -114,16 +130,19 @@ CONFIG_AIO=y | |||
| 114 | CONFIG_VM_EVENT_COUNTERS=y | 130 | CONFIG_VM_EVENT_COUNTERS=y |
| 115 | CONFIG_PCI_QUIRKS=y | 131 | CONFIG_PCI_QUIRKS=y |
| 116 | CONFIG_SLUB_DEBUG=y | 132 | CONFIG_SLUB_DEBUG=y |
| 133 | CONFIG_COMPAT_BRK=y | ||
| 117 | # CONFIG_SLAB is not set | 134 | # CONFIG_SLAB is not set |
| 118 | CONFIG_SLUB=y | 135 | CONFIG_SLUB=y |
| 119 | # CONFIG_SLOB is not set | 136 | # CONFIG_SLOB is not set |
| 120 | # CONFIG_PROFILING is not set | 137 | # CONFIG_PROFILING is not set |
| 138 | # CONFIG_MARKERS is not set | ||
| 121 | CONFIG_HAVE_OPROFILE=y | 139 | CONFIG_HAVE_OPROFILE=y |
| 122 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 140 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 123 | CONFIG_HAVE_IOREMAP_PROT=y | 141 | CONFIG_HAVE_IOREMAP_PROT=y |
| 124 | CONFIG_HAVE_KPROBES=y | 142 | CONFIG_HAVE_KPROBES=y |
| 125 | CONFIG_HAVE_KRETPROBES=y | 143 | CONFIG_HAVE_KRETPROBES=y |
| 126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 144 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 145 | # CONFIG_SLOW_WORK is not set | ||
| 127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 146 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 128 | CONFIG_SLABINFO=y | 147 | CONFIG_SLABINFO=y |
| 129 | CONFIG_RT_MUTEXES=y | 148 | CONFIG_RT_MUTEXES=y |
| @@ -131,7 +150,6 @@ CONFIG_BASE_SMALL=0 | |||
| 131 | # CONFIG_MODULES is not set | 150 | # CONFIG_MODULES is not set |
| 132 | CONFIG_BLOCK=y | 151 | CONFIG_BLOCK=y |
| 133 | CONFIG_LBD=y | 152 | CONFIG_LBD=y |
| 134 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 135 | # CONFIG_BLK_DEV_BSG is not set | 153 | # CONFIG_BLK_DEV_BSG is not set |
| 136 | # CONFIG_BLK_DEV_INTEGRITY is not set | 154 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 137 | 155 | ||
| @@ -147,18 +165,11 @@ CONFIG_DEFAULT_AS=y | |||
| 147 | # CONFIG_DEFAULT_CFQ is not set | 165 | # CONFIG_DEFAULT_CFQ is not set |
| 148 | # CONFIG_DEFAULT_NOOP is not set | 166 | # CONFIG_DEFAULT_NOOP is not set |
| 149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 167 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
| 150 | CONFIG_CLASSIC_RCU=y | ||
| 151 | # CONFIG_TREE_RCU is not set | ||
| 152 | # CONFIG_PREEMPT_RCU is not set | ||
| 153 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 154 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
| 155 | # CONFIG_FREEZER is not set | 168 | # CONFIG_FREEZER is not set |
| 156 | 169 | ||
| 157 | # | 170 | # |
| 158 | # Platform support | 171 | # Platform support |
| 159 | # | 172 | # |
| 160 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 161 | CONFIG_CLASSIC32=y | ||
| 162 | # CONFIG_PPC_CHRP is not set | 173 | # CONFIG_PPC_CHRP is not set |
| 163 | # CONFIG_MPC5121_ADS is not set | 174 | # CONFIG_MPC5121_ADS is not set |
| 164 | # CONFIG_MPC5121_GENERIC is not set | 175 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -178,6 +189,8 @@ CONFIG_EMBEDDED6xx=y | |||
| 178 | CONFIG_PPC_PRPMC2800=y | 189 | CONFIG_PPC_PRPMC2800=y |
| 179 | # CONFIG_PPC_C2K is not set | 190 | # CONFIG_PPC_C2K is not set |
| 180 | CONFIG_MV64X60=y | 191 | CONFIG_MV64X60=y |
| 192 | # CONFIG_AMIGAONE is not set | ||
| 193 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 181 | # CONFIG_IPIC is not set | 194 | # CONFIG_IPIC is not set |
| 182 | # CONFIG_MPIC is not set | 195 | # CONFIG_MPIC is not set |
| 183 | # CONFIG_MPIC_WEIRD is not set | 196 | # CONFIG_MPIC_WEIRD is not set |
| @@ -237,9 +250,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 237 | CONFIG_BOUNCE=y | 250 | CONFIG_BOUNCE=y |
| 238 | CONFIG_VIRT_TO_BUS=y | 251 | CONFIG_VIRT_TO_BUS=y |
| 239 | CONFIG_UNEVICTABLE_LRU=y | 252 | CONFIG_UNEVICTABLE_LRU=y |
| 253 | CONFIG_HAVE_MLOCK=y | ||
| 254 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 240 | CONFIG_PPC_4K_PAGES=y | 255 | CONFIG_PPC_4K_PAGES=y |
| 241 | # CONFIG_PPC_16K_PAGES is not set | 256 | # CONFIG_PPC_16K_PAGES is not set |
| 242 | # CONFIG_PPC_64K_PAGES is not set | 257 | # CONFIG_PPC_64K_PAGES is not set |
| 258 | # CONFIG_PPC_256K_PAGES is not set | ||
| 243 | CONFIG_FORCE_MAX_ZONEORDER=11 | 259 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 244 | CONFIG_PROC_DEVICETREE=y | 260 | CONFIG_PROC_DEVICETREE=y |
| 245 | # CONFIG_CMDLINE_BOOL is not set | 261 | # CONFIG_CMDLINE_BOOL is not set |
| @@ -262,6 +278,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 262 | # CONFIG_PCI_MSI is not set | 278 | # CONFIG_PCI_MSI is not set |
| 263 | # CONFIG_PCI_LEGACY is not set | 279 | # CONFIG_PCI_LEGACY is not set |
| 264 | # CONFIG_PCI_STUB is not set | 280 | # CONFIG_PCI_STUB is not set |
| 281 | # CONFIG_PCI_IOV is not set | ||
| 265 | # CONFIG_PCCARD is not set | 282 | # CONFIG_PCCARD is not set |
| 266 | # CONFIG_HOTPLUG_PCI is not set | 283 | # CONFIG_HOTPLUG_PCI is not set |
| 267 | # CONFIG_HAS_RAPIDIO is not set | 284 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -279,15 +296,11 @@ CONFIG_PAGE_OFFSET=0xc0000000 | |||
| 279 | CONFIG_KERNEL_START=0xc0000000 | 296 | CONFIG_KERNEL_START=0xc0000000 |
| 280 | CONFIG_PHYSICAL_START=0x00000000 | 297 | CONFIG_PHYSICAL_START=0x00000000 |
| 281 | CONFIG_TASK_SIZE=0xc0000000 | 298 | CONFIG_TASK_SIZE=0xc0000000 |
| 282 | CONFIG_CONSISTENT_START=0xff100000 | ||
| 283 | CONFIG_CONSISTENT_SIZE=0x00200000 | ||
| 284 | CONFIG_NET=y | 299 | CONFIG_NET=y |
| 285 | 300 | ||
| 286 | # | 301 | # |
| 287 | # Networking options | 302 | # Networking options |
| 288 | # | 303 | # |
| 289 | # CONFIG_NET_NS is not set | ||
| 290 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 291 | CONFIG_PACKET=y | 304 | CONFIG_PACKET=y |
| 292 | # CONFIG_PACKET_MMAP is not set | 305 | # CONFIG_PACKET_MMAP is not set |
| 293 | CONFIG_UNIX=y | 306 | CONFIG_UNIX=y |
| @@ -318,7 +331,7 @@ CONFIG_SYN_COOKIES=y | |||
| 318 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | 331 | CONFIG_INET_XFRM_MODE_TRANSPORT=y |
| 319 | CONFIG_INET_XFRM_MODE_TUNNEL=y | 332 | CONFIG_INET_XFRM_MODE_TUNNEL=y |
| 320 | CONFIG_INET_XFRM_MODE_BEET=y | 333 | CONFIG_INET_XFRM_MODE_BEET=y |
| 321 | # CONFIG_INET_LRO is not set | 334 | CONFIG_INET_LRO=y |
| 322 | CONFIG_INET_DIAG=y | 335 | CONFIG_INET_DIAG=y |
| 323 | CONFIG_INET_TCP_DIAG=y | 336 | CONFIG_INET_TCP_DIAG=y |
| 324 | # CONFIG_TCP_CONG_ADVANCED is not set | 337 | # CONFIG_TCP_CONG_ADVANCED is not set |
| @@ -343,6 +356,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 343 | # CONFIG_LAPB is not set | 356 | # CONFIG_LAPB is not set |
| 344 | # CONFIG_ECONET is not set | 357 | # CONFIG_ECONET is not set |
| 345 | # CONFIG_WAN_ROUTER is not set | 358 | # CONFIG_WAN_ROUTER is not set |
| 359 | # CONFIG_PHONET is not set | ||
| 346 | # CONFIG_NET_SCHED is not set | 360 | # CONFIG_NET_SCHED is not set |
| 347 | # CONFIG_DCB is not set | 361 | # CONFIG_DCB is not set |
| 348 | 362 | ||
| @@ -355,7 +369,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 355 | # CONFIG_IRDA is not set | 369 | # CONFIG_IRDA is not set |
| 356 | # CONFIG_BT is not set | 370 | # CONFIG_BT is not set |
| 357 | # CONFIG_AF_RXRPC is not set | 371 | # CONFIG_AF_RXRPC is not set |
| 358 | # CONFIG_PHONET is not set | ||
| 359 | CONFIG_WIRELESS=y | 372 | CONFIG_WIRELESS=y |
| 360 | # CONFIG_CFG80211 is not set | 373 | # CONFIG_CFG80211 is not set |
| 361 | CONFIG_WIRELESS_OLD_REGULATORY=y | 374 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -459,7 +472,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
| 459 | # LPDDR flash memory drivers | 472 | # LPDDR flash memory drivers |
| 460 | # | 473 | # |
| 461 | # CONFIG_MTD_LPDDR is not set | 474 | # CONFIG_MTD_LPDDR is not set |
| 462 | # CONFIG_MTD_QINFO_PROBE is not set | ||
| 463 | 475 | ||
| 464 | # | 476 | # |
| 465 | # UBI - Unsorted block images | 477 | # UBI - Unsorted block images |
| @@ -489,19 +501,27 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
| 489 | # CONFIG_BLK_DEV_HD is not set | 501 | # CONFIG_BLK_DEV_HD is not set |
| 490 | CONFIG_MISC_DEVICES=y | 502 | CONFIG_MISC_DEVICES=y |
| 491 | # CONFIG_PHANTOM is not set | 503 | # CONFIG_PHANTOM is not set |
| 492 | # CONFIG_EEPROM_93CX6 is not set | ||
| 493 | # CONFIG_SGI_IOC4 is not set | 504 | # CONFIG_SGI_IOC4 is not set |
| 494 | # CONFIG_TIFM_CORE is not set | 505 | # CONFIG_TIFM_CORE is not set |
| 495 | # CONFIG_ICS932S401 is not set | 506 | # CONFIG_ICS932S401 is not set |
| 496 | # CONFIG_ENCLOSURE_SERVICES is not set | 507 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 497 | # CONFIG_HP_ILO is not set | 508 | # CONFIG_HP_ILO is not set |
| 509 | # CONFIG_ISL29003 is not set | ||
| 498 | # CONFIG_C2PORT is not set | 510 | # CONFIG_C2PORT is not set |
| 511 | |||
| 512 | # | ||
| 513 | # EEPROM support | ||
| 514 | # | ||
| 515 | # CONFIG_EEPROM_AT24 is not set | ||
| 516 | # CONFIG_EEPROM_LEGACY is not set | ||
| 517 | # CONFIG_EEPROM_93CX6 is not set | ||
| 499 | CONFIG_HAVE_IDE=y | 518 | CONFIG_HAVE_IDE=y |
| 500 | CONFIG_IDE=y | 519 | CONFIG_IDE=y |
| 501 | 520 | ||
| 502 | # | 521 | # |
| 503 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 522 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 504 | # | 523 | # |
| 524 | CONFIG_IDE_XFER_MODE=y | ||
| 505 | # CONFIG_BLK_DEV_IDE_SATA is not set | 525 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 506 | CONFIG_IDE_GD=y | 526 | CONFIG_IDE_GD=y |
| 507 | CONFIG_IDE_GD_ATA=y | 527 | CONFIG_IDE_GD_ATA=y |
| @@ -605,9 +625,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 605 | # CONFIG_MEGARAID_NEWGEN is not set | 625 | # CONFIG_MEGARAID_NEWGEN is not set |
| 606 | # CONFIG_MEGARAID_LEGACY is not set | 626 | # CONFIG_MEGARAID_LEGACY is not set |
| 607 | # CONFIG_MEGARAID_SAS is not set | 627 | # CONFIG_MEGARAID_SAS is not set |
| 628 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 608 | # CONFIG_SCSI_HPTIOP is not set | 629 | # CONFIG_SCSI_HPTIOP is not set |
| 609 | # CONFIG_SCSI_BUSLOGIC is not set | 630 | # CONFIG_SCSI_BUSLOGIC is not set |
| 610 | # CONFIG_LIBFC is not set | 631 | # CONFIG_LIBFC is not set |
| 632 | # CONFIG_LIBFCOE is not set | ||
| 611 | # CONFIG_FCOE is not set | 633 | # CONFIG_FCOE is not set |
| 612 | # CONFIG_SCSI_DMX3191D is not set | 634 | # CONFIG_SCSI_DMX3191D is not set |
| 613 | # CONFIG_SCSI_EATA is not set | 635 | # CONFIG_SCSI_EATA is not set |
| @@ -630,6 +652,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 630 | # CONFIG_SCSI_DEBUG is not set | 652 | # CONFIG_SCSI_DEBUG is not set |
| 631 | # CONFIG_SCSI_SRP is not set | 653 | # CONFIG_SCSI_SRP is not set |
| 632 | # CONFIG_SCSI_DH is not set | 654 | # CONFIG_SCSI_DH is not set |
| 655 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 633 | CONFIG_ATA=y | 656 | CONFIG_ATA=y |
| 634 | # CONFIG_ATA_NONSTANDARD is not set | 657 | # CONFIG_ATA_NONSTANDARD is not set |
| 635 | CONFIG_SATA_PMP=y | 658 | CONFIG_SATA_PMP=y |
| @@ -707,6 +730,7 @@ CONFIG_MACINTOSH_DRIVERS=y | |||
| 707 | # CONFIG_MAC_EMUMOUSEBTN is not set | 730 | # CONFIG_MAC_EMUMOUSEBTN is not set |
| 708 | # CONFIG_WINDFARM is not set | 731 | # CONFIG_WINDFARM is not set |
| 709 | CONFIG_NETDEVICES=y | 732 | CONFIG_NETDEVICES=y |
| 733 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 710 | # CONFIG_DUMMY is not set | 734 | # CONFIG_DUMMY is not set |
| 711 | # CONFIG_BONDING is not set | 735 | # CONFIG_BONDING is not set |
| 712 | # CONFIG_MACVLAN is not set | 736 | # CONFIG_MACVLAN is not set |
| @@ -740,6 +764,8 @@ CONFIG_MII=y | |||
| 740 | # CONFIG_SUNGEM is not set | 764 | # CONFIG_SUNGEM is not set |
| 741 | # CONFIG_CASSINI is not set | 765 | # CONFIG_CASSINI is not set |
| 742 | # CONFIG_NET_VENDOR_3COM is not set | 766 | # CONFIG_NET_VENDOR_3COM is not set |
| 767 | # CONFIG_ETHOC is not set | ||
| 768 | # CONFIG_DNET is not set | ||
| 743 | # CONFIG_NET_TULIP is not set | 769 | # CONFIG_NET_TULIP is not set |
| 744 | # CONFIG_HP100 is not set | 770 | # CONFIG_HP100 is not set |
| 745 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 771 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| @@ -781,6 +807,7 @@ CONFIG_E1000=y | |||
| 781 | # CONFIG_E1000E is not set | 807 | # CONFIG_E1000E is not set |
| 782 | # CONFIG_IP1000 is not set | 808 | # CONFIG_IP1000 is not set |
| 783 | # CONFIG_IGB is not set | 809 | # CONFIG_IGB is not set |
| 810 | # CONFIG_IGBVF is not set | ||
| 784 | # CONFIG_NS83820 is not set | 811 | # CONFIG_NS83820 is not set |
| 785 | # CONFIG_HAMACHI is not set | 812 | # CONFIG_HAMACHI is not set |
| 786 | # CONFIG_YELLOWFIN is not set | 813 | # CONFIG_YELLOWFIN is not set |
| @@ -795,6 +822,7 @@ CONFIG_MV643XX_ETH=y | |||
| 795 | # CONFIG_QLA3XXX is not set | 822 | # CONFIG_QLA3XXX is not set |
| 796 | # CONFIG_ATL1 is not set | 823 | # CONFIG_ATL1 is not set |
| 797 | # CONFIG_ATL1E is not set | 824 | # CONFIG_ATL1E is not set |
| 825 | # CONFIG_ATL1C is not set | ||
| 798 | # CONFIG_JME is not set | 826 | # CONFIG_JME is not set |
| 799 | CONFIG_NETDEV_10000=y | 827 | CONFIG_NETDEV_10000=y |
| 800 | # CONFIG_CHELSIO_T1 is not set | 828 | # CONFIG_CHELSIO_T1 is not set |
| @@ -804,6 +832,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 804 | # CONFIG_IXGBE is not set | 832 | # CONFIG_IXGBE is not set |
| 805 | # CONFIG_IXGB is not set | 833 | # CONFIG_IXGB is not set |
| 806 | # CONFIG_S2IO is not set | 834 | # CONFIG_S2IO is not set |
| 835 | # CONFIG_VXGE is not set | ||
| 807 | # CONFIG_MYRI10GE is not set | 836 | # CONFIG_MYRI10GE is not set |
| 808 | # CONFIG_NETXEN_NIC is not set | 837 | # CONFIG_NETXEN_NIC is not set |
| 809 | # CONFIG_NIU is not set | 838 | # CONFIG_NIU is not set |
| @@ -813,6 +842,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 813 | # CONFIG_BNX2X is not set | 842 | # CONFIG_BNX2X is not set |
| 814 | # CONFIG_QLGE is not set | 843 | # CONFIG_QLGE is not set |
| 815 | # CONFIG_SFC is not set | 844 | # CONFIG_SFC is not set |
| 845 | # CONFIG_BE2NET is not set | ||
| 816 | # CONFIG_TR is not set | 846 | # CONFIG_TR is not set |
| 817 | 847 | ||
| 818 | # | 848 | # |
| @@ -820,7 +850,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
| 820 | # | 850 | # |
| 821 | # CONFIG_WLAN_PRE80211 is not set | 851 | # CONFIG_WLAN_PRE80211 is not set |
| 822 | # CONFIG_WLAN_80211 is not set | 852 | # CONFIG_WLAN_80211 is not set |
| 823 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 824 | 853 | ||
| 825 | # | 854 | # |
| 826 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 855 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -975,12 +1004,9 @@ CONFIG_I2C_MV64XXX=y | |||
| 975 | # Miscellaneous I2C Chip support | 1004 | # Miscellaneous I2C Chip support |
| 976 | # | 1005 | # |
| 977 | # CONFIG_DS1682 is not set | 1006 | # CONFIG_DS1682 is not set |
| 978 | # CONFIG_EEPROM_AT24 is not set | ||
| 979 | # CONFIG_EEPROM_LEGACY is not set | ||
| 980 | # CONFIG_SENSORS_PCF8574 is not set | 1007 | # CONFIG_SENSORS_PCF8574 is not set |
| 981 | # CONFIG_PCF8575 is not set | 1008 | # CONFIG_PCF8575 is not set |
| 982 | # CONFIG_SENSORS_PCA9539 is not set | 1009 | # CONFIG_SENSORS_PCA9539 is not set |
| 983 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 984 | # CONFIG_SENSORS_MAX6875 is not set | 1010 | # CONFIG_SENSORS_MAX6875 is not set |
| 985 | # CONFIG_SENSORS_TSL2550 is not set | 1011 | # CONFIG_SENSORS_TSL2550 is not set |
| 986 | # CONFIG_I2C_DEBUG_CORE is not set | 1012 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -1012,6 +1038,7 @@ CONFIG_HWMON=y | |||
| 1012 | # CONFIG_SENSORS_F71805F is not set | 1038 | # CONFIG_SENSORS_F71805F is not set |
| 1013 | # CONFIG_SENSORS_F71882FG is not set | 1039 | # CONFIG_SENSORS_F71882FG is not set |
| 1014 | # CONFIG_SENSORS_F75375S is not set | 1040 | # CONFIG_SENSORS_F75375S is not set |
| 1041 | # CONFIG_SENSORS_G760A is not set | ||
| 1015 | # CONFIG_SENSORS_GL518SM is not set | 1042 | # CONFIG_SENSORS_GL518SM is not set |
| 1016 | # CONFIG_SENSORS_GL520SM is not set | 1043 | # CONFIG_SENSORS_GL520SM is not set |
| 1017 | # CONFIG_SENSORS_IT87 is not set | 1044 | # CONFIG_SENSORS_IT87 is not set |
| @@ -1026,11 +1053,14 @@ CONFIG_HWMON=y | |||
| 1026 | # CONFIG_SENSORS_LM90 is not set | 1053 | # CONFIG_SENSORS_LM90 is not set |
| 1027 | # CONFIG_SENSORS_LM92 is not set | 1054 | # CONFIG_SENSORS_LM92 is not set |
| 1028 | # CONFIG_SENSORS_LM93 is not set | 1055 | # CONFIG_SENSORS_LM93 is not set |
| 1056 | # CONFIG_SENSORS_LTC4215 is not set | ||
| 1029 | # CONFIG_SENSORS_LTC4245 is not set | 1057 | # CONFIG_SENSORS_LTC4245 is not set |
| 1058 | # CONFIG_SENSORS_LM95241 is not set | ||
| 1030 | # CONFIG_SENSORS_MAX1619 is not set | 1059 | # CONFIG_SENSORS_MAX1619 is not set |
| 1031 | # CONFIG_SENSORS_MAX6650 is not set | 1060 | # CONFIG_SENSORS_MAX6650 is not set |
| 1032 | # CONFIG_SENSORS_PC87360 is not set | 1061 | # CONFIG_SENSORS_PC87360 is not set |
| 1033 | # CONFIG_SENSORS_PC87427 is not set | 1062 | # CONFIG_SENSORS_PC87427 is not set |
| 1063 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 1034 | # CONFIG_SENSORS_SIS5595 is not set | 1064 | # CONFIG_SENSORS_SIS5595 is not set |
| 1035 | # CONFIG_SENSORS_DME1737 is not set | 1065 | # CONFIG_SENSORS_DME1737 is not set |
| 1036 | # CONFIG_SENSORS_SMSC47M1 is not set | 1066 | # CONFIG_SENSORS_SMSC47M1 is not set |
| @@ -1127,15 +1157,17 @@ CONFIG_USB_HID=y | |||
| 1127 | # | 1157 | # |
| 1128 | # Special HID drivers | 1158 | # Special HID drivers |
| 1129 | # | 1159 | # |
| 1130 | CONFIG_HID_COMPAT=y | ||
| 1131 | CONFIG_HID_A4TECH=y | 1160 | CONFIG_HID_A4TECH=y |
| 1132 | CONFIG_HID_APPLE=y | 1161 | CONFIG_HID_APPLE=y |
| 1133 | CONFIG_HID_BELKIN=y | 1162 | CONFIG_HID_BELKIN=y |
| 1134 | CONFIG_HID_CHERRY=y | 1163 | CONFIG_HID_CHERRY=y |
| 1135 | CONFIG_HID_CHICONY=y | 1164 | CONFIG_HID_CHICONY=y |
| 1136 | CONFIG_HID_CYPRESS=y | 1165 | CONFIG_HID_CYPRESS=y |
| 1166 | # CONFIG_DRAGONRISE_FF is not set | ||
| 1137 | CONFIG_HID_EZKEY=y | 1167 | CONFIG_HID_EZKEY=y |
| 1168 | CONFIG_HID_KYE=y | ||
| 1138 | CONFIG_HID_GYRATION=y | 1169 | CONFIG_HID_GYRATION=y |
| 1170 | CONFIG_HID_KENSINGTON=y | ||
| 1139 | CONFIG_HID_LOGITECH=y | 1171 | CONFIG_HID_LOGITECH=y |
| 1140 | # CONFIG_LOGITECH_FF is not set | 1172 | # CONFIG_LOGITECH_FF is not set |
| 1141 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1173 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
| @@ -1202,11 +1234,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1202 | # CONFIG_USB_TMC is not set | 1234 | # CONFIG_USB_TMC is not set |
| 1203 | 1235 | ||
| 1204 | # | 1236 | # |
| 1205 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1237 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1206 | # | 1238 | # |
| 1207 | 1239 | ||
| 1208 | # | 1240 | # |
| 1209 | # see USB_STORAGE Help for more information | 1241 | # also be needed; see USB_STORAGE Help for more info |
| 1210 | # | 1242 | # |
| 1211 | # CONFIG_USB_STORAGE is not set | 1243 | # CONFIG_USB_STORAGE is not set |
| 1212 | # CONFIG_USB_LIBUSUAL is not set | 1244 | # CONFIG_USB_LIBUSUAL is not set |
| @@ -1236,7 +1268,6 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1236 | # CONFIG_USB_LED is not set | 1268 | # CONFIG_USB_LED is not set |
| 1237 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1269 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1238 | # CONFIG_USB_CYTHERM is not set | 1270 | # CONFIG_USB_CYTHERM is not set |
| 1239 | # CONFIG_USB_PHIDGET is not set | ||
| 1240 | # CONFIG_USB_IDMOUSE is not set | 1271 | # CONFIG_USB_IDMOUSE is not set |
| 1241 | # CONFIG_USB_FTDI_ELAN is not set | 1272 | # CONFIG_USB_FTDI_ELAN is not set |
| 1242 | # CONFIG_USB_APPLEDISPLAY is not set | 1273 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1252,6 +1283,7 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1252 | # | 1283 | # |
| 1253 | # OTG and related infrastructure | 1284 | # OTG and related infrastructure |
| 1254 | # | 1285 | # |
| 1286 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1255 | # CONFIG_UWB is not set | 1287 | # CONFIG_UWB is not set |
| 1256 | # CONFIG_MMC is not set | 1288 | # CONFIG_MMC is not set |
| 1257 | # CONFIG_MEMSTICK is not set | 1289 | # CONFIG_MEMSTICK is not set |
| @@ -1313,8 +1345,9 @@ CONFIG_RTC_DRV_MAX6900=y | |||
| 1313 | # | 1345 | # |
| 1314 | # on-CPU RTC drivers | 1346 | # on-CPU RTC drivers |
| 1315 | # | 1347 | # |
| 1316 | # CONFIG_RTC_DRV_PPC is not set | 1348 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1317 | # CONFIG_DMADEVICES is not set | 1349 | # CONFIG_DMADEVICES is not set |
| 1350 | # CONFIG_AUXDISPLAY is not set | ||
| 1318 | # CONFIG_UIO is not set | 1351 | # CONFIG_UIO is not set |
| 1319 | # CONFIG_STAGING is not set | 1352 | # CONFIG_STAGING is not set |
| 1320 | 1353 | ||
| @@ -1325,6 +1358,7 @@ CONFIG_EXT2_FS=y | |||
| 1325 | # CONFIG_EXT2_FS_XATTR is not set | 1358 | # CONFIG_EXT2_FS_XATTR is not set |
| 1326 | # CONFIG_EXT2_FS_XIP is not set | 1359 | # CONFIG_EXT2_FS_XIP is not set |
| 1327 | CONFIG_EXT3_FS=y | 1360 | CONFIG_EXT3_FS=y |
| 1361 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1328 | CONFIG_EXT3_FS_XATTR=y | 1362 | CONFIG_EXT3_FS_XATTR=y |
| 1329 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1363 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1330 | # CONFIG_EXT3_FS_SECURITY is not set | 1364 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1348,6 +1382,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1348 | # CONFIG_FUSE_FS is not set | 1382 | # CONFIG_FUSE_FS is not set |
| 1349 | 1383 | ||
| 1350 | # | 1384 | # |
| 1385 | # Caches | ||
| 1386 | # | ||
| 1387 | # CONFIG_FSCACHE is not set | ||
| 1388 | |||
| 1389 | # | ||
| 1351 | # CD-ROM/DVD Filesystems | 1390 | # CD-ROM/DVD Filesystems |
| 1352 | # | 1391 | # |
| 1353 | # CONFIG_ISO9660_FS is not set | 1392 | # CONFIG_ISO9660_FS is not set |
| @@ -1391,6 +1430,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1391 | # CONFIG_ROMFS_FS is not set | 1430 | # CONFIG_ROMFS_FS is not set |
| 1392 | # CONFIG_SYSV_FS is not set | 1431 | # CONFIG_SYSV_FS is not set |
| 1393 | # CONFIG_UFS_FS is not set | 1432 | # CONFIG_UFS_FS is not set |
| 1433 | # CONFIG_NILFS2_FS is not set | ||
| 1394 | CONFIG_NETWORK_FILESYSTEMS=y | 1434 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1395 | CONFIG_NFS_FS=y | 1435 | CONFIG_NFS_FS=y |
| 1396 | # CONFIG_NFS_V3 is not set | 1436 | # CONFIG_NFS_V3 is not set |
| @@ -1400,7 +1440,6 @@ CONFIG_ROOT_NFS=y | |||
| 1400 | CONFIG_LOCKD=y | 1440 | CONFIG_LOCKD=y |
| 1401 | CONFIG_NFS_COMMON=y | 1441 | CONFIG_NFS_COMMON=y |
| 1402 | CONFIG_SUNRPC=y | 1442 | CONFIG_SUNRPC=y |
| 1403 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1404 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1443 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
| 1405 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1444 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1406 | # CONFIG_SMB_FS is not set | 1445 | # CONFIG_SMB_FS is not set |
| @@ -1432,6 +1471,7 @@ CONFIG_MSDOS_PARTITION=y | |||
| 1432 | # CONFIG_SYSV68_PARTITION is not set | 1471 | # CONFIG_SYSV68_PARTITION is not set |
| 1433 | # CONFIG_NLS is not set | 1472 | # CONFIG_NLS is not set |
| 1434 | # CONFIG_DLM is not set | 1473 | # CONFIG_DLM is not set |
| 1474 | # CONFIG_BINARY_PRINTF is not set | ||
| 1435 | 1475 | ||
| 1436 | # | 1476 | # |
| 1437 | # Library routines | 1477 | # Library routines |
| @@ -1445,11 +1485,15 @@ CONFIG_CRC_T10DIF=y | |||
| 1445 | CONFIG_CRC32=y | 1485 | CONFIG_CRC32=y |
| 1446 | # CONFIG_CRC7 is not set | 1486 | # CONFIG_CRC7 is not set |
| 1447 | # CONFIG_LIBCRC32C is not set | 1487 | # CONFIG_LIBCRC32C is not set |
| 1448 | CONFIG_PLIST=y | 1488 | CONFIG_ZLIB_INFLATE=y |
| 1489 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1490 | CONFIG_DECOMPRESS_BZIP2=y | ||
| 1491 | CONFIG_DECOMPRESS_LZMA=y | ||
| 1449 | CONFIG_HAS_IOMEM=y | 1492 | CONFIG_HAS_IOMEM=y |
| 1450 | CONFIG_HAS_IOPORT=y | 1493 | CONFIG_HAS_IOPORT=y |
| 1451 | CONFIG_HAS_DMA=y | 1494 | CONFIG_HAS_DMA=y |
| 1452 | CONFIG_HAVE_LMB=y | 1495 | CONFIG_HAVE_LMB=y |
| 1496 | CONFIG_NLATTR=y | ||
| 1453 | 1497 | ||
| 1454 | # | 1498 | # |
| 1455 | # Kernel hacking | 1499 | # Kernel hacking |
| @@ -1471,13 +1515,24 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
| 1471 | # CONFIG_LATENCYTOP is not set | 1515 | # CONFIG_LATENCYTOP is not set |
| 1472 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1516 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1473 | CONFIG_HAVE_FUNCTION_TRACER=y | 1517 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1518 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1474 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1519 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1475 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1520 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1521 | CONFIG_TRACING_SUPPORT=y | ||
| 1476 | 1522 | ||
| 1477 | # | 1523 | # |
| 1478 | # Tracers | 1524 | # Tracers |
| 1479 | # | 1525 | # |
| 1480 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1526 | # CONFIG_FUNCTION_TRACER is not set |
| 1527 | # CONFIG_SCHED_TRACER is not set | ||
| 1528 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1529 | # CONFIG_EVENT_TRACER is not set | ||
| 1530 | # CONFIG_BOOT_TRACER is not set | ||
| 1531 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1532 | # CONFIG_STACK_TRACER is not set | ||
| 1533 | # CONFIG_KMEMTRACE is not set | ||
| 1534 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1535 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1481 | # CONFIG_SAMPLES is not set | 1536 | # CONFIG_SAMPLES is not set |
| 1482 | CONFIG_HAVE_ARCH_KGDB=y | 1537 | CONFIG_HAVE_ARCH_KGDB=y |
| 1483 | CONFIG_PRINT_STACK_DEPTH=64 | 1538 | CONFIG_PRINT_STACK_DEPTH=64 |
| @@ -1569,6 +1624,7 @@ CONFIG_CRYPTO=y | |||
| 1569 | # Compression | 1624 | # Compression |
| 1570 | # | 1625 | # |
| 1571 | # CONFIG_CRYPTO_DEFLATE is not set | 1626 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1627 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1572 | # CONFIG_CRYPTO_LZO is not set | 1628 | # CONFIG_CRYPTO_LZO is not set |
| 1573 | 1629 | ||
| 1574 | # | 1630 | # |
diff --git a/arch/powerpc/configs/ps3_defconfig b/arch/powerpc/configs/ps3_defconfig index ac14f5245d2a..e28e65e7a0e1 100644 --- a/arch/powerpc/configs/ps3_defconfig +++ b/arch/powerpc/configs/ps3_defconfig | |||
| @@ -1,13 +1,14 @@ | |||
| 1 | # | 1 | # |
| 2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
| 3 | # Linux kernel version: 2.6.29-rc8 | 3 | # Linux kernel version: 2.6.30-rc5 |
| 4 | # Fri Mar 13 09:28:45 2009 | 4 | # Fri May 15 10:37:00 2009 |
| 5 | # | 5 | # |
| 6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
| 7 | 7 | ||
| 8 | # | 8 | # |
| 9 | # Processor support | 9 | # Processor support |
| 10 | # | 10 | # |
| 11 | CONFIG_PPC_BOOK3S=y | ||
| 11 | # CONFIG_POWER4_ONLY is not set | 12 | # CONFIG_POWER4_ONLY is not set |
| 12 | CONFIG_POWER3=y | 13 | CONFIG_POWER3=y |
| 13 | CONFIG_POWER4=y | 14 | CONFIG_POWER4=y |
| @@ -55,9 +56,11 @@ CONFIG_OF=y | |||
| 55 | # CONFIG_GENERIC_TBSYNC is not set | 56 | # CONFIG_GENERIC_TBSYNC is not set |
| 56 | CONFIG_AUDIT_ARCH=y | 57 | CONFIG_AUDIT_ARCH=y |
| 57 | CONFIG_GENERIC_BUG=y | 58 | CONFIG_GENERIC_BUG=y |
| 59 | CONFIG_DTC=y | ||
| 58 | # CONFIG_DEFAULT_UIMAGE is not set | 60 | # CONFIG_DEFAULT_UIMAGE is not set |
| 59 | # CONFIG_PPC_DCR_NATIVE is not set | 61 | # CONFIG_PPC_DCR_NATIVE is not set |
| 60 | # CONFIG_PPC_DCR_MMIO is not set | 62 | # CONFIG_PPC_DCR_MMIO is not set |
| 63 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 64 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 62 | 65 | ||
| 63 | # | 66 | # |
| @@ -72,6 +75,7 @@ CONFIG_SWAP=y | |||
| 72 | CONFIG_SYSVIPC=y | 75 | CONFIG_SYSVIPC=y |
| 73 | CONFIG_SYSVIPC_SYSCTL=y | 76 | CONFIG_SYSVIPC_SYSCTL=y |
| 74 | CONFIG_POSIX_MQUEUE=y | 77 | CONFIG_POSIX_MQUEUE=y |
| 78 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 75 | # CONFIG_BSD_PROCESS_ACCT is not set | 79 | # CONFIG_BSD_PROCESS_ACCT is not set |
| 76 | # CONFIG_TASKSTATS is not set | 80 | # CONFIG_TASKSTATS is not set |
| 77 | # CONFIG_AUDIT is not set | 81 | # CONFIG_AUDIT is not set |
| @@ -88,8 +92,7 @@ CONFIG_CLASSIC_RCU=y | |||
| 88 | CONFIG_LOG_BUF_SHIFT=17 | 92 | CONFIG_LOG_BUF_SHIFT=17 |
| 89 | # CONFIG_GROUP_SCHED is not set | 93 | # CONFIG_GROUP_SCHED is not set |
| 90 | # CONFIG_CGROUPS is not set | 94 | # CONFIG_CGROUPS is not set |
| 91 | CONFIG_SYSFS_DEPRECATED=y | 95 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
| 92 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
| 93 | # CONFIG_RELAY is not set | 96 | # CONFIG_RELAY is not set |
| 94 | CONFIG_NAMESPACES=y | 97 | CONFIG_NAMESPACES=y |
| 95 | # CONFIG_UTS_NS is not set | 98 | # CONFIG_UTS_NS is not set |
| @@ -99,6 +102,9 @@ CONFIG_NAMESPACES=y | |||
| 99 | # CONFIG_NET_NS is not set | 102 | # CONFIG_NET_NS is not set |
| 100 | CONFIG_BLK_DEV_INITRD=y | 103 | CONFIG_BLK_DEV_INITRD=y |
| 101 | CONFIG_INITRAMFS_SOURCE="" | 104 | CONFIG_INITRAMFS_SOURCE="" |
| 105 | CONFIG_RD_GZIP=y | ||
| 106 | # CONFIG_RD_BZIP2 is not set | ||
| 107 | # CONFIG_RD_LZMA is not set | ||
| 102 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 108 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 103 | CONFIG_SYSCTL=y | 109 | CONFIG_SYSCTL=y |
| 104 | CONFIG_ANON_INODES=y | 110 | CONFIG_ANON_INODES=y |
| @@ -107,6 +113,7 @@ CONFIG_SYSCTL_SYSCALL=y | |||
| 107 | CONFIG_KALLSYMS=y | 113 | CONFIG_KALLSYMS=y |
| 108 | CONFIG_KALLSYMS_ALL=y | 114 | CONFIG_KALLSYMS_ALL=y |
| 109 | CONFIG_KALLSYMS_EXTRA_PASS=y | 115 | CONFIG_KALLSYMS_EXTRA_PASS=y |
| 116 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 110 | CONFIG_HOTPLUG=y | 117 | CONFIG_HOTPLUG=y |
| 111 | CONFIG_PRINTK=y | 118 | CONFIG_PRINTK=y |
| 112 | CONFIG_BUG=y | 119 | CONFIG_BUG=y |
| @@ -138,6 +145,7 @@ CONFIG_HAVE_KRETPROBES=y | |||
| 138 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 145 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 139 | CONFIG_HAVE_DMA_ATTRS=y | 146 | CONFIG_HAVE_DMA_ATTRS=y |
| 140 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 147 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
| 148 | # CONFIG_SLOW_WORK is not set | ||
| 141 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 149 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 142 | CONFIG_SLABINFO=y | 150 | CONFIG_SLABINFO=y |
| 143 | CONFIG_RT_MUTEXES=y | 151 | CONFIG_RT_MUTEXES=y |
| @@ -150,7 +158,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 150 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 158 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 151 | CONFIG_STOP_MACHINE=y | 159 | CONFIG_STOP_MACHINE=y |
| 152 | CONFIG_BLOCK=y | 160 | CONFIG_BLOCK=y |
| 153 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 154 | CONFIG_BLK_DEV_BSG=y | 161 | CONFIG_BLK_DEV_BSG=y |
| 155 | # CONFIG_BLK_DEV_INTEGRITY is not set | 162 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 156 | CONFIG_BLOCK_COMPAT=y | 163 | CONFIG_BLOCK_COMPAT=y |
| @@ -172,7 +179,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
| 172 | # | 179 | # |
| 173 | # Platform support | 180 | # Platform support |
| 174 | # | 181 | # |
| 175 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 176 | # CONFIG_PPC_PSERIES is not set | 182 | # CONFIG_PPC_PSERIES is not set |
| 177 | # CONFIG_PPC_ISERIES is not set | 183 | # CONFIG_PPC_ISERIES is not set |
| 178 | # CONFIG_PPC_PMAC is not set | 184 | # CONFIG_PPC_PMAC is not set |
| @@ -209,6 +215,7 @@ CONFIG_SPU_FS_64K_LS=y | |||
| 209 | # CONFIG_SPU_TRACE is not set | 215 | # CONFIG_SPU_TRACE is not set |
| 210 | CONFIG_SPU_BASE=y | 216 | CONFIG_SPU_BASE=y |
| 211 | # CONFIG_PQ2ADS is not set | 217 | # CONFIG_PQ2ADS is not set |
| 218 | # CONFIG_PPC_OF_BOOT_TRAMPOLINE is not set | ||
| 212 | # CONFIG_IPIC is not set | 219 | # CONFIG_IPIC is not set |
| 213 | # CONFIG_MPIC is not set | 220 | # CONFIG_MPIC is not set |
| 214 | # CONFIG_MPIC_WEIRD is not set | 221 | # CONFIG_MPIC_WEIRD is not set |
| @@ -279,11 +286,14 @@ CONFIG_PHYS_ADDR_T_64BIT=y | |||
| 279 | CONFIG_ZONE_DMA_FLAG=1 | 286 | CONFIG_ZONE_DMA_FLAG=1 |
| 280 | CONFIG_BOUNCE=y | 287 | CONFIG_BOUNCE=y |
| 281 | CONFIG_UNEVICTABLE_LRU=y | 288 | CONFIG_UNEVICTABLE_LRU=y |
| 289 | CONFIG_HAVE_MLOCK=y | ||
| 290 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 282 | CONFIG_ARCH_MEMORY_PROBE=y | 291 | CONFIG_ARCH_MEMORY_PROBE=y |
| 283 | CONFIG_PPC_HAS_HASH_64K=y | 292 | CONFIG_PPC_HAS_HASH_64K=y |
| 284 | CONFIG_PPC_4K_PAGES=y | 293 | CONFIG_PPC_4K_PAGES=y |
| 285 | # CONFIG_PPC_16K_PAGES is not set | 294 | # CONFIG_PPC_16K_PAGES is not set |
| 286 | # CONFIG_PPC_64K_PAGES is not set | 295 | # CONFIG_PPC_64K_PAGES is not set |
| 296 | # CONFIG_PPC_256K_PAGES is not set | ||
| 287 | CONFIG_FORCE_MAX_ZONEORDER=13 | 297 | CONFIG_FORCE_MAX_ZONEORDER=13 |
| 288 | CONFIG_SCHED_SMT=y | 298 | CONFIG_SCHED_SMT=y |
| 289 | CONFIG_PROC_DEVICETREE=y | 299 | CONFIG_PROC_DEVICETREE=y |
| @@ -316,7 +326,6 @@ CONFIG_NET=y | |||
| 316 | # | 326 | # |
| 317 | # Networking options | 327 | # Networking options |
| 318 | # | 328 | # |
| 319 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 320 | CONFIG_PACKET=y | 329 | CONFIG_PACKET=y |
| 321 | CONFIG_PACKET_MMAP=y | 330 | CONFIG_PACKET_MMAP=y |
| 322 | CONFIG_UNIX=y | 331 | CONFIG_UNIX=y |
| @@ -389,6 +398,7 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
| 389 | # CONFIG_LAPB is not set | 398 | # CONFIG_LAPB is not set |
| 390 | # CONFIG_ECONET is not set | 399 | # CONFIG_ECONET is not set |
| 391 | # CONFIG_WAN_ROUTER is not set | 400 | # CONFIG_WAN_ROUTER is not set |
| 401 | # CONFIG_PHONET is not set | ||
| 392 | # CONFIG_NET_SCHED is not set | 402 | # CONFIG_NET_SCHED is not set |
| 393 | # CONFIG_DCB is not set | 403 | # CONFIG_DCB is not set |
| 394 | 404 | ||
| @@ -396,6 +406,7 @@ CONFIG_IPV6_NDISC_NODETYPE=y | |||
| 396 | # Network testing | 406 | # Network testing |
| 397 | # | 407 | # |
| 398 | # CONFIG_NET_PKTGEN is not set | 408 | # CONFIG_NET_PKTGEN is not set |
| 409 | # CONFIG_NET_DROP_MONITOR is not set | ||
| 399 | # CONFIG_HAMRADIO is not set | 410 | # CONFIG_HAMRADIO is not set |
| 400 | # CONFIG_CAN is not set | 411 | # CONFIG_CAN is not set |
| 401 | # CONFIG_IRDA is not set | 412 | # CONFIG_IRDA is not set |
| @@ -419,11 +430,9 @@ CONFIG_BT_HCIBTUSB=m | |||
| 419 | # CONFIG_BT_HCIBFUSB is not set | 430 | # CONFIG_BT_HCIBFUSB is not set |
| 420 | # CONFIG_BT_HCIVHCI is not set | 431 | # CONFIG_BT_HCIVHCI is not set |
| 421 | # CONFIG_AF_RXRPC is not set | 432 | # CONFIG_AF_RXRPC is not set |
| 422 | # CONFIG_PHONET is not set | ||
| 423 | CONFIG_WIRELESS=y | 433 | CONFIG_WIRELESS=y |
| 424 | CONFIG_CFG80211=m | 434 | CONFIG_CFG80211=m |
| 425 | # CONFIG_CFG80211_REG_DEBUG is not set | 435 | # CONFIG_CFG80211_REG_DEBUG is not set |
| 426 | CONFIG_NL80211=y | ||
| 427 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 436 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
| 428 | CONFIG_WIRELESS_EXT=y | 437 | CONFIG_WIRELESS_EXT=y |
| 429 | # CONFIG_WIRELESS_EXT_SYSFS is not set | 438 | # CONFIG_WIRELESS_EXT_SYSFS is not set |
| @@ -602,6 +611,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
| 602 | # CONFIG_SCSI_SRP_ATTRS is not set | 611 | # CONFIG_SCSI_SRP_ATTRS is not set |
| 603 | # CONFIG_SCSI_LOWLEVEL is not set | 612 | # CONFIG_SCSI_LOWLEVEL is not set |
| 604 | # CONFIG_SCSI_DH is not set | 613 | # CONFIG_SCSI_DH is not set |
| 614 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 605 | # CONFIG_ATA is not set | 615 | # CONFIG_ATA is not set |
| 606 | CONFIG_MD=y | 616 | CONFIG_MD=y |
| 607 | # CONFIG_BLK_DEV_MD is not set | 617 | # CONFIG_BLK_DEV_MD is not set |
| @@ -616,6 +626,7 @@ CONFIG_BLK_DEV_DM=m | |||
| 616 | # CONFIG_DM_UEVENT is not set | 626 | # CONFIG_DM_UEVENT is not set |
| 617 | # CONFIG_MACINTOSH_DRIVERS is not set | 627 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 618 | CONFIG_NETDEVICES=y | 628 | CONFIG_NETDEVICES=y |
| 629 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 619 | # CONFIG_DUMMY is not set | 630 | # CONFIG_DUMMY is not set |
| 620 | # CONFIG_BONDING is not set | 631 | # CONFIG_BONDING is not set |
| 621 | # CONFIG_MACVLAN is not set | 632 | # CONFIG_MACVLAN is not set |
| @@ -625,6 +636,8 @@ CONFIG_NETDEVICES=y | |||
| 625 | # CONFIG_PHYLIB is not set | 636 | # CONFIG_PHYLIB is not set |
| 626 | CONFIG_NET_ETHERNET=y | 637 | CONFIG_NET_ETHERNET=y |
| 627 | CONFIG_MII=m | 638 | CONFIG_MII=m |
| 639 | # CONFIG_ETHOC is not set | ||
| 640 | # CONFIG_DNET is not set | ||
| 628 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 641 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
| 629 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 642 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
| 630 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 643 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
| @@ -646,12 +659,13 @@ CONFIG_GELIC_WIRELESS_OLD_PSK_INTERFACE=y | |||
| 646 | CONFIG_WLAN_80211=y | 659 | CONFIG_WLAN_80211=y |
| 647 | # CONFIG_LIBERTAS is not set | 660 | # CONFIG_LIBERTAS is not set |
| 648 | # CONFIG_LIBERTAS_THINFIRM is not set | 661 | # CONFIG_LIBERTAS_THINFIRM is not set |
| 662 | # CONFIG_AT76C50X_USB is not set | ||
| 649 | # CONFIG_USB_ZD1201 is not set | 663 | # CONFIG_USB_ZD1201 is not set |
| 650 | # CONFIG_USB_NET_RNDIS_WLAN is not set | 664 | # CONFIG_USB_NET_RNDIS_WLAN is not set |
| 651 | # CONFIG_RTL8187 is not set | 665 | # CONFIG_RTL8187 is not set |
| 652 | # CONFIG_MAC80211_HWSIM is not set | 666 | # CONFIG_MAC80211_HWSIM is not set |
| 653 | # CONFIG_P54_COMMON is not set | 667 | # CONFIG_P54_COMMON is not set |
| 654 | # CONFIG_IWLWIFI_LEDS is not set | 668 | # CONFIG_AR9170_USB is not set |
| 655 | # CONFIG_HOSTAP is not set | 669 | # CONFIG_HOSTAP is not set |
| 656 | # CONFIG_B43 is not set | 670 | # CONFIG_B43 is not set |
| 657 | # CONFIG_B43LEGACY is not set | 671 | # CONFIG_B43LEGACY is not set |
| @@ -673,6 +687,7 @@ CONFIG_USB_PEGASUS=m | |||
| 673 | CONFIG_USB_USBNET=m | 687 | CONFIG_USB_USBNET=m |
| 674 | CONFIG_USB_NET_AX8817X=m | 688 | CONFIG_USB_NET_AX8817X=m |
| 675 | # CONFIG_USB_NET_CDCETHER is not set | 689 | # CONFIG_USB_NET_CDCETHER is not set |
| 690 | # CONFIG_USB_NET_CDC_EEM is not set | ||
| 676 | # CONFIG_USB_NET_DM9601 is not set | 691 | # CONFIG_USB_NET_DM9601 is not set |
| 677 | # CONFIG_USB_NET_SMSC95XX is not set | 692 | # CONFIG_USB_NET_SMSC95XX is not set |
| 678 | # CONFIG_USB_NET_GL620A is not set | 693 | # CONFIG_USB_NET_GL620A is not set |
| @@ -724,28 +739,7 @@ CONFIG_INPUT_EVDEV=m | |||
| 724 | # | 739 | # |
| 725 | # CONFIG_INPUT_KEYBOARD is not set | 740 | # CONFIG_INPUT_KEYBOARD is not set |
| 726 | # CONFIG_INPUT_MOUSE is not set | 741 | # CONFIG_INPUT_MOUSE is not set |
| 727 | CONFIG_INPUT_JOYSTICK=y | 742 | # CONFIG_INPUT_JOYSTICK is not set |
| 728 | # CONFIG_JOYSTICK_ANALOG is not set | ||
| 729 | # CONFIG_JOYSTICK_A3D is not set | ||
| 730 | # CONFIG_JOYSTICK_ADI is not set | ||
| 731 | # CONFIG_JOYSTICK_COBRA is not set | ||
| 732 | # CONFIG_JOYSTICK_GF2K is not set | ||
| 733 | # CONFIG_JOYSTICK_GRIP is not set | ||
| 734 | # CONFIG_JOYSTICK_GRIP_MP is not set | ||
| 735 | # CONFIG_JOYSTICK_GUILLEMOT is not set | ||
| 736 | # CONFIG_JOYSTICK_INTERACT is not set | ||
| 737 | # CONFIG_JOYSTICK_SIDEWINDER is not set | ||
| 738 | # CONFIG_JOYSTICK_TMDC is not set | ||
| 739 | # CONFIG_JOYSTICK_IFORCE is not set | ||
| 740 | # CONFIG_JOYSTICK_WARRIOR is not set | ||
| 741 | # CONFIG_JOYSTICK_MAGELLAN is not set | ||
| 742 | # CONFIG_JOYSTICK_SPACEORB is not set | ||
| 743 | # CONFIG_JOYSTICK_SPACEBALL is not set | ||
| 744 | # CONFIG_JOYSTICK_STINGER is not set | ||
| 745 | # CONFIG_JOYSTICK_TWIDJOY is not set | ||
| 746 | # CONFIG_JOYSTICK_ZHENHUA is not set | ||
| 747 | # CONFIG_JOYSTICK_JOYDUMP is not set | ||
| 748 | # CONFIG_JOYSTICK_XPAD is not set | ||
| 749 | # CONFIG_INPUT_TABLET is not set | 743 | # CONFIG_INPUT_TABLET is not set |
| 750 | # CONFIG_INPUT_TOUCHSCREEN is not set | 744 | # CONFIG_INPUT_TOUCHSCREEN is not set |
| 751 | # CONFIG_INPUT_MISC is not set | 745 | # CONFIG_INPUT_MISC is not set |
| @@ -864,6 +858,7 @@ CONFIG_FB_PS3_DEFAULT_SIZE_M=9 | |||
| 864 | # CONFIG_FB_VIRTUAL is not set | 858 | # CONFIG_FB_VIRTUAL is not set |
| 865 | # CONFIG_FB_METRONOME is not set | 859 | # CONFIG_FB_METRONOME is not set |
| 866 | # CONFIG_FB_MB862XX is not set | 860 | # CONFIG_FB_MB862XX is not set |
| 861 | # CONFIG_FB_BROADSHEET is not set | ||
| 867 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 862 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
| 868 | 863 | ||
| 869 | # | 864 | # |
| @@ -934,15 +929,17 @@ CONFIG_USB_HIDDEV=y | |||
| 934 | # | 929 | # |
| 935 | # Special HID drivers | 930 | # Special HID drivers |
| 936 | # | 931 | # |
| 937 | # CONFIG_HID_COMPAT is not set | ||
| 938 | # CONFIG_HID_A4TECH is not set | 932 | # CONFIG_HID_A4TECH is not set |
| 939 | # CONFIG_HID_APPLE is not set | 933 | # CONFIG_HID_APPLE is not set |
| 940 | # CONFIG_HID_BELKIN is not set | 934 | # CONFIG_HID_BELKIN is not set |
| 941 | # CONFIG_HID_CHERRY is not set | 935 | # CONFIG_HID_CHERRY is not set |
| 942 | # CONFIG_HID_CHICONY is not set | 936 | # CONFIG_HID_CHICONY is not set |
| 943 | # CONFIG_HID_CYPRESS is not set | 937 | # CONFIG_HID_CYPRESS is not set |
| 938 | # CONFIG_DRAGONRISE_FF is not set | ||
| 944 | # CONFIG_HID_EZKEY is not set | 939 | # CONFIG_HID_EZKEY is not set |
| 940 | # CONFIG_HID_KYE is not set | ||
| 945 | # CONFIG_HID_GYRATION is not set | 941 | # CONFIG_HID_GYRATION is not set |
| 942 | # CONFIG_HID_KENSINGTON is not set | ||
| 946 | # CONFIG_HID_LOGITECH is not set | 943 | # CONFIG_HID_LOGITECH is not set |
| 947 | # CONFIG_HID_MICROSOFT is not set | 944 | # CONFIG_HID_MICROSOFT is not set |
| 948 | # CONFIG_HID_MONTEREY is not set | 945 | # CONFIG_HID_MONTEREY is not set |
| @@ -950,7 +947,7 @@ CONFIG_USB_HIDDEV=y | |||
| 950 | # CONFIG_HID_PANTHERLORD is not set | 947 | # CONFIG_HID_PANTHERLORD is not set |
| 951 | # CONFIG_HID_PETALYNX is not set | 948 | # CONFIG_HID_PETALYNX is not set |
| 952 | # CONFIG_HID_SAMSUNG is not set | 949 | # CONFIG_HID_SAMSUNG is not set |
| 953 | # CONFIG_HID_SONY is not set | 950 | CONFIG_HID_SONY=m |
| 954 | # CONFIG_HID_SUNPLUS is not set | 951 | # CONFIG_HID_SUNPLUS is not set |
| 955 | # CONFIG_GREENASIA_FF is not set | 952 | # CONFIG_GREENASIA_FF is not set |
| 956 | # CONFIG_HID_TOPSEED is not set | 953 | # CONFIG_HID_TOPSEED is not set |
| @@ -1012,11 +1009,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 1012 | # CONFIG_USB_TMC is not set | 1009 | # CONFIG_USB_TMC is not set |
| 1013 | 1010 | ||
| 1014 | # | 1011 | # |
| 1015 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1012 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 1016 | # | 1013 | # |
| 1017 | 1014 | ||
| 1018 | # | 1015 | # |
| 1019 | # see USB_STORAGE Help for more information | 1016 | # also be needed; see USB_STORAGE Help for more info |
| 1020 | # | 1017 | # |
| 1021 | CONFIG_USB_STORAGE=m | 1018 | CONFIG_USB_STORAGE=m |
| 1022 | # CONFIG_USB_STORAGE_DEBUG is not set | 1019 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -1058,7 +1055,6 @@ CONFIG_USB_STORAGE=m | |||
| 1058 | # CONFIG_USB_LED is not set | 1055 | # CONFIG_USB_LED is not set |
| 1059 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1056 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 1060 | # CONFIG_USB_CYTHERM is not set | 1057 | # CONFIG_USB_CYTHERM is not set |
| 1061 | # CONFIG_USB_PHIDGET is not set | ||
| 1062 | # CONFIG_USB_IDMOUSE is not set | 1058 | # CONFIG_USB_IDMOUSE is not set |
| 1063 | # CONFIG_USB_FTDI_ELAN is not set | 1059 | # CONFIG_USB_FTDI_ELAN is not set |
| 1064 | # CONFIG_USB_APPLEDISPLAY is not set | 1060 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1074,6 +1070,7 @@ CONFIG_USB_STORAGE=m | |||
| 1074 | # | 1070 | # |
| 1075 | # OTG and related infrastructure | 1071 | # OTG and related infrastructure |
| 1076 | # | 1072 | # |
| 1073 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1077 | # CONFIG_MMC is not set | 1074 | # CONFIG_MMC is not set |
| 1078 | # CONFIG_MEMSTICK is not set | 1075 | # CONFIG_MEMSTICK is not set |
| 1079 | # CONFIG_NEW_LEDS is not set | 1076 | # CONFIG_NEW_LEDS is not set |
| @@ -1113,8 +1110,10 @@ CONFIG_RTC_INTF_DEV=y | |||
| 1113 | # | 1110 | # |
| 1114 | # on-CPU RTC drivers | 1111 | # on-CPU RTC drivers |
| 1115 | # | 1112 | # |
| 1116 | CONFIG_RTC_DRV_PPC=m | 1113 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1114 | CONFIG_RTC_DRV_PS3=m | ||
| 1117 | # CONFIG_DMADEVICES is not set | 1115 | # CONFIG_DMADEVICES is not set |
| 1116 | # CONFIG_AUXDISPLAY is not set | ||
| 1118 | # CONFIG_UIO is not set | 1117 | # CONFIG_UIO is not set |
| 1119 | # CONFIG_STAGING is not set | 1118 | # CONFIG_STAGING is not set |
| 1120 | 1119 | ||
| @@ -1125,6 +1124,7 @@ CONFIG_EXT2_FS=m | |||
| 1125 | # CONFIG_EXT2_FS_XATTR is not set | 1124 | # CONFIG_EXT2_FS_XATTR is not set |
| 1126 | # CONFIG_EXT2_FS_XIP is not set | 1125 | # CONFIG_EXT2_FS_XIP is not set |
| 1127 | CONFIG_EXT3_FS=m | 1126 | CONFIG_EXT3_FS=m |
| 1127 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1128 | CONFIG_EXT3_FS_XATTR=y | 1128 | CONFIG_EXT3_FS_XATTR=y |
| 1129 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1129 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1130 | # CONFIG_EXT3_FS_SECURITY is not set | 1130 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1161,6 +1161,11 @@ CONFIG_AUTOFS4_FS=m | |||
| 1161 | # CONFIG_FUSE_FS is not set | 1161 | # CONFIG_FUSE_FS is not set |
| 1162 | 1162 | ||
| 1163 | # | 1163 | # |
| 1164 | # Caches | ||
| 1165 | # | ||
| 1166 | # CONFIG_FSCACHE is not set | ||
| 1167 | |||
| 1168 | # | ||
| 1164 | # CD-ROM/DVD Filesystems | 1169 | # CD-ROM/DVD Filesystems |
| 1165 | # | 1170 | # |
| 1166 | CONFIG_ISO9660_FS=m | 1171 | CONFIG_ISO9660_FS=m |
| @@ -1211,6 +1216,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
| 1211 | # CONFIG_ROMFS_FS is not set | 1216 | # CONFIG_ROMFS_FS is not set |
| 1212 | # CONFIG_SYSV_FS is not set | 1217 | # CONFIG_SYSV_FS is not set |
| 1213 | # CONFIG_UFS_FS is not set | 1218 | # CONFIG_UFS_FS is not set |
| 1219 | # CONFIG_NILFS2_FS is not set | ||
| 1214 | CONFIG_NETWORK_FILESYSTEMS=y | 1220 | CONFIG_NETWORK_FILESYSTEMS=y |
| 1215 | CONFIG_NFS_FS=y | 1221 | CONFIG_NFS_FS=y |
| 1216 | CONFIG_NFS_V3=y | 1222 | CONFIG_NFS_V3=y |
| @@ -1223,7 +1229,6 @@ CONFIG_LOCKD_V4=y | |||
| 1223 | CONFIG_NFS_COMMON=y | 1229 | CONFIG_NFS_COMMON=y |
| 1224 | CONFIG_SUNRPC=y | 1230 | CONFIG_SUNRPC=y |
| 1225 | CONFIG_SUNRPC_GSS=y | 1231 | CONFIG_SUNRPC_GSS=y |
| 1226 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
| 1227 | CONFIG_RPCSEC_GSS_KRB5=y | 1232 | CONFIG_RPCSEC_GSS_KRB5=y |
| 1228 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1233 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
| 1229 | # CONFIG_SMB_FS is not set | 1234 | # CONFIG_SMB_FS is not set |
| @@ -1283,6 +1288,7 @@ CONFIG_NLS_ISO8859_1=y | |||
| 1283 | # CONFIG_NLS_KOI8_U is not set | 1288 | # CONFIG_NLS_KOI8_U is not set |
| 1284 | # CONFIG_NLS_UTF8 is not set | 1289 | # CONFIG_NLS_UTF8 is not set |
| 1285 | # CONFIG_DLM is not set | 1290 | # CONFIG_DLM is not set |
| 1291 | CONFIG_BINARY_PRINTF=y | ||
| 1286 | 1292 | ||
| 1287 | # | 1293 | # |
| 1288 | # Library routines | 1294 | # Library routines |
| @@ -1296,15 +1302,16 @@ CONFIG_CRC_ITU_T=m | |||
| 1296 | CONFIG_CRC32=y | 1302 | CONFIG_CRC32=y |
| 1297 | # CONFIG_CRC7 is not set | 1303 | # CONFIG_CRC7 is not set |
| 1298 | # CONFIG_LIBCRC32C is not set | 1304 | # CONFIG_LIBCRC32C is not set |
| 1299 | CONFIG_ZLIB_INFLATE=m | 1305 | CONFIG_ZLIB_INFLATE=y |
| 1300 | CONFIG_ZLIB_DEFLATE=m | 1306 | CONFIG_ZLIB_DEFLATE=m |
| 1301 | CONFIG_LZO_COMPRESS=m | 1307 | CONFIG_LZO_COMPRESS=m |
| 1302 | CONFIG_LZO_DECOMPRESS=m | 1308 | CONFIG_LZO_DECOMPRESS=m |
| 1303 | CONFIG_PLIST=y | 1309 | CONFIG_DECOMPRESS_GZIP=y |
| 1304 | CONFIG_HAS_IOMEM=y | 1310 | CONFIG_HAS_IOMEM=y |
| 1305 | CONFIG_HAS_IOPORT=y | 1311 | CONFIG_HAS_IOPORT=y |
| 1306 | CONFIG_HAS_DMA=y | 1312 | CONFIG_HAS_DMA=y |
| 1307 | CONFIG_HAVE_LMB=y | 1313 | CONFIG_HAVE_LMB=y |
| 1314 | CONFIG_NLATTR=y | ||
| 1308 | 1315 | ||
| 1309 | # | 1316 | # |
| 1310 | # Kernel hacking | 1317 | # Kernel hacking |
| @@ -1322,6 +1329,9 @@ CONFIG_DEBUG_KERNEL=y | |||
| 1322 | CONFIG_DETECT_SOFTLOCKUP=y | 1329 | CONFIG_DETECT_SOFTLOCKUP=y |
| 1323 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1330 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
| 1324 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1331 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
| 1332 | CONFIG_DETECT_HUNG_TASK=y | ||
| 1333 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
| 1334 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
| 1325 | CONFIG_SCHED_DEBUG=y | 1335 | CONFIG_SCHED_DEBUG=y |
| 1326 | # CONFIG_SCHEDSTATS is not set | 1336 | # CONFIG_SCHEDSTATS is not set |
| 1327 | # CONFIG_TIMER_STATS is not set | 1337 | # CONFIG_TIMER_STATS is not set |
| @@ -1357,12 +1367,15 @@ CONFIG_DEBUG_LIST=y | |||
| 1357 | # CONFIG_FAULT_INJECTION is not set | 1367 | # CONFIG_FAULT_INJECTION is not set |
| 1358 | # CONFIG_LATENCYTOP is not set | 1368 | # CONFIG_LATENCYTOP is not set |
| 1359 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1369 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1370 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1360 | CONFIG_NOP_TRACER=y | 1371 | CONFIG_NOP_TRACER=y |
| 1361 | CONFIG_HAVE_FUNCTION_TRACER=y | 1372 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1373 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1362 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1374 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1363 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1375 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1364 | CONFIG_RING_BUFFER=y | 1376 | CONFIG_RING_BUFFER=y |
| 1365 | CONFIG_TRACING=y | 1377 | CONFIG_TRACING=y |
| 1378 | CONFIG_TRACING_SUPPORT=y | ||
| 1366 | 1379 | ||
| 1367 | # | 1380 | # |
| 1368 | # Tracers | 1381 | # Tracers |
| @@ -1371,18 +1384,21 @@ CONFIG_TRACING=y | |||
| 1371 | # CONFIG_IRQSOFF_TRACER is not set | 1384 | # CONFIG_IRQSOFF_TRACER is not set |
| 1372 | # CONFIG_SCHED_TRACER is not set | 1385 | # CONFIG_SCHED_TRACER is not set |
| 1373 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1386 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
| 1387 | # CONFIG_EVENT_TRACER is not set | ||
| 1374 | # CONFIG_BOOT_TRACER is not set | 1388 | # CONFIG_BOOT_TRACER is not set |
| 1375 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1389 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
| 1376 | # CONFIG_STACK_TRACER is not set | 1390 | # CONFIG_STACK_TRACER is not set |
| 1391 | # CONFIG_KMEMTRACE is not set | ||
| 1392 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1393 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1377 | # CONFIG_FTRACE_STARTUP_TEST is not set | 1394 | # CONFIG_FTRACE_STARTUP_TEST is not set |
| 1378 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1395 | # CONFIG_DYNAMIC_DEBUG is not set |
| 1379 | # CONFIG_SAMPLES is not set | 1396 | # CONFIG_SAMPLES is not set |
| 1380 | CONFIG_HAVE_ARCH_KGDB=y | 1397 | CONFIG_HAVE_ARCH_KGDB=y |
| 1381 | # CONFIG_KGDB is not set | 1398 | # CONFIG_KGDB is not set |
| 1382 | CONFIG_PRINT_STACK_DEPTH=64 | 1399 | CONFIG_PRINT_STACK_DEPTH=64 |
| 1383 | CONFIG_DEBUG_STACKOVERFLOW=y | 1400 | CONFIG_DEBUG_STACKOVERFLOW=y |
| 1384 | # CONFIG_DEBUG_STACK_USAGE is not set | 1401 | # CONFIG_DEBUG_STACK_USAGE is not set |
| 1385 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1386 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1402 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
| 1387 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1403 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
| 1388 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1404 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
| @@ -1415,10 +1431,12 @@ CONFIG_CRYPTO_HASH=y | |||
| 1415 | CONFIG_CRYPTO_HASH2=y | 1431 | CONFIG_CRYPTO_HASH2=y |
| 1416 | CONFIG_CRYPTO_RNG=m | 1432 | CONFIG_CRYPTO_RNG=m |
| 1417 | CONFIG_CRYPTO_RNG2=y | 1433 | CONFIG_CRYPTO_RNG2=y |
| 1434 | CONFIG_CRYPTO_PCOMP=y | ||
| 1418 | CONFIG_CRYPTO_MANAGER=y | 1435 | CONFIG_CRYPTO_MANAGER=y |
| 1419 | CONFIG_CRYPTO_MANAGER2=y | 1436 | CONFIG_CRYPTO_MANAGER2=y |
| 1420 | CONFIG_CRYPTO_GF128MUL=m | 1437 | CONFIG_CRYPTO_GF128MUL=m |
| 1421 | # CONFIG_CRYPTO_NULL is not set | 1438 | # CONFIG_CRYPTO_NULL is not set |
| 1439 | CONFIG_CRYPTO_WORKQUEUE=y | ||
| 1422 | # CONFIG_CRYPTO_CRYPTD is not set | 1440 | # CONFIG_CRYPTO_CRYPTD is not set |
| 1423 | # CONFIG_CRYPTO_AUTHENC is not set | 1441 | # CONFIG_CRYPTO_AUTHENC is not set |
| 1424 | # CONFIG_CRYPTO_TEST is not set | 1442 | # CONFIG_CRYPTO_TEST is not set |
| @@ -1487,6 +1505,7 @@ CONFIG_CRYPTO_SALSA20=m | |||
| 1487 | # Compression | 1505 | # Compression |
| 1488 | # | 1506 | # |
| 1489 | # CONFIG_CRYPTO_DEFLATE is not set | 1507 | # CONFIG_CRYPTO_DEFLATE is not set |
| 1508 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1490 | CONFIG_CRYPTO_LZO=m | 1509 | CONFIG_CRYPTO_LZO=m |
| 1491 | 1510 | ||
| 1492 | # | 1511 | # |
diff --git a/arch/powerpc/configs/storcenter_defconfig b/arch/powerpc/configs/storcenter_defconfig index 94903465ea12..bd4a8d435c50 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.29-rc6 | 3 | # Linux kernel version: 2.6.30-rc3 |
| 4 | # Fri Mar 6 00:09:08 2009 | 4 | # Wed May 13 17:22:04 2009 |
| 5 | # | 5 | # |
| 6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
| 7 | 7 | ||
| @@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
| 14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
| 15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
| 16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
| 17 | CONFIG_PPC_BOOK3S=y | ||
| 17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
| 18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
| 19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
| @@ -54,6 +55,7 @@ CONFIG_GENERIC_BUG=y | |||
| 54 | # CONFIG_DEFAULT_UIMAGE is not set | 55 | # CONFIG_DEFAULT_UIMAGE is not set |
| 55 | # CONFIG_PPC_DCR_NATIVE is not set | 56 | # CONFIG_PPC_DCR_NATIVE is not set |
| 56 | # CONFIG_PPC_DCR_MMIO is not set | 57 | # CONFIG_PPC_DCR_MMIO is not set |
| 58 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
| 57 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
| 58 | 60 | ||
| 59 | # | 61 | # |
| @@ -95,17 +97,17 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
| 95 | # CONFIG_BLK_DEV_INITRD is not set | 97 | # CONFIG_BLK_DEV_INITRD is not set |
| 96 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 98 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
| 97 | CONFIG_SYSCTL=y | 99 | CONFIG_SYSCTL=y |
| 100 | CONFIG_ANON_INODES=y | ||
| 98 | CONFIG_EMBEDDED=y | 101 | CONFIG_EMBEDDED=y |
| 99 | CONFIG_SYSCTL_SYSCALL=y | 102 | CONFIG_SYSCTL_SYSCALL=y |
| 100 | # CONFIG_KALLSYMS is not set | 103 | # CONFIG_KALLSYMS is not set |
| 104 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 101 | CONFIG_HOTPLUG=y | 105 | CONFIG_HOTPLUG=y |
| 102 | CONFIG_PRINTK=y | 106 | CONFIG_PRINTK=y |
| 103 | CONFIG_BUG=y | 107 | CONFIG_BUG=y |
| 104 | CONFIG_ELF_CORE=y | 108 | CONFIG_ELF_CORE=y |
| 105 | CONFIG_COMPAT_BRK=y | ||
| 106 | CONFIG_BASE_FULL=y | 109 | CONFIG_BASE_FULL=y |
| 107 | CONFIG_FUTEX=y | 110 | CONFIG_FUTEX=y |
| 108 | CONFIG_ANON_INODES=y | ||
| 109 | CONFIG_EPOLL=y | 111 | CONFIG_EPOLL=y |
| 110 | CONFIG_SIGNALFD=y | 112 | CONFIG_SIGNALFD=y |
| 111 | CONFIG_TIMERFD=y | 113 | CONFIG_TIMERFD=y |
| @@ -115,16 +117,19 @@ CONFIG_AIO=y | |||
| 115 | CONFIG_VM_EVENT_COUNTERS=y | 117 | CONFIG_VM_EVENT_COUNTERS=y |
| 116 | CONFIG_PCI_QUIRKS=y | 118 | CONFIG_PCI_QUIRKS=y |
| 117 | CONFIG_SLUB_DEBUG=y | 119 | CONFIG_SLUB_DEBUG=y |
| 120 | CONFIG_COMPAT_BRK=y | ||
| 118 | # CONFIG_SLAB is not set | 121 | # CONFIG_SLAB is not set |
| 119 | CONFIG_SLUB=y | 122 | CONFIG_SLUB=y |
| 120 | # CONFIG_SLOB is not set | 123 | # CONFIG_SLOB is not set |
| 121 | # CONFIG_PROFILING is not set | 124 | # CONFIG_PROFILING is not set |
| 125 | # CONFIG_MARKERS is not set | ||
| 122 | CONFIG_HAVE_OPROFILE=y | 126 | CONFIG_HAVE_OPROFILE=y |
| 123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 127 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
| 124 | CONFIG_HAVE_IOREMAP_PROT=y | 128 | CONFIG_HAVE_IOREMAP_PROT=y |
| 125 | CONFIG_HAVE_KPROBES=y | 129 | CONFIG_HAVE_KPROBES=y |
| 126 | CONFIG_HAVE_KRETPROBES=y | 130 | CONFIG_HAVE_KRETPROBES=y |
| 127 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 131 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
| 132 | # CONFIG_SLOW_WORK is not set | ||
| 128 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
| 129 | CONFIG_SLABINFO=y | 134 | CONFIG_SLABINFO=y |
| 130 | CONFIG_RT_MUTEXES=y | 135 | CONFIG_RT_MUTEXES=y |
| @@ -137,7 +142,6 @@ CONFIG_MODULE_UNLOAD=y | |||
| 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 142 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
| 138 | CONFIG_BLOCK=y | 143 | CONFIG_BLOCK=y |
| 139 | CONFIG_LBD=y | 144 | CONFIG_LBD=y |
| 140 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 141 | # CONFIG_BLK_DEV_BSG is not set | 145 | # CONFIG_BLK_DEV_BSG is not set |
| 142 | # CONFIG_BLK_DEV_INTEGRITY is not set | 146 | # CONFIG_BLK_DEV_INTEGRITY is not set |
| 143 | 147 | ||
| @@ -158,8 +162,6 @@ CONFIG_DEFAULT_IOSCHED="cfq" | |||
| 158 | # | 162 | # |
| 159 | # Platform support | 163 | # Platform support |
| 160 | # | 164 | # |
| 161 | CONFIG_PPC_MULTIPLATFORM=y | ||
| 162 | CONFIG_CLASSIC32=y | ||
| 163 | # CONFIG_PPC_CHRP is not set | 165 | # CONFIG_PPC_CHRP is not set |
| 164 | # CONFIG_MPC5121_ADS is not set | 166 | # CONFIG_MPC5121_ADS is not set |
| 165 | # CONFIG_MPC5121_GENERIC is not set | 167 | # CONFIG_MPC5121_GENERIC is not set |
| @@ -181,6 +183,8 @@ CONFIG_STORCENTER=y | |||
| 181 | CONFIG_MPC10X_BRIDGE=y | 183 | CONFIG_MPC10X_BRIDGE=y |
| 182 | CONFIG_MPC10X_OPENPIC=y | 184 | CONFIG_MPC10X_OPENPIC=y |
| 183 | # CONFIG_MPC10X_STORE_GATHERING is not set | 185 | # CONFIG_MPC10X_STORE_GATHERING is not set |
| 186 | # CONFIG_AMIGAONE is not set | ||
| 187 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
| 184 | # CONFIG_IPIC is not set | 188 | # CONFIG_IPIC is not set |
| 185 | CONFIG_MPIC=y | 189 | CONFIG_MPIC=y |
| 186 | # CONFIG_MPIC_WEIRD is not set | 190 | # CONFIG_MPIC_WEIRD is not set |
| @@ -239,9 +243,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
| 239 | CONFIG_BOUNCE=y | 243 | CONFIG_BOUNCE=y |
| 240 | CONFIG_VIRT_TO_BUS=y | 244 | CONFIG_VIRT_TO_BUS=y |
| 241 | CONFIG_UNEVICTABLE_LRU=y | 245 | CONFIG_UNEVICTABLE_LRU=y |
| 246 | CONFIG_HAVE_MLOCK=y | ||
| 247 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
| 242 | CONFIG_PPC_4K_PAGES=y | 248 | CONFIG_PPC_4K_PAGES=y |
| 243 | # CONFIG_PPC_16K_PAGES is not set | 249 | # CONFIG_PPC_16K_PAGES is not set |
| 244 | # CONFIG_PPC_64K_PAGES is not set | 250 | # CONFIG_PPC_64K_PAGES is not set |
| 251 | # CONFIG_PPC_256K_PAGES is not set | ||
| 245 | CONFIG_FORCE_MAX_ZONEORDER=11 | 252 | CONFIG_FORCE_MAX_ZONEORDER=11 |
| 246 | CONFIG_PROC_DEVICETREE=y | 253 | CONFIG_PROC_DEVICETREE=y |
| 247 | CONFIG_CMDLINE_BOOL=y | 254 | CONFIG_CMDLINE_BOOL=y |
| @@ -266,6 +273,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
| 266 | # CONFIG_PCI_MSI is not set | 273 | # CONFIG_PCI_MSI is not set |
| 267 | # CONFIG_PCI_LEGACY is not set | 274 | # CONFIG_PCI_LEGACY is not set |
| 268 | # CONFIG_PCI_STUB is not set | 275 | # CONFIG_PCI_STUB is not set |
| 276 | # CONFIG_PCI_IOV is not set | ||
| 269 | # CONFIG_PCCARD is not set | 277 | # CONFIG_PCCARD is not set |
| 270 | # CONFIG_HOTPLUG_PCI is not set | 278 | # CONFIG_HOTPLUG_PCI is not set |
| 271 | # CONFIG_HAS_RAPIDIO is not set | 279 | # CONFIG_HAS_RAPIDIO is not set |
| @@ -288,7 +296,6 @@ CONFIG_NET=y | |||
| 288 | # | 296 | # |
| 289 | # Networking options | 297 | # Networking options |
| 290 | # | 298 | # |
| 291 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 292 | CONFIG_PACKET=m | 299 | CONFIG_PACKET=m |
| 293 | # CONFIG_PACKET_MMAP is not set | 300 | # CONFIG_PACKET_MMAP is not set |
| 294 | CONFIG_UNIX=y | 301 | CONFIG_UNIX=y |
| @@ -339,6 +346,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 339 | # CONFIG_LAPB is not set | 346 | # CONFIG_LAPB is not set |
| 340 | # CONFIG_ECONET is not set | 347 | # CONFIG_ECONET is not set |
| 341 | # CONFIG_WAN_ROUTER is not set | 348 | # CONFIG_WAN_ROUTER is not set |
| 349 | # CONFIG_PHONET is not set | ||
| 342 | # CONFIG_NET_SCHED is not set | 350 | # CONFIG_NET_SCHED is not set |
| 343 | # CONFIG_DCB is not set | 351 | # CONFIG_DCB is not set |
| 344 | 352 | ||
| @@ -351,7 +359,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
| 351 | # CONFIG_IRDA is not set | 359 | # CONFIG_IRDA is not set |
| 352 | # CONFIG_BT is not set | 360 | # CONFIG_BT is not set |
| 353 | # CONFIG_AF_RXRPC is not set | 361 | # CONFIG_AF_RXRPC is not set |
| 354 | # CONFIG_PHONET is not set | ||
| 355 | CONFIG_WIRELESS=y | 362 | CONFIG_WIRELESS=y |
| 356 | # CONFIG_CFG80211 is not set | 363 | # CONFIG_CFG80211 is not set |
| 357 | CONFIG_WIRELESS_OLD_REGULATORY=y | 364 | CONFIG_WIRELESS_OLD_REGULATORY=y |
| @@ -486,6 +493,7 @@ CONFIG_MISC_DEVICES=y | |||
| 486 | # CONFIG_ICS932S401 is not set | 493 | # CONFIG_ICS932S401 is not set |
| 487 | # CONFIG_ENCLOSURE_SERVICES is not set | 494 | # CONFIG_ENCLOSURE_SERVICES is not set |
| 488 | # CONFIG_HP_ILO is not set | 495 | # CONFIG_HP_ILO is not set |
| 496 | # CONFIG_ISL29003 is not set | ||
| 489 | # CONFIG_C2PORT is not set | 497 | # CONFIG_C2PORT is not set |
| 490 | 498 | ||
| 491 | # | 499 | # |
| @@ -500,6 +508,7 @@ CONFIG_IDE=y | |||
| 500 | # | 508 | # |
| 501 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 509 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
| 502 | # | 510 | # |
| 511 | CONFIG_IDE_XFER_MODE=y | ||
| 503 | CONFIG_IDE_TIMINGS=y | 512 | CONFIG_IDE_TIMINGS=y |
| 504 | # CONFIG_BLK_DEV_IDE_SATA is not set | 513 | # CONFIG_BLK_DEV_IDE_SATA is not set |
| 505 | CONFIG_IDE_GD=y | 514 | CONFIG_IDE_GD=y |
| @@ -604,9 +613,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 604 | # CONFIG_MEGARAID_NEWGEN is not set | 613 | # CONFIG_MEGARAID_NEWGEN is not set |
| 605 | # CONFIG_MEGARAID_LEGACY is not set | 614 | # CONFIG_MEGARAID_LEGACY is not set |
| 606 | # CONFIG_MEGARAID_SAS is not set | 615 | # CONFIG_MEGARAID_SAS is not set |
| 616 | # CONFIG_SCSI_MPT2SAS is not set | ||
| 607 | # CONFIG_SCSI_HPTIOP is not set | 617 | # CONFIG_SCSI_HPTIOP is not set |
| 608 | # CONFIG_SCSI_BUSLOGIC is not set | 618 | # CONFIG_SCSI_BUSLOGIC is not set |
| 609 | # CONFIG_LIBFC is not set | 619 | # CONFIG_LIBFC is not set |
| 620 | # CONFIG_LIBFCOE is not set | ||
| 610 | # CONFIG_FCOE is not set | 621 | # CONFIG_FCOE is not set |
| 611 | # CONFIG_SCSI_DMX3191D is not set | 622 | # CONFIG_SCSI_DMX3191D is not set |
| 612 | # CONFIG_SCSI_EATA is not set | 623 | # CONFIG_SCSI_EATA is not set |
| @@ -628,6 +639,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
| 628 | # CONFIG_SCSI_DEBUG is not set | 639 | # CONFIG_SCSI_DEBUG is not set |
| 629 | # CONFIG_SCSI_SRP is not set | 640 | # CONFIG_SCSI_SRP is not set |
| 630 | # CONFIG_SCSI_DH is not set | 641 | # CONFIG_SCSI_DH is not set |
| 642 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
| 631 | # CONFIG_ATA is not set | 643 | # CONFIG_ATA is not set |
| 632 | CONFIG_MD=y | 644 | CONFIG_MD=y |
| 633 | CONFIG_BLK_DEV_MD=y | 645 | CONFIG_BLK_DEV_MD=y |
| @@ -637,7 +649,7 @@ CONFIG_MD_RAID0=y | |||
| 637 | CONFIG_MD_RAID1=y | 649 | CONFIG_MD_RAID1=y |
| 638 | # CONFIG_MD_RAID10 is not set | 650 | # CONFIG_MD_RAID10 is not set |
| 639 | CONFIG_MD_RAID456=y | 651 | CONFIG_MD_RAID456=y |
| 640 | CONFIG_MD_RAID5_RESHAPE=y | 652 | CONFIG_MD_RAID6_PQ=y |
| 641 | # CONFIG_MD_MULTIPATH is not set | 653 | # CONFIG_MD_MULTIPATH is not set |
| 642 | # CONFIG_MD_FAULTY is not set | 654 | # CONFIG_MD_FAULTY is not set |
| 643 | # CONFIG_BLK_DEV_DM is not set | 655 | # CONFIG_BLK_DEV_DM is not set |
| @@ -655,6 +667,7 @@ CONFIG_MD_RAID5_RESHAPE=y | |||
| 655 | # CONFIG_I2O is not set | 667 | # CONFIG_I2O is not set |
| 656 | # CONFIG_MACINTOSH_DRIVERS is not set | 668 | # CONFIG_MACINTOSH_DRIVERS is not set |
| 657 | CONFIG_NETDEVICES=y | 669 | CONFIG_NETDEVICES=y |
| 670 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
| 658 | CONFIG_DUMMY=m | 671 | CONFIG_DUMMY=m |
| 659 | # CONFIG_BONDING is not set | 672 | # CONFIG_BONDING is not set |
| 660 | # CONFIG_MACVLAN is not set | 673 | # CONFIG_MACVLAN is not set |
| @@ -671,6 +684,7 @@ CONFIG_NETDEV_1000=y | |||
| 671 | # CONFIG_E1000E is not set | 684 | # CONFIG_E1000E is not set |
| 672 | # CONFIG_IP1000 is not set | 685 | # CONFIG_IP1000 is not set |
| 673 | # CONFIG_IGB is not set | 686 | # CONFIG_IGB is not set |
| 687 | # CONFIG_IGBVF is not set | ||
| 674 | # CONFIG_NS83820 is not set | 688 | # CONFIG_NS83820 is not set |
| 675 | # CONFIG_HAMACHI is not set | 689 | # CONFIG_HAMACHI is not set |
| 676 | # CONFIG_YELLOWFIN is not set | 690 | # CONFIG_YELLOWFIN is not set |
| @@ -681,8 +695,8 @@ CONFIG_R8169=y | |||
| 681 | # CONFIG_VIA_VELOCITY is not set | 695 | # CONFIG_VIA_VELOCITY is not set |
| 682 | # CONFIG_TIGON3 is not set | 696 | # CONFIG_TIGON3 is not set |
| 683 | # CONFIG_BNX2 is not set | 697 | # CONFIG_BNX2 is not set |
| 698 | # CONFIG_FSL_PQ_MDIO is not set | ||
| 684 | # CONFIG_GIANFAR is not set | 699 | # CONFIG_GIANFAR is not set |
| 685 | # CONFIG_MV643XX_ETH is not set | ||
| 686 | # CONFIG_QLA3XXX is not set | 700 | # CONFIG_QLA3XXX is not set |
| 687 | # CONFIG_ATL1 is not set | 701 | # CONFIG_ATL1 is not set |
| 688 | # CONFIG_ATL1E is not set | 702 | # CONFIG_ATL1E is not set |
| @@ -696,7 +710,6 @@ CONFIG_R8169=y | |||
| 696 | # | 710 | # |
| 697 | # CONFIG_WLAN_PRE80211 is not set | 711 | # CONFIG_WLAN_PRE80211 is not set |
| 698 | # CONFIG_WLAN_80211 is not set | 712 | # CONFIG_WLAN_80211 is not set |
| 699 | # CONFIG_IWLWIFI_LEDS is not set | ||
| 700 | 713 | ||
| 701 | # | 714 | # |
| 702 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 715 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
| @@ -766,6 +779,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
| 766 | # CONFIG_HVC_UDBG is not set | 779 | # CONFIG_HVC_UDBG is not set |
| 767 | # CONFIG_IPMI_HANDLER is not set | 780 | # CONFIG_IPMI_HANDLER is not set |
| 768 | CONFIG_HW_RANDOM=m | 781 | CONFIG_HW_RANDOM=m |
| 782 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
| 769 | CONFIG_NVRAM=y | 783 | CONFIG_NVRAM=y |
| 770 | # CONFIG_R3964 is not set | 784 | # CONFIG_R3964 is not set |
| 771 | # CONFIG_APPLICOM is not set | 785 | # CONFIG_APPLICOM is not set |
| @@ -831,7 +845,6 @@ CONFIG_I2C_MPC=y | |||
| 831 | # CONFIG_SENSORS_PCF8574 is not set | 845 | # CONFIG_SENSORS_PCF8574 is not set |
| 832 | # CONFIG_PCF8575 is not set | 846 | # CONFIG_PCF8575 is not set |
| 833 | # CONFIG_SENSORS_PCA9539 is not set | 847 | # CONFIG_SENSORS_PCA9539 is not set |
| 834 | # CONFIG_SENSORS_PCF8591 is not set | ||
| 835 | # CONFIG_SENSORS_MAX6875 is not set | 848 | # CONFIG_SENSORS_MAX6875 is not set |
| 836 | # CONFIG_SENSORS_TSL2550 is not set | 849 | # CONFIG_SENSORS_TSL2550 is not set |
| 837 | # CONFIG_I2C_DEBUG_CORE is not set | 850 | # CONFIG_I2C_DEBUG_CORE is not set |
| @@ -952,11 +965,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
| 952 | # CONFIG_USB_TMC is not set | 965 | # CONFIG_USB_TMC is not set |
| 953 | 966 | ||
| 954 | # | 967 | # |
| 955 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 968 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
| 956 | # | 969 | # |
| 957 | 970 | ||
| 958 | # | 971 | # |
| 959 | # see USB_STORAGE Help for more information | 972 | # also be needed; see USB_STORAGE Help for more info |
| 960 | # | 973 | # |
| 961 | CONFIG_USB_STORAGE=y | 974 | CONFIG_USB_STORAGE=y |
| 962 | # CONFIG_USB_STORAGE_DEBUG is not set | 975 | # CONFIG_USB_STORAGE_DEBUG is not set |
| @@ -997,7 +1010,6 @@ CONFIG_USB_STORAGE=y | |||
| 997 | # CONFIG_USB_LED is not set | 1010 | # CONFIG_USB_LED is not set |
| 998 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1011 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
| 999 | # CONFIG_USB_CYTHERM is not set | 1012 | # CONFIG_USB_CYTHERM is not set |
| 1000 | # CONFIG_USB_PHIDGET is not set | ||
| 1001 | # CONFIG_USB_IDMOUSE is not set | 1013 | # CONFIG_USB_IDMOUSE is not set |
| 1002 | # CONFIG_USB_FTDI_ELAN is not set | 1014 | # CONFIG_USB_FTDI_ELAN is not set |
| 1003 | # CONFIG_USB_APPLEDISPLAY is not set | 1015 | # CONFIG_USB_APPLEDISPLAY is not set |
| @@ -1013,6 +1025,7 @@ CONFIG_USB_STORAGE=y | |||
| 1013 | # | 1025 | # |
| 1014 | # OTG and related infrastructure | 1026 | # OTG and related infrastructure |
| 1015 | # | 1027 | # |
| 1028 | # CONFIG_NOP_USB_XCEIV is not set | ||
| 1016 | # CONFIG_UWB is not set | 1029 | # CONFIG_UWB is not set |
| 1017 | # CONFIG_MMC is not set | 1030 | # CONFIG_MMC is not set |
| 1018 | # CONFIG_MEMSTICK is not set | 1031 | # CONFIG_MEMSTICK is not set |
| @@ -1074,8 +1087,9 @@ CONFIG_RTC_DRV_DS1307=y | |||
| 1074 | # | 1087 | # |
| 1075 | # on-CPU RTC drivers | 1088 | # on-CPU RTC drivers |
| 1076 | # | 1089 | # |
| 1077 | # CONFIG_RTC_DRV_PPC is not set | 1090 | # CONFIG_RTC_DRV_GENERIC is not set |
| 1078 | # CONFIG_DMADEVICES is not set | 1091 | # CONFIG_DMADEVICES is not set |
| 1092 | # CONFIG_AUXDISPLAY is not set | ||
| 1079 | # CONFIG_UIO is not set | 1093 | # CONFIG_UIO is not set |
| 1080 | # CONFIG_STAGING is not set | 1094 | # CONFIG_STAGING is not set |
| 1081 | 1095 | ||
| @@ -1086,6 +1100,7 @@ CONFIG_EXT2_FS=y | |||
| 1086 | # CONFIG_EXT2_FS_XATTR is not set | 1100 | # CONFIG_EXT2_FS_XATTR is not set |
| 1087 | # CONFIG_EXT2_FS_XIP is not set | 1101 | # CONFIG_EXT2_FS_XIP is not set |
| 1088 | CONFIG_EXT3_FS=y | 1102 | CONFIG_EXT3_FS=y |
| 1103 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
| 1089 | CONFIG_EXT3_FS_XATTR=y | 1104 | CONFIG_EXT3_FS_XATTR=y |
| 1090 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1105 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
| 1091 | # CONFIG_EXT3_FS_SECURITY is not set | 1106 | # CONFIG_EXT3_FS_SECURITY is not set |
| @@ -1113,6 +1128,11 @@ CONFIG_INOTIFY_USER=y | |||
| 1113 | # CONFIG_FUSE_FS is not set | 1128 | # CONFIG_FUSE_FS is not set |
| 1114 | 1129 | ||
| 1115 | # | 1130 | # |
| 1131 | # Caches | ||
| 1132 | # | ||
| 1133 | # CONFIG_FSCACHE is not set | ||
| 1134 | |||
| 1135 | # | ||
| 1116 | # CD-ROM/DVD Filesystems | 1136 | # CD-ROM/DVD Filesystems |
| 1117 | # | 1137 | # |
| 1118 | # CONFIG_ISO9660_FS is not set | 1138 | # CONFIG_ISO9660_FS is not set |
| @@ -1166,6 +1186,7 @@ CONFIG_JFFS2_RTIME=y | |||
| 1166 | # CONFIG_ROMFS_FS is not set | 1186 | # CONFIG_ROMFS_FS is not set |
| 1167 | # CONFIG_SYSV_FS is not set | 1187 | # CONFIG_SYSV_FS is not set |
| 1168 | # CONFIG_UFS_FS is not set | 1188 | # CONFIG_UFS_FS is not set |
| 1189 | # CONFIG_NILFS2_FS is not set | ||
| 1169 | # CONFIG_NETWORK_FILESYSTEMS is not set | 1190 | # CONFIG_NETWORK_FILESYSTEMS is not set |
| 1170 | CONFIG_EXPORTFS=m | 1191 | CONFIG_EXPORTFS=m |
| 1171 | 1192 | ||
| @@ -1231,6 +1252,7 @@ CONFIG_NLS_ISO8859_1=y | |||
| 1231 | # CONFIG_NLS_KOI8_U is not set | 1252 | # CONFIG_NLS_KOI8_U is not set |
| 1232 | CONFIG_NLS_UTF8=y | 1253 | CONFIG_NLS_UTF8=y |
| 1233 | # CONFIG_DLM is not set | 1254 | # CONFIG_DLM is not set |
| 1255 | # CONFIG_BINARY_PRINTF is not set | ||
| 1234 | 1256 | ||
| 1235 | # | 1257 | # |
| 1236 | # Library routines | 1258 | # Library routines |
| @@ -1246,11 +1268,11 @@ CONFIG_CRC32=y | |||
| 1246 | # CONFIG_LIBCRC32C is not set | 1268 | # CONFIG_LIBCRC32C is not set |
| 1247 | CONFIG_ZLIB_INFLATE=y | 1269 | CONFIG_ZLIB_INFLATE=y |
| 1248 | CONFIG_ZLIB_DEFLATE=y | 1270 | CONFIG_ZLIB_DEFLATE=y |
| 1249 | CONFIG_PLIST=y | ||
| 1250 | CONFIG_HAS_IOMEM=y | 1271 | CONFIG_HAS_IOMEM=y |
| 1251 | CONFIG_HAS_IOPORT=y | 1272 | CONFIG_HAS_IOPORT=y |
| 1252 | CONFIG_HAS_DMA=y | 1273 | CONFIG_HAS_DMA=y |
| 1253 | CONFIG_HAVE_LMB=y | 1274 | CONFIG_HAVE_LMB=y |
| 1275 | CONFIG_NLATTR=y | ||
| 1254 | 1276 | ||
| 1255 | # | 1277 | # |
| 1256 | # Kernel hacking | 1278 | # Kernel hacking |
| @@ -1272,13 +1294,24 @@ CONFIG_FRAME_WARN=1024 | |||
| 1272 | # CONFIG_LATENCYTOP is not set | 1294 | # CONFIG_LATENCYTOP is not set |
| 1273 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1295 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 1274 | CONFIG_HAVE_FUNCTION_TRACER=y | 1296 | CONFIG_HAVE_FUNCTION_TRACER=y |
| 1297 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1275 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1298 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
| 1276 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1299 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
| 1300 | CONFIG_TRACING_SUPPORT=y | ||
| 1277 | 1301 | ||
| 1278 | # | 1302 | # |
| 1279 | # Tracers | 1303 | # Tracers |
| 1280 | # | 1304 | # |
| 1281 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1305 | # CONFIG_FUNCTION_TRACER is not set |
| 1306 | # CONFIG_SCHED_TRACER is not set | ||
| 1307 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
| 1308 | # CONFIG_EVENT_TRACER is not set | ||
| 1309 | # CONFIG_BOOT_TRACER is not set | ||
| 1310 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
| 1311 | # CONFIG_STACK_TRACER is not set | ||
| 1312 | # CONFIG_KMEMTRACE is not set | ||
| 1313 | # CONFIG_WORKQUEUE_TRACER is not set | ||
| 1314 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
| 1282 | # CONFIG_SAMPLES is not set | 1315 | # CONFIG_SAMPLES is not set |
| 1283 | CONFIG_HAVE_ARCH_KGDB=y | 1316 | CONFIG_HAVE_ARCH_KGDB=y |
| 1284 | CONFIG_PRINT_STACK_DEPTH=64 | 1317 | CONFIG_PRINT_STACK_DEPTH=64 |
diff --git a/arch/powerpc/include/asm/dma-mapping.h b/arch/powerpc/include/asm/dma-mapping.h index c69f2b5f0cc4..cb448d68452c 100644 --- a/arch/powerpc/include/asm/dma-mapping.h +++ b/arch/powerpc/include/asm/dma-mapping.h | |||
| @@ -26,7 +26,9 @@ | |||
| 26 | * allocate the space "normally" and use the cache management functions | 26 | * allocate the space "normally" and use the cache management functions |
| 27 | * to ensure it is consistent. | 27 | * to ensure it is consistent. |
| 28 | */ | 28 | */ |
| 29 | extern void *__dma_alloc_coherent(size_t size, dma_addr_t *handle, gfp_t gfp); | 29 | struct device; |
| 30 | extern void *__dma_alloc_coherent(struct device *dev, size_t size, | ||
| 31 | dma_addr_t *handle, gfp_t gfp); | ||
| 30 | extern void __dma_free_coherent(size_t size, void *vaddr); | 32 | extern void __dma_free_coherent(size_t size, void *vaddr); |
| 31 | extern void __dma_sync(void *vaddr, size_t size, int direction); | 33 | extern void __dma_sync(void *vaddr, size_t size, int direction); |
| 32 | extern void __dma_sync_page(struct page *page, unsigned long offset, | 34 | extern void __dma_sync_page(struct page *page, unsigned long offset, |
| @@ -37,7 +39,7 @@ extern void __dma_sync_page(struct page *page, unsigned long offset, | |||
| 37 | * Cache coherent cores. | 39 | * Cache coherent cores. |
| 38 | */ | 40 | */ |
| 39 | 41 | ||
| 40 | #define __dma_alloc_coherent(gfp, size, handle) NULL | 42 | #define __dma_alloc_coherent(dev, gfp, size, handle) NULL |
| 41 | #define __dma_free_coherent(size, addr) ((void)0) | 43 | #define __dma_free_coherent(size, addr) ((void)0) |
| 42 | #define __dma_sync(addr, size, rw) ((void)0) | 44 | #define __dma_sync(addr, size, rw) ((void)0) |
| 43 | #define __dma_sync_page(pg, off, sz, rw) ((void)0) | 45 | #define __dma_sync_page(pg, off, sz, rw) ((void)0) |
diff --git a/arch/powerpc/include/asm/fixmap.h b/arch/powerpc/include/asm/fixmap.h index d60fd18f428c..f1f4e23a84e9 100644 --- a/arch/powerpc/include/asm/fixmap.h +++ b/arch/powerpc/include/asm/fixmap.h | |||
| @@ -14,8 +14,6 @@ | |||
| 14 | #ifndef _ASM_FIXMAP_H | 14 | #ifndef _ASM_FIXMAP_H |
| 15 | #define _ASM_FIXMAP_H | 15 | #define _ASM_FIXMAP_H |
| 16 | 16 | ||
| 17 | extern unsigned long FIXADDR_TOP; | ||
| 18 | |||
| 19 | #ifndef __ASSEMBLY__ | 17 | #ifndef __ASSEMBLY__ |
| 20 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
| 21 | #include <asm/page.h> | 19 | #include <asm/page.h> |
| @@ -24,6 +22,8 @@ extern unsigned long FIXADDR_TOP; | |||
| 24 | #include <asm/kmap_types.h> | 22 | #include <asm/kmap_types.h> |
| 25 | #endif | 23 | #endif |
| 26 | 24 | ||
| 25 | #define FIXADDR_TOP ((unsigned long)(-PAGE_SIZE)) | ||
| 26 | |||
| 27 | /* | 27 | /* |
| 28 | * Here we define all the compile-time 'special' virtual | 28 | * Here we define all the compile-time 'special' virtual |
| 29 | * addresses. The point is to have a constant address at | 29 | * addresses. The point is to have a constant address at |
diff --git a/arch/powerpc/include/asm/iseries/iommu.h b/arch/powerpc/include/asm/iseries/iommu.h index c59ee7e4bed1..1b9692c60899 100644 --- a/arch/powerpc/include/asm/iseries/iommu.h +++ b/arch/powerpc/include/asm/iseries/iommu.h | |||
| @@ -26,10 +26,6 @@ struct vio_dev; | |||
| 26 | struct device_node; | 26 | struct device_node; |
| 27 | struct iommu_table; | 27 | struct iommu_table; |
| 28 | 28 | ||
| 29 | /* Creates table for an individual device node */ | ||
| 30 | extern void iommu_devnode_init_iSeries(struct pci_dev *pdev, | ||
| 31 | struct device_node *dn); | ||
| 32 | |||
| 33 | /* Get table parameters from HV */ | 29 | /* Get table parameters from HV */ |
| 34 | extern void iommu_table_getparms_iSeries(unsigned long busno, | 30 | extern void iommu_table_getparms_iSeries(unsigned long busno, |
| 35 | unsigned char slotno, unsigned char virtbus, | 31 | unsigned char slotno, unsigned char virtbus, |
diff --git a/arch/powerpc/include/asm/pgtable-ppc32.h b/arch/powerpc/include/asm/pgtable-ppc32.h index ba45c997830f..c9ff9d75990e 100644 --- a/arch/powerpc/include/asm/pgtable-ppc32.h +++ b/arch/powerpc/include/asm/pgtable-ppc32.h | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | 10 | ||
| 11 | extern unsigned long va_to_phys(unsigned long address); | 11 | extern unsigned long va_to_phys(unsigned long address); |
| 12 | extern pte_t *va_to_pte(unsigned long address); | 12 | extern pte_t *va_to_pte(unsigned long address); |
| 13 | extern unsigned long ioremap_bot, ioremap_base; | 13 | extern unsigned long ioremap_bot; |
| 14 | 14 | ||
| 15 | #ifdef CONFIG_44x | 15 | #ifdef CONFIG_44x |
| 16 | extern int icache_44x_need_flush; | 16 | extern int icache_44x_need_flush; |
| @@ -56,8 +56,30 @@ extern int icache_44x_need_flush; | |||
| 56 | printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e)) | 56 | printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e)) |
| 57 | 57 | ||
| 58 | /* | 58 | /* |
| 59 | * This is the bottom of the PKMAP area with HIGHMEM or an arbitrary | ||
| 60 | * value (for now) on others, from where we can start layout kernel | ||
| 61 | * virtual space that goes below PKMAP and FIXMAP | ||
| 62 | */ | ||
| 63 | #ifdef CONFIG_HIGHMEM | ||
| 64 | #define KVIRT_TOP PKMAP_BASE | ||
| 65 | #else | ||
| 66 | #define KVIRT_TOP (0xfe000000UL) /* for now, could be FIXMAP_BASE ? */ | ||
| 67 | #endif | ||
| 68 | |||
| 69 | /* | ||
| 70 | * ioremap_bot starts at that address. Early ioremaps move down from there, | ||
| 71 | * until mem_init() at which point this becomes the top of the vmalloc | ||
| 72 | * and ioremap space | ||
| 73 | */ | ||
| 74 | #ifdef CONFIG_NOT_COHERENT_CACHE | ||
| 75 | #define IOREMAP_TOP ((KVIRT_TOP - CONFIG_CONSISTENT_SIZE) & PAGE_MASK) | ||
| 76 | #else | ||
| 77 | #define IOREMAP_TOP KVIRT_TOP | ||
| 78 | #endif | ||
| 79 | |||
| 80 | /* | ||
| 59 | * Just any arbitrary offset to the start of the vmalloc VM area: the | 81 | * Just any arbitrary offset to the start of the vmalloc VM area: the |
| 60 | * current 64MB value just means that there will be a 64MB "hole" after the | 82 | * current 16MB value just means that there will be a 64MB "hole" after the |
| 61 | * physical memory until the kernel virtual memory starts. That means that | 83 | * physical memory until the kernel virtual memory starts. That means that |
| 62 | * any out-of-bounds memory accesses will hopefully be caught. | 84 | * any out-of-bounds memory accesses will hopefully be caught. |
| 63 | * The vmalloc() routines leaves a hole of 4kB between each vmalloced | 85 | * The vmalloc() routines leaves a hole of 4kB between each vmalloced |
diff --git a/arch/powerpc/include/asm/system.h b/arch/powerpc/include/asm/system.h index f612798e1c93..2b2420a49884 100644 --- a/arch/powerpc/include/asm/system.h +++ b/arch/powerpc/include/asm/system.h | |||
| @@ -212,7 +212,7 @@ extern struct task_struct *_switch(struct thread_struct *prev, | |||
| 212 | extern unsigned int rtas_data; | 212 | extern unsigned int rtas_data; |
| 213 | extern int mem_init_done; /* set on boot once kmalloc can be called */ | 213 | extern int mem_init_done; /* set on boot once kmalloc can be called */ |
| 214 | extern int init_bootmem_done; /* set on !NUMA once bootmem is available */ | 214 | extern int init_bootmem_done; /* set on !NUMA once bootmem is available */ |
| 215 | extern unsigned long memory_limit; | 215 | extern phys_addr_t memory_limit; |
| 216 | extern unsigned long klimit; | 216 | extern unsigned long klimit; |
| 217 | 217 | ||
| 218 | extern void *alloc_maybe_bootmem(size_t size, gfp_t mask); | 218 | extern void *alloc_maybe_bootmem(size_t size, gfp_t mask); |
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index f9c40f869c6e..3e33fb933d99 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
| @@ -1836,7 +1836,7 @@ static void __init setup_cpu_spec(unsigned long offset, struct cpu_spec *s) | |||
| 1836 | * and, in that case, keep the current value for | 1836 | * and, in that case, keep the current value for |
| 1837 | * oprofile_cpu_type. | 1837 | * oprofile_cpu_type. |
| 1838 | */ | 1838 | */ |
| 1839 | if (old.oprofile_cpu_type == NULL) { | 1839 | if (old.oprofile_cpu_type != NULL) { |
| 1840 | t->oprofile_cpu_type = old.oprofile_cpu_type; | 1840 | t->oprofile_cpu_type = old.oprofile_cpu_type; |
| 1841 | t->oprofile_type = old.oprofile_type; | 1841 | t->oprofile_type = old.oprofile_type; |
| 1842 | } | 1842 | } |
diff --git a/arch/powerpc/kernel/dma.c b/arch/powerpc/kernel/dma.c index 53c7788cba78..6b02793dc75b 100644 --- a/arch/powerpc/kernel/dma.c +++ b/arch/powerpc/kernel/dma.c | |||
| @@ -32,7 +32,7 @@ void *dma_direct_alloc_coherent(struct device *dev, size_t size, | |||
| 32 | { | 32 | { |
| 33 | void *ret; | 33 | void *ret; |
| 34 | #ifdef CONFIG_NOT_COHERENT_CACHE | 34 | #ifdef CONFIG_NOT_COHERENT_CACHE |
| 35 | ret = __dma_alloc_coherent(size, dma_handle, flag); | 35 | ret = __dma_alloc_coherent(dev, size, dma_handle, flag); |
| 36 | if (ret == NULL) | 36 | if (ret == NULL) |
| 37 | return NULL; | 37 | return NULL; |
| 38 | *dma_handle += get_dma_direct_offset(dev); | 38 | *dma_handle += get_dma_direct_offset(dev); |
diff --git a/arch/powerpc/kernel/ftrace.c b/arch/powerpc/kernel/ftrace.c index 70e2a736be1f..2d182f119d1d 100644 --- a/arch/powerpc/kernel/ftrace.c +++ b/arch/powerpc/kernel/ftrace.c | |||
| @@ -157,7 +157,7 @@ __ftrace_make_nop(struct module *mod, | |||
| 157 | * 0xe8, 0x4c, 0x00, 0x28, ld r2,40(r12) | 157 | * 0xe8, 0x4c, 0x00, 0x28, ld r2,40(r12) |
| 158 | */ | 158 | */ |
| 159 | 159 | ||
| 160 | pr_debug("ip:%lx jumps to %lx r2: %lx", ip, tramp, mod->arch.toc); | 160 | pr_devel("ip:%lx jumps to %lx r2: %lx", ip, tramp, mod->arch.toc); |
| 161 | 161 | ||
| 162 | /* Find where the trampoline jumps to */ | 162 | /* Find where the trampoline jumps to */ |
| 163 | if (probe_kernel_read(jmp, (void *)tramp, sizeof(jmp))) { | 163 | if (probe_kernel_read(jmp, (void *)tramp, sizeof(jmp))) { |
| @@ -165,7 +165,7 @@ __ftrace_make_nop(struct module *mod, | |||
| 165 | return -EFAULT; | 165 | return -EFAULT; |
| 166 | } | 166 | } |
| 167 | 167 | ||
| 168 | pr_debug(" %08x %08x", jmp[0], jmp[1]); | 168 | pr_devel(" %08x %08x", jmp[0], jmp[1]); |
| 169 | 169 | ||
| 170 | /* verify that this is what we expect it to be */ | 170 | /* verify that this is what we expect it to be */ |
| 171 | if (((jmp[0] & 0xffff0000) != 0x3d820000) || | 171 | if (((jmp[0] & 0xffff0000) != 0x3d820000) || |
| @@ -181,18 +181,18 @@ __ftrace_make_nop(struct module *mod, | |||
| 181 | offset = ((unsigned)((unsigned short)jmp[0]) << 16) + | 181 | offset = ((unsigned)((unsigned short)jmp[0]) << 16) + |
| 182 | (int)((short)jmp[1]); | 182 | (int)((short)jmp[1]); |
| 183 | 183 | ||
| 184 | pr_debug(" %x ", offset); | 184 | pr_devel(" %x ", offset); |
| 185 | 185 | ||
| 186 | /* get the address this jumps too */ | 186 | /* get the address this jumps too */ |
| 187 | tramp = mod->arch.toc + offset + 32; | 187 | tramp = mod->arch.toc + offset + 32; |
| 188 | pr_debug("toc: %lx", tramp); | 188 | pr_devel("toc: %lx", tramp); |
| 189 | 189 | ||
| 190 | if (probe_kernel_read(jmp, (void *)tramp, 8)) { | 190 | if (probe_kernel_read(jmp, (void *)tramp, 8)) { |
| 191 | printk(KERN_ERR "Failed to read %lx\n", tramp); | 191 | printk(KERN_ERR "Failed to read %lx\n", tramp); |
| 192 | return -EFAULT; | 192 | return -EFAULT; |
| 193 | } | 193 | } |
| 194 | 194 | ||
| 195 | pr_debug(" %08x %08x\n", jmp[0], jmp[1]); | 195 | pr_devel(" %08x %08x\n", jmp[0], jmp[1]); |
| 196 | 196 | ||
| 197 | ptr = ((unsigned long)jmp[0] << 32) + jmp[1]; | 197 | ptr = ((unsigned long)jmp[0] << 32) + jmp[1]; |
| 198 | 198 | ||
| @@ -269,7 +269,7 @@ __ftrace_make_nop(struct module *mod, | |||
| 269 | * 0x4e, 0x80, 0x04, 0x20 bctr | 269 | * 0x4e, 0x80, 0x04, 0x20 bctr |
| 270 | */ | 270 | */ |
| 271 | 271 | ||
| 272 | pr_debug("ip:%lx jumps to %lx", ip, tramp); | 272 | pr_devel("ip:%lx jumps to %lx", ip, tramp); |
| 273 | 273 | ||
| 274 | /* Find where the trampoline jumps to */ | 274 | /* Find where the trampoline jumps to */ |
| 275 | if (probe_kernel_read(jmp, (void *)tramp, sizeof(jmp))) { | 275 | if (probe_kernel_read(jmp, (void *)tramp, sizeof(jmp))) { |
| @@ -277,7 +277,7 @@ __ftrace_make_nop(struct module *mod, | |||
| 277 | return -EFAULT; | 277 | return -EFAULT; |
| 278 | } | 278 | } |
| 279 | 279 | ||
| 280 | pr_debug(" %08x %08x ", jmp[0], jmp[1]); | 280 | pr_devel(" %08x %08x ", jmp[0], jmp[1]); |
| 281 | 281 | ||
| 282 | /* verify that this is what we expect it to be */ | 282 | /* verify that this is what we expect it to be */ |
| 283 | if (((jmp[0] & 0xffff0000) != 0x3d600000) || | 283 | if (((jmp[0] & 0xffff0000) != 0x3d600000) || |
| @@ -293,7 +293,7 @@ __ftrace_make_nop(struct module *mod, | |||
| 293 | if (tramp & 0x8000) | 293 | if (tramp & 0x8000) |
| 294 | tramp -= 0x10000; | 294 | tramp -= 0x10000; |
| 295 | 295 | ||
| 296 | pr_debug(" %lx ", tramp); | 296 | pr_devel(" %lx ", tramp); |
| 297 | 297 | ||
| 298 | if (tramp != addr) { | 298 | if (tramp != addr) { |
| 299 | printk(KERN_ERR | 299 | printk(KERN_ERR |
| @@ -402,7 +402,7 @@ __ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr) | |||
| 402 | /* ld r2,40(r1) */ | 402 | /* ld r2,40(r1) */ |
| 403 | op[1] = 0xe8410028; | 403 | op[1] = 0xe8410028; |
| 404 | 404 | ||
| 405 | pr_debug("write to %lx\n", rec->ip); | 405 | pr_devel("write to %lx\n", rec->ip); |
| 406 | 406 | ||
| 407 | if (probe_kernel_write((void *)ip, op, MCOUNT_INSN_SIZE * 2)) | 407 | if (probe_kernel_write((void *)ip, op, MCOUNT_INSN_SIZE * 2)) |
| 408 | return -EPERM; | 408 | return -EPERM; |
| @@ -442,7 +442,7 @@ __ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr) | |||
| 442 | return -EINVAL; | 442 | return -EINVAL; |
| 443 | } | 443 | } |
| 444 | 444 | ||
| 445 | pr_debug("write to %lx\n", rec->ip); | 445 | pr_devel("write to %lx\n", rec->ip); |
| 446 | 446 | ||
| 447 | if (probe_kernel_write((void *)ip, &op, MCOUNT_INSN_SIZE)) | 447 | if (probe_kernel_write((void *)ip, &op, MCOUNT_INSN_SIZE)) |
| 448 | return -EPERM; | 448 | return -EPERM; |
| @@ -594,7 +594,7 @@ void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr) | |||
| 594 | PPC_LONG "2b,4b\n" | 594 | PPC_LONG "2b,4b\n" |
| 595 | ".previous" | 595 | ".previous" |
| 596 | 596 | ||
| 597 | : [old] "=r" (old), [faulted] "=r" (faulted) | 597 | : [old] "=&r" (old), [faulted] "=r" (faulted) |
| 598 | : [parent] "r" (parent), [return_hooker] "r" (return_hooker) | 598 | : [parent] "r" (parent), [return_hooker] "r" (return_hooker) |
| 599 | : "memory" | 599 | : "memory" |
| 600 | ); | 600 | ); |
diff --git a/arch/powerpc/kernel/machine_kexec.c b/arch/powerpc/kernel/machine_kexec.c index d59e2b1bdcba..bb3d893a8353 100644 --- a/arch/powerpc/kernel/machine_kexec.c +++ b/arch/powerpc/kernel/machine_kexec.c | |||
| @@ -125,8 +125,8 @@ void __init reserve_crashkernel(void) | |||
| 125 | /* Crash kernel trumps memory limit */ | 125 | /* Crash kernel trumps memory limit */ |
| 126 | if (memory_limit && memory_limit <= crashk_res.end) { | 126 | if (memory_limit && memory_limit <= crashk_res.end) { |
| 127 | memory_limit = crashk_res.end + 1; | 127 | memory_limit = crashk_res.end + 1; |
| 128 | printk("Adjusted memory limit for crashkernel, now 0x%lx\n", | 128 | printk("Adjusted memory limit for crashkernel, now 0x%llx\n", |
| 129 | memory_limit); | 129 | (unsigned long long)memory_limit); |
| 130 | } | 130 | } |
| 131 | 131 | ||
| 132 | printk(KERN_INFO "Reserving %ldMB of memory at %ldMB " | 132 | printk(KERN_INFO "Reserving %ldMB of memory at %ldMB " |
diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c index 9c69e7e145c5..4fee63cb53ff 100644 --- a/arch/powerpc/kernel/pci-common.c +++ b/arch/powerpc/kernel/pci-common.c | |||
| @@ -1366,12 +1366,17 @@ static void __init pcibios_allocate_resources(int pass) | |||
| 1366 | 1366 | ||
| 1367 | for_each_pci_dev(dev) { | 1367 | for_each_pci_dev(dev) { |
| 1368 | pci_read_config_word(dev, PCI_COMMAND, &command); | 1368 | pci_read_config_word(dev, PCI_COMMAND, &command); |
| 1369 | for (idx = 0; idx < 6; idx++) { | 1369 | for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) { |
| 1370 | r = &dev->resource[idx]; | 1370 | r = &dev->resource[idx]; |
| 1371 | if (r->parent) /* Already allocated */ | 1371 | if (r->parent) /* Already allocated */ |
| 1372 | continue; | 1372 | continue; |
| 1373 | if (!r->flags || (r->flags & IORESOURCE_UNSET)) | 1373 | if (!r->flags || (r->flags & IORESOURCE_UNSET)) |
| 1374 | continue; /* Not assigned at all */ | 1374 | continue; /* Not assigned at all */ |
| 1375 | /* We only allocate ROMs on pass 1 just in case they | ||
| 1376 | * have been screwed up by firmware | ||
| 1377 | */ | ||
| 1378 | if (idx == PCI_ROM_RESOURCE ) | ||
| 1379 | disabled = 1; | ||
| 1375 | if (r->flags & IORESOURCE_IO) | 1380 | if (r->flags & IORESOURCE_IO) |
| 1376 | disabled = !(command & PCI_COMMAND_IO); | 1381 | disabled = !(command & PCI_COMMAND_IO); |
| 1377 | else | 1382 | else |
| @@ -1382,17 +1387,19 @@ static void __init pcibios_allocate_resources(int pass) | |||
| 1382 | if (pass) | 1387 | if (pass) |
| 1383 | continue; | 1388 | continue; |
| 1384 | r = &dev->resource[PCI_ROM_RESOURCE]; | 1389 | r = &dev->resource[PCI_ROM_RESOURCE]; |
| 1385 | if (r->flags & IORESOURCE_ROM_ENABLE) { | 1390 | if (r->flags) { |
| 1386 | /* Turn the ROM off, leave the resource region, | 1391 | /* Turn the ROM off, leave the resource region, |
| 1387 | * but keep it unregistered. | 1392 | * but keep it unregistered. |
| 1388 | */ | 1393 | */ |
| 1389 | u32 reg; | 1394 | u32 reg; |
| 1390 | pr_debug("PCI: Switching off ROM of %s\n", | ||
| 1391 | pci_name(dev)); | ||
| 1392 | r->flags &= ~IORESOURCE_ROM_ENABLE; | ||
| 1393 | pci_read_config_dword(dev, dev->rom_base_reg, ®); | 1395 | pci_read_config_dword(dev, dev->rom_base_reg, ®); |
| 1394 | pci_write_config_dword(dev, dev->rom_base_reg, | 1396 | if (reg & PCI_ROM_ADDRESS_ENABLE) { |
| 1395 | reg & ~PCI_ROM_ADDRESS_ENABLE); | 1397 | pr_debug("PCI: Switching off ROM of %s\n", |
| 1398 | pci_name(dev)); | ||
| 1399 | r->flags &= ~IORESOURCE_ROM_ENABLE; | ||
| 1400 | pci_write_config_dword(dev, dev->rom_base_reg, | ||
| 1401 | reg & ~PCI_ROM_ADDRESS_ENABLE); | ||
| 1402 | } | ||
| 1396 | } | 1403 | } |
| 1397 | } | 1404 | } |
| 1398 | } | 1405 | } |
diff --git a/arch/powerpc/kernel/pci_64.c b/arch/powerpc/kernel/pci_64.c index be574fc0d92f..96edb6f8babb 100644 --- a/arch/powerpc/kernel/pci_64.c +++ b/arch/powerpc/kernel/pci_64.c | |||
| @@ -64,7 +64,7 @@ static u32 get_int_prop(struct device_node *np, const char *name, u32 def) | |||
| 64 | return def; | 64 | return def; |
| 65 | } | 65 | } |
| 66 | 66 | ||
| 67 | static unsigned int pci_parse_of_flags(u32 addr0) | 67 | static unsigned int pci_parse_of_flags(u32 addr0, int bridge) |
| 68 | { | 68 | { |
| 69 | unsigned int flags = 0; | 69 | unsigned int flags = 0; |
| 70 | 70 | ||
| @@ -75,8 +75,17 @@ static unsigned int pci_parse_of_flags(u32 addr0) | |||
| 75 | if (addr0 & 0x40000000) | 75 | if (addr0 & 0x40000000) |
| 76 | flags |= IORESOURCE_PREFETCH | 76 | flags |= IORESOURCE_PREFETCH |
| 77 | | PCI_BASE_ADDRESS_MEM_PREFETCH; | 77 | | PCI_BASE_ADDRESS_MEM_PREFETCH; |
| 78 | /* Note: We don't know whether the ROM has been left enabled | ||
| 79 | * by the firmware or not. We mark it as disabled (ie, we do | ||
| 80 | * not set the IORESOURCE_ROM_ENABLE flag) for now rather than | ||
| 81 | * do a config space read, it will be force-enabled if needed | ||
| 82 | */ | ||
| 83 | if (!bridge && (addr0 & 0xff) == 0x30) | ||
| 84 | flags |= IORESOURCE_READONLY; | ||
| 78 | } else if (addr0 & 0x01000000) | 85 | } else if (addr0 & 0x01000000) |
| 79 | flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO; | 86 | flags = IORESOURCE_IO | PCI_BASE_ADDRESS_SPACE_IO; |
| 87 | if (flags) | ||
| 88 | flags |= IORESOURCE_SIZEALIGN; | ||
| 80 | return flags; | 89 | return flags; |
| 81 | } | 90 | } |
| 82 | 91 | ||
| @@ -95,7 +104,7 @@ static void pci_parse_of_addrs(struct device_node *node, struct pci_dev *dev) | |||
| 95 | return; | 104 | return; |
| 96 | pr_debug(" parse addresses (%d bytes) @ %p\n", proplen, addrs); | 105 | pr_debug(" parse addresses (%d bytes) @ %p\n", proplen, addrs); |
| 97 | for (; proplen >= 20; proplen -= 20, addrs += 5) { | 106 | for (; proplen >= 20; proplen -= 20, addrs += 5) { |
| 98 | flags = pci_parse_of_flags(addrs[0]); | 107 | flags = pci_parse_of_flags(addrs[0], 0); |
| 99 | if (!flags) | 108 | if (!flags) |
| 100 | continue; | 109 | continue; |
| 101 | base = of_read_number(&addrs[1], 2); | 110 | base = of_read_number(&addrs[1], 2); |
| @@ -293,7 +302,7 @@ void __devinit of_scan_pci_bridge(struct device_node *node, | |||
| 293 | } | 302 | } |
| 294 | i = 1; | 303 | i = 1; |
| 295 | for (; len >= 32; len -= 32, ranges += 8) { | 304 | for (; len >= 32; len -= 32, ranges += 8) { |
| 296 | flags = pci_parse_of_flags(ranges[0]); | 305 | flags = pci_parse_of_flags(ranges[0], 1); |
| 297 | size = of_read_number(&ranges[6], 2); | 306 | size = of_read_number(&ranges[6], 2); |
| 298 | if (flags == 0 || size == 0) | 307 | if (flags == 0 || size == 0) |
| 299 | continue; | 308 | continue; |
diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c index 5ec6a9e23933..ce01ff2474da 100644 --- a/arch/powerpc/kernel/prom.c +++ b/arch/powerpc/kernel/prom.c | |||
| @@ -426,7 +426,7 @@ static int __init early_parse_mem(char *p) | |||
| 426 | return 1; | 426 | return 1; |
| 427 | 427 | ||
| 428 | memory_limit = PAGE_ALIGN(memparse(p, &p)); | 428 | memory_limit = PAGE_ALIGN(memparse(p, &p)); |
| 429 | DBG("memory limit = 0x%lx\n", memory_limit); | 429 | DBG("memory limit = 0x%llx\n", (unsigned long long)memory_limit); |
| 430 | 430 | ||
| 431 | return 0; | 431 | return 0; |
| 432 | } | 432 | } |
| @@ -1160,7 +1160,7 @@ static inline void __init phyp_dump_reserve_mem(void) {} | |||
| 1160 | 1160 | ||
| 1161 | void __init early_init_devtree(void *params) | 1161 | void __init early_init_devtree(void *params) |
| 1162 | { | 1162 | { |
| 1163 | unsigned long limit; | 1163 | phys_addr_t limit; |
| 1164 | 1164 | ||
| 1165 | DBG(" -> early_init_devtree(%p)\n", params); | 1165 | DBG(" -> early_init_devtree(%p)\n", params); |
| 1166 | 1166 | ||
| @@ -1204,7 +1204,7 @@ void __init early_init_devtree(void *params) | |||
| 1204 | 1204 | ||
| 1205 | limit = memory_limit; | 1205 | limit = memory_limit; |
| 1206 | if (! limit) { | 1206 | if (! limit) { |
| 1207 | unsigned long memsize; | 1207 | phys_addr_t memsize; |
| 1208 | 1208 | ||
| 1209 | /* Ensure that total memory size is page-aligned, because | 1209 | /* Ensure that total memory size is page-aligned, because |
| 1210 | * otherwise mark_bootmem() gets upset. */ | 1210 | * otherwise mark_bootmem() gets upset. */ |
| @@ -1218,7 +1218,7 @@ void __init early_init_devtree(void *params) | |||
| 1218 | lmb_analyze(); | 1218 | lmb_analyze(); |
| 1219 | lmb_dump_all(); | 1219 | lmb_dump_all(); |
| 1220 | 1220 | ||
| 1221 | DBG("Phys. mem: %lx\n", lmb_phys_mem_size()); | 1221 | DBG("Phys. mem: %llx\n", lmb_phys_mem_size()); |
| 1222 | 1222 | ||
| 1223 | /* We may need to relocate the flat tree, do it now. | 1223 | /* We may need to relocate the flat tree, do it now. |
| 1224 | * FIXME .. and the initrd too? */ | 1224 | * FIXME .. and the initrd too? */ |
diff --git a/arch/powerpc/kernel/vmlinux.lds.S b/arch/powerpc/kernel/vmlinux.lds.S index a047a6cfca4d..8ef8a14abc95 100644 --- a/arch/powerpc/kernel/vmlinux.lds.S +++ b/arch/powerpc/kernel/vmlinux.lds.S | |||
| @@ -264,6 +264,7 @@ SECTIONS | |||
| 264 | *(.data.page_aligned) | 264 | *(.data.page_aligned) |
| 265 | } | 265 | } |
| 266 | 266 | ||
| 267 | . = ALIGN(L1_CACHE_BYTES); | ||
| 267 | .data.cacheline_aligned : AT(ADDR(.data.cacheline_aligned) - LOAD_OFFSET) { | 268 | .data.cacheline_aligned : AT(ADDR(.data.cacheline_aligned) - LOAD_OFFSET) { |
| 268 | *(.data.cacheline_aligned) | 269 | *(.data.cacheline_aligned) |
| 269 | } | 270 | } |
diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile index 8db35278a4b4..29b742b90f1f 100644 --- a/arch/powerpc/lib/Makefile +++ b/arch/powerpc/lib/Makefile | |||
| @@ -18,7 +18,6 @@ obj-$(CONFIG_PPC64) += copypage_64.o copyuser_64.o \ | |||
| 18 | memcpy_64.o usercopy_64.o mem_64.o string.o | 18 | memcpy_64.o usercopy_64.o mem_64.o string.o |
| 19 | obj-$(CONFIG_XMON) += sstep.o | 19 | obj-$(CONFIG_XMON) += sstep.o |
| 20 | obj-$(CONFIG_KPROBES) += sstep.o | 20 | obj-$(CONFIG_KPROBES) += sstep.o |
| 21 | obj-$(CONFIG_NOT_COHERENT_CACHE) += dma-noncoherent.o | ||
| 22 | 21 | ||
| 23 | ifeq ($(CONFIG_PPC64),y) | 22 | ifeq ($(CONFIG_PPC64),y) |
| 24 | obj-$(CONFIG_SMP) += locks.o | 23 | obj-$(CONFIG_SMP) += locks.o |
diff --git a/arch/powerpc/lib/dma-noncoherent.c b/arch/powerpc/lib/dma-noncoherent.c deleted file mode 100644 index 005a28d380af..000000000000 --- a/arch/powerpc/lib/dma-noncoherent.c +++ /dev/null | |||
| @@ -1,237 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * PowerPC version derived from arch/arm/mm/consistent.c | ||
| 3 | * Copyright (C) 2001 Dan Malek (dmalek@jlc.net) | ||
| 4 | * | ||
| 5 | * Copyright (C) 2000 Russell King | ||
| 6 | * | ||
| 7 | * Consistent memory allocators. Used for DMA devices that want to | ||
| 8 | * share uncached memory with the processor core. The function return | ||
| 9 | * is the virtual address and 'dma_handle' is the physical address. | ||
| 10 | * Mostly stolen from the ARM port, with some changes for PowerPC. | ||
| 11 | * -- Dan | ||
| 12 | * | ||
| 13 | * Reorganized to get rid of the arch-specific consistent_* functions | ||
| 14 | * and provide non-coherent implementations for the DMA API. -Matt | ||
| 15 | * | ||
| 16 | * Added in_interrupt() safe dma_alloc_coherent()/dma_free_coherent() | ||
| 17 | * implementation. This is pulled straight from ARM and barely | ||
| 18 | * modified. -Matt | ||
| 19 | * | ||
| 20 | * This program is free software; you can redistribute it and/or modify | ||
| 21 | * it under the terms of the GNU General Public License version 2 as | ||
| 22 | * published by the Free Software Foundation. | ||
| 23 | */ | ||
| 24 | |||
| 25 | #include <linux/sched.h> | ||
| 26 | #include <linux/kernel.h> | ||
| 27 | #include <linux/errno.h> | ||
| 28 | #include <linux/string.h> | ||
| 29 | #include <linux/types.h> | ||
| 30 | #include <linux/highmem.h> | ||
| 31 | #include <linux/dma-mapping.h> | ||
| 32 | #include <linux/vmalloc.h> | ||
| 33 | |||
| 34 | #include <asm/tlbflush.h> | ||
| 35 | |||
| 36 | /* | ||
| 37 | * Allocate DMA-coherent memory space and return both the kernel remapped | ||
| 38 | * virtual and bus address for that space. | ||
| 39 | */ | ||
| 40 | void * | ||
| 41 | __dma_alloc_coherent(size_t size, dma_addr_t *handle, gfp_t gfp) | ||
| 42 | { | ||
| 43 | struct page *page; | ||
| 44 | unsigned long order; | ||
| 45 | int i; | ||
| 46 | unsigned int nr_pages = PAGE_ALIGN(size)>>PAGE_SHIFT; | ||
| 47 | unsigned int array_size = nr_pages * sizeof(struct page *); | ||
| 48 | struct page **pages; | ||
| 49 | struct page *end; | ||
| 50 | u64 mask = 0x00ffffff, limit; /* ISA default */ | ||
| 51 | struct vm_struct *area; | ||
| 52 | |||
| 53 | BUG_ON(!mem_init_done); | ||
| 54 | size = PAGE_ALIGN(size); | ||
| 55 | limit = (mask + 1) & ~mask; | ||
| 56 | if (limit && size >= limit) { | ||
| 57 | printk(KERN_WARNING "coherent allocation too big (requested " | ||
| 58 | "%#x mask %#Lx)\n", size, mask); | ||
| 59 | return NULL; | ||
| 60 | } | ||
| 61 | |||
| 62 | order = get_order(size); | ||
| 63 | |||
| 64 | if (mask != 0xffffffff) | ||
| 65 | gfp |= GFP_DMA; | ||
| 66 | |||
| 67 | page = alloc_pages(gfp, order); | ||
| 68 | if (!page) | ||
| 69 | goto no_page; | ||
| 70 | |||
| 71 | end = page + (1 << order); | ||
| 72 | |||
| 73 | /* | ||
| 74 | * Invalidate any data that might be lurking in the | ||
| 75 | * kernel direct-mapped region for device DMA. | ||
| 76 | */ | ||
| 77 | { | ||
| 78 | unsigned long kaddr = (unsigned long)page_address(page); | ||
| 79 | memset(page_address(page), 0, size); | ||
| 80 | flush_dcache_range(kaddr, kaddr + size); | ||
| 81 | } | ||
| 82 | |||
| 83 | split_page(page, order); | ||
| 84 | |||
| 85 | /* | ||
| 86 | * Set the "dma handle" | ||
| 87 | */ | ||
| 88 | *handle = page_to_phys(page); | ||
| 89 | |||
| 90 | area = get_vm_area_caller(size, VM_IOREMAP, | ||
| 91 | __builtin_return_address(1)); | ||
| 92 | if (!area) | ||
| 93 | goto out_free_pages; | ||
| 94 | |||
| 95 | if (array_size > PAGE_SIZE) { | ||
| 96 | pages = vmalloc(array_size); | ||
| 97 | area->flags |= VM_VPAGES; | ||
| 98 | } else { | ||
| 99 | pages = kmalloc(array_size, GFP_KERNEL); | ||
| 100 | } | ||
| 101 | if (!pages) | ||
| 102 | goto out_free_area; | ||
| 103 | |||
| 104 | area->pages = pages; | ||
| 105 | area->nr_pages = nr_pages; | ||
| 106 | |||
| 107 | for (i = 0; i < nr_pages; i++) | ||
| 108 | pages[i] = page + i; | ||
| 109 | |||
| 110 | if (map_vm_area(area, pgprot_noncached(PAGE_KERNEL), &pages)) | ||
| 111 | goto out_unmap; | ||
| 112 | |||
| 113 | /* | ||
| 114 | * Free the otherwise unused pages. | ||
| 115 | */ | ||
| 116 | page += nr_pages; | ||
| 117 | while (page < end) { | ||
| 118 | __free_page(page); | ||
| 119 | page++; | ||
| 120 | } | ||
| 121 | |||
| 122 | return area->addr; | ||
| 123 | out_unmap: | ||
| 124 | vunmap(area->addr); | ||
| 125 | if (array_size > PAGE_SIZE) | ||
| 126 | vfree(pages); | ||
| 127 | else | ||
| 128 | kfree(pages); | ||
| 129 | goto out_free_pages; | ||
| 130 | out_free_area: | ||
| 131 | free_vm_area(area); | ||
| 132 | out_free_pages: | ||
| 133 | if (page) | ||
| 134 | __free_pages(page, order); | ||
| 135 | no_page: | ||
| 136 | return NULL; | ||
| 137 | } | ||
| 138 | EXPORT_SYMBOL(__dma_alloc_coherent); | ||
| 139 | |||
| 140 | /* | ||
| 141 | * free a page as defined by the above mapping. | ||
| 142 | */ | ||
| 143 | void __dma_free_coherent(size_t size, void *vaddr) | ||
| 144 | { | ||
| 145 | vfree(vaddr); | ||
| 146 | |||
| 147 | } | ||
| 148 | EXPORT_SYMBOL(__dma_free_coherent); | ||
| 149 | |||
| 150 | /* | ||
| 151 | * make an area consistent. | ||
| 152 | */ | ||
| 153 | void __dma_sync(void *vaddr, size_t size, int direction) | ||
| 154 | { | ||
| 155 | unsigned long start = (unsigned long)vaddr; | ||
| 156 | unsigned long end = start + size; | ||
| 157 | |||
| 158 | switch (direction) { | ||
| 159 | case DMA_NONE: | ||
| 160 | BUG(); | ||
| 161 | case DMA_FROM_DEVICE: | ||
| 162 | /* | ||
| 163 | * invalidate only when cache-line aligned otherwise there is | ||
| 164 | * the potential for discarding uncommitted data from the cache | ||
| 165 | */ | ||
| 166 | if ((start & (L1_CACHE_BYTES - 1)) || (size & (L1_CACHE_BYTES - 1))) | ||
| 167 | flush_dcache_range(start, end); | ||
| 168 | else | ||
| 169 | invalidate_dcache_range(start, end); | ||
| 170 | break; | ||
| 171 | case DMA_TO_DEVICE: /* writeback only */ | ||
| 172 | clean_dcache_range(start, end); | ||
| 173 | break; | ||
| 174 | case DMA_BIDIRECTIONAL: /* writeback and invalidate */ | ||
| 175 | flush_dcache_range(start, end); | ||
| 176 | break; | ||
| 177 | } | ||
| 178 | } | ||
| 179 | EXPORT_SYMBOL(__dma_sync); | ||
| 180 | |||
| 181 | #ifdef CONFIG_HIGHMEM | ||
| 182 | /* | ||
| 183 | * __dma_sync_page() implementation for systems using highmem. | ||
| 184 | * In this case, each page of a buffer must be kmapped/kunmapped | ||
| 185 | * in order to have a virtual address for __dma_sync(). This must | ||
| 186 | * not sleep so kmap_atomic()/kunmap_atomic() are used. | ||
| 187 | * | ||
| 188 | * Note: yes, it is possible and correct to have a buffer extend | ||
| 189 | * beyond the first page. | ||
| 190 | */ | ||
| 191 | static inline void __dma_sync_page_highmem(struct page *page, | ||
| 192 | unsigned long offset, size_t size, int direction) | ||
| 193 | { | ||
| 194 | size_t seg_size = min((size_t)(PAGE_SIZE - offset), size); | ||
| 195 | size_t cur_size = seg_size; | ||
| 196 | unsigned long flags, start, seg_offset = offset; | ||
| 197 | int nr_segs = 1 + ((size - seg_size) + PAGE_SIZE - 1)/PAGE_SIZE; | ||
| 198 | int seg_nr = 0; | ||
| 199 | |||
| 200 | local_irq_save(flags); | ||
| 201 | |||
| 202 | do { | ||
| 203 | start = (unsigned long)kmap_atomic(page + seg_nr, | ||
| 204 | KM_PPC_SYNC_PAGE) + seg_offset; | ||
| 205 | |||
| 206 | /* Sync this buffer segment */ | ||
| 207 | __dma_sync((void *)start, seg_size, direction); | ||
| 208 | kunmap_atomic((void *)start, KM_PPC_SYNC_PAGE); | ||
| 209 | seg_nr++; | ||
| 210 | |||
| 211 | /* Calculate next buffer segment size */ | ||
| 212 | seg_size = min((size_t)PAGE_SIZE, size - cur_size); | ||
| 213 | |||
| 214 | /* Add the segment size to our running total */ | ||
| 215 | cur_size += seg_size; | ||
| 216 | seg_offset = 0; | ||
| 217 | } while (seg_nr < nr_segs); | ||
| 218 | |||
| 219 | local_irq_restore(flags); | ||
| 220 | } | ||
| 221 | #endif /* CONFIG_HIGHMEM */ | ||
| 222 | |||
| 223 | /* | ||
| 224 | * __dma_sync_page makes memory consistent. identical to __dma_sync, but | ||
| 225 | * takes a struct page instead of a virtual address | ||
| 226 | */ | ||
| 227 | void __dma_sync_page(struct page *page, unsigned long offset, | ||
| 228 | size_t size, int direction) | ||
| 229 | { | ||
| 230 | #ifdef CONFIG_HIGHMEM | ||
| 231 | __dma_sync_page_highmem(page, offset, size, direction); | ||
| 232 | #else | ||
| 233 | unsigned long start = (unsigned long)page_address(page) + offset; | ||
| 234 | __dma_sync((void *)start, size, direction); | ||
| 235 | #endif | ||
| 236 | } | ||
| 237 | EXPORT_SYMBOL(__dma_sync_page); | ||
diff --git a/arch/powerpc/mm/Makefile b/arch/powerpc/mm/Makefile index 17290bcedc5e..b746f4ca4209 100644 --- a/arch/powerpc/mm/Makefile +++ b/arch/powerpc/mm/Makefile | |||
| @@ -26,3 +26,4 @@ obj-$(CONFIG_NEED_MULTIPLE_NODES) += numa.o | |||
| 26 | obj-$(CONFIG_PPC_MM_SLICES) += slice.o | 26 | obj-$(CONFIG_PPC_MM_SLICES) += slice.o |
| 27 | obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o | 27 | obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o |
| 28 | obj-$(CONFIG_PPC_SUBPAGE_PROT) += subpage-prot.o | 28 | obj-$(CONFIG_PPC_SUBPAGE_PROT) += subpage-prot.o |
| 29 | obj-$(CONFIG_NOT_COHERENT_CACHE) += dma-noncoherent.o | ||
diff --git a/arch/powerpc/mm/dma-noncoherent.c b/arch/powerpc/mm/dma-noncoherent.c new file mode 100644 index 000000000000..36692f5c9a76 --- /dev/null +++ b/arch/powerpc/mm/dma-noncoherent.c | |||
| @@ -0,0 +1,400 @@ | |||
| 1 | /* | ||
| 2 | * PowerPC version derived from arch/arm/mm/consistent.c | ||
| 3 | * Copyright (C) 2001 Dan Malek (dmalek@jlc.net) | ||
| 4 | * | ||
| 5 | * Copyright (C) 2000 Russell King | ||
| 6 | * | ||
| 7 | * Consistent memory allocators. Used for DMA devices that want to | ||
| 8 | * share uncached memory with the processor core. The function return | ||
| 9 | * is the virtual address and 'dma_handle' is the physical address. | ||
| 10 | * Mostly stolen from the ARM port, with some changes for PowerPC. | ||
| 11 | * -- Dan | ||
| 12 | * | ||
| 13 | * Reorganized to get rid of the arch-specific consistent_* functions | ||
| 14 | * and provide non-coherent implementations for the DMA API. -Matt | ||
| 15 | * | ||
| 16 | * Added in_interrupt() safe dma_alloc_coherent()/dma_free_coherent() | ||
| 17 | * implementation. This is pulled straight from ARM and barely | ||
| 18 | * modified. -Matt | ||
| 19 | * | ||
| 20 | * This program is free software; you can redistribute it and/or modify | ||
| 21 | * it under the terms of the GNU General Public License version 2 as | ||
| 22 | * published by the Free Software Foundation. | ||
| 23 | */ | ||
| 24 | |||
| 25 | #include <linux/sched.h> | ||
| 26 | #include <linux/kernel.h> | ||
| 27 | #include <linux/errno.h> | ||
| 28 | #include <linux/string.h> | ||
| 29 | #include <linux/types.h> | ||
| 30 | #include <linux/highmem.h> | ||
| 31 | #include <linux/dma-mapping.h> | ||
| 32 | |||
| 33 | #include <asm/tlbflush.h> | ||
| 34 | |||
| 35 | #include "mmu_decl.h" | ||
| 36 | |||
| 37 | /* | ||
| 38 | * This address range defaults to a value that is safe for all | ||
| 39 | * platforms which currently set CONFIG_NOT_COHERENT_CACHE. It | ||
| 40 | * can be further configured for specific applications under | ||
| 41 | * the "Advanced Setup" menu. -Matt | ||
| 42 | */ | ||
| 43 | #define CONSISTENT_BASE (IOREMAP_TOP) | ||
| 44 | #define CONSISTENT_END (CONSISTENT_BASE + CONFIG_CONSISTENT_SIZE) | ||
| 45 | #define CONSISTENT_OFFSET(x) (((unsigned long)(x) - CONSISTENT_BASE) >> PAGE_SHIFT) | ||
| 46 | |||
| 47 | /* | ||
| 48 | * This is the page table (2MB) covering uncached, DMA consistent allocations | ||
| 49 | */ | ||
| 50 | static DEFINE_SPINLOCK(consistent_lock); | ||
| 51 | |||
| 52 | /* | ||
| 53 | * VM region handling support. | ||
| 54 | * | ||
| 55 | * This should become something generic, handling VM region allocations for | ||
| 56 | * vmalloc and similar (ioremap, module space, etc). | ||
| 57 | * | ||
| 58 | * I envisage vmalloc()'s supporting vm_struct becoming: | ||
| 59 | * | ||
| 60 | * struct vm_struct { | ||
| 61 | * struct vm_region region; | ||
| 62 | * unsigned long flags; | ||
| 63 | * struct page **pages; | ||
| 64 | * unsigned int nr_pages; | ||
| 65 | * unsigned long phys_addr; | ||
| 66 | * }; | ||
| 67 | * | ||
| 68 | * get_vm_area() would then call vm_region_alloc with an appropriate | ||
| 69 | * struct vm_region head (eg): | ||
| 70 | * | ||
| 71 | * struct vm_region vmalloc_head = { | ||
| 72 | * .vm_list = LIST_HEAD_INIT(vmalloc_head.vm_list), | ||
| 73 | * .vm_start = VMALLOC_START, | ||
| 74 | * .vm_end = VMALLOC_END, | ||
| 75 | * }; | ||
| 76 | * | ||
| 77 | * However, vmalloc_head.vm_start is variable (typically, it is dependent on | ||
| 78 | * the amount of RAM found at boot time.) I would imagine that get_vm_area() | ||
| 79 | * would have to initialise this each time prior to calling vm_region_alloc(). | ||
| 80 | */ | ||
| 81 | struct ppc_vm_region { | ||
| 82 | struct list_head vm_list; | ||
| 83 | unsigned long vm_start; | ||
| 84 | unsigned long vm_end; | ||
| 85 | }; | ||
| 86 | |||
| 87 | static struct ppc_vm_region consistent_head = { | ||
| 88 | .vm_list = LIST_HEAD_INIT(consistent_head.vm_list), | ||
| 89 | .vm_start = CONSISTENT_BASE, | ||
| 90 | .vm_end = CONSISTENT_END, | ||
| 91 | }; | ||
| 92 | |||
| 93 | static struct ppc_vm_region * | ||
| 94 | ppc_vm_region_alloc(struct ppc_vm_region *head, size_t size, gfp_t gfp) | ||
| 95 | { | ||
| 96 | unsigned long addr = head->vm_start, end = head->vm_end - size; | ||
| 97 | unsigned long flags; | ||
| 98 | struct ppc_vm_region *c, *new; | ||
| 99 | |||
| 100 | new = kmalloc(sizeof(struct ppc_vm_region), gfp); | ||
| 101 | if (!new) | ||
| 102 | goto out; | ||
| 103 | |||
| 104 | spin_lock_irqsave(&consistent_lock, flags); | ||
| 105 | |||
| 106 | list_for_each_entry(c, &head->vm_list, vm_list) { | ||
| 107 | if ((addr + size) < addr) | ||
| 108 | goto nospc; | ||
| 109 | if ((addr + size) <= c->vm_start) | ||
| 110 | goto found; | ||
| 111 | addr = c->vm_end; | ||
| 112 | if (addr > end) | ||
| 113 | goto nospc; | ||
| 114 | } | ||
| 115 | |||
| 116 | found: | ||
| 117 | /* | ||
| 118 | * Insert this entry _before_ the one we found. | ||
| 119 | */ | ||
| 120 | list_add_tail(&new->vm_list, &c->vm_list); | ||
| 121 | new->vm_start = addr; | ||
| 122 | new->vm_end = addr + size; | ||
| 123 | |||
| 124 | spin_unlock_irqrestore(&consistent_lock, flags); | ||
| 125 | return new; | ||
| 126 | |||
| 127 | nospc: | ||
| 128 | spin_unlock_irqrestore(&consistent_lock, flags); | ||
| 129 | kfree(new); | ||
| 130 | out: | ||
| 131 | return NULL; | ||
| 132 | } | ||
| 133 | |||
| 134 | static struct ppc_vm_region *ppc_vm_region_find(struct ppc_vm_region *head, unsigned long addr) | ||
| 135 | { | ||
| 136 | struct ppc_vm_region *c; | ||
| 137 | |||
| 138 | list_for_each_entry(c, &head->vm_list, vm_list) { | ||
| 139 | if (c->vm_start == addr) | ||
| 140 | goto out; | ||
| 141 | } | ||
| 142 | c = NULL; | ||
| 143 | out: | ||
| 144 | return c; | ||
| 145 | } | ||
| 146 | |||
| 147 | /* | ||
| 148 | * Allocate DMA-coherent memory space and return both the kernel remapped | ||
| 149 | * virtual and bus address for that space. | ||
| 150 | */ | ||
| 151 | void * | ||
| 152 | __dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp) | ||
| 153 | { | ||
| 154 | struct page *page; | ||
| 155 | struct ppc_vm_region *c; | ||
| 156 | unsigned long order; | ||
| 157 | u64 mask = ISA_DMA_THRESHOLD, limit; | ||
| 158 | |||
| 159 | if (dev) { | ||
| 160 | mask = dev->coherent_dma_mask; | ||
| 161 | |||
| 162 | /* | ||
| 163 | * Sanity check the DMA mask - it must be non-zero, and | ||
| 164 | * must be able to be satisfied by a DMA allocation. | ||
| 165 | */ | ||
| 166 | if (mask == 0) { | ||
| 167 | dev_warn(dev, "coherent DMA mask is unset\n"); | ||
| 168 | goto no_page; | ||
| 169 | } | ||
| 170 | |||
| 171 | if ((~mask) & ISA_DMA_THRESHOLD) { | ||
| 172 | dev_warn(dev, "coherent DMA mask %#llx is smaller " | ||
| 173 | "than system GFP_DMA mask %#llx\n", | ||
| 174 | mask, (unsigned long long)ISA_DMA_THRESHOLD); | ||
| 175 | goto no_page; | ||
| 176 | } | ||
| 177 | } | ||
| 178 | |||
| 179 | |||
| 180 | size = PAGE_ALIGN(size); | ||
| 181 | limit = (mask + 1) & ~mask; | ||
| 182 | if ((limit && size >= limit) || | ||
| 183 | size >= (CONSISTENT_END - CONSISTENT_BASE)) { | ||
| 184 | printk(KERN_WARNING "coherent allocation too big (requested %#x mask %#Lx)\n", | ||
| 185 | size, mask); | ||
| 186 | return NULL; | ||
| 187 | } | ||
| 188 | |||
| 189 | order = get_order(size); | ||
| 190 | |||
| 191 | /* Might be useful if we ever have a real legacy DMA zone... */ | ||
| 192 | if (mask != 0xffffffff) | ||
| 193 | gfp |= GFP_DMA; | ||
| 194 | |||
| 195 | page = alloc_pages(gfp, order); | ||
| 196 | if (!page) | ||
| 197 | goto no_page; | ||
| 198 | |||
| 199 | /* | ||
| 200 | * Invalidate any data that might be lurking in the | ||
| 201 | * kernel direct-mapped region for device DMA. | ||
| 202 | */ | ||
| 203 | { | ||
| 204 | unsigned long kaddr = (unsigned long)page_address(page); | ||
| 205 | memset(page_address(page), 0, size); | ||
| 206 | flush_dcache_range(kaddr, kaddr + size); | ||
| 207 | } | ||
| 208 | |||
| 209 | /* | ||
| 210 | * Allocate a virtual address in the consistent mapping region. | ||
| 211 | */ | ||
| 212 | c = ppc_vm_region_alloc(&consistent_head, size, | ||
| 213 | gfp & ~(__GFP_DMA | __GFP_HIGHMEM)); | ||
| 214 | if (c) { | ||
| 215 | unsigned long vaddr = c->vm_start; | ||
| 216 | struct page *end = page + (1 << order); | ||
| 217 | |||
| 218 | split_page(page, order); | ||
| 219 | |||
| 220 | /* | ||
| 221 | * Set the "dma handle" | ||
| 222 | */ | ||
| 223 | *handle = page_to_phys(page); | ||
| 224 | |||
| 225 | do { | ||
| 226 | SetPageReserved(page); | ||
| 227 | map_page(vaddr, page_to_phys(page), | ||
| 228 | pgprot_noncached(PAGE_KERNEL)); | ||
| 229 | page++; | ||
| 230 | vaddr += PAGE_SIZE; | ||
| 231 | } while (size -= PAGE_SIZE); | ||
| 232 | |||
| 233 | /* | ||
| 234 | * Free the otherwise unused pages. | ||
| 235 | */ | ||
| 236 | while (page < end) { | ||
| 237 | __free_page(page); | ||
| 238 | page++; | ||
| 239 | } | ||
| 240 | |||
| 241 | return (void *)c->vm_start; | ||
| 242 | } | ||
| 243 | |||
| 244 | if (page) | ||
| 245 | __free_pages(page, order); | ||
| 246 | no_page: | ||
| 247 | return NULL; | ||
| 248 | } | ||
| 249 | EXPORT_SYMBOL(__dma_alloc_coherent); | ||
| 250 | |||
| 251 | /* | ||
| 252 | * free a page as defined by the above mapping. | ||
| 253 | */ | ||
| 254 | void __dma_free_coherent(size_t size, void *vaddr) | ||
| 255 | { | ||
| 256 | struct ppc_vm_region *c; | ||
| 257 | unsigned long flags, addr; | ||
| 258 | |||
| 259 | size = PAGE_ALIGN(size); | ||
| 260 | |||
| 261 | spin_lock_irqsave(&consistent_lock, flags); | ||
| 262 | |||
| 263 | c = ppc_vm_region_find(&consistent_head, (unsigned long)vaddr); | ||
| 264 | if (!c) | ||
| 265 | goto no_area; | ||
| 266 | |||
| 267 | if ((c->vm_end - c->vm_start) != size) { | ||
| 268 | printk(KERN_ERR "%s: freeing wrong coherent size (%ld != %d)\n", | ||
| 269 | __func__, c->vm_end - c->vm_start, size); | ||
| 270 | dump_stack(); | ||
| 271 | size = c->vm_end - c->vm_start; | ||
| 272 | } | ||
| 273 | |||
| 274 | addr = c->vm_start; | ||
| 275 | do { | ||
| 276 | pte_t *ptep; | ||
| 277 | unsigned long pfn; | ||
| 278 | |||
| 279 | ptep = pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(addr), | ||
| 280 | addr), | ||
| 281 | addr), | ||
| 282 | addr); | ||
| 283 | if (!pte_none(*ptep) && pte_present(*ptep)) { | ||
| 284 | pfn = pte_pfn(*ptep); | ||
| 285 | pte_clear(&init_mm, addr, ptep); | ||
| 286 | if (pfn_valid(pfn)) { | ||
| 287 | struct page *page = pfn_to_page(pfn); | ||
| 288 | |||
| 289 | ClearPageReserved(page); | ||
| 290 | __free_page(page); | ||
| 291 | } | ||
| 292 | } | ||
| 293 | addr += PAGE_SIZE; | ||
| 294 | } while (size -= PAGE_SIZE); | ||
| 295 | |||
| 296 | flush_tlb_kernel_range(c->vm_start, c->vm_end); | ||
| 297 | |||
| 298 | list_del(&c->vm_list); | ||
| 299 | |||
| 300 | spin_unlock_irqrestore(&consistent_lock, flags); | ||
| 301 | |||
| 302 | kfree(c); | ||
| 303 | return; | ||
| 304 | |||
| 305 | no_area: | ||
| 306 | spin_unlock_irqrestore(&consistent_lock, flags); | ||
| 307 | printk(KERN_ERR "%s: trying to free invalid coherent area: %p\n", | ||
| 308 | __func__, vaddr); | ||
| 309 | dump_stack(); | ||
| 310 | } | ||
| 311 | EXPORT_SYMBOL(__dma_free_coherent); | ||
| 312 | |||
| 313 | /* | ||
| 314 | * make an area consistent. | ||
| 315 | */ | ||
| 316 | void __dma_sync(void *vaddr, size_t size, int direction) | ||
| 317 | { | ||
| 318 | unsigned long start = (unsigned long)vaddr; | ||
| 319 | unsigned long end = start + size; | ||
| 320 | |||
| 321 | switch (direction) { | ||
| 322 | case DMA_NONE: | ||
| 323 | BUG(); | ||
| 324 | case DMA_FROM_DEVICE: | ||
| 325 | /* | ||
| 326 | * invalidate only when cache-line aligned otherwise there is | ||
| 327 | * the potential for discarding uncommitted data from the cache | ||
| 328 | */ | ||
| 329 | if ((start & (L1_CACHE_BYTES - 1)) || (size & (L1_CACHE_BYTES - 1))) | ||
| 330 | flush_dcache_range(start, end); | ||
| 331 | else | ||
| 332 | invalidate_dcache_range(start, end); | ||
| 333 | break; | ||
| 334 | case DMA_TO_DEVICE: /* writeback only */ | ||
| 335 | clean_dcache_range(start, end); | ||
| 336 | break; | ||
| 337 | case DMA_BIDIRECTIONAL: /* writeback and invalidate */ | ||
| 338 | flush_dcache_range(start, end); | ||
| 339 | break; | ||
| 340 | } | ||
| 341 | } | ||
| 342 | EXPORT_SYMBOL(__dma_sync); | ||
| 343 | |||
| 344 | #ifdef CONFIG_HIGHMEM | ||
| 345 | /* | ||
| 346 | * __dma_sync_page() implementation for systems using highmem. | ||
| 347 | * In this case, each page of a buffer must be kmapped/kunmapped | ||
| 348 | * in order to have a virtual address for __dma_sync(). This must | ||
| 349 | * not sleep so kmap_atomic()/kunmap_atomic() are used. | ||
| 350 | * | ||
| 351 | * Note: yes, it is possible and correct to have a buffer extend | ||
| 352 | * beyond the first page. | ||
| 353 | */ | ||
| 354 | static inline void __dma_sync_page_highmem(struct page *page, | ||
| 355 | unsigned long offset, size_t size, int direction) | ||
| 356 | { | ||
| 357 | size_t seg_size = min((size_t)(PAGE_SIZE - offset), size); | ||
| 358 | size_t cur_size = seg_size; | ||
| 359 | unsigned long flags, start, seg_offset = offset; | ||
| 360 | int nr_segs = 1 + ((size - seg_size) + PAGE_SIZE - 1)/PAGE_SIZE; | ||
| 361 | int seg_nr = 0; | ||
| 362 | |||
| 363 | local_irq_save(flags); | ||
| 364 | |||
| 365 | do { | ||
| 366 | start = (unsigned long)kmap_atomic(page + seg_nr, | ||
| 367 | KM_PPC_SYNC_PAGE) + seg_offset; | ||
| 368 | |||
| 369 | /* Sync this buffer segment */ | ||
| 370 | __dma_sync((void *)start, seg_size, direction); | ||
| 371 | kunmap_atomic((void *)start, KM_PPC_SYNC_PAGE); | ||
| 372 | seg_nr++; | ||
| 373 | |||
| 374 | /* Calculate next buffer segment size */ | ||
| 375 | seg_size = min((size_t)PAGE_SIZE, size - cur_size); | ||
| 376 | |||
| 377 | /* Add the segment size to our running total */ | ||
| 378 | cur_size += seg_size; | ||
| 379 | seg_offset = 0; | ||
| 380 | } while (seg_nr < nr_segs); | ||
| 381 | |||
| 382 | local_irq_restore(flags); | ||
| 383 | } | ||
| 384 | #endif /* CONFIG_HIGHMEM */ | ||
| 385 | |||
| 386 | /* | ||
| 387 | * __dma_sync_page makes memory consistent. identical to __dma_sync, but | ||
| 388 | * takes a struct page instead of a virtual address | ||
| 389 | */ | ||
| 390 | void __dma_sync_page(struct page *page, unsigned long offset, | ||
| 391 | size_t size, int direction) | ||
| 392 | { | ||
| 393 | #ifdef CONFIG_HIGHMEM | ||
| 394 | __dma_sync_page_highmem(page, offset, size, direction); | ||
| 395 | #else | ||
| 396 | unsigned long start = (unsigned long)page_address(page) + offset; | ||
| 397 | __dma_sync((void *)start, size, direction); | ||
| 398 | #endif | ||
| 399 | } | ||
| 400 | EXPORT_SYMBOL(__dma_sync_page); | ||
diff --git a/arch/powerpc/mm/init_32.c b/arch/powerpc/mm/init_32.c index 666a5e8a5be1..3de6a0d93824 100644 --- a/arch/powerpc/mm/init_32.c +++ b/arch/powerpc/mm/init_32.c | |||
| @@ -168,12 +168,8 @@ void __init MMU_init(void) | |||
| 168 | ppc_md.progress("MMU:mapin", 0x301); | 168 | ppc_md.progress("MMU:mapin", 0x301); |
| 169 | mapin_ram(); | 169 | mapin_ram(); |
| 170 | 170 | ||
| 171 | #ifdef CONFIG_HIGHMEM | 171 | /* Initialize early top-down ioremap allocator */ |
| 172 | ioremap_base = PKMAP_BASE; | 172 | ioremap_bot = IOREMAP_TOP; |
| 173 | #else | ||
| 174 | ioremap_base = 0xfe000000UL; /* for now, could be 0xfffff000 */ | ||
| 175 | #endif /* CONFIG_HIGHMEM */ | ||
| 176 | ioremap_bot = ioremap_base; | ||
| 177 | 173 | ||
| 178 | /* Map in I/O resources */ | 174 | /* Map in I/O resources */ |
| 179 | if (ppc_md.progress) | 175 | if (ppc_md.progress) |
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c index f668fa9ba804..579382c163a9 100644 --- a/arch/powerpc/mm/mem.c +++ b/arch/powerpc/mm/mem.c | |||
| @@ -57,7 +57,7 @@ | |||
| 57 | 57 | ||
| 58 | int init_bootmem_done; | 58 | int init_bootmem_done; |
| 59 | int mem_init_done; | 59 | int mem_init_done; |
| 60 | unsigned long memory_limit; | 60 | phys_addr_t memory_limit; |
| 61 | 61 | ||
| 62 | #ifdef CONFIG_HIGHMEM | 62 | #ifdef CONFIG_HIGHMEM |
| 63 | pte_t *kmap_pte; | 63 | pte_t *kmap_pte; |
| @@ -380,6 +380,23 @@ void __init mem_init(void) | |||
| 380 | bsssize >> 10, | 380 | bsssize >> 10, |
| 381 | initsize >> 10); | 381 | initsize >> 10); |
| 382 | 382 | ||
| 383 | #ifdef CONFIG_PPC32 | ||
| 384 | pr_info("Kernel virtual memory layout:\n"); | ||
| 385 | pr_info(" * 0x%08lx..0x%08lx : fixmap\n", FIXADDR_START, FIXADDR_TOP); | ||
| 386 | #ifdef CONFIG_HIGHMEM | ||
| 387 | pr_info(" * 0x%08lx..0x%08lx : highmem PTEs\n", | ||
| 388 | PKMAP_BASE, PKMAP_ADDR(LAST_PKMAP)); | ||
| 389 | #endif /* CONFIG_HIGHMEM */ | ||
| 390 | #ifdef CONFIG_NOT_COHERENT_CACHE | ||
| 391 | pr_info(" * 0x%08lx..0x%08lx : consistent mem\n", | ||
| 392 | IOREMAP_TOP, IOREMAP_TOP + CONFIG_CONSISTENT_SIZE); | ||
| 393 | #endif /* CONFIG_NOT_COHERENT_CACHE */ | ||
| 394 | pr_info(" * 0x%08lx..0x%08lx : early ioremap\n", | ||
| 395 | ioremap_bot, IOREMAP_TOP); | ||
| 396 | pr_info(" * 0x%08lx..0x%08lx : vmalloc & ioremap\n", | ||
| 397 | VMALLOC_START, VMALLOC_END); | ||
| 398 | #endif /* CONFIG_PPC32 */ | ||
| 399 | |||
| 383 | mem_init_done = 1; | 400 | mem_init_done = 1; |
| 384 | } | 401 | } |
| 385 | 402 | ||
diff --git a/arch/powerpc/mm/mmu_context_nohash.c b/arch/powerpc/mm/mmu_context_nohash.c index a70e311bd457..030d0005b4d2 100644 --- a/arch/powerpc/mm/mmu_context_nohash.c +++ b/arch/powerpc/mm/mmu_context_nohash.c | |||
| @@ -127,12 +127,12 @@ static unsigned int steal_context_up(unsigned int id) | |||
| 127 | 127 | ||
| 128 | pr_debug("[%d] steal context %d from mm @%p\n", cpu, id, mm); | 128 | pr_debug("[%d] steal context %d from mm @%p\n", cpu, id, mm); |
| 129 | 129 | ||
| 130 | /* Mark this mm has having no context anymore */ | ||
| 131 | mm->context.id = MMU_NO_CONTEXT; | ||
| 132 | |||
| 133 | /* Flush the TLB for that context */ | 130 | /* Flush the TLB for that context */ |
| 134 | local_flush_tlb_mm(mm); | 131 | local_flush_tlb_mm(mm); |
| 135 | 132 | ||
| 133 | /* Mark this mm has having no context anymore */ | ||
| 134 | mm->context.id = MMU_NO_CONTEXT; | ||
| 135 | |||
| 136 | /* XXX This clear should ultimately be part of local_flush_tlb_mm */ | 136 | /* XXX This clear should ultimately be part of local_flush_tlb_mm */ |
| 137 | __clear_bit(id, stale_map[cpu]); | 137 | __clear_bit(id, stale_map[cpu]); |
| 138 | 138 | ||
diff --git a/arch/powerpc/mm/pgtable.c b/arch/powerpc/mm/pgtable.c index f5c6fd42265c..ae1d67cc090c 100644 --- a/arch/powerpc/mm/pgtable.c +++ b/arch/powerpc/mm/pgtable.c | |||
| @@ -219,7 +219,8 @@ int ptep_set_access_flags(struct vm_area_struct *vma, unsigned long address, | |||
| 219 | entry = do_dcache_icache_coherency(entry); | 219 | entry = do_dcache_icache_coherency(entry); |
| 220 | changed = !pte_same(*(ptep), entry); | 220 | changed = !pte_same(*(ptep), entry); |
| 221 | if (changed) { | 221 | if (changed) { |
| 222 | assert_pte_locked(vma->vm_mm, address); | 222 | if (!(vma->vm_flags & VM_HUGETLB)) |
| 223 | assert_pte_locked(vma->vm_mm, address); | ||
| 223 | __ptep_set_access_flags(ptep, entry); | 224 | __ptep_set_access_flags(ptep, entry); |
| 224 | flush_tlb_page_nohash(vma, address); | 225 | flush_tlb_page_nohash(vma, address); |
| 225 | } | 226 | } |
diff --git a/arch/powerpc/mm/pgtable_32.c b/arch/powerpc/mm/pgtable_32.c index 430d0908fa50..5422169626ba 100644 --- a/arch/powerpc/mm/pgtable_32.c +++ b/arch/powerpc/mm/pgtable_32.c | |||
| @@ -399,8 +399,6 @@ void kernel_map_pages(struct page *page, int numpages, int enable) | |||
| 399 | #endif /* CONFIG_DEBUG_PAGEALLOC */ | 399 | #endif /* CONFIG_DEBUG_PAGEALLOC */ |
| 400 | 400 | ||
| 401 | static int fixmaps; | 401 | static int fixmaps; |
| 402 | unsigned long FIXADDR_TOP = (-PAGE_SIZE); | ||
| 403 | EXPORT_SYMBOL(FIXADDR_TOP); | ||
| 404 | 402 | ||
| 405 | void __set_fixmap (enum fixed_addresses idx, phys_addr_t phys, pgprot_t flags) | 403 | void __set_fixmap (enum fixed_addresses idx, phys_addr_t phys, pgprot_t flags) |
| 406 | { | 404 | { |
diff --git a/arch/powerpc/oprofile/op_model_power4.c b/arch/powerpc/oprofile/op_model_power4.c index 3e3d91f536e0..80774092db77 100644 --- a/arch/powerpc/oprofile/op_model_power4.c +++ b/arch/powerpc/oprofile/op_model_power4.c | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | static unsigned long reset_value[OP_MAX_COUNTER]; | 26 | static unsigned long reset_value[OP_MAX_COUNTER]; |
| 27 | 27 | ||
| 28 | static int oprofile_running; | 28 | static int oprofile_running; |
| 29 | static int use_slot_nums; | ||
| 29 | 30 | ||
| 30 | /* mmcr values are set in power4_reg_setup, used in power4_cpu_setup */ | 31 | /* mmcr values are set in power4_reg_setup, used in power4_cpu_setup */ |
| 31 | static u32 mmcr0_val; | 32 | static u32 mmcr0_val; |
| @@ -61,6 +62,12 @@ static int power4_reg_setup(struct op_counter_config *ctr, | |||
| 61 | else | 62 | else |
| 62 | mmcr0_val |= MMCR0_PROBLEM_DISABLE; | 63 | mmcr0_val |= MMCR0_PROBLEM_DISABLE; |
| 63 | 64 | ||
| 65 | if (__is_processor(PV_POWER4) || __is_processor(PV_POWER4p) || | ||
| 66 | __is_processor(PV_970) || __is_processor(PV_970FX) || | ||
| 67 | __is_processor(PV_970MP) || __is_processor(PV_970GX) || | ||
| 68 | __is_processor(PV_POWER5) || __is_processor(PV_POWER5p)) | ||
| 69 | use_slot_nums = 1; | ||
| 70 | |||
| 64 | return 0; | 71 | return 0; |
| 65 | } | 72 | } |
| 66 | 73 | ||
| @@ -206,7 +213,7 @@ static unsigned long get_pc(struct pt_regs *regs) | |||
| 206 | 213 | ||
| 207 | mmcra = mfspr(SPRN_MMCRA); | 214 | mmcra = mfspr(SPRN_MMCRA); |
| 208 | 215 | ||
| 209 | if (mmcra & MMCRA_SAMPLE_ENABLE) { | 216 | if (use_slot_nums && (mmcra & MMCRA_SAMPLE_ENABLE)) { |
| 210 | slot = ((mmcra & MMCRA_SLOT) >> MMCRA_SLOT_SHIFT); | 217 | slot = ((mmcra & MMCRA_SLOT) >> MMCRA_SLOT_SHIFT); |
| 211 | if (slot > 1) | 218 | if (slot > 1) |
| 212 | pc += 4 * (slot - 1); | 219 | pc += 4 * (slot - 1); |
diff --git a/arch/powerpc/platforms/40x/Kconfig b/arch/powerpc/platforms/40x/Kconfig index 14e027f5be66..f39c953d5353 100644 --- a/arch/powerpc/platforms/40x/Kconfig +++ b/arch/powerpc/platforms/40x/Kconfig | |||
| @@ -153,6 +153,7 @@ config 405GPR | |||
| 153 | 153 | ||
| 154 | config XILINX_VIRTEX | 154 | config XILINX_VIRTEX |
| 155 | bool | 155 | bool |
| 156 | select DEFAULT_UIMAGE | ||
| 156 | 157 | ||
| 157 | config XILINX_VIRTEX_II_PRO | 158 | config XILINX_VIRTEX_II_PRO |
| 158 | bool | 159 | bool |
diff --git a/arch/powerpc/platforms/44x/Kconfig b/arch/powerpc/platforms/44x/Kconfig index bf5c7ff2e6e5..0d83a6a0397d 100644 --- a/arch/powerpc/platforms/44x/Kconfig +++ b/arch/powerpc/platforms/44x/Kconfig | |||
| @@ -246,6 +246,7 @@ config IBM440EP_ERR42 | |||
| 246 | # Xilinx specific config options. | 246 | # Xilinx specific config options. |
| 247 | config XILINX_VIRTEX | 247 | config XILINX_VIRTEX |
| 248 | bool | 248 | bool |
| 249 | select DEFAULT_UIMAGE | ||
| 249 | 250 | ||
| 250 | # Xilinx Virtex 5 FXT FPGA architecture, selected by a Xilinx board above | 251 | # Xilinx Virtex 5 FXT FPGA architecture, selected by a Xilinx board above |
| 251 | config XILINX_VIRTEX_5_FXT | 252 | config XILINX_VIRTEX_5_FXT |
diff --git a/arch/powerpc/platforms/cell/ras.c b/arch/powerpc/platforms/cell/ras.c index 5f961c464cc4..296b5268754e 100644 --- a/arch/powerpc/platforms/cell/ras.c +++ b/arch/powerpc/platforms/cell/ras.c | |||
| @@ -122,12 +122,23 @@ static int __init cbe_ptcal_enable_on_node(int nid, int order) | |||
| 122 | 122 | ||
| 123 | area->nid = nid; | 123 | area->nid = nid; |
| 124 | area->order = order; | 124 | area->order = order; |
| 125 | area->pages = alloc_pages_node(area->nid, GFP_KERNEL, area->order); | 125 | area->pages = alloc_pages_node(area->nid, GFP_KERNEL | GFP_THISNODE, |
| 126 | area->order); | ||
| 126 | 127 | ||
| 127 | if (!area->pages) | 128 | if (!area->pages) { |
| 129 | printk(KERN_WARNING "%s: no page on node %d\n", | ||
| 130 | __func__, area->nid); | ||
| 128 | goto out_free_area; | 131 | goto out_free_area; |
| 132 | } | ||
| 129 | 133 | ||
| 130 | addr = __pa(page_address(area->pages)); | 134 | /* |
| 135 | * We move the ptcal area to the middle of the allocated | ||
| 136 | * page, in order to avoid prefetches in memcpy and similar | ||
| 137 | * functions stepping on it. | ||
| 138 | */ | ||
| 139 | addr = __pa(page_address(area->pages)) + (PAGE_SIZE >> 1); | ||
| 140 | printk(KERN_DEBUG "%s: enabling PTCAL on node %d address=0x%016lx\n", | ||
| 141 | __func__, area->nid, addr); | ||
| 131 | 142 | ||
| 132 | ret = -EIO; | 143 | ret = -EIO; |
| 133 | if (rtas_call(ptcal_start_tok, 3, 1, NULL, area->nid, | 144 | if (rtas_call(ptcal_start_tok, 3, 1, NULL, area->nid, |
diff --git a/arch/powerpc/platforms/iseries/Kconfig b/arch/powerpc/platforms/iseries/Kconfig index 647e87787437..47a20cfb4486 100644 --- a/arch/powerpc/platforms/iseries/Kconfig +++ b/arch/powerpc/platforms/iseries/Kconfig | |||
| @@ -17,6 +17,7 @@ config VIODASD | |||
| 17 | 17 | ||
| 18 | config VIOCD | 18 | config VIOCD |
| 19 | tristate "iSeries Virtual I/O CD support" | 19 | tristate "iSeries Virtual I/O CD support" |
| 20 | depends on BLOCK | ||
| 20 | select VIOPATH | 21 | select VIOPATH |
| 21 | help | 22 | help |
| 22 | If you are running Linux on an IBM iSeries system and you want to | 23 | If you are running Linux on an IBM iSeries system and you want to |
diff --git a/arch/powerpc/platforms/iseries/iommu.c b/arch/powerpc/platforms/iseries/iommu.c index ff43f1fd8343..40219823d9b0 100644 --- a/arch/powerpc/platforms/iseries/iommu.c +++ b/arch/powerpc/platforms/iseries/iommu.c | |||
| @@ -174,9 +174,10 @@ static struct iommu_table *iommu_table_find(struct iommu_table * tbl) | |||
| 174 | } | 174 | } |
| 175 | 175 | ||
| 176 | 176 | ||
| 177 | void iommu_devnode_init_iSeries(struct pci_dev *pdev, struct device_node *dn) | 177 | static void pci_dma_dev_setup_iseries(struct pci_dev *pdev) |
| 178 | { | 178 | { |
| 179 | struct iommu_table *tbl; | 179 | struct iommu_table *tbl; |
| 180 | struct device_node *dn = pdev->sysdata; | ||
| 180 | struct pci_dn *pdn = PCI_DN(dn); | 181 | struct pci_dn *pdn = PCI_DN(dn); |
| 181 | const u32 *lsn = of_get_property(dn, "linux,logical-slot-number", NULL); | 182 | const u32 *lsn = of_get_property(dn, "linux,logical-slot-number", NULL); |
| 182 | 183 | ||
| @@ -194,6 +195,8 @@ void iommu_devnode_init_iSeries(struct pci_dev *pdev, struct device_node *dn) | |||
| 194 | kfree(tbl); | 195 | kfree(tbl); |
| 195 | pdev->dev.archdata.dma_data = pdn->iommu_table; | 196 | pdev->dev.archdata.dma_data = pdn->iommu_table; |
| 196 | } | 197 | } |
| 198 | #else | ||
| 199 | #define pci_dma_dev_setup_iseries NULL | ||
| 197 | #endif | 200 | #endif |
| 198 | 201 | ||
| 199 | static struct iommu_table veth_iommu_table; | 202 | static struct iommu_table veth_iommu_table; |
| @@ -251,5 +254,6 @@ void iommu_init_early_iSeries(void) | |||
| 251 | ppc_md.tce_build = tce_build_iSeries; | 254 | ppc_md.tce_build = tce_build_iSeries; |
| 252 | ppc_md.tce_free = tce_free_iSeries; | 255 | ppc_md.tce_free = tce_free_iSeries; |
| 253 | 256 | ||
| 257 | ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_iseries; | ||
| 254 | set_pci_dma_ops(&dma_iommu_ops); | 258 | set_pci_dma_ops(&dma_iommu_ops); |
| 255 | } | 259 | } |
diff --git a/arch/powerpc/platforms/iseries/pci.c b/arch/powerpc/platforms/iseries/pci.c index 02a634faedbe..21cddc30220b 100644 --- a/arch/powerpc/platforms/iseries/pci.c +++ b/arch/powerpc/platforms/iseries/pci.c | |||
| @@ -444,7 +444,6 @@ void __init iSeries_pcibios_fixup_resources(struct pci_dev *pdev) | |||
| 444 | pdev->sysdata = node; | 444 | pdev->sysdata = node; |
| 445 | allocate_device_bars(pdev); | 445 | allocate_device_bars(pdev); |
| 446 | iseries_device_information(pdev, bus, *sub_bus); | 446 | iseries_device_information(pdev, bus, *sub_bus); |
| 447 | iommu_devnode_init_iSeries(pdev, node); | ||
| 448 | } | 447 | } |
| 449 | 448 | ||
| 450 | /* | 449 | /* |
diff --git a/arch/powerpc/platforms/maple/pci.c b/arch/powerpc/platforms/maple/pci.c index 301855263b81..04296ffff8bf 100644 --- a/arch/powerpc/platforms/maple/pci.c +++ b/arch/powerpc/platforms/maple/pci.c | |||
| @@ -592,3 +592,17 @@ int maple_pci_get_legacy_ide_irq(struct pci_dev *pdev, int channel) | |||
| 592 | } | 592 | } |
| 593 | return irq; | 593 | return irq; |
| 594 | } | 594 | } |
| 595 | |||
| 596 | static void __devinit quirk_ipr_msi(struct pci_dev *dev) | ||
| 597 | { | ||
| 598 | /* Something prevents MSIs from the IPR from working on Bimini, | ||
| 599 | * and the driver has no smarts to recover. So disable MSI | ||
| 600 | * on it for now. */ | ||
| 601 | |||
| 602 | if (machine_is(maple)) { | ||
| 603 | dev->no_msi = 1; | ||
| 604 | dev_info(&dev->dev, "Quirk disabled MSI\n"); | ||
| 605 | } | ||
| 606 | } | ||
| 607 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_OBSIDIAN, | ||
| 608 | quirk_ipr_msi); | ||
diff --git a/arch/powerpc/sysdev/fsl_soc.c b/arch/powerpc/sysdev/fsl_soc.c index afe8dbc964aa..5c64ccd402e2 100644 --- a/arch/powerpc/sysdev/fsl_soc.c +++ b/arch/powerpc/sysdev/fsl_soc.c | |||
| @@ -208,52 +208,6 @@ static int __init of_add_fixed_phys(void) | |||
| 208 | arch_initcall(of_add_fixed_phys); | 208 | arch_initcall(of_add_fixed_phys); |
| 209 | #endif /* CONFIG_FIXED_PHY */ | 209 | #endif /* CONFIG_FIXED_PHY */ |
| 210 | 210 | ||
| 211 | #ifdef CONFIG_PPC_83xx | ||
| 212 | static int __init mpc83xx_wdt_init(void) | ||
| 213 | { | ||
| 214 | struct resource r; | ||
| 215 | struct device_node *np; | ||
| 216 | struct platform_device *dev; | ||
| 217 | u32 freq = fsl_get_sys_freq(); | ||
| 218 | int ret; | ||
| 219 | |||
| 220 | np = of_find_compatible_node(NULL, "watchdog", "mpc83xx_wdt"); | ||
| 221 | |||
| 222 | if (!np) { | ||
| 223 | ret = -ENODEV; | ||
| 224 | goto nodev; | ||
| 225 | } | ||
| 226 | |||
| 227 | memset(&r, 0, sizeof(r)); | ||
| 228 | |||
| 229 | ret = of_address_to_resource(np, 0, &r); | ||
| 230 | if (ret) | ||
| 231 | goto err; | ||
| 232 | |||
| 233 | dev = platform_device_register_simple("mpc83xx_wdt", 0, &r, 1); | ||
| 234 | if (IS_ERR(dev)) { | ||
| 235 | ret = PTR_ERR(dev); | ||
| 236 | goto err; | ||
| 237 | } | ||
| 238 | |||
| 239 | ret = platform_device_add_data(dev, &freq, sizeof(freq)); | ||
| 240 | if (ret) | ||
| 241 | goto unreg; | ||
| 242 | |||
| 243 | of_node_put(np); | ||
| 244 | return 0; | ||
| 245 | |||
| 246 | unreg: | ||
| 247 | platform_device_unregister(dev); | ||
| 248 | err: | ||
| 249 | of_node_put(np); | ||
| 250 | nodev: | ||
| 251 | return ret; | ||
| 252 | } | ||
| 253 | |||
| 254 | arch_initcall(mpc83xx_wdt_init); | ||
| 255 | #endif | ||
| 256 | |||
| 257 | static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type) | 211 | static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type) |
| 258 | { | 212 | { |
| 259 | if (!phy_type) | 213 | if (!phy_type) |
diff --git a/arch/powerpc/sysdev/mpic.c b/arch/powerpc/sysdev/mpic.c index 21b956701596..0efc12d1a3d7 100644 --- a/arch/powerpc/sysdev/mpic.c +++ b/arch/powerpc/sysdev/mpic.c | |||
| @@ -1057,13 +1057,6 @@ struct mpic * __init mpic_alloc(struct device_node *node, | |||
| 1057 | memset(mpic, 0, sizeof(struct mpic)); | 1057 | memset(mpic, 0, sizeof(struct mpic)); |
| 1058 | mpic->name = name; | 1058 | mpic->name = name; |
| 1059 | 1059 | ||
| 1060 | mpic->irqhost = irq_alloc_host(node, IRQ_HOST_MAP_LINEAR, | ||
| 1061 | isu_size, &mpic_host_ops, | ||
| 1062 | flags & MPIC_LARGE_VECTORS ? 2048 : 256); | ||
| 1063 | if (mpic->irqhost == NULL) | ||
| 1064 | return NULL; | ||
| 1065 | |||
| 1066 | mpic->irqhost->host_data = mpic; | ||
| 1067 | mpic->hc_irq = mpic_irq_chip; | 1060 | mpic->hc_irq = mpic_irq_chip; |
| 1068 | mpic->hc_irq.typename = name; | 1061 | mpic->hc_irq.typename = name; |
| 1069 | if (flags & MPIC_PRIMARY) | 1062 | if (flags & MPIC_PRIMARY) |
| @@ -1213,6 +1206,15 @@ struct mpic * __init mpic_alloc(struct device_node *node, | |||
| 1213 | mpic->isu_shift = 1 + __ilog2(mpic->isu_size - 1); | 1206 | mpic->isu_shift = 1 + __ilog2(mpic->isu_size - 1); |
| 1214 | mpic->isu_mask = (1 << mpic->isu_shift) - 1; | 1207 | mpic->isu_mask = (1 << mpic->isu_shift) - 1; |
| 1215 | 1208 | ||
| 1209 | mpic->irqhost = irq_alloc_host(node, IRQ_HOST_MAP_LINEAR, | ||
| 1210 | isu_size ? isu_size : mpic->num_sources, | ||
| 1211 | &mpic_host_ops, | ||
| 1212 | flags & MPIC_LARGE_VECTORS ? 2048 : 256); | ||
| 1213 | if (mpic->irqhost == NULL) | ||
| 1214 | return NULL; | ||
| 1215 | |||
| 1216 | mpic->irqhost->host_data = mpic; | ||
| 1217 | |||
| 1216 | /* Display version */ | 1218 | /* Display version */ |
| 1217 | switch (greg_feature & MPIC_GREG_FEATURE_VERSION_MASK) { | 1219 | switch (greg_feature & MPIC_GREG_FEATURE_VERSION_MASK) { |
| 1218 | case 1: | 1220 | case 1: |
diff --git a/arch/powerpc/sysdev/xilinx_intc.c b/arch/powerpc/sysdev/xilinx_intc.c index a22e1a2df1af..c658b413c9b4 100644 --- a/arch/powerpc/sysdev/xilinx_intc.c +++ b/arch/powerpc/sysdev/xilinx_intc.c | |||
| @@ -41,8 +41,32 @@ | |||
| 41 | 41 | ||
| 42 | static struct irq_host *master_irqhost; | 42 | static struct irq_host *master_irqhost; |
| 43 | 43 | ||
| 44 | #define XILINX_INTC_MAXIRQS (32) | ||
| 45 | |||
| 46 | /* The following table allows the interrupt type, edge or level, | ||
| 47 | * to be cached after being read from the device tree until the interrupt | ||
| 48 | * is mapped | ||
| 49 | */ | ||
| 50 | static int xilinx_intc_typetable[XILINX_INTC_MAXIRQS]; | ||
| 51 | |||
| 52 | /* Map the interrupt type from the device tree to the interrupt types | ||
| 53 | * used by the interrupt subsystem | ||
| 54 | */ | ||
| 55 | static unsigned char xilinx_intc_map_senses[] = { | ||
| 56 | IRQ_TYPE_EDGE_RISING, | ||
| 57 | IRQ_TYPE_EDGE_FALLING, | ||
| 58 | IRQ_TYPE_LEVEL_HIGH, | ||
| 59 | IRQ_TYPE_LEVEL_LOW, | ||
| 60 | }; | ||
| 61 | |||
| 44 | /* | 62 | /* |
| 45 | * IRQ Chip operations | 63 | * The interrupt controller is setup such that it doesn't work well with |
| 64 | * the level interrupt handler in the kernel because the handler acks the | ||
| 65 | * interrupt before calling the application interrupt handler. To deal with | ||
| 66 | * that, we use 2 different irq chips so that different functions can be | ||
| 67 | * used for level and edge type interrupts. | ||
| 68 | * | ||
| 69 | * IRQ Chip common (across level and edge) operations | ||
| 46 | */ | 70 | */ |
| 47 | static void xilinx_intc_mask(unsigned int virq) | 71 | static void xilinx_intc_mask(unsigned int virq) |
| 48 | { | 72 | { |
| @@ -52,15 +76,54 @@ static void xilinx_intc_mask(unsigned int virq) | |||
| 52 | out_be32(regs + XINTC_CIE, 1 << irq); | 76 | out_be32(regs + XINTC_CIE, 1 << irq); |
| 53 | } | 77 | } |
| 54 | 78 | ||
| 55 | static void xilinx_intc_unmask(unsigned int virq) | 79 | static int xilinx_intc_set_type(unsigned int virq, unsigned int flow_type) |
| 80 | { | ||
| 81 | struct irq_desc *desc = get_irq_desc(virq); | ||
| 82 | |||
| 83 | desc->status &= ~(IRQ_TYPE_SENSE_MASK | IRQ_LEVEL); | ||
| 84 | desc->status |= flow_type & IRQ_TYPE_SENSE_MASK; | ||
| 85 | if (flow_type & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) | ||
| 86 | desc->status |= IRQ_LEVEL; | ||
| 87 | return 0; | ||
| 88 | } | ||
| 89 | |||
| 90 | /* | ||
| 91 | * IRQ Chip level operations | ||
| 92 | */ | ||
| 93 | static void xilinx_intc_level_unmask(unsigned int virq) | ||
| 56 | { | 94 | { |
| 57 | int irq = virq_to_hw(virq); | 95 | int irq = virq_to_hw(virq); |
| 58 | void * regs = get_irq_chip_data(virq); | 96 | void * regs = get_irq_chip_data(virq); |
| 59 | pr_debug("unmask: %d\n", irq); | 97 | pr_debug("unmask: %d\n", irq); |
| 60 | out_be32(regs + XINTC_SIE, 1 << irq); | 98 | out_be32(regs + XINTC_SIE, 1 << irq); |
| 99 | |||
| 100 | /* ack level irqs because they can't be acked during | ||
| 101 | * ack function since the handle_level_irq function | ||
| 102 | * acks the irq before calling the inerrupt handler | ||
| 103 | */ | ||
| 104 | out_be32(regs + XINTC_IAR, 1 << irq); | ||
| 61 | } | 105 | } |
| 62 | 106 | ||
| 63 | static void xilinx_intc_ack(unsigned int virq) | 107 | static struct irq_chip xilinx_intc_level_irqchip = { |
| 108 | .typename = "Xilinx Level INTC", | ||
| 109 | .mask = xilinx_intc_mask, | ||
| 110 | .mask_ack = xilinx_intc_mask, | ||
| 111 | .unmask = xilinx_intc_level_unmask, | ||
| 112 | .set_type = xilinx_intc_set_type, | ||
| 113 | }; | ||
| 114 | |||
| 115 | /* | ||
| 116 | * IRQ Chip edge operations | ||
| 117 | */ | ||
| 118 | static void xilinx_intc_edge_unmask(unsigned int virq) | ||
| 119 | { | ||
| 120 | int irq = virq_to_hw(virq); | ||
| 121 | void *regs = get_irq_chip_data(virq); | ||
| 122 | pr_debug("unmask: %d\n", irq); | ||
| 123 | out_be32(regs + XINTC_SIE, 1 << irq); | ||
| 124 | } | ||
| 125 | |||
| 126 | static void xilinx_intc_edge_ack(unsigned int virq) | ||
| 64 | { | 127 | { |
| 65 | int irq = virq_to_hw(virq); | 128 | int irq = virq_to_hw(virq); |
| 66 | void * regs = get_irq_chip_data(virq); | 129 | void * regs = get_irq_chip_data(virq); |
| @@ -68,27 +131,60 @@ static void xilinx_intc_ack(unsigned int virq) | |||
| 68 | out_be32(regs + XINTC_IAR, 1 << irq); | 131 | out_be32(regs + XINTC_IAR, 1 << irq); |
| 69 | } | 132 | } |
| 70 | 133 | ||
| 71 | static struct irq_chip xilinx_intc_irqchip = { | 134 | static struct irq_chip xilinx_intc_edge_irqchip = { |
| 72 | .typename = "Xilinx INTC", | 135 | .typename = "Xilinx Edge INTC", |
| 73 | .mask = xilinx_intc_mask, | 136 | .mask = xilinx_intc_mask, |
| 74 | .unmask = xilinx_intc_unmask, | 137 | .unmask = xilinx_intc_edge_unmask, |
| 75 | .ack = xilinx_intc_ack, | 138 | .ack = xilinx_intc_edge_ack, |
| 139 | .set_type = xilinx_intc_set_type, | ||
| 76 | }; | 140 | }; |
| 77 | 141 | ||
| 78 | /* | 142 | /* |
| 79 | * IRQ Host operations | 143 | * IRQ Host operations |
| 80 | */ | 144 | */ |
| 145 | |||
| 146 | /** | ||
| 147 | * xilinx_intc_xlate - translate virq# from device tree interrupts property | ||
| 148 | */ | ||
| 149 | static int xilinx_intc_xlate(struct irq_host *h, struct device_node *ct, | ||
| 150 | u32 *intspec, unsigned int intsize, | ||
| 151 | irq_hw_number_t *out_hwirq, | ||
| 152 | unsigned int *out_flags) | ||
| 153 | { | ||
| 154 | if ((intsize < 2) || (intspec[0] >= XILINX_INTC_MAXIRQS)) | ||
| 155 | return -EINVAL; | ||
| 156 | |||
| 157 | /* keep a copy of the interrupt type til the interrupt is mapped | ||
| 158 | */ | ||
| 159 | xilinx_intc_typetable[intspec[0]] = xilinx_intc_map_senses[intspec[1]]; | ||
| 160 | |||
| 161 | /* Xilinx uses 2 interrupt entries, the 1st being the h/w | ||
| 162 | * interrupt number, the 2nd being the interrupt type, edge or level | ||
| 163 | */ | ||
| 164 | *out_hwirq = intspec[0]; | ||
| 165 | *out_flags = xilinx_intc_map_senses[intspec[1]]; | ||
| 166 | |||
| 167 | return 0; | ||
| 168 | } | ||
| 81 | static int xilinx_intc_map(struct irq_host *h, unsigned int virq, | 169 | static int xilinx_intc_map(struct irq_host *h, unsigned int virq, |
| 82 | irq_hw_number_t irq) | 170 | irq_hw_number_t irq) |
| 83 | { | 171 | { |
| 84 | set_irq_chip_data(virq, h->host_data); | 172 | set_irq_chip_data(virq, h->host_data); |
| 85 | set_irq_chip_and_handler(virq, &xilinx_intc_irqchip, handle_level_irq); | 173 | |
| 86 | set_irq_type(virq, IRQ_TYPE_NONE); | 174 | if (xilinx_intc_typetable[irq] == IRQ_TYPE_LEVEL_HIGH || |
| 175 | xilinx_intc_typetable[irq] == IRQ_TYPE_LEVEL_LOW) { | ||
| 176 | set_irq_chip_and_handler(virq, &xilinx_intc_level_irqchip, | ||
| 177 | handle_level_irq); | ||
| 178 | } else { | ||
| 179 | set_irq_chip_and_handler(virq, &xilinx_intc_edge_irqchip, | ||
| 180 | handle_edge_irq); | ||
| 181 | } | ||
| 87 | return 0; | 182 | return 0; |
| 88 | } | 183 | } |
| 89 | 184 | ||
| 90 | static struct irq_host_ops xilinx_intc_ops = { | 185 | static struct irq_host_ops xilinx_intc_ops = { |
| 91 | .map = xilinx_intc_map, | 186 | .map = xilinx_intc_map, |
| 187 | .xlate = xilinx_intc_xlate, | ||
| 92 | }; | 188 | }; |
| 93 | 189 | ||
| 94 | struct irq_host * __init | 190 | struct irq_host * __init |
| @@ -116,7 +212,8 @@ xilinx_intc_init(struct device_node *np) | |||
| 116 | out_be32(regs + XINTC_MER, 0x3UL); /* Turn on the Master Enable. */ | 212 | out_be32(regs + XINTC_MER, 0x3UL); /* Turn on the Master Enable. */ |
| 117 | 213 | ||
| 118 | /* Allocate and initialize an irq_host structure. */ | 214 | /* Allocate and initialize an irq_host structure. */ |
| 119 | irq = irq_alloc_host(np, IRQ_HOST_MAP_LINEAR, 32, &xilinx_intc_ops, -1); | 215 | irq = irq_alloc_host(np, IRQ_HOST_MAP_LINEAR, XILINX_INTC_MAXIRQS, |
| 216 | &xilinx_intc_ops, -1); | ||
| 120 | if (!irq) | 217 | if (!irq) |
| 121 | panic(__FILE__ ": Cannot allocate IRQ host\n"); | 218 | panic(__FILE__ ": Cannot allocate IRQ host\n"); |
| 122 | irq->host_data = regs; | 219 | irq->host_data = regs; |
